/* contact-us.php — Extracted 2026-05-20. */

/* ---------- Hero image backdrop ---------- */
.aat-contact-hero {
    position: relative;
    background: #030303;
    isolation: isolate;
}
/* Kill the site-wide nav-gutter mask (#030303 band at z-49) - would otherwise
   render as a solid horizontal bar over the top of the hero image. */
body > div[aria-hidden="true"][style*="height: 145px"] { display: none !important; }

/* Kill the global gold ambient-light glows (head.php). Their `filter: blur(80px)`
   at top-left was being picked up by the hero image area and rendering as a
   visible bright/blurred band exactly where the user circled (above title).
   Hidden on this page only. */
.ambient-light { display: none !important; }

/* Hero image - sized to cover ONLY the hero title area (~600px tall on the
   visible viewport), with a deep mask fade. Below this, content sits on plain
   #030303 from `body`. No second fade element, no seam at the bottom. */
.aat-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 720px;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
    /* Mask removed — image sits freely without fade tint at the bottom. */
}
.aat-hero-fade { display: none; }

/* ---------- Contact channel cards ---------- */
.aat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(15,15,15,0.55);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 20px 22px;
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.aat-card:hover { border-color: rgba(212,175,55,0.25); background: rgba(20,20,20,0.6); }
.aat-card--address { gap: 20px; padding: 22px; }

.aat-card-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.32);
    color: #D4AF37;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.aat-card:hover .aat-card-icon { background: rgba(212,175,55,0.12); border-color: rgba(212,175,55,0.45); }
