/* ─── BREADCRUMB ─── */
    .breadcrumb {
      padding: 24px 40px;
      background: #fafafa;
      border-bottom: 1px solid #eee;
      display: none;
    }

    .breadcrumb-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: #666;
    }

    .breadcrumb a {
      color: #666;
      text-decoration: none;
      transition: color 0.2s;
    }

    .breadcrumb a:hover {
      color: #8B0000;
    }

    .breadcrumb .separator {
      color: #999;
    }

    .breadcrumb .current {
      color: #8B0000;
      font-weight: 500;
    }

    /* ─── CONTACT SECTION ─── */
    .contact-section {
      padding: 60px 40px 80px;
    }

    .contact-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
    }

    /* Left Column */
    .contact-info-col {
      animation: fadeInLeft 0.6s ease;
    }

    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .contact-eyebrow {
      color: #C85A5A;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .contact-title {
      font-size: 36px;
      font-weight: 700;
      color: #1a1a1a;
      line-height: 1.25;
      margin-bottom: 16px;
    }

    .contact-description {
      font-size: 14px;
      line-height: 1.7;
      color: #666;
      margin-bottom: 40px;
    }

    /* Contact Items */
    .contact-item {
      display: flex;
      gap: 20px;
      margin-bottom: 32px;
      align-items: flex-start;
    }

    .contact-icon-wrap {
      width: 50px;
      height: 50px;
      background: #8B0000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(139, 0, 0, 0.25);
    }

    .contact-icon-wrap svg {
      width: 22px;
      height: 22px;
      fill: white;
    }

    .contact-item-content h3 {
      font-size: 15px;
      font-weight: 700;
      color: #8B0000;
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .contact-item-content p {
      font-size: 13.5px;
      color: #555;
      line-height: 1.6;
    }

    /* Map */
    .map-container {
      margin-top: 40px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      height: 280px;
      position: relative;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .map-placeholder {
      width: 100%;
      height: 100%;
      background: #e0e0e0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #999;
      font-size: 14px;
    }

    /* Adverse Event Banner */
    .adverse-banner {
      margin-top: 40px;
      background: #8B0000;
      border-radius: 12px;
      padding: 32px 36px;
      color: white;
      text-align: center;
      box-shadow: 0 6px 24px rgba(139, 0, 0, 0.3);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .adverse-banner:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 32px rgba(139, 0, 0, 0.4);
    }

    .adverse-banner h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .adverse-banner p {
      font-size: 12px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.9);
    }

    /* Right Column - Form */
    .contact-form-col {
      animation: fadeInRight 0.6s ease;
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .form-card {
      background: white;
      border: 3px solid #8B0000;
      border-radius: 16px;
      padding: 40px 36px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .form-title {
      font-size: 20px;
      font-weight: 700;
      color: #8B0000;
      margin-bottom: 28px;
    }

    .form-group {
      margin-bottom: 24px;
    }

    .form-label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #333;
      margin-bottom: 8px;
    }

    .form-label .required {
      color: #8B0000;
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 13px 16px;
      border: 2px solid #8B0000;
      border-radius: 8px;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      color: #333;
      transition: all 0.3s ease;
      background: white;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      outline: none;
      border-color: #660000;
      box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: #aaa;
    }

    .phone-input-wrapper {
      display: flex;
      gap: 8px;
    }

    .country-code {
      width: 100px;
      flex-shrink: 0;
    }

    .form-select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 36px;
    }

    .form-textarea {
      min-height: 120px;
      resize: vertical;
    }

    .recaptcha-wrapper {
      margin-bottom: 24px;
      display: flex;
      justify-content: flex-start;
    }

    .submit-btn {
      background: #C85A5A;
      color: white;
      border: none;
      padding: 14px 40px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
      width: 100%;
    }

    .submit-btn:hover {
      background: #B04848;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(200, 90, 90, 0.4);
    }

    .submit-btn:active {
      transform: translateY(0);
    }
    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .site-header {
        padding: 0 16px;
      }

      .breadcrumb {
        padding: 20px 16px;
      }

      .contact-section {
        padding: 40px 16px 60px;
      }

      footer {
        padding: 48px 16px 0;
      }

      .footer-bottom-wrap {
        margin: 0 -16px;
        padding: 0 16px;
      }

      .contact-title {
        font-size: 28px;
      }

      .form-card {
        padding: 32px 24px;
      }

      .nav-links {
        display: none;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .phone-input-wrapper {
        flex-direction: column;
      }

      .country-code {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .contact-title {
        font-size: 24px;
      }

      .form-title {
        font-size: 18px;
      }

      .map-container {
        height: 220px;
      }
    }