/* ========== CONTACT PAGE CSS ========== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: var(--font-noto);
      background: #fff;
      color: #1a2340;
      line-height: 1.5;
    }

    .text-gold {
      color: #c9a84c;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 48px;
    }

    /* ========== NAVIGATION (same as homepage) ========== */
    .site-nav {
      background: #1a2d4a;
      padding: 14px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
    }

    .nav-logo img {
      height: 68px;
      width: auto;
      object-fit: contain;
      display: block;
      border-radius: 2px;
      transition: opacity 0.2s ease;
    }

    .nav-logo img:hover {
      opacity: 0.85;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
      flex-wrap: wrap;
      list-style: none;
    }

    .nav-links li {
      display: inline-block;
    }

    .nav-links a {
      color: #ffffff;
      font-size: 14px;
      font-family: var(--font-noto);
      font-weight: 500;
      letter-spacing: 0.03em;
      text-decoration: none;
      padding: 6px 0;
      transition: color 0.2s ease;
      position: relative;
    }

    .nav-links a:hover {
      color: #c9a84c;
    }

    .nav-links a.active {
      color: #c9a84c;
    }

    .nav-links a.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #c9a84c;
      border-radius: 2px;
    }

    .nav-work-btn {
      background: none;
      border: 1.5px solid #c9a84c;
      color: #c9a84c;
      font-size: 13px;
      padding: 8px 24px;
      border-radius: 40px;
      font-family: var(--font-noto);
      font-weight: 600;
      letter-spacing: 0.05em;
      cursor: pointer;
      transition: all 0.25s ease;
      text-decoration: none;
      display: inline-block;
      white-space: nowrap;
      min-width: 135px;
      text-align: center;
    }

    .nav-work-btn:hover {
      background: rgba(201, 168, 76, 0.12);
      color: #e2bc5e;
      border-color: #e2bc5e;
      transform: translateY(-1px);
    }

    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .mobile-menu-toggle span {
      display: block;
      width: 25px;
      height: 2px;
      background: #ffffff;
      margin: 5px 0;
      transition: 0.2s;
      border-radius: 2px;
    }

    .nav-toggle {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    /* ========== CONTACT HERO ========== */
    .contact-hero {
      background: #fefaf5;
      border-bottom: 1px solid #f0e7dc;
    }

    .contact-hero-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 48px 64px;
      text-align: center;
    }

    .contact-label {
      color: #c9a84c;
      font-size: 15px;
      letter-spacing: 0.18em;
      font-family: var(--font-noto);
      margin-bottom: 18px;
      text-transform: uppercase;
    }

    .contact-hero h1 {
      font-size: 52px;
      font-weight: 700;
      color: #1a2d4a;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .contact-hero p {
      font-size: 18px;
      font-family: var(--font-noto);
      color: #4a6080;
      max-width: 680px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ========== CONTACT FORM SECTION ========== */
    .contact-form-section {
      padding: 70px 0;
      background: #fff;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: start;
    }

    .contact-info h3 {
      font-size: 28px;
      font-weight: 700;
      color: #1a2d4a;
      margin-bottom: 20px;
    }

    .contact-info p {
      font-size: 16px;
      font-family: var(--font-noto);
      color: #4a6080;
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .contact-details {
      margin: 32px 0;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
    }

    .contact-icon {
      width: 48px;
      height: 48px;
      background: rgba(201, 168, 76, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon svg {
      width: 22px;
      height: 22px;
      stroke: #c9a84c;
      stroke-width: 1.5;
      fill: none;
    }

    .contact-item-content h4 {
      font-size: 14px;
      font-weight: 600;
      font-family: var(--font-noto);
      color: #7a90a8;
      margin-bottom: 4px;
    }

    .contact-item-content p {
      font-size: 16px;
      font-weight: 500;
      color: #1a2d4a;
      margin-bottom: 0;
    }

    .contact-item-content a {
      color: #1a2d4a;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .contact-item-content a:hover {
      color: #c9a84c;
    }

    .social-links {
      display: flex;
      gap: 20px;
      margin-top: 32px;
    }

    .social-link {
      width: 44px;
      height: 44px;
      background: #f0f4f8;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }

    .social-link:hover {
      background: #c9a84c;
      transform: translateY(-3px);
    }

    .social-link svg {
      width: 20px;
      height: 20px;
      stroke: #1a2d4a;
      stroke-width: 1.5;
      fill: none;
    }

    .social-link:hover svg {
      stroke: #1a2d4a;
    }

    /* Form styling */
    .contact-form h3 {
      font-size: 28px;
      font-weight: 700;
      color: #1a2d4a;
      margin-bottom: 24px;
    }

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

    .form-group label {
      display: block;
      font-size: 13px;
      font-family: var(--font-noto);
      font-weight: 600;
      color: #1a2d4a;
      margin-bottom: 8px;
      letter-spacing: 0.03em;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 14px 18px;
      font-size: 14px;
      font-family: var(--font-noto);
      color: #1a2d4a;
      border: 1px solid #dce6f0;
      border-radius: 12px;
      background: #ffffff;
      transition: all 0.2s ease;
    }

    .custom-select {
      position: relative;
      width: 100%;
    }

    .custom-select-trigger {
      position: relative;
      width: 100%;
      padding: 14px 44px 14px 18px;
      font-size: 14px;
      font-family: var(--font-noto);
      color: #1a2d4a;
      background: #ffffff;
      border: 1px solid #dce6f0;
      border-radius: 12px;
      text-align: left;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .custom-select-trigger::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 18px;
      width: 9px;
      height: 9px;
      border-right: 2px solid #1a2d4a;
      border-bottom: 2px solid #1a2d4a;
      transform: translateY(-65%) rotate(45deg);
      pointer-events: none;
      transition: transform 0.2s ease;
    }

    .custom-select.is-open .custom-select-trigger::after {
      transform: translateY(-35%) rotate(225deg);
    }

    .custom-select-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      right: 0;
      z-index: 20;
      display: none;
      padding: 6px;
      background: #ffffff;
      border: 1px solid #dce6f0;
      border-radius: 12px;
      box-shadow: 0 18px 34px rgba(26, 45, 74, 0.16);
    }

    .custom-select.is-open .custom-select-menu {
      display: block;
    }

    .custom-select-option {
      display: block;
      width: 100%;
      padding: 11px 12px;
      border: 0;
      border-radius: 8px;
      background: #ffffff;
      color: #1a2d4a;
      font-family: var(--font-noto);
      font-size: 14px;
      line-height: 1.35;
      text-align: left;
      cursor: pointer;
    }

    .custom-select-option:hover,
    .custom-select-option:focus {
      outline: none;
      background: #f7f5f0;
    }

    .custom-select-option.is-selected {
      color: #c9a84c;
      font-weight: 700;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .custom-select-trigger:focus,
    .custom-select.is-open .custom-select-trigger {
      outline: none;
      border-color: #c9a84c;
      box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
    }

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

    .submit-btn {
      background: #c9a84c;
      color: #1a2d4a;
      font-size: 14px;
      padding: 14px 32px;
      border: none;
      border-radius: 40px;
      font-family: var(--font-noto);
      font-weight: 700;
      letter-spacing: 0.08em;
      cursor: pointer;
      transition: all 0.2s ease;
      width: 100%;
    }

    .submit-btn:hover {
      background: #b89432;
      transform: translateY(-2px);
    }

    .submit-btn:disabled {
      cursor: not-allowed;
      opacity: 0.72;
      transform: none;
    }

    .form-status {
      min-height: 20px;
      margin-top: 12px;
      font-family: var(--font-noto);
      font-size: 13px;
      line-height: 1.4;
      text-align: center;
    }

    .form-status-pending {
      color: #4a6080;
    }

    .form-status-success {
      color: #2f7d4f;
    }

    .form-status-error {
      color: #b44236;
    }

    /* ========== FOOTER ========== */
    .footer-cta {
      background: #1a2d4a;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 60px 48px 40px;
      text-align: center;
    }

    .footer-bottom {
      border-top: 1px solid #253e60;
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-copy {
      color: #4a6080;
      font-size: 12px;
      font-family: var(--font-noto);
    }

    .footer-links {
        display: flex;
        gap: 28px;
    }

    .footer-links a {
        color: #4a6080;
        font-size: 12px;
        font-family: var(--font-noto);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-links a:hover {
    color: #c8d8e8;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 900px) {
      .container {
        padding: 0 24px;
      }

      .nav-container {
        padding: 0 24px;
      }

      .mobile-menu-toggle {
        display: block;
      }

      .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px 0 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        margin-top: 12px;
      }

      .nav-links.open {
        display: flex;
      }

      .nav-toggle:checked ~ .nav-links {
        display: flex;
      }

      .nav-links li {
        width: 100%;
      }

      .nav-links a {
        width: 100%;
        padding: 8px 0;
      }

      .form-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .contact-hero-inner {
        padding: 60px 24px 48px;
      }

      .contact-hero h1 {
        font-size: 36px;
      }

      .footer-inner {
        padding: 48px 24px 32px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
      }
    }

    @media (max-width: 480px) {
      .nav-container {
        padding: 0 20px;
      }

      .contact-hero h1 {
        font-size: 32px;
      }

      .contact-info h3,
      .contact-form h3 {
        font-size: 24px;
      }
    }

/* Shared mobile nav polish */
.nav-icon {
  display: none;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .nav-links {
    border-top: 0 !important;
    padding: 16px 0 8px !important;
  }

  .nav-links a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    width: 100%;
  }

  .nav-links a.active::after {
    display: none !important;
  }

  .nav-icon {
    display: inline-block;
  }

  .nav-work-btn {
    justify-content: center !important;
    min-width: 0;
    margin: 18px auto 0 !important;
    padding: 12px 22px !important;
    width: min(100%, 360px) !important;
    text-align: center;
  }
}