.aat-card-icon--wa { color: #25D366; background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.32); }
.aat-card:hover .aat-card-icon--wa { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.5); }
.aat-card-icon--muted { color: #9ca3af; background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }

.aat-card-body { flex: 1; min-width: 0; }
.aat-card-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #D4AF37;
    margin: 0 0 4px 0;
}
.aat-card-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.25s ease;
    word-break: break-word;
}
.aat-card-value:hover { color: #D4AF37; }
.aat-card-value--email {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
}

.aat-address-block {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.04em;
    margin-top: 2px;
}
.aat-address-block br { display: block; content: ""; }
.aat-address-name {
    display: block;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.aat-address-sub {
    color: #D4AF37;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 12px 0 0 0;
    line-height: 1.5;
}

/* ---------- Form card ---------- */
.aat-form-card {
    background: rgba(13,13,13,0.55);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
@media (min-width: 768px) { .aat-form-card { padding: 40px; } }

.aat-form-eyebrow {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 0.04em;
    margin: 0 0 6px 0;
}
.aat-form-subtitle {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    letter-spacing: 0.02em;
}

/* ---------- Enquiry-type select (floating-label parity) ---------- */
.aat-select-wrap { position: relative; }
.aat-select-icon {
    position: absolute; top: 50%; left: 16px;
    transform: translateY(-50%);
    color: #D4AF37; pointer-events: none; z-index: 2;
}
.aat-select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 64px;
    padding: 22px 44px 6px 48px;
    background: rgba(10,10,10,0.55);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    outline: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.aat-select:focus { border-color: rgba(212,175,55,0.5); background: rgba(10,10,10,0.85); }
.aat-select option { background: #0a0a0a; color: #fff; }
.aat-select-label {
    position: absolute; left: 48px; top: 22px;
    font-size: 13px; color: #94a3b8;
    pointer-events: none; transition: all 0.2s ease;
    letter-spacing: 0.02em;
}
.aat-select:focus ~ .aat-select-label,
.aat-select:not([value=""]):valid ~ .aat-select-label,
.aat-select.has-value ~ .aat-select-label {
    top: 8px; font-size: 10px;
    color: #D4AF37; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
}
.aat-select-chevron {
    position: absolute; right: 18px; top: 50%;
    transform: translateY(-50%);
    color: #6b7280; pointer-events: none;
}

/* ---------- Textarea char counter ---------- */
.aat-textarea-wrap textarea { resize: vertical; }
.aat-char-counter {
    position: absolute;
    bottom: 14px; right: 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    pointer-events: none;
    transition: color 0.2s ease;
    background: rgba(10,10,10,0.85);
    padding: 2px 6px;
    border-radius: 6px;
}
.aat-char-counter.near-limit { color: #D4AF37; }
.aat-char-counter.at-limit { color: #ef4444; }

/* ---------- CTA button ---------- */
.aat-cta-btn {
    width: 100%;
    height: 64px;
    background: linear-gradient(135deg, #D4AF37 0%, #ebd573 100%);
    color: #0a0a0a;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212,175,55,0.18);
}
.aat-cta-btn:hover {
    background: linear-gradient(135deg, #ebd573 0%, #D4AF37 100%);
    box-shadow: 0 14px 40px rgba(212,175,55,0.32);
    transform: translateY(-1px);
}
.aat-cta-btn:active { transform: translateY(0); }

.aat-form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6b7280;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin: 18px 0 0 0;
}
.aat-form-footer i { color: #9ca3af; }

  /* --- DARK GLASS PHONE PICKER & INPUT OVERRIDES --- */
  .iti { width: 100%; display: block; }
  .iti__dropdown-content {
      background: rgba(10, 10, 10, 0.95) !important;
      backdrop-filter: blur(20px) !important;
      border: 1px solid rgba(212, 175, 55, 0.2) !important;
      border-radius: 12px !important;
      box-shadow: 0 20px 50px rgba(0,0,0,0.8) !important;
      margin-top: 8px !important;
      z-index: 1000 !important;
      overflow: hidden;
  }
  .iti__country-list {
      background: transparent !important;
      border: none !important;
      box-shadow: none !important;
      color: #fff !important;
      font-size: 13px !important;
      max-width: 300px !important;
  }
  .iti__country { padding: 10px 15px !important; transition: all 0.2s; color: #fff !important; outline: none; }
  .iti__country:hover, .iti__country.iti__highlight { background: rgba(212, 175, 55, 0.2) !important; }
  .iti__country-name { color: #ccc !important; font-weight: 300 !important; }
  .iti__country.iti__active .iti__country-name { color: #D4AF37 !important; font-weight: bold !important; }
  .iti__dial-code { color: #888 !important; }
  .iti__selected-dial-code { color: #fff !important; margin-left: 8px !important; font-size: 14px !important; }
  .iti__arrow { border-top-color: #D4AF37 !important; }
  .iti__arrow--up { border-bottom-color: #D4AF37 !important; }
  .iti__selected-country {
      background-color: transparent !important;
      padding-left: 16px !important;
      padding-top: 16px !important;
      border-right: 1px solid rgba(255,255,255,0.10) !important;
      border-radius: 12px 0 0 12px !important;
      transition: background-color 0.2s;
      outline: none !important;
  }
  .iti__selected-country:hover { background-color: rgba(255, 255, 255, 0.05) !important; }
  .iti__selected-country:focus-visible { background-color: rgba(212, 175, 55, 0.1) !important; }
  .iti__search-input {
      background: #1a1a1a !important;
      border: 1px solid rgba(212, 175, 55, 0.3) !important;
      color: #ffffff !important;
      border-radius: 8px !important;
      padding: 10px !important;
      margin: 8px !important;
      width: calc(100% - 16px) !important;
      outline: none !important;
      box-shadow: none !important;
  }
  .iti__search-input::placeholder { color: #666 !important; }
  .iti__tel-input {
      color: #fff !important;
      border-radius: 0.75rem !important;
      padding-top: 22px !important;
      padding-bottom: 6px !important;
      height: 64px !important;
      width: 100% !important;
      transition: all 0.3s !important;
      box-shadow: none !important;
      font-family: inherit !important;
      font-size: 14px !important;
      font-weight: 500 !important;
      letter-spacing: 0.05em !important;
      background: rgba(10,10,10,0.8);
      border: 1px solid rgba(255,255,255,0.1);
  }
  .iti__tel-input:focus {
      background: #0a0a0a;
      border-color: rgba(212,175,55,0.5);
      outline: none !important;
      box-shadow: inset 0 0 0 1px rgba(212,175,55,0.5);
  }
  .iti__flag-container { z-index: 30 !important; }
  .glass-scroll::-webkit-scrollbar, .iti__country-list::-webkit-scrollbar { width: 4px; }
  .glass-scroll::-webkit-scrollbar-track, .iti__country-list::-webkit-scrollbar-track { background: transparent; }
  .glass-scroll::-webkit-scrollbar-thumb, .iti__country-list::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 8px; }
