﻿/* ============================================================
   Aero Greet India v2 — main.css
   Single shared stylesheet. CSS variables injected by PHP
   from style_settings DB table (via renderStyleTag()).
   Dark/light theme toggle via html[data-theme="light"] on <html>.
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ── DESIGN TOKENS (defaults — overridden by DB style_settings) ── */
:root {
  --gl:           #D4AF37;
  --gold:         #B8960C;
  --gb:           #F0C040;
  --gp:           rgba(212,175,55,.12);
  --gp2:          rgba(212,175,55,.06);
  --d:            #080C10;
  --d2:           #0D1520;
  --d3:           #131E2D;
  --d4:           #1A2840;
  --sl:           #8FA0B8;
  --li:           #EEF2F7;
  --w:            #FFFFFF;
  --br:           rgba(212,175,55,.2);
  --b2:           rgba(255,255,255,.07);
  --tr:           .3s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Nunito', sans-serif;
  --font-body:    'Nunito', sans-serif;
  --font-scale:   1;
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-sm:    0 4px 16px rgba(0,0,0,.25);
  --shadow-md:    0 8px 32px rgba(0,0,0,.35);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.5);
}

/* ── BASE ── */
body {
  font-family: var(--font-body);
  background: var(--d);
  color: var(--li);
  font-size: calc(1rem * var(--font-scale));
  line-height: 1.6;
  overflow-x: hidden;
  cursor: auto;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--w);
}
a { color: var(--gl); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--gb); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--d2); }
::-webkit-scrollbar-thumb { background: var(--gl); border-radius: 4px; }

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gb); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
}
#cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1.5px solid rgba(212,175,55,.5); border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: left .1s ease-out, top .1s ease-out;
}

/* ── NAVBAR ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 4%; height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(8,12,16,.96);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(212,175,55,.15);
  box-shadow: 0 1px 0 rgba(212,175,55,.08), 0 4px 32px rgba(0,0,0,.4);
}

/* ── Logo ── */
.logo {
  display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0;
  transition: opacity .2s;
}
.logo:hover { opacity: .88; }
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gl), var(--gold));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(212,175,55,.3);
}
.logo-text {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800;
  color: var(--w); line-height: 1.15; letter-spacing: -.01em;
}
.logo-text small {
  display: block; font-size: .44rem; font-weight: 500; color: var(--gl);
  letter-spacing: .2em; text-transform: uppercase; margin-top: 1px; opacity: .8;
}

/* ── Nav links ── */
.nav-ul {
  display: flex; align-items: center; gap: 1px; list-style: none; flex-wrap: nowrap;
}
.nav-ul a {
  color: rgba(238,242,247,.65); font-size: .95rem; font-weight: 600;
  padding: 7px 13px; border-radius: 7px;
  transition: color .2s, background .2s;
  display: block; white-space: nowrap; position: relative;
  letter-spacing: .01em;
}
.nav-ul a::after { display: none; }
.nav-ul a:hover {
  color: var(--w);
  background: rgba(255,255,255,.07);
}

/* ── My Bookings ── */
.nav-dash-btn {
  background: transparent !important;
  border: none !important;
  /* Gradient border via background-clip trick */
  background-image: linear-gradient(var(--d), var(--d)),
                    linear-gradient(135deg, var(--gl), var(--gold)) !important;
  background-origin: border-box !important;
  background-clip: padding-box, border-box !important;
  border: 1.5px solid transparent !important;
  color: rgba(238,242,247,.75) !important;
  font-weight: 600 !important; font-size: .9rem !important;
  padding: 6px 14px !important; border-radius: 7px !important;
  transition: color .2s, box-shadow .2s !important; white-space: nowrap;
  letter-spacing: .01em !important;
}
.nav-dash-btn:hover {
  color: var(--gl) !important;
  box-shadow: 0 0 12px rgba(212,175,55,.2) !important;
}

/* ── Book Now ── */
.nav-book {
  background: linear-gradient(135deg, var(--gb), var(--gold)) !important;
  color: #000 !important; font-weight: 800 !important; font-size: .9rem !important;
  padding: 7px 18px !important; border-radius: 7px !important;
  letter-spacing: .04em !important;
  box-shadow: 0 2px 12px rgba(212,175,55,.28);
  transition: box-shadow .2s, filter .2s !important; white-space: nowrap;
  margin-left: 6px !important;
}
.nav-book:hover {
  box-shadow: 0 4px 20px rgba(212,175,55,.48) !important;
  filter: brightness(1.07) !important;
}

/* ── NAV CONTROLS CLUSTER ── */
.nav-controls {
  display: flex; align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  overflow: visible;
  flex-shrink: 0;
  height: 34px;
  transition: border-color .2s;
}
.nav-controls:hover { border-color: rgba(255,255,255,.18); }
.nav-divider {
  width: 1px; height: 18px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: none;
  color: rgba(238,242,247,.55); padding: 0 10px;
  height: 34px; font-size: .9rem;
  cursor: pointer; flex-shrink: 0;
  transition: color .2s;
  border-radius: 0 8px 8px 0;
}
.theme-toggle:hover { color: var(--gl); }
.theme-icon { line-height: 1; display: block; }

/* Light theme — nav */
html[data-theme="light"] #nav.scrolled {
  background: rgba(255,255,255,.97);
  border-bottom-color: rgba(0,0,0,.08);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 4px 24px rgba(0,0,0,.08);
}
html[data-theme="light"] .logo-text { color: #111; }
html[data-theme="light"] .nav-ul a { color: #555; }
html[data-theme="light"] .nav-ul a:hover { color: #111; background: rgba(0,0,0,.05); }
html[data-theme="light"] .nav-dash-btn {
  background-image: linear-gradient(#fff, #fff),
                    linear-gradient(135deg, var(--gl), var(--gold)) !important;
  background-origin: border-box !important;
  background-clip: padding-box, border-box !important;
  color: #555 !important;
}
html[data-theme="light"] .nav-dash-btn:hover { color: var(--gold) !important; box-shadow: 0 0 12px rgba(212,175,55,.15) !important; }
html[data-theme="light"] .nav-controls { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.1); }
html[data-theme="light"] .nav-controls:hover { border-color: rgba(0,0,0,.18); }
html[data-theme="light"] .nav-divider { background: rgba(0,0,0,.1); }
html[data-theme="light"] .theme-toggle { color: #777; }
html[data-theme="light"] .theme-toggle:hover { color: var(--gold); }

/* ── HAMBURGER — animated X ── */
.hb {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 8px 9px; width: 38px; height: 34px;
  cursor: pointer; transition: background .2s, border-color .2s;
}
.hb:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.hb span {
  display: block; width: 18px; height: 1.5px;
  background: rgba(238,242,247,.75); border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}
.hb span:nth-child(2) { width: 13px; }
/* Open state — animate to X */
.hb.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 18px; }
.hb.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hb.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 18px; }
html[data-theme="light"] .hb { background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.12); }
html[data-theme="light"] .hb span { background: #444; }

/* ── MOBILE MENU ── */
.mob {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--d); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  z-index: 997; overflow-y: auto;
  border-top: 1px solid rgba(212,175,55,.15);
}
.mob.open { display: block; }

.mob-inner {
  padding: 1.25rem 1.25rem 2.5rem;
  display: flex; flex-direction: column; gap: 0;
  max-width: 480px; margin: 0 auto;
}

/* Top controls bar */
.mob-topbar {
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0 0 1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: .5rem;
  gap: .75rem;
}
.mob-topbar-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.mob-ctrl-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(238,242,247,.4);
}
.mob-theme-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: rgba(238,242,247,.65); padding: 7px 13px;
  border-radius: 7px; font-size: .9rem; font-weight: 600;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: all .2s;
}
.mob-theme-btn:hover { background: var(--gp); color: var(--gl); border-color: var(--gl); }
#mob-theme-icon { font-size: 1.05rem; }
#mob-theme-text { font-size: .88rem; }

/* Nav links */
.mob-links {
  display: flex; flex-direction: column;
  padding: .5rem 0;
}
.mob-links a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 8px; color: rgba(238,242,247,.75);
  font-size: 1.06rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s, background .2s, padding-left .2s;
  text-decoration: none; border-radius: 8px; margin-bottom: 1px;
}
.mob-links a:last-child { border-bottom: none; }
.mob-links a:hover {
  color: var(--w); background: rgba(255,255,255,.05); padding-left: 14px;
}
.mob-link-icon {
  font-size: .98rem; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); border-radius: 7px; flex-shrink: 0;
}

/* CTA buttons */
.mob-ctas {
  display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: .75rem;
}
.mob-btn-dash {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 8px !important;
  color: rgba(238,242,247,.7) !important;
  font-size: .92rem !important; font-weight: 600 !important;
  padding: 11px 8px !important;
  text-align: center; text-decoration: none;
  transition: all .2s !important;
}
.mob-btn-dash:hover {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.2) !important;
  color: var(--w) !important;
}
.mob-btn-book {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: linear-gradient(135deg, var(--gb), var(--gold)) !important;
  color: #000 !important; font-weight: 800 !important; font-size: .92rem !important;
  border-radius: 8px !important;
  padding: 11px 8px !important;
  text-align: center; text-decoration: none;
  transition: all .2s !important; border: none !important;
  box-shadow: 0 2px 12px rgba(212,175,55,.3);
}
.mob-btn-book:hover { box-shadow: 0 4px 18px rgba(212,175,55,.45) !important; filter: brightness(1.06) !important; }

/* Light theme — mobile menu */
html[data-theme="light"] .mob {
  background: #f5f7fa;
  border-top-color: rgba(0,0,0,.08);
}
html[data-theme="light"] .mob-topbar { border-bottom-color: rgba(0,0,0,.07); }
html[data-theme="light"] .mob-ctrl-label { color: rgba(0,0,0,.35); }
html[data-theme="light"] .mob-links a { color: #444; border-bottom-color: rgba(0,0,0,.05); }
html[data-theme="light"] .mob-links a:hover { color: #111; background: rgba(0,0,0,.04); }
html[data-theme="light"] .mob-link-icon { background: rgba(0,0,0,.06); }
html[data-theme="light"] .mob-ctas { border-top-color: rgba(0,0,0,.07); }
html[data-theme="light"] .mob-theme-btn { background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.1); color: #555; }
html[data-theme="light"] .mob-theme-btn:hover { background: rgba(212,175,55,.1); color: var(--gold); border-color: var(--gold); }
html[data-theme="light"] .mob-btn-dash { background: rgba(0,0,0,.05) !important; border-color: rgba(0,0,0,.12) !important; color: #555 !important; }
html[data-theme="light"] .mob-btn-dash:hover { background: rgba(0,0,0,.09) !important; color: #111 !important; }

/* ── Nav dropdown (Worldwide submenu) ── */
.nav-has-drop { position: relative; }
.nav-drop-trigger { display: flex !important; align-items: center; gap: 4px; }
.nav-drop-caret { font-size: .55rem; opacity: .6; transition: transform .25s; display: inline-block; }

/* The dropdown itself — no gap from trigger, padding-top creates safe hover zone */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;           /* flush against trigger — no gap */
  left: 50%;
  transform: translateX(-50%);
  background: var(--d3);
  border: 1px solid var(--br);
  border-top: none;    /* seamless join with nav */
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  min-width: 560px;
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
  z-index: 9000;
  /* padding-top creates the invisible bridge so mouse can travel down */
  padding: 0;
  overflow: hidden;
  animation: drop-in .2s cubic-bezier(.4,0,.2,1);
}

/* ── Mega menu variant ── */
.nav-mega {
  min-width: min(92vw, 940px);
  left: 50%;
  transform: translateX(-50%);
}
.nav-mega-body {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 1.25rem 1.1rem 1.1rem;
  max-height: 72vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--br) transparent;
}
.nav-mega-body::-webkit-scrollbar { width: 4px; }
.nav-mega-body::-webkit-scrollbar-track { background: transparent; }
.nav-mega-body::-webkit-scrollbar-thumb { background: var(--br); border-radius: 4px; }

.nav-mega-region {
  padding: 0 .9rem;
  border-right: 1px solid var(--b2);
}
.nav-mega-region:first-child { padding-left: 0; }
.nav-mega-region:last-child  { padding-right: 0; border-right: none; }

/* Code badge inside each link */
.nm-code {
  display: inline-block;
  font-size: .67rem; font-weight: 900; color: var(--gl);
  background: var(--gp); border: 1px solid rgba(212,175,55,.2);
  border-radius: 3px; padding: 1px 5px;
  margin-right: 6px; letter-spacing: .04em;
  flex-shrink: 0; line-height: 1.5;
  transition: background .15s, border-color .15s;
}
.nav-dropdown a:hover .nm-code {
  background: rgba(212,175,55,.28);
  border-color: rgba(212,175,55,.5);
}

/* Light theme mega */
html[data-theme="light"] .nav-mega-body::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); }
html[data-theme="light"] .nav-mega-region { border-right-color: rgba(0,0,0,.07); }
html[data-theme="light"] .nm-code { background: rgba(245,158,11,.12); border-color: rgba(245,158,11,.3); color: #c47d00; }
@keyframes drop-in {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Invisible hover bridge — fills the gap between trigger bottom and dropdown top */
.nav-has-drop::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px; right: -20px;
  height: 12px;        /* covers any sub-pixel gap */
  background: transparent;
  display: none;
}
.nav-has-drop:hover::after { display: block; }

/* Show on hover OR focus-within — the ::after bridge keeps it open */
.nav-has-drop:hover .nav-dropdown,
.nav-has-drop:focus-within .nav-dropdown { display: block; }
.nav-has-drop:hover .nav-drop-caret,
.nav-has-drop:focus-within .nav-drop-caret { transform: rotate(180deg); opacity: 1; }

/* Airport columns */
.nav-drop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 1rem 1rem .75rem;
}
.nav-drop-col {
  padding: 0 .9rem;
  border-right: 1px solid var(--b2);
}
.nav-drop-col:first-child { padding-left: 0; }
.nav-drop-col:last-child  { padding-right: 0; border-right: none; }

.nav-drop-heading {
  font-size: .73rem; font-weight: 800; color: var(--gl);
  letter-spacing: .09em; text-transform: uppercase;
  margin-bottom: .55rem; padding-bottom: .4rem;
  border-bottom: 1px solid var(--br);
}
.nav-dropdown a {
  display: flex; align-items: center;
  padding: 4px 0; color: var(--sl) !important;
  font-size: .88rem; font-weight: 500; white-space: nowrap;
  transition: color .15s, padding-left .15s;
  text-decoration: none; background: none !important;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover  { color: var(--gl) !important; padding-left: 4px; }

/* ── Footer CTA bar ── */
.nav-drop-footer {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.1rem 1rem;
  margin-top: .25rem;
  background: linear-gradient(90deg, rgba(212,175,55,.08) 0%, rgba(212,175,55,.04) 100%);
  border-top: 1px solid var(--br);
}

/* "All Worldwide Airports" — outline with shimmer on hover */
.nav-drop-btn-outline {
  position: relative; overflow: hidden;
  flex: 1; text-align: center;
  padding: 9px 16px !important;
  border: 1.5px solid var(--br) !important;
  border-radius: 8px !important;
  color: var(--sl) !important;
  font-size: .9rem !important; font-weight: 700 !important;
  letter-spacing: .02em !important;
  transition: border-color .25s, color .25s, background .25s, transform .2s !important;
  white-space: nowrap; background: transparent !important;
}
.nav-drop-btn-outline::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,.12) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .4s ease;
}
.nav-drop-btn-outline:hover {
  border-color: var(--gl) !important;
  color: var(--gl) !important;
  background: rgba(212,175,55,.06) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 14px rgba(212,175,55,.15) !important;
  padding-left: 16px !important;
}
.nav-drop-btn-outline:hover::before { transform: translateX(100%); }

/* "Request a Quote" — gold gradient with glow pulse */
.nav-drop-btn-gold {
  position: relative; overflow: hidden;
  flex: 1; text-align: center;
  padding: 9px 16px !important;
  background: linear-gradient(135deg, var(--gb) 0%, var(--gold) 100%) !important;
  border-radius: 8px !important;
  color: #000 !important;
  font-size: .9rem !important; font-weight: 800 !important;
  letter-spacing: .03em !important;
  border: none !important; white-space: nowrap;
  box-shadow: 0 3px 12px rgba(212,175,55,.3);
  transition: transform .2s cubic-bezier(.34,1.56,.64,1),
              box-shadow .2s,
              filter .2s !important;
}
.nav-drop-btn-gold::before {
  content: '';
  position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
}
.nav-drop-btn-gold:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 6px 22px rgba(212,175,55,.5) !important;
  filter: brightness(1.06) !important;
  padding-left: 16px !important;
}
.nav-drop-btn-gold:hover::before { left: 125%; }

/* Light theme */
html[data-theme="light"] .nav-dropdown {
  background: #fff; border-color: rgba(0,0,0,.1);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
html[data-theme="light"] .nav-drop-col { border-right-color: rgba(0,0,0,.07); }
html[data-theme="light"] .nav-dropdown a { color: #666 !important; }
html[data-theme="light"] .nav-dropdown a:hover { color: var(--gold) !important; }
html[data-theme="light"] .nav-drop-heading { color: #f59e0b; border-bottom-color: rgba(245,158,11,.25); }
html[data-theme="light"] .nav-drop-footer {
  background: linear-gradient(90deg, rgba(212,175,55,.06) 0%, rgba(212,175,55,.02) 100%);
  border-top-color: rgba(0,0,0,.08);
}
html[data-theme="light"] .nav-drop-btn-outline {
  border-color: rgba(0,0,0,.18) !important; color: #555 !important;
}
html[data-theme="light"] .nav-drop-btn-outline:hover {
  border-color: var(--gold) !important; color: var(--gold) !important;
  background: rgba(212,175,55,.07) !important;
}
/* My Bookings — outline button */
.nav-dash-btn {
/* Mobile menu buttons — defined in the MOBILE MENU section above */
  box-shadow: 0 6px 22px rgba(212,175,55,.5) !important;
  filter: brightness(1.08) !important;
}

/* Mobile menu buttons — defined in the MOBILE MENU section above */

/* ── CURRENCY SELECTOR — fits inside nav-controls cluster ── */
.cx-wrap { position: relative; flex-shrink: 0; }
.cx-selector {
  display: flex; align-items: center; gap: 5px;
  background: transparent; border: none;
  color: var(--sl); padding: 0 10px 0 11px;
  height: 36px; font-size: .9rem; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: color .2s, background .2s;
  user-select: none; position: relative;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
/* Show the currency code text (USD/GBP/INR/EUR/RUB) in the trigger button */
.cx-code { display: inline; font-size: .8rem; font-weight: 700; letter-spacing: .04em; }
/* Flag image in the trigger button */
.cx-flag { display: inline-block; width: 20px; height: 15px; object-fit: cover; border-radius: 2px; vertical-align: middle; }
/* Show the currency code text in dropdown rows */
.cx-opt-code { display: inline; }
.cx-selector:hover,
.cx-selector[aria-expanded="true"] { color: var(--gl); background: var(--gp); }
.cx-caret { font-size: .55rem; opacity: .6; transition: transform .2s; margin-left: 1px; }
.cx-selector[aria-expanded="true"] .cx-caret { transform: rotate(180deg); }

.cx-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--d3); border: 1px solid var(--br);
  border-radius: var(--radius-md); min-width: 200px;
  box-shadow: 0 12px 40px rgba(0,0,0,.45); z-index: 9999;
  list-style: none; overflow: hidden;
  animation: cx-drop-in .16s cubic-bezier(.34,1.56,.64,1);
}
@keyframes cx-drop-in {
  from { opacity: 0; transform: translateY(-4px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cx-selector[aria-expanded="true"] .cx-dropdown { display: block; }

.cx-opt {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 13px; cursor: pointer;
  transition: background .12s;
  font-size: .83rem;
}
.cx-opt:hover { background: var(--gp); }
.cx-opt-active { background: var(--gp2); }
.cx-opt-active .cx-opt-code { color: var(--gl); }
.cx-opt-flag { display: inline-block; width: 20px; height: 15px; object-fit: cover; border-radius: 2px; flex-shrink: 0; vertical-align: middle; }
.cx-opt-code { font-weight: 700; font-size: .8rem; min-width: 30px; color: var(--li); }
.cx-opt-sep  { color: var(--sl); font-size: .76rem; opacity: .5; }
.cx-opt-name { color: var(--sl); font-size: .76rem; }

/* Mobile currency selector — standalone (not inside nav-controls) */
.cx-wrap-mob .cx-selector {
  background: var(--b2); border: 1px solid var(--br);
  border-radius: var(--radius-sm);
  height: 34px; padding: 0 10px;
}
.cx-wrap-mob .cx-selector:hover,
.cx-wrap-mob .cx-selector[aria-expanded="true"] {
  background: var(--gp); border-color: var(--gl); color: var(--gl);
}
.cx-wrap-mob .cx-dropdown { right: 0; left: auto; }

/* Currency pill in nav bar — mobile only, before hamburger */
.cx-wrap-nav-mob {
  display: none; /* hidden on desktop */
  flex-shrink: 0;
  position: relative;
}
.cx-wrap-nav-mob .cx-selector {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  height: 34px;
  padding: 0 8px;
  color: var(--sl);
  font-size: .82rem;
  font-weight: 700;
  gap: 4px;
}
.cx-wrap-nav-mob .cx-selector:hover,
.cx-wrap-nav-mob .cx-selector[aria-expanded="true"] {
  background: var(--gp);
  border-color: var(--gl);
  color: var(--gl);
}
/* Dropdown opens left so it doesn't overflow off-screen */
.cx-wrap-nav-mob .cx-dropdown {
  right: 0;
  left: auto;
  top: calc(100% + 8px);
}
html[data-theme="light"] .cx-wrap-nav-mob .cx-selector {
  background: rgba(0,0,0,.05);
  border-color: rgba(0,0,0,.12);
  color: #555;
}
html[data-theme="light"] .cx-wrap-nav-mob .cx-selector:hover,
html[data-theme="light"] .cx-wrap-nav-mob .cx-selector[aria-expanded="true"] {
  background: rgba(212,175,55,.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* Light theme — currency selector */
html[data-theme="light"] .cx-selector { color: #555; }
html[data-theme="light"] .cx-selector:hover,
html[data-theme="light"] .cx-selector[aria-expanded="true"] { color: var(--gold); background: rgba(212,175,55,.1); }
html[data-theme="light"] .cx-dropdown { background: #fff; border-color: rgba(0,0,0,.1); box-shadow: 0 8px 32px rgba(0,0,0,.12); }
html[data-theme="light"] .cx-opt:hover { background: rgba(212,175,55,.08); }
html[data-theme="light"] .cx-opt-active { background: rgba(212,175,55,.1); }
html[data-theme="light"] .cx-opt-code { color: #222; }
html[data-theme="light"] .cx-opt-name { color: #666; }
html[data-theme="light"] .cx-wrap-mob .cx-selector { background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.12); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.5s ease; background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-ov1 {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,10,15,.88) 0%, rgba(8,15,24,.6) 60%, rgba(6,10,15,.4) 100%);
}
.hero-ov2 {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,12,16,.97) 0%, transparent 55%);
}
.hero-pat {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(212,175,55,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(212,175,55,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 10%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 10%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 76px 5% 60px; width: 100%;
  display: grid; grid-template-columns: 1fr 480px; gap: 5rem; align-items: center;
}
.slide-dots {
  position: absolute; bottom: 2rem; left: 5%; z-index: 3; display: flex; gap: 8px;
}
.sdot {
  width: 24px; height: 3px; background: rgba(255,255,255,.3);
  border-radius: 3px; cursor: pointer; transition: background .3s, width .3s;
}
.sdot.active { background: var(--gl); width: 40px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gp); border: 1px solid var(--br);
  padding: 6px 16px 6px 10px; border-radius: 50px; margin-bottom: 1.75rem;
}
.bdot {
  width: 8px; height: 8px; background: var(--gb);
  border-radius: 50%; flex-shrink: 0;
  animation: glow 2s ease infinite;
}
.hero-badge span { font-size: .72rem; font-weight: 700; color: var(--gl); letter-spacing: .12em; text-transform: uppercase; }
@keyframes glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(240,192,64,.5); }
  50%      { box-shadow: 0 0 0 7px rgba(240,192,64,0); }
}
.hero-h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800;
  color: var(--w); line-height: 1.1; margin-bottom: 1.25rem;
}
.hero-h1 em { color: var(--gl); font-style: normal; }
.hero-sub { font-size: 1.05rem; color: var(--sl); line-height: 1.75; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--gl), var(--gold));
  color: #000; font-weight: 800; font-size: .95rem;
  padding: 14px 32px; border-radius: var(--radius-md); border: none;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,175,55,.45); color: #000 !important; }
.btn-wa:hover  { color: #fff !important; }
.btn-outline {
  background: transparent; color: var(--li); font-weight: 600; font-size: .95rem;
  padding: 13px 28px; border-radius: var(--radius-md); border: 1px solid var(--b2);
  transition: var(--tr); display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--b2); border-color: var(--br); color: var(--w); }

/* Light theme btn-outline */
html[data-theme="light"] .btn-outline {
  color: #1a202c; border-color: rgba(0,0,0,.2);
}
html[data-theme="light"] .btn-outline:hover {
  background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.3); color: #111;
}

/* ── PAGE HERO (secondary pages) ── */
.page-hero {
  padding: 150px 5% 60px;
  background: linear-gradient(160deg, var(--d2) 0%, var(--d) 100%);
  border-bottom: 1px solid var(--br);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: .75rem; }
.page-hero p  { font-size: 1rem; color: var(--sl); max-width: 600px; }

/* ── BREADCRUMB ── */
.bc { font-size: .8rem; color: var(--sl); margin-bottom: 1rem; display: flex; gap: .4rem; flex-wrap: wrap; }
.bc a { color: var(--gl); }
.bc-sep { color: var(--sl); }

/* ── SECTION LAYOUT ── */
.section { padding: 80px 5%; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-title { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 800; text-align: center; margin-bottom: .75rem; }

/* Mobile-only line break — hidden on desktop, active on ≤640px */
.mob-br { display: none; }
@media (max-width: 640px) {
  .mob-br { display: block; }
}
.section-sub { font-size: 1rem; color: var(--sl); text-align: center; max-width: 560px; margin: 0 auto 3rem; }

/* ── BOOKING WIDGET CARD ── */
.bkcard {
  background: var(--d3); border: 1px solid var(--br);
  border-radius: var(--radius-lg); padding: 0; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.bkh { padding: 1.5rem 1.75rem; border-bottom: 1px solid var(--br); background: var(--gp); }
.bkh h3 { font-size: 1.1rem; font-weight: 700; color: var(--w); margin-bottom: .2rem; }
.bkh p  { font-size: .8rem; color: var(--sl); }
.bkbody { padding: 1.5rem 1.75rem; }

/* ── FORM GROUPS ── */
.fg { margin-bottom: .9rem; }
.fg label {
  display: block; font-size: .8rem; font-weight: 700;
  color: var(--sl); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px;
}
.fg input, .fg select, .fg textarea {
  width: 100%; background: rgba(255,255,255,.05); border: 1px solid var(--b2);
  border-radius: var(--radius-sm); padding: 11px 13px; color: var(--li);
  font-size: .92rem; font-family: var(--font-body); outline: none;
  transition: border-color .2s, background .2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gl); background: rgba(212,175,55,.04);
}
.fg select option { background: var(--d3); color: var(--li); }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }

/* ── AIRPORT CARDS ── */
.airports-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.ap-card {
  background: var(--d3); border: 1px solid var(--b2); border-radius: var(--radius-md);
  padding: 1.25rem; display: flex; flex-direction: column; gap: .5rem;
  transition: var(--tr); text-decoration: none; cursor: pointer;
}
.ap-card:hover { border-color: var(--br); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.ap-card-head { display: flex; justify-content: space-between; align-items: flex-start; }
.ap-city  { font-size: 1rem; font-weight: 700; color: var(--w); }
.ap-state { font-size: .72rem; color: var(--sl); margin-top: 2px; }
.ap-iata  { font-size: .72rem; font-weight: 800; color: var(--gl); letter-spacing: .08em; background: var(--gp); padding: 3px 8px; border-radius: 4px; }
.ap-name  { font-size: .78rem; color: var(--sl); line-height: 1.4; }
.ap-prices { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .25rem; }
.apt-price-box {
  background: var(--gp2); border: 1px solid var(--br); border-radius: 6px;
  padding: 6px 10px; flex: 1; min-width: 90px;
}
.pbl { display: block; font-size: .6rem; font-weight: 700; color: var(--sl); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 2px; }
.pbv { display: block; font-size: .9rem; font-weight: 700; color: var(--gl); }
.ap-book-btn {
  display: block; margin-top: .5rem; font-size: .78rem; font-weight: 700; color: var(--gl);
  background: var(--gp); border: 1px solid var(--br); border-radius: 6px;
  padding: 8px 12px; text-align: center; transition: var(--tr);
}
.ap-card:hover .ap-book-btn { background: var(--gl); color: #000; }

/* ── PRICE DISPLAY ── */
.price-display {
  background: var(--gp); border: 1px solid var(--br); border-radius: var(--radius-md);
  padding: 1.25rem; text-align: center; margin-top: .75rem;
}
.pd-label { font-size: .7rem; font-weight: 700; color: var(--sl); text-transform: uppercase; letter-spacing: .08em; }
.pd-price { font-size: 2rem; font-weight: 800; color: var(--gl); margin: .25rem 0; }
.pd-breakdown { font-size: .75rem; color: var(--sl); }

/* ── STATUS BADGES ── */
.badge {
  display: inline-flex; padding: 3px 9px; border-radius: 20px;
  font-size: .63rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.b-pending   { background: rgba(251,191,36,.13); color: #fbbf24; border: 1px solid rgba(251,191,36,.3); }
.b-in.queue  { background: rgba(59,130,246,.13);  color: #60a5fa; border: 1px solid rgba(59,130,246,.3); }
.b-confirmed { background: rgba(59,130,246,.13);  color: #60a5fa; border: 1px solid rgba(59,130,246,.3); }
.b-paid      { background: rgba(16,185,129,.13);  color: #34d399; border: 1px solid rgba(16,185,129,.3); }
.b-completed { background: rgba(34,197,94,.13);   color: #4ade80; border: 1px solid rgba(34,197,94,.3); }
.b-cancelled { background: rgba(239,68,68,.13);   color: #f87171; border: 1px solid rgba(239,68,68,.3); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--d3), var(--d2));
  border-top: 1px solid var(--br); border-bottom: 1px solid var(--br);
  padding: 60px 5%; text-align: center;
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: .75rem; }
.cta-band p  { color: var(--sl); margin-bottom: 2rem; max-width: 520px; margin-inline: auto; }
.cta-btns    { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--d2); border-bottom: 1px solid var(--b2);
  padding: 18px 5%; display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem;
}
.ts-item { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--sl); }
.ts-item strong { color: var(--li); font-weight: 700; }

/* ── FAQ ── */
.faq-item { border: 1px solid var(--b2); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: .65rem; }
.faq-q {
  padding: 1rem 1.25rem; font-size: .9rem; font-weight: 600; color: var(--li);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: background .2s;
}
.faq-q:hover { background: var(--gp2); }
.faq-q::after { content: '+'; color: var(--gl); font-size: 1.2rem; font-weight: 300; flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { padding: 0 1.25rem; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; font-size: .87rem; color: var(--sl); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 400px; padding: .75rem 1.25rem 1.25rem; }

/* ── FOOTER ── */
.site-footer {
  background: linear-gradient(180deg, var(--d2) 0%, var(--d) 100%);
  padding: 0 0 0;
  position: relative;
  overflow: hidden;
}
/* Subtle radial glow in corner */
.site-footer::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(212,175,55,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Animated gold top bar */
.footer-topbar {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gl) 30%, #a07820 60%, var(--gl) 80%, transparent 100%);
  background-size: 200% 100%;
  animation: footer-shimmer 3s linear infinite;
}
@keyframes footer-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 5%; }

/* ── CTA Strip ── */
.footer-cta-strip {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(212,175,55,.15);
  margin-bottom: 3rem;
}
.footer-cta-text {
  display: flex; align-items: center; gap: .75rem;
  font-size: .95rem; font-weight: 600; color: var(--li);
}
.footer-cta-plane {
  font-size: 1.4rem;
  display: inline-block;
  animation: footer-plane 4s ease-in-out infinite;
}
@keyframes footer-plane {
  0%,100% { transform: translateX(0) rotate(0deg); }
  40%     { transform: translateX(8px) rotate(5deg); }
  80%     { transform: translateX(-4px) rotate(-3deg); }
}
.footer-cta-btn {
  padding: .6rem 1.5rem;
  background: linear-gradient(135deg, var(--gl), #a07820);
  color: #000; font-weight: 700; font-size: .88rem;
  border-radius: 50px; text-decoration: none;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s, filter .2s;
  box-shadow: 0 3px 16px rgba(212,175,55,.3);
}
.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,175,55,.5);
  filter: brightness(1.1);
}

/* ── Grid ── */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

/* ── Brand col ── */
.footer-brand {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 1rem;
}
.footer-logo-wrap {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gl), #a07820);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 3px 12px rgba(212,175,55,.3);
}
.footer-brand-name {
  font-size: 1.1rem; font-weight: 800; color: var(--li); line-height: 1.2;
}
.footer-brand-sub {
  font-size: .78rem; color: var(--sl); margin-top: 1px;
}
.footer-tagline {
  font-size: .88rem; color: var(--sl); line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Contact items */
.footer-contact-list { display: flex; flex-direction: column; gap: .55rem; }
.footer-contact-item {
  font-size: .88rem; color: var(--sl);
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  padding: .5rem .85rem;
  border-radius: 10px;
  border: 1px solid rgba(212,175,55,.2);
  background: rgba(212,175,55,.04);
  transition: color .22s, background .22s, border-color .22s, transform .22s, box-shadow .22s;
}
.footer-contact-item:hover {
  color: var(--gl) !important;
  background: rgba(212,175,55,.10);
  border-color: rgba(212,175,55,.45);
  box-shadow: 0 4px 18px rgba(212,175,55,.12);
  transform: translateX(5px);
}
.footer-wa {
  border-color: rgba(37,211,102,.25);
  background: rgba(37,211,102,.05);
}
.footer-wa:hover {
  color: #25d366 !important;
  background: rgba(37,211,102,.12) !important;
  border-color: rgba(37,211,102,.5) !important;
  box-shadow: 0 4px 18px rgba(37,211,102,.12) !important;
}
.fci-icon { font-size: 1rem; flex-shrink: 0; }

/* ── Nav cols ── */
.footer-col-title {
  font-size: .72rem; font-weight: 800; color: var(--gl);
  text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 1.1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(212,175,55,.2);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .1rem; }
.footer-links a {
  font-size: .88rem; color: var(--sl);
  text-decoration: none;
  padding: .35rem 0 .35rem .5rem;
  border-left: 2px solid transparent;
  display: block;
  transition: color .2s, border-color .2s, padding-left .2s;
}
.footer-links a:hover {
  color: var(--gl);
  border-left-color: var(--gl);
  padding-left: 1rem;
}

/* ── Trust badges ── */
.footer-badges {
  display: flex; flex-wrap: wrap; gap: .6rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--b2);
  border-bottom: 1px solid var(--b2);
  margin-bottom: 1.5rem;
  justify-content: center;
}
.footer-badge {
  display: flex; align-items: center; gap: .4rem;
  font-size: .75rem; color: var(--sl);
  background: rgba(212,175,55,.06);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: 50px;
  padding: .3rem .85rem;
  transition: background .2s, color .2s, transform .2s;
}
.footer-badge span { color: var(--gl); font-weight: 700; }
.footer-badge:hover {
  background: rgba(212,175,55,.12);
  color: var(--li);
  transform: translateY(-2px);
}

/* ── Bottom bar ── */
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
  padding: 1.25rem 0 2rem;
}
.footer-copy {
  font-size: .82rem; color: var(--sl); line-height: 1.6;
}
.footer-copy strong { color: var(--li); }
.footer-copy a { color: var(--gl); text-decoration: none; }
.footer-copy a:hover { text-decoration: underline; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: .82rem; color: var(--sl);
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.footer-bottom-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gl);
  transition: width .25s ease;
}
.footer-bottom-links a:hover { color: var(--gl); }
.footer-bottom-links a:hover::after { width: 100%; }

/* ── Scroll-reveal ── */
.footer-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.footer-reveal.footer-revealed { opacity: 1; transform: translateY(0); }
.footer-reveal-d1 { transition-delay: .1s; }
.footer-reveal-d2 { transition-delay: .2s; }
.footer-reveal-d3 { transition-delay: .3s; }

/* ── TOAST NOTIFICATION ── */
.toast {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  background: var(--d3); border: 1px solid var(--br); color: var(--li);
  padding: .8rem 1.1rem; border-radius: var(--radius-sm); font-size: .82rem;
  z-index: 9999; opacity: 0; transform: translateY(8px);
  transition: .28s; pointer-events: none; box-shadow: var(--shadow-md);
  max-width: 320px;
}
.toast.on { opacity: 1; transform: translateY(0); }

/* ── MARQUEE / AIRPORT TICKER ── */
.marquee { overflow: hidden; border-top: 1px solid var(--b2); border-bottom: 1px solid var(--b2); padding: 12px 0; background: var(--d2); }
.marquee-track { display: flex; gap: 2.5rem; white-space: nowrap; animation: marquee 30s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.mit { font-size: .78rem; color: var(--sl); font-weight: 500; }
.mit strong { color: var(--gl); }

/* ── SERVICE CARDS ── */
.svc-grid   { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.svc-card   { background: var(--d3); border: 1px solid var(--b2); border-radius: var(--radius-md); padding: 1.5rem; transition: var(--tr); }
.svc-card:hover { border-color: var(--br); transform: translateY(-3px); }
.svc-icon   { font-size: 2rem; margin-bottom: 1rem; }
.svc-card h3 { font-size: .95rem; font-weight: 700; color: var(--w); margin-bottom: .5rem; }
.svc-card p  { font-size: .82rem; color: var(--sl); line-height: 1.6; }

/* ── HOW IT WORKS STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.step-c { background: var(--d3); border: 1px solid var(--b2); border-radius: var(--radius-md); padding: 1.75rem; position: relative; text-align: center; }
.step-n { font-size: 3rem; font-weight: 800; color: var(--gp); position: absolute; top: 1rem; right: 1.25rem; line-height: 1; }
.step h3 { font-size: .95rem; font-weight: 700; color: var(--w); margin-bottom: .5rem; }
.step p  { font-size: .82rem; color: var(--sl); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.tcard { background: var(--d3); border: 1px solid var(--b2); border-radius: var(--radius-md); padding: 1.5rem; transition: var(--tr); }
.tcard:hover { border-color: var(--br); }
.tcard .stars { color: var(--gl); font-size: .9rem; margin-bottom: .75rem; }
.tbody { font-size: .85rem; color: var(--sl); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.tname { font-size: .82rem; font-weight: 700; color: var(--li); }

/* ── ADMIN LOGIN ── */
.admin-login-body {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,55,.08) 0%, transparent 70%),
              var(--d);
}
.admin-login-body #nav { display: none; }
.admin-login-body .site-footer { display: none; }
.admin-login-wrap {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 1rem;
}
.admin-login-card {
  width: 100%; max-width: 420px;
  background: var(--d3);
  border: 1px solid var(--br);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(212,175,55,.08);
  animation: fadeUp .4s ease both;
}
.admin-login-logo {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--w);
  font-family: var(--font-heading);
}
.admin-login-logo span { font-size: 1.75rem; margin-right: .35rem; }
.admin-login-logo small {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gl);
  margin-top: .3rem;
}
.btn-block { display: block; width: 100%; text-align: center; }
.form-error {
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.35);
  color: #f87171;
  border-radius: var(--radius-sm);
  padding: .65rem .9rem;
  font-size: .82rem;
  margin-bottom: .75rem;
}
html[data-theme="light"] .admin-login-card {
  background: #fff;
  border-color: rgba(212,175,55,.3);
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
}

/* ── ADMIN PANEL ── */

/* Hide site nav / footer on admin pages */
.admin-body #nav        { display: none; }
.admin-body .site-footer { display: none; }

/* CSS var aliases used by Chart.js config in admin pages */
:root   { --border: rgba(255,255,255,.07); --t: #EEF2F7; --tm: #8FA0B8; }
html[data-theme="light"] { --border: rgba(0,0,0,.08); --t: #1a202c; --tm: #4a5568; }

/* Layout */
.admin-layout, .admin-wrap {
  display: flex; min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--d2); border-right: 1px solid var(--b2);
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
  transition: width .25s ease;
}
.admin-sidebar.collapsed { width: 0; overflow: hidden; }
.admin-sidebar-header {
  display: flex; align-items: center; gap: 10px;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--b2);
  font-size: .88rem; font-weight: 700; color: var(--w);
  background: var(--gp); white-space: nowrap;
}
.admin-logo-icon { font-size: 1.2rem; }
.admin-nav { padding: .5rem 0; }
.admin-nav-link, .admin-nav-item {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 1.5rem; font-size: .85rem; color: var(--sl);
  text-decoration: none; transition: background .15s, color .15s;
  border: none; border-left: 3px solid transparent;
  background: none; width: 100%; cursor: pointer; white-space: nowrap;
}
.admin-nav-link:hover, .admin-nav-item:hover { background: var(--gp); color: var(--gl); }
.admin-nav-link.active, .admin-nav-item.active {
  background: var(--gp); color: var(--gl);
  font-weight: 700; border-left-color: var(--gl);
}

/* Main area */
.admin-main {
  flex: 1; min-width: 0; padding: 1.5rem;
  overflow-x: hidden;
}
.admin-main.sidebar-collapsed { margin-left: 0; }

/* Topbar — bleeds to the edges via negative margin */
.admin-topbar {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin: -1.5rem -1.5rem 1.5rem;
  padding: .9rem 1.5rem;
  background: var(--d2); border-bottom: 1px solid var(--b2);
  position: sticky; top: 0; z-index: 200;
}
.admin-sidebar-toggle {
  background: var(--b2); border: 1px solid var(--b2); color: var(--li);
  padding: 6px 10px; border-radius: var(--radius-sm); font-size: .95rem;
  transition: var(--tr); flex-shrink: 0;
}
.admin-sidebar-toggle:hover { background: var(--gp); color: var(--gl); }
.admin-page-title {
  flex: 1; font-size: 1.05rem; font-weight: 700; color: var(--w); margin: 0;
}
.admin-user-badge {
  font-size: .72rem; font-weight: 600; color: var(--sl);
  background: var(--b2); border: 1px solid var(--b2);
  padding: 4px 12px; border-radius: 20px; white-space: nowrap;
}

/* Cards */
.admin-card {
  background: var(--d3); border: 1px solid var(--b2);
  border-radius: 12px; padding: 1.5rem; margin-bottom: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.admin-card h3, .admin-card-title {
  font-size: 1rem; font-weight: 700; color: var(--w); margin-bottom: 1.25rem;
}

/* Stats */
.stat-grid, .admin-stat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem; margin-bottom: 1.5rem;
}
.stat-card {
  background: var(--d2); border: 1px solid var(--b2);
  border-radius: var(--radius-md); padding: 1.25rem;
}
.stat-card-gold { border-color: var(--br); background: var(--gp2); }
.stat-val  { font-size: 2rem; font-weight: 800; color: var(--gl); line-height: 1; }
.stat-label, .stat-lbl { font-size: .72rem; color: var(--sl); margin-top: 4px; }

/* Status badges */
.status-badge {
  display: inline-flex; padding: 3px 10px; border-radius: 20px;
  font-size: .63rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.badge-warn { background: rgba(251,191,36,.13); color: #fbbf24; border: 1px solid rgba(251,191,36,.3); }
.badge-info { background: rgba(59,130,246,.13);  color: #60a5fa; border: 1px solid rgba(59,130,246,.3); }
.badge-ok   { background: rgba(16,185,129,.13);  color: #34d399; border: 1px solid rgba(16,185,129,.3); }
.badge-done { background: rgba(99,102,241,.13);  color: #818cf8; border: 1px solid rgba(99,102,241,.3); }
.badge-err  { background: rgba(239,68,68,.13);   color: #f87171; border: 1px solid rgba(239,68,68,.3); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: var(--radius-sm); border: none;
  font-size: .85rem; font-weight: 600; cursor: pointer;
  transition: var(--tr); font-family: var(--font-body); text-decoration: none;
  white-space: nowrap;
}
.btn-sm { padding: 6px 14px; font-size: .78rem; }
.btn-secondary {
  background: var(--b2); border: 1px solid var(--b2); color: var(--li);
}
.btn-secondary:hover { background: var(--gp); border-color: var(--br); color: var(--gl); }
.btn-danger {
  background: rgba(239,68,68,.15); border: 1px solid rgba(239,68,68,.3); color: #f87171;
}
.btn-danger:hover { background: rgba(239,68,68,.28); }

/* ── Form label / input (admin variant — complements .fg) */
.form-label {
  display: block; font-size: .78rem; font-weight: 700;
  color: var(--sl); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 5px;
}
.form-input {
  width: 100%; background: rgba(255,255,255,.05); border: 1px solid var(--b2);
  border-radius: var(--radius-sm); padding: 10px 13px; color: var(--li);
  font-size: .92rem; font-family: var(--font-body); outline: none;
  transition: border-color .2s, background .2s;
}
.form-input:focus { border-color: var(--gl); background: rgba(212,175,55,.04); }
.form-input option { background: var(--d3); color: var(--li); }

/* Modals */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.72); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay[hidden] { display: none !important; }
.modal-box {
  background: var(--d3); border: 1px solid var(--br);
  border-radius: var(--radius-lg); padding: 2rem;
  width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-box h3 { font-size: 1.1rem; font-weight: 700; color: var(--w); margin-bottom: 1.25rem; }
.modal-body { margin-bottom: 1.25rem; }

/* ── TABLE (ag-table) ── */
.ag-table-wrap { overflow-x: auto; }
.ag-table { width: 100%; border-collapse: collapse; font-size: .83rem; }
.ag-table thead tr { background: var(--gp); }
.ag-table th { padding: 10px 14px; text-align: left; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--gl); white-space: nowrap; }
.ag-table td { padding: 10px 14px; border-bottom: 1px solid var(--b2); color: var(--li); vertical-align: middle; }
.ag-table tbody tr:hover { background: var(--gp2); }

/* ══════════════════════════════════════════════════════════════════
   LIGHT THEME — CSS variable overrides are now injected by PHP
   via renderStyleTag() from the style_settings DB table.
   The html[data-theme="light"] { --d, --d2, etc. } block is
   generated dynamically so the Style Manager controls both themes.
   ══════════════════════════════════════════════════════════════════ */

/* ── Base ── */
html[data-theme="light"] body              { background: var(--d); color: var(--li); }
html[data-theme="light"] h1, html[data-theme="light"] h2,
html[data-theme="light"] h3, html[data-theme="light"] h4,
html[data-theme="light"] h5, html[data-theme="light"] h6 { color: var(--li); }
html[data-theme="light"] #cursor,
html[data-theme="light"] #cursor-ring      { display: none !important; }
html[data-theme="light"] ::-webkit-scrollbar-track { background: #e5e7eb; }
html[data-theme="light"] ::-webkit-scrollbar-thumb { background: var(--gl); }

/* ── Navigation ── */
/* Always show white nav in light mode — nav text is dark so needs a light bg
   regardless of what's behind it (dark hero images, etc.) */
html[data-theme="light"] #nav {
  background: rgba(255,255,255,.97) !important;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--br);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
html[data-theme="light"] #nav.scrolled     { box-shadow: 0 2px 20px rgba(0,0,0,.1); }
html[data-theme="light"] .nav-ul a         { color: var(--sl); }
html[data-theme="light"] .nav-ul a:hover   { background: rgba(0,0,0,.05); color: var(--li); }
html[data-theme="light"] .logo-text        { color: var(--li); }
html[data-theme="light"] .hb span          { background: var(--sl); }
html[data-theme="light"] .mob              { background: var(--d); }
html[data-theme="light"] .mob a            { color: var(--sl); border-bottom-color: var(--br); }
html[data-theme="light"] .theme-toggle     { background: rgba(0,0,0,.06); border-color: var(--br); color: var(--sl); }
html[data-theme="light"] .nav-link-dash    { color: var(--sl) !important; }
html[data-theme="light"] .nav-dash-btn    { border-color: var(--br) !important; color: var(--sl) !important; }
html[data-theme="light"] .nav-dash-btn:hover { background: var(--gp) !important; border-color: var(--gl) !important; color: var(--gl) !important; }
html[data-theme="light"] .mob-btn-dash    { background: rgba(0,0,0,.04) !important; border-color: var(--br) !important; color: var(--sl) !important; }

/* ── Homepage hero (image + overlay are inline children — hide them, show light bg) ── */
html[data-theme="light"] .hero {
  background: linear-gradient(160deg, var(--d2) 0%, var(--d3) 60%, var(--d) 100%) !important;
}
html[data-theme="light"] .hero > img { opacity: 0 !important; }
html[data-theme="light"] .hero > div:first-child { opacity: 0 !important; }
html[data-theme="light"] .hero h1   { color: var(--li) !important; }
html[data-theme="light"] .hero h1 span { color: var(--gl) !important; }
html[data-theme="light"] .hero p    { color: var(--sl) !important; }
html[data-theme="light"] .hero .btn-hero-secondary {
  background: rgba(0,0,0,.06) !important;
  border-color: var(--br) !important;
  color: var(--sl) !important;
}
html[data-theme="light"] .hero .btn-hero-secondary:hover {
  background: var(--gp) !important;
  border-color: var(--gl) !important;
  color: var(--li) !important;
}
/* Trust strip items inside hero */
html[data-theme="light"] .hero [style*="rgba(238,242,247"] { color: var(--sl) !important; }

/* ── Forms (public .fg variant) ── */
html[data-theme="light"] .fg input,
html[data-theme="light"] .fg select,
html[data-theme="light"] .fg textarea      { background: var(--d); border-color: var(--br); color: var(--li); }
html[data-theme="light"] .fg label         { color: var(--sl); }

/* ── Airport cards ── */
html[data-theme="light"] .ap-card          { background: var(--d2); border-color: var(--br); }
html[data-theme="light"] .ap-card:hover    { border-color: var(--gl); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
html[data-theme="light"] .ap-city          { color: var(--li); }
html[data-theme="light"] .ap-name          { color: var(--sl); }
html[data-theme="light"] .ap-state         { color: var(--sl); }
html[data-theme="light"] .apt-price-box    { background: var(--gp2); border-color: var(--gp); }
html[data-theme="light"] .pbl              { color: var(--sl); }
html[data-theme="light"] .ap-book-btn      { color: var(--gl); background: var(--gp2); border-color: var(--gp); }
html[data-theme="light"] .ap-card:hover .ap-book-btn { background: var(--gl); color: var(--d); }

/* ── Badges / status ── */
html[data-theme="light"] .status-badge.badge-warn { background: rgba(251,191,36,.18);  color: #92400e; border-color: rgba(251,191,36,.4); }
html[data-theme="light"] .status-badge.badge-info { background: rgba(59,130,246,.12);  color: #1d4ed8; border-color: rgba(59,130,246,.3); }
html[data-theme="light"] .status-badge.badge-ok   { background: rgba(16,185,129,.12);  color: #065f46; border-color: rgba(16,185,129,.3); }
html[data-theme="light"] .status-badge.badge-done { background: rgba(99,102,241,.12);  color: #3730a3; border-color: rgba(99,102,241,.3); }
html[data-theme="light"] .status-badge.badge-err  { background: rgba(239,68,68,.12);   color: #991b1b; border-color: rgba(239,68,68,.3); }

/* ── Buttons (admin .btn variants) ── */
html[data-theme="light"] .btn-secondary    { background: rgba(0,0,0,.05); border-color: var(--br); color: var(--sl); }
html[data-theme="light"] .btn-secondary:hover { background: var(--gp); border-color: var(--gl); color: var(--li); }
html[data-theme="light"] .btn-danger       { background: rgba(239,68,68,.08); border-color: rgba(239,68,68,.25); color: #b91c1c; }
html[data-theme="light"] .btn-danger:hover { background: rgba(239,68,68,.18); }

/* ── Public page sections ── */
html[data-theme="light"] .page-hero        { background: linear-gradient(160deg, var(--d2) 0%, var(--d3) 100%) !important; border-bottom-color: var(--br); }
html[data-theme="light"] .page-hero h1     { color: var(--li); }
html[data-theme="light"] .page-hero p      { color: var(--sl); }
html[data-theme="light"] .cta-band         { background: linear-gradient(135deg, var(--d2), var(--d3)); border-color: var(--br); }
html[data-theme="light"] .cta-band h2      { color: var(--li); }
html[data-theme="light"] .cta-band p       { color: var(--sl); }
html[data-theme="light"] .section          { background: var(--d); }
html[data-theme="light"] .section-title    { color: var(--li); }
/* Accent gold on light theme — use var(--gl) */
html[data-theme="light"] .wwa-faq-accent,
html[data-theme="light"] .wwa-hero-accent,
html[data-theme="light"] .airports-hero-accent,
html[data-theme="light"] .ww-hero-accent,
html[data-theme="light"] .wwa-about-badge,
html[data-theme="light"] .wwa-faq-tag,
html[data-theme="light"] .wwa-hero-badge,
html[data-theme="light"] .ww-hero-badge,
html[data-theme="light"] .wwa-apt-tile-code,
html[data-theme="light"] .wwa-fact strong,
html[data-theme="light"] .wwa-why-stat-num { color: var(--gl); }
html[data-theme="light"] .section-sub      { color: var(--sl); }
html[data-theme="light"] .trust-strip      { background: var(--d2); border-color: var(--br); }
html[data-theme="light"] .ts-item          { color: var(--sl); }
html[data-theme="light"] .ts-item strong   { color: var(--li); }
html[data-theme="light"] .svc-card         { background: var(--d2); border-color: var(--br); }
html[data-theme="light"] .svc-card:hover   { border-color: var(--gl); }
html[data-theme="light"] .svc-card h3      { color: var(--li); }
html[data-theme="light"] .svc-card p       { color: var(--sl); }
html[data-theme="light"] .step-c           { background: var(--d2); border-color: var(--br); }
html[data-theme="light"] .step h3          { color: var(--li); }
html[data-theme="light"] .step p           { color: var(--sl); }
html[data-theme="light"] .tcard            { background: var(--d2); border-color: var(--br); }
html[data-theme="light"] .tcard:hover      { border-color: var(--gl); }
html[data-theme="light"] .tbody            { color: var(--sl); }
html[data-theme="light"] .tname            { color: var(--li); }
html[data-theme="light"] .faq-item         { border-color: var(--br); }
html[data-theme="light"] .faq-q            { color: var(--li); }
html[data-theme="light"] .faq-a            { color: var(--sl); }
html[data-theme="light"] .bkcard           { background: var(--d); border-color: var(--br); }
html[data-theme="light"] .bkh              { background: var(--gp2); border-color: var(--br); }
html[data-theme="light"] .bkh h3           { color: var(--li); }
html[data-theme="light"] .bkh p            { color: var(--sl); }
html[data-theme="light"] .price-display    { background: var(--gp2); border-color: var(--gp); }
html[data-theme="light"] .pd-label         { color: var(--sl); }
html[data-theme="light"] .pd-breakdown     { color: var(--sl); }
html[data-theme="light"] .marquee          { background: var(--d2); border-color: var(--br); }
html[data-theme="light"] .mit              { color: var(--sl); }
html[data-theme="light"] .filter-tab       { border-color: var(--br); color: var(--sl); background: var(--d); }
html[data-theme="light"] .filter-tab:hover { border-color: var(--gl); color: var(--gl); background: var(--gp2); }
html[data-theme="light"] .airports-filter-bar { background: var(--d2); border-bottom-color: var(--br); }

/* ── Airports page — row/card text fixes ── */
html[data-theme="light"] .airport-row-city   { color: var(--li); }
html[data-theme="light"] .airport-row-seo    { color: var(--gl); }
html[data-theme="light"] .airport-card-seo   { color: var(--gl); }
html[data-theme="light"] .airport-card-name  { color: var(--sl); }
html[data-theme="light"] .airport-row-book:hover { color: var(--d) !important; }
html[data-theme="light"] .section-alt p      { color: var(--sl); }

/* ── page-hero-title (404, legal, other standalone pages) ── */
html[data-theme="light"] .page-hero-title    { color: var(--li) !important; }

/* ── Blog listing cards ── */
html[data-theme="light"] .bc-read            { color: var(--gl); }
html[data-theme="light"] .bc-read:hover      { color: var(--gold) !important; }
html[data-theme="light"] .bc-meta            { border-top-color: var(--br); }

/* ── Services page tags & labels ── */
html[data-theme="light"] .svc-tag            { color: var(--gl); background: var(--gp); border-color: var(--gp); }
html[data-theme="light"] .btn-svc-primary:hover,
html[data-theme="light"] .btn-svc-cta:hover  { color: var(--d) !important; }
html[data-theme="light"] .btn-svc-wa:hover   { color: #fff !important; }

/* ── Dashboard tracking page ── */
html[data-theme="light"] .track-page-title span { color: var(--gl); }
html[data-theme="light"] .track-banner-warn     { color: var(--gl); }
html[data-theme="light"] code                   { color: var(--gl); background: var(--gp); }

/* ── Footer ── */
html[data-theme="light"] .site-footer           { background: linear-gradient(180deg, var(--d2) 0%, var(--d3) 100%); }
html[data-theme="light"] .footer-tagline        { color: var(--sl); }
html[data-theme="light"] .footer-brand-name     { color: var(--li); }
html[data-theme="light"] .footer-brand-sub      { color: var(--sl); }
html[data-theme="light"] .footer-copy           { color: var(--sl); }
html[data-theme="light"] .footer-copy strong    { color: var(--li); }
html[data-theme="light"] .footer-copy a         { color: var(--gl); }
html[data-theme="light"] .footer-bottom-links a { color: var(--sl); }
html[data-theme="light"] .footer-bottom-links a:hover { color: var(--gl); }
html[data-theme="light"] .footer-col-title      { color: var(--gl); border-bottom-color: var(--gp); }
html[data-theme="light"] .footer-links a        { color: var(--sl); }
html[data-theme="light"] .footer-links a:hover  { color: var(--gl); }
html[data-theme="light"] .footer-contact-item        { color: var(--sl); border-color: var(--gp); background: var(--gp2); }
html[data-theme="light"] .footer-contact-item:hover  { color: var(--gl) !important; background: var(--gp); border-color: var(--gl); box-shadow: 0 4px 18px rgba(0,0,0,.06); }
html[data-theme="light"] .footer-wa                  { border-color: rgba(37,211,102,.3); background: rgba(37,211,102,.06); }
html[data-theme="light"] .footer-wa:hover            { color: #1a9e4a !important; background: rgba(37,211,102,.12) !important; border-color: rgba(37,211,102,.5) !important; }
html[data-theme="light"] .footer-cta-strip      { border-bottom-color: var(--gp); }
html[data-theme="light"] .footer-cta-text       { color: var(--li); }
html[data-theme="light"] .footer-badge          { color: var(--sl); background: var(--gp2); border-color: var(--gp); }
html[data-theme="light"] .footer-badge:hover    { color: var(--li); background: var(--gp); }
html[data-theme="light"] .footer-badges         { border-color: var(--br); }
html[data-theme="light"] .footer-bottom         { border-top-color: var(--br); }

/* ── ag-table ── */
html[data-theme="light"] .ag-table thead tr { background: var(--gp2); }
html[data-theme="light"] .ag-table td       { border-bottom-color: var(--br); color: var(--sl); }

/* ════════════════════════════════════════════════════
   ADMIN PANEL — LIGHT THEME (comprehensive)
   ════════════════════════════════════════════════════ */
html[data-theme="light"] .admin-layout     { background: #f0f2f5; }
html[data-theme="light"] .admin-main       { background: #f0f2f5; }

/* Sidebar */
html[data-theme="light"] .admin-sidebar    { background: #1a1f2e; border-right-color: rgba(255,255,255,.06); box-shadow: 2px 0 12px rgba(0,0,0,.1); }
html[data-theme="light"] .admin-sidebar-header { background: rgba(212,175,55,.08); border-bottom-color: rgba(255,255,255,.06); color: #fff; }
html[data-theme="light"] .admin-logo-icon  { color: var(--gl); }
html[data-theme="light"] .admin-nav-link   { color: rgba(255,255,255,.65); border-left-color: transparent; }
html[data-theme="light"] .admin-nav-link:hover { background: rgba(212,175,55,.1); color: #fff; }
html[data-theme="light"] .admin-nav-link.active { background: rgba(212,175,55,.15); color: var(--gl); border-left-color: var(--gl); font-weight: 700; }

/* Topbar */
html[data-theme="light"] .admin-topbar     { background: #fff; border-bottom-color: #e5e7eb; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
html[data-theme="light"] .admin-page-title { color: #111827; }
html[data-theme="light"] .admin-sidebar-toggle { background: #f3f4f6; border-color: #e5e7eb; color: #374151; }
html[data-theme="light"] .admin-sidebar-toggle:hover { background: rgba(212,175,55,.1); color: var(--gl); border-color: var(--gl); }
html[data-theme="light"] .admin-user-badge { background: #f3f4f6; border-color: #e5e7eb; color: #6b7280; }

/* Cards */
html[data-theme="light"] .admin-card       { background: #fff; border-color: #e5e7eb; box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.02); border-radius: 12px; }
html[data-theme="light"] .admin-card-title,
html[data-theme="light"] .admin-card h3    { color: #111827; }

/* Stat cards */
html[data-theme="light"] .stat-card        { background: #fff; border-color: #e5e7eb; box-shadow: 0 1px 3px rgba(0,0,0,.04); }
html[data-theme="light"] .stat-val         { color: var(--gl); }
html[data-theme="light"] .stat-label       { color: #6b7280; }
html[data-theme="light"] .stat-card-v2     { background: #fff; border-color: #e5e7eb; box-shadow: 0 1px 3px rgba(0,0,0,.04); }
html[data-theme="light"] .stat-card-v2.gold { background: rgba(212,175,55,.05); border-color: rgba(212,175,55,.2); }
html[data-theme="light"] .stat-val-v2      { color: var(--gl); }
html[data-theme="light"] .stat-label-v2    { color: #6b7280; }
html[data-theme="light"] .stat-icon        { background: rgba(212,175,55,.08); border-color: rgba(212,175,55,.2); }
html[data-theme="light"] .stat-icon.blue   { background: rgba(59,130,246,.08); border-color: rgba(59,130,246,.2); }
html[data-theme="light"] .stat-icon.green  { background: rgba(16,185,129,.08); border-color: rgba(16,185,129,.2); }
html[data-theme="light"] .stat-icon.red    { background: rgba(239,68,68,.08); border-color: rgba(239,68,68,.2); }

/* Forms */
html[data-theme="light"] .form-label       { color: #4b5563; }
html[data-theme="light"] .form-input       { background: #f9fafb; border-color: #d1d5db; color: #111827; }
html[data-theme="light"] .form-input:focus { border-color: var(--gl); background: #fff; box-shadow: 0 0 0 3px rgba(212,175,55,.1); }
html[data-theme="light"] .form-input option { background: #fff; color: #111827; }
html[data-theme="light"] .form-error       { background: rgba(239,68,68,.06); border-color: rgba(239,68,68,.2); color: #b91c1c; }

/* Filter bar */
html[data-theme="light"] .admin-filter-bar { background: #fff; border-color: #e5e7eb; box-shadow: 0 1px 3px rgba(0,0,0,.04); }

/* Data tables */
html[data-theme="light"] .data-table thead tr { background: #f9fafb; border-bottom-color: #e5e7eb; }
html[data-theme="light"] .data-table th    { color: #374151; }
html[data-theme="light"] .data-table td    { border-bottom-color: #f3f4f6; color: #111827; }
html[data-theme="light"] .data-table tbody tr:hover { background: rgba(212,175,55,.04); }
html[data-theme="light"] .ag-table thead tr { background: #f9fafb; }
html[data-theme="light"] .ag-table th      { color: #374151; }
html[data-theme="light"] .ag-table td      { border-bottom-color: #f3f4f6; color: #111827; }
html[data-theme="light"] .ag-table tbody tr:hover { background: rgba(212,175,55,.04); }

/* Buttons */
html[data-theme="light"] .btn-secondary   { background: #f3f4f6; border-color: #e5e7eb; color: #374151; }
html[data-theme="light"] .btn-secondary:hover { background: rgba(212,175,55,.1); border-color: rgba(212,175,55,.3); color: var(--gl); }

/* Modals */
html[data-theme="light"] .modal-overlay    { background: rgba(0,0,0,.45); }
html[data-theme="light"] .modal-box        { background: #fff; border-color: rgba(0,0,0,.1); box-shadow: 0 24px 64px rgba(0,0,0,.15); }
html[data-theme="light"] .modal-box h3     { color: #111827; }
html[data-theme="light"] .modal-header     { background: #f9fafb; border-bottom-color: #e5e7eb; }
html[data-theme="light"] .modal-title      { color: #111827; }
html[data-theme="light"] .modal-close      { background: #f3f4f6; border-color: #e5e7eb; color: #374151; }
html[data-theme="light"] .modal-close:hover { background: rgba(239,68,68,.1); border-color: rgba(239,68,68,.3); color: #b91c1c; }
html[data-theme="light"] .modal-footer     { background: #f9fafb; border-top-color: rgba(0,0,0,.1); }
html[data-theme="light"] .modal-tab        { color: #4a5568; }
html[data-theme="light"] .modal-tab:hover  { color: #111827; }
html[data-theme="light"] .modal-tab.active { color: var(--gl); border-bottom-color: var(--gl); }

/* Booking detail panel */
html[data-theme="light"] .bk-detail-label  { color: #4a5568; }
html[data-theme="light"] .bk-detail-value  { color: #111827; }
html[data-theme="light"] .bk-detail-section { color: var(--gl); border-bottom-color: rgba(0,0,0,.1); }

/* Section divider */
html[data-theme="light"] .admin-section-divider { color: var(--gl); }
html[data-theme="light"] .admin-section-divider::after { background: rgba(0,0,0,.1); }

/* Toast */
html[data-theme="light"] .admin-toast      { background: #fff; color: #111827; box-shadow: 0 8px 32px rgba(0,0,0,.12); border-color: #e5e7eb; }
html[data-theme="light"] .admin-toast.success { border-left-color: #059669; }
html[data-theme="light"] .admin-toast.error   { border-left-color: #dc2626; }

/* Misc admin chrome */
html[data-theme="light"] .admin-login-body { background: radial-gradient(ellipse 80% 60% at 50% 0%,rgba(212,175,55,.08) 0%,transparent 70%), #f5f7fa; }
html[data-theme="light"] .admin-login-card { background: #fff; border-color: rgba(212,175,55,.3); box-shadow: 0 8px 40px rgba(0,0,0,.1); }
html[data-theme="light"] .admin-login-logo { color: #111827; }
html[data-theme="light"] .preset-btn       { background: #f9fafb; border-color: rgba(0,0,0,.12); }
html[data-theme="light"] .preset-btn .pb-name { color: #111827; }
html[data-theme="light"] .preset-btn:hover { border-color: var(--gl); }
html[data-theme="light"] .font-pairing-btn { background: #f9fafb; border-color: rgba(0,0,0,.12); color: #374151; }
html[data-theme="light"] .font-pairing-btn:hover { border-color: var(--gl); color: #111827; }

/* ── ANIMATIONS ── */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
.anim-up   { animation: fadeUp  .65s ease both; }
.anim-in   { animation: fadeIn  .5s  ease both; }
.delay-1   { animation-delay: .1s; }
.delay-2   { animation-delay: .2s; }
.delay-3   { animation-delay: .3s; }

/* ── UTILITIES ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-gold { color: var(--gl); }
.text-muted { color: var(--sl); }

/* ── DATA TABLE (admin pages — alias of ag-table with enhancements) ── */
.data-table {
  width: 100%; border-collapse: collapse; font-size: .83rem;
}
.data-table thead tr {
  background: var(--gp);
  border-bottom: 2px solid var(--br);
}
.data-table th {
  padding: 11px 14px; text-align: left;
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--gl); white-space: nowrap;
}
.data-table td {
  padding: 11px 14px; border-bottom: 1px solid var(--b2);
  color: var(--li); vertical-align: middle;
}
.data-table tbody tr { transition: background .15s; }
.data-table tbody tr:hover { background: var(--gp2); }
.data-table tbody tr:last-child td { border-bottom: none; }

/* ── MODAL COMPONENTS (header / body / footer / close) ── */
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--b2);
  background: var(--gp); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin: -2rem -2rem 0;
}
.modal-title {
  font-size: 1.05rem; font-weight: 700; color: var(--w); margin: 0;
}
.modal-close {
  background: var(--b2); border: 1px solid var(--b2); color: var(--sl);
  width: 30px; height: 30px; border-radius: 50%; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--tr); flex-shrink: 0;
  font-family: var(--font-body);
}
.modal-close:hover { background: rgba(239,68,68,.2); border-color: rgba(239,68,68,.4); color: #f87171; }
.modal-body { padding: 1.5rem 0 0; }
.modal-footer {
  display: flex; gap: .75rem; justify-content: flex-end;
  padding: 1.25rem 1.5rem; border-top: 1px solid var(--b2);
  background: rgba(255,255,255,.02); border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin: 1.25rem -2rem -2rem; flex-wrap: wrap;
}

/* ── BOOKING DETAIL PANEL (inside modal) ── */
.bk-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.25rem;
  margin-bottom: 1.25rem;
}
.bk-detail-item { display: flex; flex-direction: column; gap: 2px; }
.bk-detail-label {
  font-size: .63rem; font-weight: 700; color: var(--sl);
  text-transform: uppercase; letter-spacing: .06em;
}
.bk-detail-value { font-size: .88rem; color: var(--li); font-weight: 500; }
.bk-detail-section {
  font-size: .68rem; font-weight: 800; color: var(--gl);
  text-transform: uppercase; letter-spacing: .1em;
  padding: .5rem 0 .4rem; border-bottom: 1px solid var(--b2);
  margin-bottom: .75rem; grid-column: 1 / -1;
}
.bk-detail-full { grid-column: 1 / -1; }

/* ── IMPROVED STAT CARDS ── */
.stat-card-v2 {
  background: var(--d2); border: 1px solid var(--b2);
  border-radius: var(--radius-md); padding: 1.25rem 1.4rem;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: border-color .2s;
}
.stat-card-v2:hover { border-color: var(--br); }
.stat-card-v2.gold  { border-color: var(--br); background: var(--gp2); }
.stat-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
  background: var(--gp); border: 1px solid var(--br);
}
.stat-icon.blue  { background: rgba(59,130,246,.1);  border-color: rgba(59,130,246,.25); }
.stat-icon.green { background: rgba(16,185,129,.1);  border-color: rgba(16,185,129,.25); }
.stat-icon.red   { background: rgba(239,68,68,.1);   border-color: rgba(239,68,68,.25); }
.stat-info { flex: 1; min-width: 0; }
.stat-val-v2 { font-size: 1.75rem; font-weight: 800; color: var(--gl); line-height: 1; }
.stat-label-v2 { font-size: .72rem; color: var(--sl); margin-top: 4px; }

/* ── ADMIN FILTER BAR ── */
.admin-filter-bar {
  background: var(--d3); border: 1px solid var(--b2);
  border-radius: var(--radius-md); padding: .9rem 1.25rem;
  margin-bottom: 1rem;
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: flex-end;
}
.admin-filter-bar .filter-group { display: flex; flex-direction: column; gap: 4px; }
.admin-filter-bar .filter-group .form-label { margin-bottom: 0; }

/* ── SECTION DIVIDER ── */
.admin-section-divider {
  font-size: .68rem; font-weight: 800; color: var(--gl);
  text-transform: uppercase; letter-spacing: .12em;
  display: flex; align-items: center; gap: .75rem;
  margin: 1.25rem 0 .75rem;
}
.admin-section-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--b2);
}

/* ── TOAST v2 ── */
.admin-toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  background: var(--d3); border: 1px solid var(--br); color: var(--li);
  padding: .85rem 1.25rem; border-radius: 10px; border-left: 4px solid var(--gl);
  z-index: 9999; font-weight: 600; font-size: .85rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.25); display: none;
  max-width: 380px; line-height: 1.4;
  animation: toastSlideIn .3s cubic-bezier(.34,1.56,.64,1) both;
}
.admin-toast.show { display: block; }
.admin-toast.success { border-left-color: #10B981; }
.admin-toast.error   { border-left-color: #ef4444; }
@keyframes toastSlideIn {
  from { opacity: 0; transform: translateY(12px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; } .gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; }
.text-center { text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-cta-strip { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav-ul, .nav-controls { display: none; }
  .hb { display: flex; }
  .cx-wrap-nav-mob { display: flex; }  /* show currency pill before hamburger */
  /* Tighten the gap between the currency pill and hamburger on mobile */
  #nav { gap: .75rem; }
  /* Keep logo flush left — push currency+burger group to the right */
  .cx-wrap-nav-mob { margin-left: auto; }
  /* Reset hb margin so only the gap variable controls spacing */
  .hb { margin-left: 0; }
  .mob { top: 68px; }
  .hero-h1 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-badges { gap: .4rem; }
  .admin-wrap, .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: static; }
  .admin-topbar { position: static; margin: -1.5rem -1.5rem .75rem; }
  .fg-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .section { padding: 50px 4%; }
  .page-hero { padding: 130px 4% 40px; }
  .airports-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════
   AIRPORTS PAGE — HERO
══════════════════════════════════════════════ */

.airports-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 5% 90px;
  background-image: url('/v2rebuild/assets/img/airports-hero.jpg');
  background-size: cover;
  background-position: center 35%;
  background-attachment: fixed;
  overflow: hidden;
}
.airports-hero-overlay {
  position: absolute;
  inset: 0;
  /* Cinematic treatment:
     - Left edge: deep dark
     - Right edge: deep dark
     - Center: semi-transparent so photo shows through behind text
     - Bottom: solid dark to ground the stats strip
  */
  background:
    /* left dark wing */
    linear-gradient(to right,  rgba(6,10,15,.95) 0%, rgba(6,10,15,.55) 28%, transparent 48%),
    /* right dark wing */
    linear-gradient(to left,   rgba(6,10,15,.95) 0%, rgba(6,10,15,.55) 28%, transparent 48%),
    /* top-to-bottom base — keeps top nav area dark, fades to mid */
    linear-gradient(to bottom, rgba(6,10,15,.75) 0%, rgba(6,10,15,.35) 45%, rgba(6,10,15,.65) 100%),
    /* center vignette — subtle dark circle behind text block */
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(6,10,15,.15) 0%, rgba(6,10,15,.55) 100%);
}
.airports-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}
.airports-hero-badge {
  display: inline-block;
  background: rgba(212,175,55,.15);
  border: 1px solid rgba(212,175,55,.35);
  color: var(--gl);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.airports-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.airports-hero-accent { color: var(--gl); }
.airports-hero-sub {
  font-size: 1.05rem;
  color: rgba(238,242,247,.75);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ── Hero search ── */
.airports-hero-search-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.airports-search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  pointer-events: none;
  z-index: 1;
}
.airports-hero-search-input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 14px;
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body, inherit);
  outline: none;
  transition: border-color .2s, background .2s;
  box-sizing: border-box;
}
.airports-hero-search-input::placeholder { color: rgba(255,255,255,.5); }
.airports-hero-search-input:focus {
  border-color: var(--gl);
  background: rgba(255,255,255,.15);
}

/* ── Hero stats strip ── */
.airports-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  max-width: 560px;
  margin: 0 auto;
}
.airports-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}
.airports-hero-stat strong { font-size: 1.15rem; font-weight: 800; color: var(--gl); line-height: 1.1; }
.airports-hero-stat span   { font-size: .72rem; color: rgba(238,242,247,.55); margin-top: .2rem; letter-spacing: .04em; }
.airports-hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ── Filter bar ── */
.airports-filter-bar {
  background: var(--d2);
  border-bottom: 1px solid var(--br);
  padding: .9rem 0;
  position: sticky;
  top: 70px;
  z-index: 90;
}
.filter-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
}
.filter-tabs-centered {
  justify-content: center;
}
.filter-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.view-toggle {
  display: flex;
  gap: .25rem;
}
.view-toggle-btn {
  padding: .4rem .6rem;
  border: 1px solid var(--br);
  border-radius: 6px;
  background: transparent;
  color: var(--sl);
  cursor: pointer;
  transition: all .2s;
}
.view-toggle-btn:hover {
  background: var(--d3);
}
.view-toggle-btn.active {
  background: var(--gl);
  border-color: var(--gl);
  color: #000;
}

/* ── Airport Row View ── */
.airport-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.airport-row {
  background: var(--d3);
  border: 1px solid var(--br);
  border-radius: 10px;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1),
              box-shadow .22s ease,
              border-color .22s ease,
              background .22s ease;
}
.airport-row:hover {
  transform: translateY(-2px) scale(1.005);
  border-color: #25D366;
  background: rgba(37,211,102,.05);
  box-shadow: 0 6px 24px rgba(37,211,102,.15), 0 0 0 1px rgba(37,211,102,.2);
}
.airport-row:hover .airport-row-code { color: #25D366; }
.airport-row:hover a.airport-row-city { color: #25D366; }
.airport-row-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  gap: 1rem;
}
.airport-row-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}
.airport-row-code {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gl);
  min-width: 45px;
}
.airport-row-details {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.airport-row-city {
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
}
.airport-row-seo {
  font-size: .75rem;
  color: rgba(212,175,55,.7);
  font-style: italic;
}
.airport-row-prices {
  display: flex;
  gap: .75rem;
  align-items: center;
}
.arp-dom, .arp-intl {
  font-size: .85rem;
  font-weight: 600;
  padding: .3rem .6rem;
  border-radius: 6px;
}
.arp-dom {
  background: rgba(212,175,55,.1);
  color: var(--gl);
}
.arp-intl {
  background: rgba(59,130,246,.1);
  color: #60a5fa;
}
.airport-row-book {
  padding: .5rem 1rem;
  background: var(--gl);
  color: #000;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.airport-row-book:hover {
  background: #c9a227;
  transform: translateY(-1px);
}
.filter-tab {
  padding: .5rem 1.15rem;
  border: 1px solid var(--br);
  border-radius: 20px;
  background: transparent;
  color: var(--sl);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-body, inherit);
  white-space: nowrap;
}
.filter-tab:hover { border-color: var(--gl); color: var(--gl); }
.filter-tab.active {
  background: var(--gl);
  border-color: var(--gl);
  color: #000;
}

/* Page hero variants (other pages) */
.page-hero-sm { padding: 100px 5% 48px; }
.page-hero-inner { max-width: 860px; }
.page-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
  line-height: 1.15;
}
.page-hero-sub { font-size: 1.05rem; color: var(--sl); margin-bottom: 1.75rem; }

/* ── Airport search ── */
.airport-search-wrap {
  position: relative;
  max-width: 500px;
}
.airport-search-wrap::before {
  content: '🔍';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: .95rem;
  pointer-events: none;
}
.airport-search-input {
  width: 100%;
  padding: .85rem 1.25rem .85rem 2.8rem;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--br);
  border-radius: 12px;
  color: var(--li);
  font-size: .97rem;
  font-family: var(--font-body, inherit);
  outline: none;
  transition: border-color .2s, background .2s;
  box-sizing: border-box;
}
.airport-search-input::placeholder { color: var(--sl); }
.airport-search-input:focus {
  border-color: var(--gl);
  background: rgba(255,255,255,.1);
}

/* ── Section variants ── */
.section-compact { padding: 50px 5%; }
.section-alt {
  background: var(--d2);
  border-top: 1px solid var(--br);
  padding: 60px 5%;
}
.section-alt h2 { font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 800; color: #fff; margin-bottom: .6rem; }
.section-alt p  { color: var(--sl); margin-bottom: 1.5rem; }

/* ── Airport grid ── */
.airport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.airport-grid-top {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: .5rem;
}

/* ── Airport card — base ── */
.airport-card {
  display: block;
  background: var(--d3);
  border: 1px solid var(--br);
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1),
              box-shadow .25s ease,
              border-color .25s ease;
  position: relative;
}
.airport-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(37,211,102,.2), 0 0 0 1px rgba(37,211,102,.35);
  border-color: #25D366;
}
.airport-card:hover .airport-card-code {
  background: rgba(37,211,102,.15);
  border-color: rgba(37,211,102,.4);
  color: #25D366;
}
.airport-card:hover .airport-card-city { color: #25D366; }
.airport-card-body {
  padding: 1rem;
}

/* ── Code badge ── */
.airport-card-code {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--gl);
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.22);
  border-radius: 6px;
  padding: .18rem .55rem;
  margin-bottom: .5rem;
}

/* ── City & name ── */
.airport-card-city {
  font-size: 1rem;
  font-weight: 700;
  color: var(--li);
  line-height: 1.25;
  margin-bottom: .25rem;
}
.airport-card-name {
  font-size: .76rem;
  color: var(--sl);
  line-height: 1.4;
  margin-bottom: .6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.airport-card-seo {
  font-size: .7rem;
  color: rgba(212,175,55,.8);
  font-weight: 500;
  margin-bottom: .5rem;
  font-style: italic;
}
.airport-card-price {
  font-size: .82rem;
  font-weight: 700;
  color: var(--gl);
}

/* ── Featured card (with background image) ── */
.airport-card-featured {
  display: flex;
  flex-direction: column;
  min-height: 200px;
}
.airport-card-img {
  height: 110px;
  background-size: cover;
  background-position: center;
  background-color: var(--d2);
  flex-shrink: 0;
  position: relative;
}
.airport-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,12,16,.7) 100%);
}
.airport-card-featured .airport-card-body { padding: .85rem 1rem; }
.airport-card-featured .airport-card-city { font-size: 1.05rem; }

/* ── State headings ── */
.state-group { margin-bottom: 2.5rem; }
.state-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sl);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--br);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.state-heading::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 1.1em;
  background: var(--gl);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Card structural changes ── */
.airport-card { display: flex; flex-direction: column; }
.airport-card-top-link {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 1;
}
.airport-card-header {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .45rem;
}

/* ── Price chips ── */
.airport-card-prices {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-top: .4rem;
  margin-bottom: .1rem;
}
.acp-dom, .acp-intl {
  font-size: .73rem;
  font-weight: 600;
  padding: .18rem .5rem;
  border-radius: 6px;
}
.acp-dom  { background: rgba(16,185,129,.12); color: #10b981; border: 1px solid rgba(16,185,129,.2); }
.acp-intl { background: rgba(99,102,241,.12);  color: #818cf8; border: 1px solid rgba(99,102,241,.2); }

/* ── Book Now button on card ── */
.airport-card-book {
  display: block;
  text-align: center;
  padding: .6rem;
  background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.08));
  border-top: 1px solid rgba(212,175,55,.2);
  color: var(--gl);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .04em;
  transition: background .2s, color .2s;
  border-radius: 0 0 14px 14px;
}
.airport-card-book:hover {
  background: var(--gl);
  color: #000;
}

/* ── Intl badge on image ── */
.airport-card-img { position: relative; }
.airport-intl-badge {
  position: absolute;
  top: .6rem;
  right: .6rem;
  background: rgba(99,102,241,.85);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 6px;
  z-index: 3;
  backdrop-filter: blur(4px);
}
.airport-card-header .airport-intl-badge {
  position: static;
  background: rgba(99,102,241,.15);
  color: #818cf8;
  border: 1px solid rgba(99,102,241,.25);
  font-size: .65rem;
  padding: .15rem .45rem;
  border-radius: 5px;
}

/* ── State count pill ── */
.state-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6rem;
  height: 1.6rem;
  padding: 0 .45rem;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.2);
  color: var(--gl);
  font-size: .7rem;
  font-weight: 700;
  border-radius: 20px;
  margin-left: auto;
}

/* Light theme ── airports hero */
html[data-theme="light"] .airports-hero {
  background-image: url('/v2rebuild/assets/img/airports-hero.jpg') !important;
  background-position: center 35% !important;
}
html[data-theme="light"] .airports-hero-overlay {
  /* Keep the same dark cinematic overlay as dark theme — text must stay readable */
}
html[data-theme="light"] .airports-hero-title     { color: #fff; }
html[data-theme="light"] .airports-hero-sub       { color: rgba(238,242,247,.82); }
html[data-theme="light"] .airports-hero-badge {
  background: rgba(212,175,55,.12);
  border-color: rgba(212,175,55,.35);
}
html[data-theme="light"] .airports-hero-search-input {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
html[data-theme="light"] .airports-hero-search-input::placeholder { color: rgba(255,255,255,.5); }
html[data-theme="light"] .airports-hero-search-input:focus {
  border-color: var(--gl);
  background: rgba(255,255,255,.18);
}
html[data-theme="light"] .airports-search-icon    { color: rgba(255,255,255,.7); }
html[data-theme="light"] .airports-hero-stats {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}
html[data-theme="light"] .airports-hero-stat strong { color: var(--gl); }
html[data-theme="light"] .airports-hero-stat span   { color: rgba(238,242,247,.6); }
html[data-theme="light"] .airports-hero-stat-divider { background: rgba(255,255,255,.15); }

/* Light theme ── card extras */
html[data-theme="light"] .acp-dom  { background: rgba(16,185,129,.08); }
html[data-theme="light"] .acp-intl { background: rgba(99,102,241,.08); }
html[data-theme="light"] .airport-card-book { border-top-color: rgba(212,175,55,.15); }
html[data-theme="light"] .airports-filter-bar { background: #f5f7fa; border-bottom-color: rgba(0,0,0,.08); }
html[data-theme="light"] .filter-tab { color: #6b7280; border-color: rgba(0,0,0,.12); }

/* ── No results ── */
.no-results-msg {
  text-align: center;
  padding: 3rem;
  color: var(--sl);
  font-size: 1rem;
  background: var(--d3);
  border-radius: 12px;
  border: 1px solid var(--br);
}

/* ── WhatsApp button ── */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn-wa:hover { background: #1da851; transform: translateY(-2px); }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--sl);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gl); text-decoration: none; }
.breadcrumb a:hover { color: var(--gb); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--li); font-weight: 600; }
html[data-theme="light"] .breadcrumb [aria-current="page"] { color: #fff; }

/* Light theme overrides */
html[data-theme="light"] .airport-card {
  background: #fff;
  border-color: rgba(0,0,0,.1);
}
html[data-theme="light"] .airport-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border-color: var(--gl);
}
html[data-theme="light"] .airport-card-city { color: #111827; }
html[data-theme="light"] .airport-search-input {
  background: #fff;
  border-color: rgba(0,0,0,.15);
  color: #111827;
}
html[data-theme="light"] .state-heading { color: #6b7280; border-bottom-color: rgba(0,0,0,.1); }
html[data-theme="light"] .no-results-msg { background: #f5f7fa; border-color: rgba(0,0,0,.1); color: #6b7280; }
html[data-theme="light"] .section-alt { background: #f5f7fa; border-top-color: rgba(0,0,0,.08); }
html[data-theme="light"] .section-alt h2 { color: #111827; }

/* Responsive */
@media (max-width: 768px) {
  /* Disable fixed attachment on mobile — iOS doesn't support it */
  .airports-hero { min-height: 420px; padding: 130px 4% 60px; background-attachment: scroll; }
  .airports-hero-stat { padding: 0 .9rem; }
  .airports-filter-bar { top: 60px; }
  .filter-bar-content { flex-direction: column; align-items: stretch; }
  .filter-tabs { justify-content: center; }
  .view-toggle { justify-content: center; }
  .airport-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .airport-grid-top { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .airport-row-content { flex-direction: column; align-items: stretch; gap: .75rem; }
  .airport-row-info { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .airport-row-prices { justify-content: flex-start; }
  .airport-row-book { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .airports-hero { padding: 120px 4% 50px; }
  .airports-hero-title { font-size: 1.8rem; }
  .airports-hero-stats { gap: 0; padding: .75rem 1rem; }
  .airports-hero-stat { padding: 0 .7rem; }
  .airports-hero-stat strong { font-size: .95rem; }
  .airports-hero-stat-divider { display: none; }
  .airport-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .airport-grid-top { grid-template-columns: repeat(2, 1fr); }
  .filter-tab { font-size: .75rem; padding: .4rem .9rem; }
  .airport-row-content { padding: .85rem 1rem; }
  .airport-row-code { font-size: .8rem; min-width: 40px; }
  .airport-row-city { font-size: .85rem; }
  .airport-row-seo { font-size: .7rem; }
  .arp-dom, .arp-intl { font-size: .75rem; padding: .25rem .5rem; }
}  
.airport-card-body { padding: .75rem; }

/* ════════════════════════════════════════════════════════════════
   BOOK PAGE — Premium redesign
   ════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.book-hero {
  position: relative;
  background: linear-gradient(160deg, var(--d) 0%, #0e1520 60%, #070b12 100%);
  border-bottom: 1px solid rgba(212,175,55,.18);
  overflow: hidden;
  padding: 110px 5% 0;
}
.book-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,.13) 0%, transparent 70%);
  pointer-events: none;
}
.book-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
.book-hero-left {
  flex: 1;
  padding-top: 1.5rem;
  padding-bottom: 4rem;
}
.book-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 999px;
  padding: .35rem .9rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gl);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.book-hero-left h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--w);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.book-hero-left h1 em {
  color: var(--gl);
  font-style: italic;
  font-weight: 800;
}
.book-hero-left > p {
  font-size: .97rem;
  color: rgba(238,242,247,.75);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 1.75rem;
}

/* Trust pills */
.book-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.btp {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: .35rem .85rem;
  font-size: .77rem;
  font-weight: 600;
  color: rgba(238,242,247,.85);
}
.btp-ico {
  font-size: .85rem;
  opacity: .9;
}

/* ── Form card ── */
.book-form-card {
  position: relative;
  width: 480px;
  flex-shrink: 0;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,.22);
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -4px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.04) inset;
  overflow: hidden;
  margin-top: 1rem;
}
.book-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gl) 30%, #f5d96e 60%, var(--gl) 75%, transparent 100%);
}

/* Card header */
.bfc-head {
  padding: 1.4rem 1.6rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.bfc-head h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--w);
  margin-bottom: .2rem;
}
.bfc-head p {
  font-size: .78rem;
  color: var(--sl);
}

/* Card body */
.bfc-body {
  padding: 1.4rem 1.6rem 1.8rem;
  max-height: 82vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,.3) transparent;
}
.bfc-body::-webkit-scrollbar { width: 4px; }
.bfc-body::-webkit-scrollbar-thumb { background: rgba(212,175,55,.35); border-radius: 4px; }

/* ── Airport selector ── */
.airport-selector { margin-bottom: 1.1rem; }
.as-label {
  font-size: .68rem;
  font-weight: 700;
  color: var(--gl);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .55rem;
}
.as-search-wrap {
  position: relative;
}
.as-ico {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sl);
  pointer-events: none;
  z-index: 1;
}
.as-search-wrap input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(212,175,55,.25);
  border-radius: 10px;
  padding: .7rem .85rem .7rem 2.5rem;
  font-size: .88rem;
  font-family: inherit;
  color: var(--w);
  outline: none;
  transition: border-color .2s;
}
.as-search-wrap input::placeholder { color: rgba(255,255,255,.3); }
.as-search-wrap input:focus { border-color: var(--gl); }

/* Dropdown */
.as-drop {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #131c2a;
  border: 1px solid rgba(212,175,55,.22);
  border-radius: 12px;
  max-height: 320px;
  overflow-y: auto;
  z-index: 9999;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,.3) transparent;
  box-shadow: 0 16px 48px rgba(0,0,0,.65);
}
.as-drop-count {
  padding: .5rem .85rem;
  font-size: .66rem;
  font-weight: 700;
  color: var(--sl);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.as-drop-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem .85rem;
  cursor: pointer;
  transition: background .15s;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.as-drop-item:hover { background: rgba(212,175,55,.1); }
.as-di-city { font-size: .88rem; font-weight: 700; color: var(--w); }
.as-di-name { font-size: .72rem; color: var(--sl); margin-top: .1rem; }
.as-di-right { display: flex; flex-direction: column; align-items: flex-end; gap: .15rem; }
.as-di-code  { font-size: .68rem; font-weight: 800; color: var(--gl); background: rgba(212,175,55,.12); padding: .15rem .45rem; border-radius: 5px; }
.as-di-price { font-size: .72rem; font-weight: 700; color: rgba(238,242,247,.7); }

/* Selected state */
.as-selected {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: rgba(212,175,55,.1);
  border: 1.5px solid rgba(212,175,55,.35);
  border-radius: 10px;
  padding: .7rem .9rem;
  margin-top: .5rem;
  gap: .5rem;
}
.as-selected.show { display: flex; }
.as-sel-name { font-size: .92rem; font-weight: 700; color: var(--w); }
.as-sel-sub  { font-size: .72rem; color: var(--gl); margin-top: .15rem; }
.as-sel-change {
  flex-shrink: 0;
  background: none;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 7px;
  padding: .3rem .6rem;
  font-size: .7rem;
  color: rgba(238,242,247,.6);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.as-sel-change:hover { border-color: var(--gl); color: var(--gl); }

/* Popular chips */
.as-popular { margin-top: .75rem; }
.as-pop-label {
  font-size: .65rem;
  font-weight: 700;
  color: var(--sl);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .45rem;
}
.as-chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.as-chip {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 999px;
  padding: .28rem .75rem;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(238,242,247,.8);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.as-chip:hover {
  background: rgba(212,175,55,.15);
  border-color: rgba(212,175,55,.5);
  color: var(--gl);
}

/* ── Sector / service dropdowns ── */
.bk-dd-wrap { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1rem; }
.bk-dd-label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--sl);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .35rem;
}
.bk-dd-select {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(212,175,55,.25);
  border-radius: 10px;
  color: var(--w);
  padding: .7rem 1rem;
  font-size: .92rem;
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  color-scheme: dark;
  outline: none;
  transition: border-color .2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  padding-right: 2.2rem;
}
.bk-dd-select:focus { border-color: var(--gl); }
.bk-dd-select option { background: #131c2a; color: var(--w); }

/* ── Price strip ── */
.price-strip {
  background: linear-gradient(135deg, rgba(212,175,55,.1) 0%, rgba(212,175,55,.05) 100%);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 12px;
  padding: .9rem 1.1rem;
  margin-bottom: 1.1rem;
}
.ps-label {
  font-size: .68rem;
  font-weight: 700;
  color: var(--sl);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .3rem;
}
.ps-price {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--gl);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.ps-na {
  font-size: .85rem;
  font-weight: 500;
  color: var(--sl);
}
.ps-note {
  font-size: .78rem;
  color: var(--sl);
  margin-top: .2rem;
}

/* ── Add-ons ── */
.addon-section {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: .9rem 1rem;
  margin-bottom: 1.1rem;
}
.addon-hd {
  font-size: .75rem;
  font-weight: 800;
  color: var(--gl);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .75rem;
}
.addon-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem .75rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 9px;
  margin-bottom: .5rem;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.addon-item:hover { background: rgba(212,175,55,.07); border-color: rgba(212,175,55,.2); }
.addon-item input[type=checkbox] {
  width: 17px; height: 17px;
  accent-color: var(--gl);
  flex-shrink: 0;
  cursor: pointer;
}
.addon-item-info { flex: 1; min-width: 0; }
.addon-item-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--w);
}
.addon-item-desc {
  font-size: .78rem;
  color: var(--sl);
  margin-top: .1rem;
}
.addon-item-price {
  font-size: .88rem;
  font-weight: 800;
  color: var(--gl);
  white-space: nowrap;
  flex-shrink: 0;
}
.addon-total-row {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: .6rem .75rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: .5rem;
}
.addon-total-row.show { display: flex; }
.addon-total-label { font-size: .75rem; font-weight: 600; color: var(--sl); }
.addon-total-val   { font-size: 1.1rem; font-weight: 900; color: var(--gl); }

/* ── Form section labels ── */
.form-section-label {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  font-weight: 800;
  color: var(--gl);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 1.2rem 0 .75rem;
}
.form-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,.3) 0%, transparent 100%);
}

/* ── Form rows & fields ── */
.bk-fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: .6rem;
}
.bk-fg { display: flex; flex-direction: column; }
.bk-fg label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--sl);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .3rem;
}
.bk-fg label span { color: var(--gl); }
.bk-fg input,
.bk-fg select,
.bk-fg textarea {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 9px;
  padding: .7rem .85rem;
  font-size: .92rem;
  font-family: inherit;
  color: var(--w);
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
  box-sizing: border-box;
  color-scheme: dark;
}
.bk-fg textarea { resize: vertical; min-height: 80px; }
.bk-fg input::placeholder,
.bk-fg textarea::placeholder { color: rgba(255,255,255,.25); }
.bk-fg input:focus,
.bk-fg select:focus,
.bk-fg textarea:focus {
  border-color: rgba(212,175,55,.6);
  background: rgba(212,175,55,.05);
}
/* ── Date / time picker icon — dark theme (white icon) ── */
.bk-fg input[type=date],
.bk-fg input[type=time],
.ww-fg input[type=date],
.ww-fg input[type=time] {
  cursor: pointer;
  color-scheme: dark;
}

/* Make the entire input area clickable (not just the small icon) */
.bk-fg input[type=date]::-webkit-calendar-picker-indicator,
.bk-fg input[type=time]::-webkit-calendar-picker-indicator,
.ww-fg input[type=date]::-webkit-calendar-picker-indicator,
.ww-fg input[type=time]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Wrapper needs position:relative for the above to work */
.bk-fg,
.ww-fg { position: relative; }

/* Dark theme — white calendar/clock icon */
html[data-theme="dark"] .bk-fg input[type=date],
html[data-theme="dark"] .bk-fg input[type=time],
html[data-theme="dark"] .ww-fg input[type=date],
html[data-theme="dark"] .ww-fg input[type=time] {
  color-scheme: dark;
}

/* Light theme — dark calendar/clock icon */
html[data-theme="light"] .bk-fg input[type=date],
html[data-theme="light"] .bk-fg input[type=time],
html[data-theme="light"] .ww-fg input[type=date],
html[data-theme="light"] .ww-fg input[type=time] {
  color-scheme: light;
}

/* ── Transit block ── */
.transit-block {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: .75rem;
}
.transit-block-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 800;
  color: var(--gl);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .75rem;
}
.transit-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.07);
  margin: .9rem 0;
}

/* ── Submit button ── */
.book-submit {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #f0d060 0%, #c8a010 100%);
  color: #0a0e14;
  font-size: 1rem;
  font-weight: 800;
  font-family: inherit;
  padding: .9rem 1.5rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: .04em;
  margin-top: 1.2rem;
  box-shadow: 0 6px 24px rgba(212,175,55,.3);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
}
.book-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(212,175,55,.5);
}
.book-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

/* ── Book note ── */
.book-note {
  text-align: center;
  font-size: .75rem;
  color: var(--sl);
  margin-top: .75rem;
}
.book-note a { color: var(--gl); text-decoration: none; }
.book-note a:hover { text-decoration: underline; }

/* ── Button loader ── */
.btn-text, .btn-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(10,14,20,.25);
  border-top-color: #0a0e14;
  border-radius: 50%;
  animation: btnSpin .7s linear infinite;
  display: inline-block;
  vertical-align: middle;
}
@keyframes btnSpin { to { transform: rotate(360deg); } }

/* ── Error & success ── */
.book-error {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
  border-radius: 9px;
  padding: .75rem 1rem;
  font-size: .83rem;
  color: #f87171;
  margin-top: .75rem;
}
.book-success {
  text-align: center;
  padding: 2rem 1rem;
}
.book-success-ico { font-size: 3.5rem; margin-bottom: .75rem; }
.book-success h3  { font-size: 1.4rem; font-weight: 800; color: var(--w); margin-bottom: .75rem; }
.book-success p   { font-size: .88rem; color: rgba(238,242,247,.75); line-height: 1.8; }
.book-success .ref { font-weight: 800; color: var(--gl); }

/* ── Pills row ── */
.book-pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 1rem 5%;
}
.book-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(238,242,247,.72);
}
.book-pill-ico { font-size: .95rem; }

/* ── Info strip ── */
.book-info-strip {
  padding: 3rem 5%;
  background: var(--d);
}
.book-info-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bi-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: border-color .25s, transform .25s;
}
.bi-card:hover {
  border-color: rgba(212,175,55,.3);
  transform: translateY(-3px);
}
.bi-ico  { font-size: 2rem; margin-bottom: .85rem; }
.bi-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--w);
  margin-bottom: .6rem;
}
.bi-card p {
  font-size: .83rem;
  color: var(--sl);
  line-height: 1.75;
}

/* ── Light theme overrides ── */
html[data-theme="light"] .book-hero {
  background: linear-gradient(160deg, #f0f4f8 0%, #e8edf4 55%, #f5f7fa 100%);
  border-bottom-color: rgba(212,175,55,.18);
}
html[data-theme="light"] .book-hero::before {
  background: radial-gradient(circle, rgba(212,175,55,.07) 0%, transparent 70%);
}
html[data-theme="light"] .book-hero-left h1 { color: #111827; }
html[data-theme="light"] .book-hero-left h1 em { color: var(--gl); }
html[data-theme="light"] .book-hero-left > p { color: #4a5568; }
html[data-theme="light"] .btp { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.1); color: #374151; }
html[data-theme="light"] .book-form-card {
  background: rgba(255,255,255,.98);
  border-color: rgba(212,175,55,.3);
  box-shadow: 0 -4px 60px rgba(0,0,0,.1);
}
html[data-theme="light"] .bfc-head { border-bottom-color: rgba(0,0,0,.07); }
html[data-theme="light"] .bfc-head h2 { color: #111827; }
html[data-theme="light"] .bfc-head p  { color: #6b7280; }
html[data-theme="light"] .as-search-wrap input {
  background: #fff;
  border-color: rgba(0,0,0,.18);
  color: #111;
  color-scheme: light;
}
html[data-theme="light"] .as-search-wrap input::placeholder { color: #9ca3af; }
html[data-theme="light"] .as-drop { background: #ffffff; border-color: rgba(0,0,0,.1); box-shadow: 0 8px 32px rgba(0,0,0,.15); }
html[data-theme="light"] .as-drop-count { color: #9ca3af; border-bottom-color: rgba(0,0,0,.07); }
html[data-theme="light"] .as-drop-item:hover { background: rgba(212,175,55,.07); }
html[data-theme="light"] .as-di-city { color: #111827; }
html[data-theme="light"] .as-di-name { color: #6b7280; }
html[data-theme="light"] .as-di-code { background: rgba(212,175,55,.12); color: #92740a; }
html[data-theme="light"] .as-di-price { color: #374151; }
html[data-theme="light"] .as-selected { background: rgba(212,175,55,.08); border-color: rgba(212,175,55,.35); }
html[data-theme="light"] .as-sel-name { color: #111827; }
html[data-theme="light"] .as-sel-sub  { color: var(--gl); }
html[data-theme="light"] .as-chip { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.12); color: #374151; }
html[data-theme="light"] .as-chip:hover { background: rgba(212,175,55,.1); color: #92740a; }
html[data-theme="light"] .bk-dd-label { color: #6b7280; }
html[data-theme="light"] .bk-dd-select { background: #fff; border-color: rgba(0,0,0,.18); color: #111; color-scheme: light; }
html[data-theme="light"] .bk-dd-select option { background: #fff; color: #111; }
html[data-theme="light"] .price-strip { background: linear-gradient(135deg, rgba(212,175,55,.07) 0%, rgba(212,175,55,.03) 100%); border-color: rgba(212,175,55,.25); }
html[data-theme="light"] .ps-label { color: #6b7280; }
html[data-theme="light"] .ps-note  { color: #9ca3af; }
html[data-theme="light"] .ps-na    { color: #9ca3af; }
html[data-theme="light"] .addon-section { background: #f9fafb; border-color: rgba(0,0,0,.08); }
html[data-theme="light"] .addon-hd { color: #92740a; }
html[data-theme="light"] .addon-item { border-color: rgba(0,0,0,.08); }
html[data-theme="light"] .addon-item:hover { background: rgba(212,175,55,.07); }
html[data-theme="light"] .addon-item-name { color: #111827; }
html[data-theme="light"] .addon-item-desc { color: #6b7280; }
html[data-theme="light"] .addon-total-row { border-top-color: rgba(0,0,0,.08); }
html[data-theme="light"] .addon-total-label { color: #6b7280; }
html[data-theme="light"] .form-section-label { color: #92740a; }
html[data-theme="light"] .bk-fg label { color: #6b7280; }
html[data-theme="light"] .bk-fg input,
html[data-theme="light"] .bk-fg select,
html[data-theme="light"] .bk-fg textarea {
  background: #fff;
  border-color: rgba(0,0,0,.18);
  color: #111827;
  color-scheme: light;
}
html[data-theme="light"] .bk-fg input[type=date],
html[data-theme="light"] .bk-fg input[type=time] { color-scheme: light; }
html[data-theme="light"] .bk-fg input::placeholder,
html[data-theme="light"] .bk-fg textarea::placeholder { color: #9ca3af; }
html[data-theme="light"] .bk-fg input:focus,
html[data-theme="light"] .bk-fg select:focus,
html[data-theme="light"] .bk-fg textarea:focus { border-color: var(--gl); background: rgba(212,175,55,.03); }
html[data-theme="light"] .transit-block { background: #f9fafb; border-color: rgba(0,0,0,.08); }
html[data-theme="light"] .transit-divider { border-top-color: rgba(0,0,0,.08); }
html[data-theme="light"] .book-note { color: #9ca3af; }
html[data-theme="light"] .book-success h3 { color: #111827; }
html[data-theme="light"] .book-success p  { color: #4a5568; }
html[data-theme="light"] .book-pills-row { background: #f5f7fa; border-color: rgba(0,0,0,.07); }
html[data-theme="light"] .book-pill { color: #374151; }
html[data-theme="light"] .book-info-strip { background: #f5f7fa; }
html[data-theme="light"] .bi-card { background: #ffffff; border-color: rgba(0,0,0,.08); }
html[data-theme="light"] .bi-card h3 { color: #111827; }
html[data-theme="light"] .bi-card p  { color: #4a5568; }

/* ── Compact hero ── */
.book-hero-compact {
  padding: 102px 5% 52px;
  text-align: center;
}
.book-hero-compact-inner {
  max-width: 780px;
  margin: 0 auto;
}
.book-hero-compact .book-hero-tag { margin-bottom: .9rem; }
.book-hero-compact h1 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--w);
  line-height: 1.2;
  margin-bottom: .85rem;
}
.book-hero-compact h1 em {
  color: var(--gl);
  font-style: italic;
  font-weight: 800;
}
.book-hero-compact > .book-hero-compact-inner > p {
  font-size: .95rem;
  color: rgba(238,242,247,.72);
  line-height: 1.65;
  margin-bottom: 1.3rem;
}
.book-hero-compact .book-trust-pills { justify-content: center; }
html[data-theme="light"] .book-hero-compact h1 { color: #111827; }
html[data-theme="light"] .book-hero-compact > .book-hero-compact-inner > p { color: #4a5568; }

/* ── Form section ── */
.book-form-section {
  padding: 2rem 5% 4rem;
  background: var(--d);
}
.book-form-wrap {
  max-width: 860px;
  margin: 0 auto;
}

/* ── STEP 1 CARD — Row-wise layout ── */
.bk1-card {
  background: var(--d2);
  border: 1px solid var(--br);
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 8px 48px rgba(0,0,0,.35);
  margin-bottom: 1.5rem;
}

/* Header */
.bk1-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: linear-gradient(135deg, var(--d3) 0%, rgba(212,175,55,.06) 100%);
  border-bottom: 1px solid var(--br);
  border-radius: 20px 20px 0 0;
  flex-wrap: wrap;
  gap: .75rem;
}
.bk1-header-left { display: flex; flex-direction: column; gap: .2rem; }
.bk1-step-badge {
  font-size: .62rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gl);
  background: rgba(212,175,55,.12); border: 1px solid rgba(212,175,55,.25);
  border-radius: 50px; padding: 2px 10px;
  display: inline-block; width: fit-content;
}
.bk1-title { font-size: 1.05rem; font-weight: 800; color: var(--li); margin: 0; }

/* Price badge */
.bk1-header-price {
  display: flex; flex-direction: column; align-items: flex-end; gap: .1rem;
  background: rgba(212,175,55,.08); border: 1px solid rgba(212,175,55,.2);
  border-radius: 12px; padding: .55rem 1.1rem; min-width: 130px; text-align: right;
}
.bk1-price-label {
  font-size: .62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--sl);
}
.bk1-price-val {
  font-size: 1.6rem; font-weight: 900; color: var(--gl);
  line-height: 1.1; font-variant-numeric: tabular-nums;
}
.bk1-price-breakdown {
  font-size: .68rem; color: var(--sl); font-weight: 500; display: block; margin-top: 1px;
}

/* Body */
.bk1-body { padding: 0; }

/* ── Form rows — each field is its own row with label + field ── */
.bk1-form-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: start;
  gap: 0;
  border-bottom: 1px solid var(--br);
  min-height: 56px;
}
.bk1-form-row:last-child { border-bottom: none; }

.bk1-row-label {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.25rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--sl);
  text-transform: uppercase;
  letter-spacing: .06em;
  background: rgba(255,255,255,.02);
  border-right: 1px solid var(--br);
  min-height: 56px;
  align-self: stretch;
}
.bk1-row-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gl), #a07820);
  color: #000; font-size: .72rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bk1-row-num-plus { background: linear-gradient(135deg, #818CF8, #6366F1); color: #fff; }

.bk1-row-field { padding: .75rem 1.25rem; display: flex; flex-direction: column; gap: .5rem; }

/* ── Custom styled dropdown ── */
.bk1-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.bk1-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: var(--d3);
  border: 1.5px solid var(--br);
  border-radius: 10px;
  color: var(--li);
  font-family: var(--font-heading);
  font-size: .92rem;
  font-weight: 600;
  padding: .7rem 2.5rem .7rem .9rem;
  cursor: pointer;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.bk1-select:focus { border-color: var(--gl); box-shadow: 0 0 0 3px rgba(212,175,55,.12); }
.bk1-select option { background: var(--d2); color: var(--li); }
.bk1-select-caret {
  position: absolute; right: .85rem; pointer-events: none;
  font-size: .6rem; color: var(--sl); top: 50%; transform: translateY(-50%);
}

/* Service price hint */
.bk1-svc-price-hint {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--gl);
  font-weight: 700;
  padding: .3rem .5rem;
  background: rgba(212,175,55,.08);
  border-radius: 7px;
  border: 1px solid rgba(212,175,55,.18);
  width: fit-content;
}

/* ── Passenger stepper ── */
.bk1-pax-stepper {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--d3);
  border: 1.5px solid var(--br);
  border-radius: 10px;
  padding: .45rem .75rem;
  width: fit-content;
}
.bk1-pax-btn {
  width: 32px; height: 32px; border-radius: 8px;
  border: 1px solid var(--br); background: var(--d2);
  color: var(--li); font-size: 1.1rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .15s; line-height: 1;
}
.bk1-pax-btn:hover:not(:disabled) { background: var(--gp); border-color: var(--gl); color: var(--gl); }
.bk1-pax-btn:disabled { opacity: .35; cursor: not-allowed; }
.bk1-pax-val { text-align: center; min-width: 80px; }
.bk1-pax-num { font-size: 1.4rem; font-weight: 900; color: var(--gl); line-height: 1; display: block; }
.bk1-pax-unit { font-size: .65rem; color: var(--sl); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* ── Add-on row ── */
.bk1-addon-row .bk1-row-label { align-self: flex-start; padding-top: 1.1rem; }

/* ── Add-on premium cards ── */
.bk1-addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .6rem;
}
.bk1-addon-card {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1rem; border: 2px solid var(--br);
  border-radius: 12px; background: var(--d3); cursor: pointer;
  transition: all .18s; position: relative;
}
.bk1-addon-card input[type=checkbox] { display: none; }
.bk1-addon-card:hover {
  border-color: var(--addon-border, rgba(212,175,55,.35));
  background: var(--addon-bg, rgba(212,175,55,.07));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.bk1-addon-selected {
  border-color: var(--addon-border, var(--gl)) !important;
  background: var(--addon-bg, rgba(212,175,55,.1)) !important;
  box-shadow: 0 0 0 3px rgba(212,175,55,.08), 0 4px 16px rgba(0,0,0,.15) !important;
}
.bk1-addon-icon {
  font-size: 1.6rem; width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.05); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.bk1-addon-selected .bk1-addon-icon { background: var(--addon-bg, rgba(212,175,55,.15)); }
.bk1-addon-info { flex: 1; min-width: 0; }
.bk1-addon-name { font-size: .85rem; font-weight: 700; color: var(--li); margin-bottom: 2px; }
.bk1-addon-desc { font-size: .72rem; color: var(--sl); line-height: 1.4; }
.bk1-addon-right { display: flex; flex-direction: column; align-items: flex-end; gap: .25rem; flex-shrink: 0; }
.bk1-addon-price { font-size: .85rem; font-weight: 800; color: var(--addon-accent, var(--gl)); white-space: nowrap; }
.bk1-addon-check {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--br); display: flex;
  align-items: center; justify-content: center; transition: all .18s;
}
.bk1-addon-check svg { width: 10px; height: 10px; opacity: 0; transition: opacity .15s; stroke: #fff; }
.bk1-addon-selected .bk1-addon-check {
  background: var(--addon-accent, var(--gl));
  border-color: var(--addon-accent, var(--gl));
}
.bk1-addon-selected .bk1-addon-check svg { opacity: 1; }

/* Total row */
.bk1-total-row {
  display: none; align-items: center; justify-content: space-between;
  margin-top: .75rem; padding: .75rem 1rem;
  background: rgba(212,175,55,.08); border: 1px solid rgba(212,175,55,.2);
  border-radius: 10px;
}
.bk1-total-row.show { display: flex; }
.bk1-total-left { display: flex; align-items: center; gap: .4rem; }
.bk1-total-label { font-size: .78rem; font-weight: 600; color: var(--sl); }
.bk1-total-val { font-size: 1.35rem; font-weight: 900; color: var(--gl); font-variant-numeric: tabular-nums; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .bk1-form-row { grid-template-columns: 1fr; }
  .bk1-row-label { border-right: none; border-bottom: 1px solid var(--br); min-height: auto; padding: .6rem 1rem; }
  .bk1-header { flex-direction: column; align-items: flex-start; }
  .bk1-header-price { width: 100%; flex-direction: row; justify-content: space-between; align-items: center; }
  .bk1-price-val { font-size: 1.3rem; }
  .bk1-addon-grid { grid-template-columns: 1fr; }
  .bk1-select { font-size: .88rem; }
}

/* ── Light theme ── */
html[data-theme="light"] .bk1-card { background: #fff; border-color: #e2e8f0; box-shadow: 0 4px 24px rgba(0,0,0,.08); }
html[data-theme="light"] .bk1-header { background: linear-gradient(135deg, #f8fafc 0%, rgba(245,158,11,.04) 100%); border-bottom-color: #e2e8f0; }
html[data-theme="light"] .bk1-title { color: #0f172a; }
html[data-theme="light"] .bk1-header-price { background: rgba(245,158,11,.06); border-color: rgba(245,158,11,.2); }
html[data-theme="light"] .bk1-price-val { color: #b45309; }
html[data-theme="light"] .bk1-form-row { border-bottom-color: #e2e8f0; }
html[data-theme="light"] .bk1-row-label { background: #f8fafc; border-right-color: #e2e8f0; color: #64748b; }
html[data-theme="light"] .bk1-select { background: #fff; border-color: #e2e8f0; color: #0f172a; }
html[data-theme="light"] .bk1-select:focus { border-color: #f59e0b; box-shadow: 0 0 0 3px rgba(245,158,11,.1); }
html[data-theme="light"] .bk1-select option { background: #fff; color: #0f172a; }
html[data-theme="light"] .bk1-pax-stepper { background: #f8fafc; border-color: #e2e8f0; }
html[data-theme="light"] .bk1-pax-btn { background: #fff; border-color: #e2e8f0; color: #374151; }
html[data-theme="light"] .bk1-pax-btn:hover:not(:disabled) { background: rgba(245,158,11,.1); border-color: #f59e0b; color: #92400e; }
html[data-theme="light"] .bk1-pax-num { color: #92400e; }
html[data-theme="light"] .bk1-addon-card { background: #f8fafc; border-color: #e2e8f0; }
html[data-theme="light"] .bk1-addon-name { color: #0f172a; }
html[data-theme="light"] .bk1-addon-check { border-color: #cbd5e1; }
html[data-theme="light"] .bk1-total-row { background: rgba(245,158,11,.06); border-color: rgba(245,158,11,.2); }
html[data-theme="light"] .bk1-total-val { color: #92400e; }

/* ═══════════════════════════════════════════════════════
   BKV3 — BOOKING FORM v3 (3-card stacked layout)
   Matches the clean card design from design reference
═══════════════════════════════════════════════════════ */

/* ── Wrapper ── */
.book-form-section  { padding: 2rem 5% 4rem; background: var(--d); }
.book-form-wrap     { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

/* ── Card base ── */
.bkv3-card {
  background: var(--d3);
  border: 1px solid var(--br);
  border-radius: 16px;
  overflow: visible;  /* allow dropdown to escape card bounds */
  transition: box-shadow .2s;
  position: relative; /* stacking context for children */
}
.bkv3-card:focus-within { box-shadow: 0 0 0 2px rgba(212,175,55,.25); }

/* ── Card header strip ── */
.bkv3-card-head {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.25rem;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--br);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sl);
}
.bkv3-head-icon { color: var(--gl); font-size: .85rem; }
.bkv3-card-head-addon { color: var(--gl); }
.bkv3-plus-icon { font-size: 1rem; font-weight: 900; color: var(--gl); }

/* ── Card body ── */
.bkv3-card-body { padding: 1.1rem 1.25rem; display: flex; flex-direction: column; gap: .85rem; }

/* ═══════════════════════
   CARD 1: Airport search
═══════════════════════ */

/* Search input */
.bkv3-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.bkv3-search-ico {
  position: absolute;
  left: .85rem;
  color: var(--gl);
  opacity: .7;
  pointer-events: none;
  flex-shrink: 0;
}
.bkv3-search-input {
  width: 100%;
  background: var(--d2);
  border: 1.5px solid var(--br);
  border-radius: 10px;
  padding: .75rem 1rem .75rem 2.6rem;
  color: var(--li);
  font-family: var(--font-heading);
  font-size: .92rem;
  font-weight: 500;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.bkv3-search-input::placeholder { color: var(--sl); opacity: .7; }
.bkv3-search-input:focus {
  border-color: var(--gl);
  box-shadow: 0 0 0 3px rgba(212,175,55,.1);
}

/* Selected airport row */
.bkv3-selected {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1rem;
  background: rgba(212,175,55,.07);
  border: 1.5px solid rgba(212,175,55,.25);
  border-radius: 10px;
}
.bkv3-selected.show { display: flex; }
.bkv3-selected-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bkv3-selected-name { font-size: .95rem; font-weight: 800; color: var(--li); line-height: 1.2; }
.bkv3-selected-sub  { font-size: .75rem; color: var(--sl); }
.bkv3-change-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--gl);
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
  white-space: nowrap;
}
.bkv3-change-btn:hover { opacity: .75; }

/* ═══════════════════════
   CARD 2: Sector/Service
═══════════════════════ */

.bkv3-field { display: flex; flex-direction: column; gap: .35rem; }
.bkv3-field-label {
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sl);
}

/* Custom select */
.bkv3-select-wrap { position: relative; }
.bkv3-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: var(--d2);
  border: 1.5px solid var(--br);
  border-radius: 10px;
  color: var(--li);
  font-family: var(--font-heading);
  font-size: .92rem;
  font-weight: 500;
  padding: .75rem 2.2rem .75rem .9rem;
  cursor: pointer;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  /* Match the search input exactly */
  height: auto;
  line-height: 1.5;
}
.bkv3-select:focus { border-color: var(--gl); box-shadow: 0 0 0 3px rgba(212,175,55,.1); }
/* Placeholder option — grey when nothing selected */
.bkv3-select:invalid,
.bkv3-select[data-chosen="0"],
.bkv3-select option[value=""] { color: var(--sl); }
.bkv3-select[data-chosen="1"] { color: var(--li); }
.bkv3-select option { background: var(--d2); color: var(--li); font-weight: 500; }
html[data-theme="light"] .bkv3-select[data-chosen="0"] { color: #9ca3af; }
html[data-theme="light"] .bkv3-select[data-chosen="1"] { color: #0f172a; }
/* Small chevron — same style as search icon */
.bkv3-select-wrap::after {
  content: '';
  position: absolute;
  right: .85rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 10px;
  height: 6px;
  background-color: var(--sl);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  opacity: .7;
}

/* /* -- Passenger type table -- */
.bkv3-pax-table {
  border: 1.5px solid var(--br);
  border-radius: 10px;
  overflow: hidden;
  background: var(--d2);
}

/* Inline single-row: all three types side by side */
.bkv3-pax-inline {
  display: flex;
  flex-direction: row;
}
.bkv3-pax-inline .bkv3-pax-row-item {
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  border-bottom: none;
  border-right: 1px solid var(--br);
  padding: .7rem .5rem;
  text-align: center;
}
.bkv3-pax-inline .bkv3-pax-row-item:last-child { border-right: none; }
.bkv3-pax-inline .bkv3-pax-label-col { display: flex; justify-content: center; }
.bkv3-pax-inline .bkv3-pax-type { font-size: .8rem; justify-content: center; }
.bkv3-pax-inline .bkv3-pax-count { font-size: 1.05rem; min-width: 20px; }
.bkv3-pax-inline .bkv3-pax-btn  { width: 26px; height: 26px; font-size: .9rem; border-radius: 6px; }
.bkv3-pax-inline .bkv3-pax-ctrl { gap: .35rem; }

.bkv3-pax-row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--br);
}
.bkv3-pax-row-last { border-bottom: none; }
.bkv3-pax-label-col { flex: 1; min-width: 0; }
.bkv3-pax-type {
  font-size: .88rem; font-weight: 700; color: var(--li);
  display: flex; align-items: center; gap: .35rem;
}
.bkv3-pax-age {
  font-size: .65rem; font-weight: 500; color: var(--sl);
  background: rgba(255,255,255,.06); border: 1px solid var(--br);
  border-radius: 50px; padding: 1px 6px;
}
.bkv3-pax-ctrl { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.bkv3-pax-count {
  font-size: 1.2rem; font-weight: 900; color: var(--gl);
  min-width: 28px; text-align: center; font-variant-numeric: tabular-nums;
  display: inline-block;
}

/* Light theme */
html[data-theme="light"] .bkv3-pax-table { background: #f8fafc; border-color: #e2e8f0; }
html[data-theme="light"] .bkv3-pax-row-item { border-bottom-color: #e2e8f0; border-right-color: #e2e8f0; }
html[data-theme="light"] .bkv3-pax-type { color: #0f172a; }
html[data-theme="light"] .bkv3-pax-count { color: #92400e; }
html[data-theme="light"] .bkv3-pax-age { background: rgba(0,0,0,.04); border-color: #e2e8f0; }
Passengers stepper (kept for backwards compat) */
.bkv3-pax-stepper {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--d2);
  border: 1.5px solid var(--br);
  border-radius: 10px;
  padding: .55rem .85rem;
  transition: border-color .2s;
}
.bkv3-pax-stepper:focus-within { border-color: var(--gl); }
.bkv3-pax-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--br);
  background: var(--d3);
  color: var(--li);
  font-size: 1.1rem; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .15s;
  line-height: 1;
}
.bkv3-pax-btn:hover:not([disabled]) { background: var(--gp); border-color: var(--gl); color: var(--gl); }
.bkv3-pax-btn[disabled] { opacity: .3; cursor: not-allowed; }
.bkv3-pax-display { text-align: center; min-width: 90px; }
.bkv3-pax-display > span:first-child { font-size: 1.5rem; font-weight: 900; color: var(--gl); display: block; line-height: 1; }
.bkv3-pax-word { font-size: .65rem; color: var(--sl); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* ── Service description panel ── */
.bkv3-svc-desc {
  background: rgba(212,175,55,.06);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  animation: svc-desc-in .2s ease;
}
@keyframes svc-desc-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}
.bkv3-svc-desc-panel { /* panels default hidden via JS; shown by selectServiceDd */ }
.bkv3-svc-desc-title {
  font-size: .88rem; font-weight: 700; color: var(--li);
  line-height: 1.4; margin-bottom: .75rem;
  display: flex; align-items: center; flex-wrap: wrap; gap: .5rem;
}
.bkv3-svc-desc-badge {
  font-size: .62rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: #000;
  background: linear-gradient(135deg, var(--gl), #a07820);
  border-radius: 50px; padding: 2px 9px; white-space: nowrap; flex-shrink: 0;
}
.bkv3-svc-desc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: .65rem;
}
.bkv3-svc-desc-list li { display: flex; align-items: flex-start; gap: .5rem; }
.bkv3-sdi-icon { font-size: .9rem; flex-shrink: 0; margin-top: .1rem; }
.bkv3-svc-desc-list strong { color: var(--li); font-weight: 700; display: block; font-size: .78rem; }
.bkv3-svc-desc-list span { color: var(--sl); font-size: .74rem; line-height: 1.4; display: block; }
.bkv3-svc-desc-list em { color: var(--gl); font-style: normal; font-weight: 700; }
.bkv3-svc-desc-note {
  font-size: .68rem; color: var(--sl); margin: 0; font-style: italic;
  border-top: 1px solid rgba(212,175,55,.15); padding-top: .5rem;
}
html[data-theme="light"] .bkv3-svc-desc { background: rgba(245,158,11,.05); border-color: rgba(245,158,11,.2); }
html[data-theme="light"] .bkv3-svc-desc-title { color: #0f172a; }
html[data-theme="light"] .bkv3-svc-desc-list strong { color: #0f172a; }
html[data-theme="light"] .bkv3-svc-desc-note { border-top-color: rgba(245,158,11,.15); }

/* Price box */
.bkv3-price-box {
  background: rgba(212,175,55,.07);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 10px;
  padding: .9rem 1.1rem;
  margin-top: .25rem;
}
.bkv3-price-meta {
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sl);
  margin-bottom: .2rem;
}
.bkv3-price-per { font-weight: 500; letter-spacing: .04em; }
.bkv3-price-amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gl);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.bkv3-price-note {
  font-size: .78rem;
  color: var(--sl);
  margin-top: .25rem;
  line-height: 1.5;
}

/* ═══════════════════════
   CARD 3: Add-ons
═══════════════════════ */
.bkv3-addon-body { padding: .75rem 1.25rem 1rem; gap: 0; }

/* Each addon: full-width row with checkbox */
.bkv3-addon-row-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--br);
  cursor: pointer;
  transition: background .12s;
}
.bkv3-addon-row-item:last-of-type { border-bottom: none; }
.bkv3-addon-row-item:hover { background: rgba(212,175,55,.04); margin: 0 -.25rem; padding-left: .25rem; padding-right: .25rem; border-radius: 8px; }

/* Real visible checkbox */
.bkv3-addon-cb {
  width: 18px; height: 18px;
  border: 2px solid var(--br);
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  background: var(--d2);
  transition: all .15s;
  position: relative;
}
.bkv3-addon-cb:checked {
  background: var(--gl);
  border-color: var(--gl);
}
.bkv3-addon-cb:checked::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 5px; height: 9px;
  border: 2px solid #000;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.bkv3-addon-cb:focus { outline: 2px solid var(--gl); outline-offset: 2px; }

.bkv3-addon-icon-wrap { font-size: 1.4rem; flex-shrink: 0; }
.bkv3-addon-text { flex: 1; min-width: 0; }
.bkv3-addon-title { font-size: .92rem; font-weight: 700; color: var(--li); }
.bkv3-addon-subtitle { font-size: .75rem; color: var(--sl); margin-top: 1px; }
.bkv3-addon-price-tag {
  font-size: .92rem;
  font-weight: 800;
  color: var(--gl);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Total row */
.bkv3-total-row {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0 0;
  border-top: 1px solid var(--br);
  margin-top: .5rem;
}
.bkv3-total-row.show { display: flex; }
.bkv3-total-label { font-size: .8rem; font-weight: 600; color: var(--sl); }
.bkv3-total-val { font-size: 1.35rem; font-weight: 900; color: var(--gl); font-variant-numeric: tabular-nums; }

/* ── Responsive ── */
@media (max-width: 540px) {
  .bkv3-card-body { padding: .9rem 1rem; }
  .bkv3-price-amount { font-size: 1.9rem; }
  .bkv3-pax-display { min-width: 70px; }
}

/* ── Light theme ── */
html[data-theme="light"] .bkv3-card { background: #fff; border-color: #e2e8f0; }
html[data-theme="light"] .bkv3-card-head { background: #f8fafc; border-bottom-color: #e2e8f0; color: #64748b; }
html[data-theme="light"] .bkv3-search-input { background: #fff; border-color: #e2e8f0; color: #0f172a; }
html[data-theme="light"] .bkv3-search-input:focus { border-color: #f59e0b; box-shadow: 0 0 0 3px rgba(245,158,11,.1); }
html[data-theme="light"] .bkv3-selected { background: rgba(245,158,11,.07); border-color: rgba(245,158,11,.3); }
html[data-theme="light"] .bkv3-selected-name { color: #0f172a; }
html[data-theme="light"] .bkv3-select { background: #fff; border-color: #e2e8f0; color: #0f172a; }
html[data-theme="light"] .bkv3-select:focus { border-color: #f59e0b; box-shadow: 0 0 0 3px rgba(245,158,11,.1); }
html[data-theme="light"] .bkv3-select option { background: #fff; color: #0f172a; font-weight: 500; }
html[data-theme="light"] .bkv3-select-wrap::after { background-color: #64748b; }
html[data-theme="light"] .bkv3-pax-stepper { background: #f8fafc; border-color: #e2e8f0; }
html[data-theme="light"] .bkv3-pax-btn { background: #fff; border-color: #e2e8f0; color: #374151; }
html[data-theme="light"] .bkv3-pax-btn:hover:not([disabled]) { background: rgba(245,158,11,.1); border-color: #f59e0b; color: #92400e; }
html[data-theme="light"] .bkv3-pax-display > span:first-child { color: #92400e; }
html[data-theme="light"] .bkv3-price-box { background: rgba(245,158,11,.06); border-color: rgba(245,158,11,.2); }
html[data-theme="light"] .bkv3-price-amount { color: #92400e; }
html[data-theme="light"] .bkv3-addon-row-item:hover { background: rgba(245,158,11,.04); }
html[data-theme="light"] .bkv3-addon-row-item { border-bottom-color: #e2e8f0; }
html[data-theme="light"] .bkv3-addon-title { color: #0f172a; }
html[data-theme="light"] .bkv3-addon-cb { background: #fff; border-color: #cbd5e1; }
html[data-theme="light"] .bkv3-total-row { border-top-color: #e2e8f0; }
html[data-theme="light"] .bkv3-total-val { color: #92400e; }


/* Step 2 card wrapper (unchanged) */
  background: var(--d2);
  border: 1px solid var(--br);
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 8px 48px rgba(0,0,0,.35);
  margin-bottom: 1.5rem;
}

/* Header */
.bk1-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, var(--d3) 0%, rgba(212,175,55,.06) 100%);
  border-bottom: 1px solid var(--br);
  border-radius: 20px 20px 0 0;
  flex-wrap: wrap;
  gap: .75rem;
}
.bk1-header-left { display: flex; flex-direction: column; gap: .25rem; }
.bk1-step-badge {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gl);
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 50px;
  padding: 2px 10px;
  display: inline-block;
  width: fit-content;
}
.bk1-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--li);
  margin: 0;
}

/* Price badge in header */
.bk1-header-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .1rem;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 12px;
  padding: .6rem 1.1rem;
  min-width: 140px;
  text-align: right;
}
.bk1-price-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sl);
}
.bk1-price-val {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gl);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.bk1-price-num { color: var(--gl); }
.bk1-price-breakdown {
  font-size: .72rem;
  color: var(--sl);
  font-weight: 500;
  display: block;
  margin-top: 1px;
}
.bk1-price-na {
  font-size: .82rem;
  font-weight: 500;
  color: var(--sl);
}

/* Body */
.bk1-body { padding: 1.5rem 1.75rem 1.75rem; }

/* Rows */
/* Step 2 card wrapper (unchanged) */
  background: var(--d2);
  border: 1px solid var(--br);
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 8px 48px rgba(0,0,0,.35);
  margin-bottom: 1.5rem;
}

/* Header */
.bk1-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, var(--d3) 0%, rgba(212,175,55,.06) 100%);
  border-bottom: 1px solid var(--br);
  border-radius: 20px 20px 0 0;
  flex-wrap: wrap;
  gap: .75rem;
}
.bk1-header-left { display: flex; flex-direction: column; gap: .25rem; }
.bk1-step-badge {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gl);
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 50px;
  padding: 2px 10px;
  display: inline-block;
  width: fit-content;
}
.bk1-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--li);
  margin: 0;
}

/* Price badge in header */
.bk1-header-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .1rem;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 12px;
  padding: .6rem 1.1rem;
  min-width: 140px;
  text-align: right;
}
.bk1-price-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sl);
}
.bk1-price-val {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gl);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.bk1-price-num { color: var(--gl); }
.bk1-price-breakdown {
  font-size: .72rem;
  color: var(--sl);
  font-weight: 500;
  display: block;
  margin-top: 1px;
}
.bk1-price-na {
  font-size: .82rem;
  font-weight: 500;
  color: var(--sl);
}

/* Body */
.bk1-body { padding: 1.5rem 1.75rem 1.75rem; }

/* Rows */
.bk1-row { display: grid; gap: 1.5rem; }
.bk1-row-2 { grid-template-columns: 1fr 1fr; }

/* Field groups */
.bk1-field-group { display: flex; flex-direction: column; gap: .75rem; }
.bk1-field-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 800;
  color: var(--gl);
  text-transform: uppercase;
  letter-spacing: .09em;
}
.bk1-field-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,.25) 0%, transparent 100%);
}
.bk1-field-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gl), #a07820);
  color: #000;
  font-size: .72rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bk1-sublabel {
  font-size: .7rem;
  font-weight: 700;
  color: var(--sl);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .35rem;
}

/* Sector + Pax grid */
.bk1-sector-pax-grid { display: flex; flex-direction: column; gap: 1rem; }

/* Sector pills */
.bk1-sector-pills { display: flex; gap: .5rem; }
.bk1-sector-pill {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .6rem .5rem;
  border: 2px solid var(--br);
  border-radius: 10px;
  background: var(--d3);
  color: var(--sl);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-heading);
}
.bk1-sector-pill:hover {
  border-color: rgba(212,175,55,.4);
  color: var(--li);
}
.bk1-sector-pill.active {
  border-color: var(--gl);
  background: rgba(212,175,55,.12);
  color: var(--gl);
  box-shadow: 0 0 0 3px rgba(212,175,55,.1);
}
.bk1-pill-disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Passenger stepper */
.bk1-pax-stepper {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--d3);
  border: 1px solid var(--br);
  border-radius: 10px;
  padding: .45rem .6rem;
}
.bk1-pax-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--br);
  background: var(--d2);
  color: var(--li);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .15s;
  line-height: 1;
}
.bk1-pax-btn:hover:not(:disabled) { background: var(--gp); border-color: var(--gl); color: var(--gl); }
.bk1-pax-btn:disabled { opacity: .35; cursor: not-allowed; }
.bk1-pax-val {
  flex: 1;
  text-align: center;
}
.bk1-pax-num {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--gl);
  line-height: 1;
  display: block;
}
.bk1-pax-unit {
  font-size: .68rem;
  color: var(--sl);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Service tiles */
.bk1-service-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.bk1-svc-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1rem .75rem;
  border: 2px solid var(--br);
  border-radius: 14px;
  background: var(--d3);
  cursor: pointer;
  transition: all .22s;
  font-family: var(--font-heading);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bk1-svc-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(212,175,55,.06));
  opacity: 0;
  transition: opacity .2s;
}
.bk1-svc-tile:hover { border-color: rgba(212,175,55,.5); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.25); }
.bk1-svc-tile:hover::before { opacity: 1; }
.bk1-svc-tile.active {
  border-color: var(--gl);
  background: rgba(212,175,55,.1);
  box-shadow: 0 0 0 3px rgba(212,175,55,.12), 0 6px 24px rgba(0,0,0,.2);
}
.bk1-svc-tile.active::before { opacity: 1; }
.bk1-svc-tile.bk1-svc-unavailable { opacity: .4; cursor: not-allowed; pointer-events: none; }
.bk1-svc-icon { font-size: 1.8rem; line-height: 1; }
.bk1-svc-info { display: flex; flex-direction: column; gap: 1px; }
.bk1-svc-name { font-size: .88rem; font-weight: 800; color: var(--li); line-height: 1.2; }
.bk1-svc-sub  { font-size: .7rem; color: var(--sl); font-weight: 500; }
.bk1-svc-price {
  font-size: .88rem;
  font-weight: 800;
  color: var(--gl);
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 6px;
  padding: 2px 8px;
  min-width: 40px;
}

/* Add-ons premium cards */
.bk1-addon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .75rem; }
.bk1-addon-card {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.1rem;
  border: 2px solid var(--br);
  border-radius: 14px;
  background: var(--d3);
  cursor: pointer;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.bk1-addon-card input[type=checkbox] { display: none; }
.bk1-addon-card:hover {
  border-color: var(--addon-border, rgba(212,175,55,.3));
  background: var(--addon-bg, rgba(212,175,55,.08));
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.bk1-addon-selected {
  border-color: var(--addon-border, var(--gl)) !important;
  background: var(--addon-bg, rgba(212,175,55,.1)) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--addon-border, var(--gl)) 20%, transparent), 0 4px 20px rgba(0,0,0,.2) !important;
}
.bk1-addon-icon {
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.bk1-addon-selected .bk1-addon-icon { background: var(--addon-bg, rgba(212,175,55,.15)); }
.bk1-addon-info { flex: 1; min-width: 0; }
.bk1-addon-name { font-size: .9rem; font-weight: 700; color: var(--li); margin-bottom: 2px; }
.bk1-addon-desc { font-size: .76rem; color: var(--sl); line-height: 1.4; }
.bk1-addon-right { display: flex; flex-direction: column; align-items: flex-end; gap: .3rem; flex-shrink: 0; }
.bk1-addon-price {
  font-size: .88rem;
  font-weight: 800;
  color: var(--addon-accent, var(--gl));
  white-space: nowrap;
}
.bk1-addon-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--br);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  background: transparent;
}
.bk1-addon-check svg { width: 11px; height: 11px; opacity: 0; transition: opacity .15s; stroke: #000; }
.bk1-addon-selected .bk1-addon-check {
  background: var(--addon-accent, var(--gl));
  border-color: var(--addon-accent, var(--gl));
}
.bk1-addon-selected .bk1-addon-check svg { opacity: 1; }

/* Optional tag */
.bk1-optional-tag {
  font-size: .62rem;
  font-weight: 600;
  color: var(--sl);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--br);
  border-radius: 50px;
  padding: 1px 8px;
  text-transform: none;
  letter-spacing: .03em;
  margin-left: .25rem;
}

/* Total row */
.bk1-total-row {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding: .85rem 1.1rem;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 12px;
}
.bk1-total-row.show { display: flex; }
.bk1-total-left { display: flex; align-items: center; gap: .5rem; }
.bk1-total-icon { font-size: 1rem; }
.bk1-total-label { font-size: .82rem; font-weight: 600; color: var(--sl); }
.bk1-total-val { font-size: 1.4rem; font-weight: 900; color: var(--gl); font-variant-numeric: tabular-nums; }

/* Step 2 card spacing */
.bk2-card-gap { margin-top: 1.25rem; }

/* ── Responsive ── */
@media (max-width: 700px) {
  .bk1-row-2 { grid-template-columns: 1fr; }
  .bk1-service-tiles { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .bk1-svc-tile { padding: .75rem .4rem; }
  .bk1-svc-icon { font-size: 1.4rem; }
  .bk1-svc-name { font-size: .75rem; }
  .bk1-svc-sub  { font-size: .62rem; }
  .bk1-svc-price { font-size: .72rem; padding: 2px 5px; }
  .bk1-header { flex-direction: column; align-items: flex-start; }
  .bk1-header-price { width: 100%; min-width: unset; align-items: flex-start; flex-direction: row; align-items: center; justify-content: space-between; }
  .bk1-price-val { font-size: 1.4rem; }
  .bk1-body { padding: 1.25rem 1.1rem; }
  .bk1-addon-grid { grid-template-columns: 1fr; }
  .bk1-sector-pills { gap: .4rem; }
}

/* ── Light theme ── */
html[data-theme="light"] .bk1-card { background: #fff; border-color: #e2e8f0; box-shadow: 0 4px 24px rgba(0,0,0,.08); }
html[data-theme="light"] .bk1-header { background: linear-gradient(135deg, #f8fafc 0%, rgba(245,158,11,.05) 100%); border-bottom-color: #e2e8f0; }
html[data-theme="light"] .bk1-title { color: #0f172a; }
html[data-theme="light"] .bk1-price-label { color: #64748b; }
html[data-theme="light"] .bk1-price-val { color: #b45309; }
html[data-theme="light"] .bk1-price-num { color: #b45309; }
html[data-theme="light"] .bk1-header-price { background: rgba(245,158,11,.07); border-color: rgba(245,158,11,.25); }
html[data-theme="light"] .bk1-field-group .bk1-sublabel { color: #64748b; }
html[data-theme="light"] .bk1-sector-pill { background: #f8fafc; border-color: #e2e8f0; color: #64748b; }
html[data-theme="light"] .bk1-sector-pill:hover { border-color: #f59e0b; color: #92400e; }
html[data-theme="light"] .bk1-sector-pill.active { background: rgba(245,158,11,.1); border-color: #f59e0b; color: #92400e; }
html[data-theme="light"] .bk1-pax-stepper { background: #f8fafc; border-color: #e2e8f0; }
html[data-theme="light"] .bk1-pax-btn { background: #fff; border-color: #e2e8f0; color: #374151; }
html[data-theme="light"] .bk1-pax-btn:hover:not(:disabled) { background: rgba(245,158,11,.1); border-color: #f59e0b; color: #92400e; }
html[data-theme="light"] .bk1-pax-num { color: #92400e; }
html[data-theme="light"] .bk1-svc-tile { background: #f8fafc; border-color: #e2e8f0; }
html[data-theme="light"] .bk1-svc-tile:hover { border-color: #f59e0b; }
html[data-theme="light"] .bk1-svc-tile.active { background: rgba(245,158,11,.08); border-color: #f59e0b; }
html[data-theme="light"] .bk1-svc-name { color: #0f172a; }
html[data-theme="light"] .bk1-svc-price { background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.2); color: #92400e; }
html[data-theme="light"] .bk1-addon-card { background: #f8fafc; border-color: #e2e8f0; }
html[data-theme="light"] .bk1-addon-name { color: #0f172a; }
html[data-theme="light"] .bk1-addon-check { border-color: #cbd5e1; }
html[data-theme="light"] .bk1-total-row { background: rgba(245,158,11,.06); border-color: rgba(245,158,11,.2); }
html[data-theme="light"] .bk1-total-val { color: #92400e; }

/* Existing price-strip / addon kept for any other usage */

/* ── Step 2 form rows — kept as-is ── */
.bk-fr-4 { grid-template-columns: 1fr 1fr; }
.bk-fg input[type="date"],
.bk-fg input[type="time"] { cursor: pointer; }

/* Step 2 card wrapper */
.book-form-section .book-form-card {
  width: 100%;
  border-radius: 16px;
  margin-top: 0;
  box-shadow: 0 4px 40px rgba(0,0,0,.35);
}
.book-form-section .bfc-body {
  max-height: none;
  overflow-y: visible;
  padding: 1.75rem 2rem 2rem;
}
.book-form-section .bfc-head {
  padding: 1.2rem 1.75rem;
  text-align: left;
}
.book-form-section .bfc-head h2 {
  font-size: 1.1rem;
  font-weight: 800;
}

/* ── Time AM/PM hint ── */
.time-ampm-hint {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--gl);
  margin-top: .3rem;
  min-height: 1.1em;
}
html[data-theme="light"] .time-ampm-hint { color: #b8952e; }

/* ── Submit row ── */
.bk-submit-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  margin-top: .25rem;
}
.bk-submit-row .book-submit {
  flex-shrink: 0;
  width: auto;
  min-width: 280px;
  margin-top: 0;
}
.bk-submit-row .book-note {
  text-align: center;
  margin-top: 0;
  font-size: .75rem;
}

/* ── Success card ── */
.book-form-wrap .book-success {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 40px rgba(0,0,0,.08);
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
[data-theme="dark"] .book-form-wrap .book-success {
  background: rgba(255,255,255,.05);
  border-color: rgba(212,175,55,.25);
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
}
.book-success-ico {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: .75rem;
}
.book-form-wrap .book-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: .6rem;
}
[data-theme="dark"] .book-form-wrap .book-success h3 { color: #f3f4f6; }
.book-success-ref {
  display: inline-block;
  background: #fef3c7;
  border: 1px solid #f59e0b;
  color: #92400e;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 8px;
  padding: .4rem 1rem;
  margin-bottom: 1.25rem;
}
[data-theme="dark"] .book-success-ref {
  background: rgba(212,175,55,.15);
  border-color: rgba(212,175,55,.5);
  color: var(--gl);
}
.book-form-wrap .book-success p {
  font-size: .9rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: .55rem;
}
[data-theme="dark"] .book-form-wrap .book-success p { color: #d1d5db; }
.book-form-wrap .book-success p strong { color: #111827; }
[data-theme="dark"] .book-form-wrap .book-success p strong { color: #f9fafb; }
.book-success-urgent {
  font-size: .85rem !important;
  color: #6b7280 !important;
  margin-top: .75rem !important;
  padding-top: .75rem;
  border-top: 1px solid #e5e7eb;
}
[data-theme="dark"] .book-success-urgent {
  color: #9ca3af !important;
  border-top-color: rgba(255,255,255,.1);
}
.book-success-btns {
  display: flex;
  gap: .85rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.bsb-track, .bsb-wa {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.4rem;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .18s, transform .18s;
}
.bsb-track:hover, .bsb-wa:hover { opacity: .88; transform: translateY(-1px); }
.bsb-track {
  background: #111827;
  color: #ffffff;
}
[data-theme="dark"] .bsb-track {
  background: rgba(255,255,255,.12);
  color: #f3f4f6;
  border: 1px solid rgba(255,255,255,.18);
}
.bsb-wa {
  background: #25D366;
  color: #ffffff;
}

/* ── Book page responsive ── */
@media (max-width: 960px) {
  .bfc-top-grid { grid-template-columns: 1fr; gap: 1rem; }
  .book-form-section .bfc-body { padding: 1.25rem 1.5rem 1.5rem; }
  .book-form-section .bfc-head { padding: 1rem 1.5rem; }
  .bk-submit-row { flex-direction: column; align-items: center; gap: .6rem; }
  .bk-submit-row .book-submit { width: 100%; max-width: 320px; }
  .bk-submit-row .book-note { text-align: center; }
}
@media (max-width: 600px) {
  .book-hero-compact { padding: 94px 4% 40px; }
  .book-hero-compact h1 { font-size: 1.65rem; }
  .book-trust-pills { gap: .4rem; }
  .btp { font-size: .72rem; padding: .3rem .7rem; }
  .bk-fr, .bk-fr-4 { grid-template-columns: 1fr; }
  .bfc-head h2 { font-size: 1rem; }
  .book-form-section { padding: 1.5rem 4% 3rem; }
  .book-info-inner { grid-template-columns: 1fr; }
}

/* ── PRINT ── */
@media print {
  #nav, .site-footer, .toast, #cursor, #cursor-ring { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: inherit; }
}

/* ================================================================
   WORLDWIDE PAGES — worldwide.php + worldwide-airport.php
   ================================================================ */

/* ── Shared buttons ── */
.btn-ww-gold {
  display:inline-flex;align-items:center;gap:.5rem;
  background:linear-gradient(135deg,var(--gb),var(--gold));color:#000;
  font-weight:800;font-size:.92rem;padding:13px 28px;border-radius:var(--radius-md);
  text-decoration:none;box-shadow:0 4px 18px rgba(212,175,55,.35);transition:all .25s;
  border:none;cursor:pointer;
}
.btn-ww-gold:hover { color:#000 !important; filter:brightness(1.08); box-shadow:0 6px 24px rgba(212,175,55,.5); }
.btn-ww-ghost {
  display:inline-flex;align-items:center;gap:.6rem;
  background:#25D366;border:none;
  color:#fff;font-weight:700;font-size:.92rem;padding:13px 22px;
  border-radius:50px;text-decoration:none;transition:all .25s;cursor:pointer;
  box-shadow:0 4px 16px rgba(37,211,102,.35);
}
.btn-ww-ghost:hover { background:#1ebe5d; color:#fff !important; box-shadow:0 6px 22px rgba(37,211,102,.5); transform:translateY(-1px); }
html[data-theme="light"] .btn-ww-ghost { background:#25D366; border:none; color:#fff; }

/* ── Worldwide Hero ── */
.ww-hero {
  position:relative;min-height:580px;display:flex;align-items:center;justify-content:center;
  text-align:center;padding:150px 5% 90px;
  background-image:url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920&q=85');
  background-size:cover;background-position:center 40%;background-attachment:fixed;overflow:hidden;
}
.ww-hero-overlay {
  position:absolute;inset:0;
  background:
    linear-gradient(to right, rgba(6,10,15,.95) 0%,rgba(6,10,15,.5) 28%,transparent 48%),
    linear-gradient(to left,  rgba(6,10,15,.95) 0%,rgba(6,10,15,.5) 28%,transparent 48%),
    linear-gradient(to bottom,rgba(6,10,15,.75) 0%,rgba(6,10,15,.3) 45%,rgba(6,10,15,.7) 100%);
}
.ww-hero-inner { position:relative;z-index:2;max-width:820px;width:100%;margin:0 auto; }
.ww-hero-badge {
  display:inline-block;background:rgba(212,175,55,.15);border:1px solid rgba(212,175,55,.35);
  color:var(--gl);font-size:.78rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  padding:.35rem 1rem;border-radius:20px;margin-bottom:1.25rem;
}
.ww-hero-title { font-size:clamp(2rem,5vw,3.4rem);font-weight:800;color:#fff;line-height:1.15;margin-bottom:1rem; }
html[data-theme="light"] .ww-hero-title { color:#fff !important; }
html[data-theme="light"] .ww-hero-sub { color:rgba(255,255,255,.85) !important; }
html[data-theme="light"] .ww-hero-badge { color:#fff !important; background:rgba(255,255,255,.15) !important; border-color:rgba(255,255,255,.25) !important; }
.ww-hero-accent { color:var(--gl); }
.ww-hero-sub { font-size:1.05rem;color:rgba(238,242,247,.78);max-width:600px;margin:0 auto 2rem;line-height:1.7; }
.ww-hero-ctas { display:flex;gap:1rem;flex-wrap:wrap;justify-content:center;margin-bottom:2.5rem; }
.ww-hero-stats {
  display:flex;align-items:center;justify-content:center;gap:0;flex-wrap:wrap;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);
  border-radius:14px;padding:1rem 1.5rem;max-width:480px;margin:0 auto;
}
.ww-stat { display:flex;flex-direction:column;align-items:center;padding:0 1.5rem; }
.ww-stat strong { font-size:1.15rem;font-weight:800;color:var(--gl);line-height:1.1; }
.ww-stat span   { font-size:.7rem;color:rgba(238,242,247,.55);margin-top:.2rem;letter-spacing:.04em; }
.ww-stat-div    { width:1px;height:28px;background:rgba(255,255,255,.12);flex-shrink:0; }

/* ── Why grid ── */
.ww-why-grid { display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem; }
.ww-why-card {
  background:var(--d3);border:1px solid var(--br);border-radius:var(--radius-md);
  padding:1.8rem;transition:transform .25s,box-shadow .25s,border-color .25s;
  position:relative;overflow:hidden;
}
.ww-why-card::before {
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--gl),var(--gold));opacity:0;transition:opacity .3s;
}
.ww-why-card:hover { transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:var(--gl); }
.ww-why-card:hover::before { opacity:1; }
.ww-why-icon { font-size:2.2rem;margin-bottom:.9rem;display:inline-flex;align-items:center;justify-content:center;width:52px;height:52px;background:var(--gp);border:1px solid var(--br);border-radius:12px; }
.ww-why-card h3 { font-size:1.05rem;font-weight:700;color:var(--w);margin-bottom:.5rem; }
.ww-why-card p  { font-size:.88rem;color:var(--sl);line-height:1.7; }
html[data-theme="light"] .ww-why-card { background:var(--d);border-color:var(--br); }
html[data-theme="light"] .ww-why-card h3 { color:var(--li); }

/* ── Region tabs ── */
.ww-search-bar {
  position:relative;display:flex;align-items:center;
  background:var(--d3);border:1.5px solid var(--br);border-radius:50px;
  padding:.6rem 1rem .6rem 2.8rem;margin-bottom:1.5rem;
  transition:border-color .3s,box-shadow .3s;
}
.ww-search-bar:focus-within {
  border-color:var(--gl);box-shadow:0 0 0 3px rgba(var(--gl-rgb),.12);
}
.ww-search-bar-ico {
  position:absolute;left:1rem;top:50%;transform:translateY(-50%);
  color:var(--sl);pointer-events:none;transition:color .3s;
}
.ww-search-bar:focus-within .ww-search-bar-ico { color:var(--gl); }
.ww-search-bar input {
  flex:1;background:transparent;border:none;outline:none;
  color:var(--li);font-size:.92rem;font-family:inherit;
}
.ww-search-bar input::placeholder { color:var(--sl);opacity:.7; }
.ww-search-count {
  font-size:.75rem;font-weight:600;color:var(--gl);white-space:nowrap;margin-right:.5rem;
}
.ww-search-clear {
  display:flex;align-items:center;justify-content:center;
  width:26px;height:26px;border-radius:50%;
  background:var(--gp);border:none;color:var(--gl);
  font-size:.8rem;cursor:pointer;transition:background .2s;
}
.ww-search-clear:hover { background:var(--gl);color:#000; }
html[data-theme="light"] .ww-search-bar { background:var(--d);border-color:var(--br); }
html[data-theme="light"] .ww-search-bar:focus-within { border-color:var(--gl); }

.ww-region-tabs {
  display:flex;gap:.6rem;flex-wrap:wrap;margin-bottom:2rem;
  padding-bottom:1rem;border-bottom:1px solid var(--br);
}
.ww-rtab {
  background:transparent;border:1.5px solid var(--br);color:var(--sl);
  padding:9px 18px;border-radius:50px;font-size:.84rem;font-weight:600;
  cursor:pointer;transition:all .2s;white-space:nowrap;
}
.ww-rtab:hover { background:var(--gp);color:var(--gl);border-color:var(--gl); }
.ww-rtab.active { background:var(--gl);color:#000;border-color:var(--gl);font-weight:700; }
.ww-region-panel { display:none; }
.ww-region-panel.active { display:block; }

/* ── Airport grid — clean dark cards (4 per row, no images) ── */
.ww-apt-grid-new {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1.25rem;
}

.ww-apt-tile {
  position:relative;
  background:var(--d3);
  border:1px solid var(--br);
  border-radius:var(--radius-md);
  padding:1.5rem;
  overflow:hidden;
  transition:transform .3s cubic-bezier(.34,1.56,.64,1),
             box-shadow .3s,
             border-color .25s;
  display:flex;flex-direction:column;
}
.ww-apt-tile::before {
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--gl),var(--gold));
  opacity:0;transition:opacity .3s;
}
.ww-apt-tile:hover {
  transform:translateY(-5px);
  box-shadow:0 16px 40px rgba(0,0,0,.45);
  border-color:var(--gl);
}
.ww-apt-tile:hover::before { opacity:1; }
.ww-apt-tile.selected {
  border-color:var(--gl);
  box-shadow:0 0 0 2px var(--gl), 0 8px 24px rgba(212,175,55,.2);
}
.ww-apt-tile-body { display:flex;flex-direction:column;flex:1; }

/* Radial glow that appears on hover */
.ww-apt-tile-glow {
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse 80% 60% at 50% 110%, rgba(212,175,55,.12) 0%, transparent 70%);
  opacity:0;
  transition:opacity .35s;
  pointer-events:none;
}
.ww-apt-tile:hover .ww-apt-tile-glow { opacity:1; }

/* Top row: code badge + country */
.ww-apt-tile-top {
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:.6rem;
}
.ww-apt-tile-code {
  font-size:.75rem;font-weight:900;color:var(--gl);
  letter-spacing:.1em;
  background:var(--gp);border:1px solid var(--br);
  padding:4px 10px;border-radius:6px;
  transition:background .25s, border-color .25s;
}
.ww-apt-tile:hover .ww-apt-tile-code {
  background:var(--gl);color:#000;border-color:var(--gl);
}
.ww-apt-tile-country {
  font-size:.68rem;font-weight:700;color:var(--sl);
  letter-spacing:.05em;text-transform:uppercase;
  background:var(--b2);padding:3px 8px;border-radius:4px;
}

/* City + airport name */
.ww-apt-tile-city {
  font-size:1rem;font-weight:800;color:var(--w);
  margin-bottom:.2rem;line-height:1.2;
}
.ww-apt-tile-name {
  font-size:.8rem;color:var(--sl);line-height:1.5;
  margin-bottom:.75rem;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}

/* Description — always visible, clamped to 2 lines */
.ww-apt-tile-desc {
  font-size:.8rem;color:var(--sl);line-height:1.6;
  margin-bottom:1rem;flex:1;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
  transition:color .25s;
}
.ww-apt-tile:hover .ww-apt-tile-desc { color:rgba(238,242,247,.75); }

/* Action buttons */
.ww-apt-tile-btns { display:flex;gap:.6rem;margin-top:auto; }
.ww-tile-btn-info {
  flex:1;text-align:center;padding:9px 10px;
  border:1.5px solid var(--br);border-radius:8px;
  font-size:.78rem;font-weight:700;color:var(--sl);
  text-decoration:none;transition:all .2s;
  background:transparent;
}
.ww-tile-btn-info:hover { border-color:var(--gl);color:var(--gl);background:var(--gp); }
.ww-tile-btn-quote {
  flex:1;text-align:center;padding:9px 10px;
  background:linear-gradient(135deg,var(--gl),var(--gold));
  border:none;border-radius:8px;
  font-size:.78rem;font-weight:800;color:#000;
  cursor:pointer;transition:filter .2s,transform .15s;
  box-shadow:0 2px 8px rgba(var(--gl-rgb),.25);
}
.ww-tile-btn-quote:hover { filter:brightness(1.1);transform:scale(1.03);box-shadow:0 4px 14px rgba(var(--gl-rgb),.35); }

/* Light theme */
html[data-theme="light"] .ww-apt-tile { background:#fff;border-color:rgba(0,0,0,.1); }
html[data-theme="light"] .ww-apt-tile:hover { border-color:var(--gold);box-shadow:0 12px 32px rgba(0,0,0,.12); }
html[data-theme="light"] .ww-apt-tile-city { color:#111; }
html[data-theme="light"] .ww-apt-tile-name,
html[data-theme="light"] .ww-apt-tile-desc { color:#666; }
html[data-theme="light"] .ww-apt-tile-country { color:#888; }
html[data-theme="light"] .ww-tile-btn-info { border-color:rgba(0,0,0,.15);color:#555; }
html[data-theme="light"] .ww-tile-btn-info:hover { border-color:var(--gold);color:var(--gold);background:rgba(212,175,55,.08); }

/* Responsive */
@media (max-width:1100px) { .ww-apt-grid-new { grid-template-columns:repeat(3,1fr); } }
@media (max-width:768px)  { .ww-apt-grid-new { grid-template-columns:repeat(2,1fr); } }
@media (max-width:420px)  { .ww-apt-grid-new { grid-template-columns:1fr 1fr;gap:.65rem; } }

/* ── Worldwide page scroll-reveal animations ── */
.ww-reveal {
  opacity:0;
  transform:translateY(30px);
  transition:opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.ww-reveal.ww-revealed {
  opacity:1;
  transform:translateY(0);
}
.ww-reveal-left {
  opacity:0;
  transform:translateX(-40px);
  transition:opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.ww-reveal-left.ww-revealed {
  opacity:1;
  transform:translateX(0);
}
.ww-reveal-right {
  opacity:0;
  transform:translateX(40px);
  transition:opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.ww-reveal-right.ww-revealed {
  opacity:1;
  transform:translateX(0);
}
.ww-reveal-scale {
  opacity:0;
  transform:scale(.9);
  transition:opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.ww-reveal-scale.ww-revealed {
  opacity:1;
  transform:scale(1);
}
/* Stagger delays for grid children */
.ww-stagger > *:nth-child(1) { transition-delay:.05s; }
.ww-stagger > *:nth-child(2) { transition-delay:.1s; }
.ww-stagger > *:nth-child(3) { transition-delay:.15s; }
.ww-stagger > *:nth-child(4) { transition-delay:.2s; }
.ww-stagger > *:nth-child(5) { transition-delay:.25s; }
.ww-stagger > *:nth-child(6) { transition-delay:.3s; }
.ww-stagger > *:nth-child(7) { transition-delay:.35s; }
.ww-stagger > *:nth-child(8) { transition-delay:.4s; }
.ww-stagger > *:nth-child(9) { transition-delay:.45s; }
.ww-stagger > *:nth-child(10) { transition-delay:.5s; }

/* Hero entrance animations */
.ww-hero-badge { animation:wwFadeDown .6s .2s both; }
.ww-hero-title { animation:wwFadeDown .7s .35s both; }
.ww-hero-sub   { animation:wwFadeDown .7s .5s both; }
.ww-hero-ctas  { animation:wwFadeDown .7s .65s both; }
.ww-hero-stats { animation:wwFadeUp .7s .8s both; }

@keyframes wwFadeDown {
  from { opacity:0; transform:translateY(-20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes wwFadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Floating animation for hero stats */
.ww-hero-stats { animation:wwFadeUp .7s .8s both, wwFloat 6s 2s ease-in-out infinite; }
@keyframes wwFloat {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-5px); }
}

/* Pulse on region tab active */
.ww-rtab.active { animation:wwPulse .4s ease; }
@keyframes wwPulse {
  0%   { transform:scale(1); }
  50%  { transform:scale(1.05); }
  100% { transform:scale(1); }
}

/* Tile entrance when region panel becomes active */
.ww-region-panel.active .ww-apt-tile {
  animation:wwTileIn .5s cubic-bezier(.16,1,.3,1) both;
}
.ww-region-panel.active .ww-apt-tile:nth-child(1)  { animation-delay:.02s; }
.ww-region-panel.active .ww-apt-tile:nth-child(2)  { animation-delay:.06s; }
.ww-region-panel.active .ww-apt-tile:nth-child(3)  { animation-delay:.1s; }
.ww-region-panel.active .ww-apt-tile:nth-child(4)  { animation-delay:.14s; }
.ww-region-panel.active .ww-apt-tile:nth-child(5)  { animation-delay:.18s; }
.ww-region-panel.active .ww-apt-tile:nth-child(6)  { animation-delay:.22s; }
.ww-region-panel.active .ww-apt-tile:nth-child(7)  { animation-delay:.26s; }
.ww-region-panel.active .ww-apt-tile:nth-child(8)  { animation-delay:.3s; }
.ww-region-panel.active .ww-apt-tile:nth-child(9)  { animation-delay:.34s; }
.ww-region-panel.active .ww-apt-tile:nth-child(10) { animation-delay:.38s; }
@keyframes wwTileIn {
  from { opacity:0; transform:translateY(15px) scale(.95); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}

/* ── Services grid ── */
.ww-services-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem; }
.ww-svc-card { background:var(--d3);border:1px solid var(--br);border-radius:var(--radius-lg);overflow:hidden;transition:transform .25s,box-shadow .25s,border-color .25s;display:flex;flex-direction:column; }
.ww-svc-card:hover { transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:var(--gl); }
.ww-svc-featured { border-color:var(--gl);box-shadow:0 0 0 1px var(--gl),var(--shadow-sm); }
.ww-svc-featured::after { content:'MOST POPULAR';position:absolute;top:12px;right:12px;background:var(--gl);color:#000;font-size:.6rem;font-weight:800;padding:3px 8px;border-radius:4px;letter-spacing:.5px;z-index:2; }
.ww-svc-card { position:relative; }
.ww-svc-img { height:200px;background-size:cover;background-position:center;position:relative; }
.ww-svc-img::after { content:'';position:absolute;inset:0;background:linear-gradient(to bottom,transparent 50%,var(--d3) 100%); }
.ww-svc-body { padding:1.5rem;flex:1;display:flex;flex-direction:column; }
.ww-svc-icon { font-size:2rem;margin-bottom:.7rem;display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;background:var(--gp);border:1px solid var(--br);border-radius:12px; }
.ww-svc-body h3 { font-size:1.1rem;font-weight:800;color:var(--w);margin-bottom:.6rem; }
.ww-svc-body p  { font-size:.85rem;color:var(--sl);line-height:1.7;margin-bottom:1rem; }
.ww-svc-list { list-style:none;margin-bottom:1.25rem; }
.ww-svc-list li { font-size:.82rem;color:var(--sl);padding:4px 0;padding-left:1.2rem;position:relative; }
.ww-svc-list li::before { content:'✓';position:absolute;left:0;color:var(--gl);font-weight:700; }
.ww-svc-btn {
  display:inline-flex;align-items:center;margin-top:auto;
  background:var(--gp);border:1px solid var(--br);color:var(--gl);
  font-size:.82rem;font-weight:700;padding:10px 18px;border-radius:8px;
  text-decoration:none;transition:all .2s;
}
.ww-svc-btn:hover { background:var(--gl);color:#000;border-color:var(--gl); }
html[data-theme="light"] .ww-svc-card { background:var(--d); }
html[data-theme="light"] .ww-svc-img::after { background:linear-gradient(to bottom,transparent 50%,var(--d) 100%); }
html[data-theme="light"] .ww-svc-body h3 { color:var(--li); }
@media (max-width:900px) { .ww-services-grid { grid-template-columns:1fr; } }

/* ── Quote form ── */
.ww-form { display:flex;flex-direction:column;gap:0; }
.ww-form-section { background:var(--d3);border:1px solid var(--br);border-radius:var(--radius-md);padding:1.5rem;margin-bottom:1rem; }
.ww-form-section-label { font-size:.8rem;font-weight:800;color:var(--gl);letter-spacing:.08em;text-transform:uppercase;margin-bottom:1rem; }
.ww-form-row { display:grid;gap:1rem; }
.ww-form-row-2 { grid-template-columns:1fr 1fr; }
.ww-form-row-3 { grid-template-columns:1fr 1fr 1fr; }
.ww-form-row-4 { grid-template-columns:1fr 1fr 1fr 1fr; }
.ww-fg { display:flex;flex-direction:column;gap:.4rem; }
.ww-fg label { font-size:.82rem;font-weight:600;color:var(--sl); }
.ww-fg input,.ww-fg select,.ww-fg textarea {
  background:var(--d2);border:1px solid var(--br);color:var(--li);
  padding:10px 14px;border-radius:var(--radius-sm);font-size:.92rem;
  font-family:var(--font-body);transition:border-color .2s;outline:none;
  color-scheme: dark;
}
.ww-fg input[type=date],
.ww-fg input[type=time] { cursor:pointer; color-scheme:dark; }
.ww-fg input:focus,.ww-fg select:focus,.ww-fg textarea:focus { border-color:var(--gl); }
.ww-fg input.input-error,.ww-fg select.input-error { border-color:#ef4444; }
.ww-fg textarea { resize:vertical;min-height:80px; }
.ww-field-hint  { font-size:.78rem;color:var(--sl);margin-top:.2rem; }
.ww-field-error { font-size:.78rem;color:#ef4444;margin-top:.2rem; }
.req { color:#ef4444; }
.ww-transit-divider {
  font-size:.8rem;font-weight:700;color:var(--gl);letter-spacing:.06em;
  text-transform:uppercase;padding:.75rem 0 .5rem;border-top:1px solid var(--br);margin-top:.5rem;
}
.ww-form-error { background:rgba(239,68,68,.1);border:1px solid rgba(239,68,68,.3);color:#ef4444;padding:.75rem 1rem;border-radius:8px;font-size:.88rem; }
.ww-form-submit-row { display:flex;flex-direction:column;align-items:center;gap:.75rem;padding-top:.5rem; }
.ww-submit-btn {
  background:linear-gradient(135deg,var(--gb),var(--gold));color:#000;
  font-weight:800;font-size:1rem;padding:14px 40px;border-radius:var(--radius-md);
  border:none;cursor:pointer;transition:all .25s;display:inline-flex;align-items:center;gap:.5rem;
  box-shadow:0 4px 18px rgba(212,175,55,.35);
}
.ww-submit-btn:hover { filter:brightness(1.08);box-shadow:0 6px 24px rgba(212,175,55,.5); }
.ww-submit-btn:disabled { opacity:.6;cursor:not-allowed; }
.ww-form-note { font-size:.82rem;color:var(--sl);text-align:center; }

/* Airport search dropdown */
.ww-apt-search-wrap { position:relative; }
.ww-apt-search-inner { position:relative; }
.ww-search-ico { position:absolute;left:12px;top:50%;transform:translateY(-50%);color:var(--sl);pointer-events:none; }
#q-apt-input {
  width:100%;padding:11px 14px 11px 38px;
  background:var(--d2);border:1px solid var(--br);color:var(--li);
  border-radius:var(--radius-sm);font-size:.9rem;outline:none;transition:border-color .2s;
}
#q-apt-input:focus { border-color:var(--gl); }
.ww-apt-drop {
  display:none;position:absolute;top:calc(100% + 4px);left:0;right:0;
  background:var(--d3);border:1px solid var(--br);border-radius:var(--radius-md);
  max-height:280px;overflow-y:auto;z-index:500;box-shadow:var(--shadow-md);
}
.ww-drop-item { display:flex;align-items:center;gap:.75rem;padding:10px 14px;cursor:pointer;transition:background .15s; }
.ww-drop-item:hover { background:var(--gp); }
.ww-drop-code { font-size:.82rem;font-weight:800;color:var(--gl);min-width:36px; }
.ww-drop-name { font-size:.85rem;font-weight:600;color:var(--li); }
.ww-drop-loc  { font-size:.75rem;color:var(--sl); }
.ww-drop-empty { padding:1rem;text-align:center;color:var(--sl);font-size:.85rem; }
.ww-apt-selected {
  display:flex;align-items:center;justify-content:space-between;
  background:var(--gp);border:1px solid var(--gl);border-radius:var(--radius-sm);
  padding:10px 14px;margin-top:.5rem;
}
.ww-apt-sel-info { display:flex;align-items:center;gap:.75rem; }
.ww-apt-sel-code { font-size:.9rem;font-weight:800;color:var(--gl); }
.ww-apt-sel-name { font-size:.88rem;font-weight:600;color:var(--li); }
.ww-apt-sel-country { font-size:.78rem;color:var(--sl); }
.ww-apt-sel-change { background:transparent;border:1px solid var(--br);color:var(--sl);padding:5px 12px;border-radius:6px;font-size:.75rem;cursor:pointer;transition:all .2s; }
.ww-apt-sel-change:hover { border-color:var(--gl);color:var(--gl); }

/* Pre-selected airport (airport page) */
.ww-apt-preselected {
  display:flex;align-items:center;gap:1rem;
  background:var(--gp);border:1px solid var(--gl);border-radius:var(--radius-sm);
  padding:12px 16px;margin-bottom:1rem;
}
.ww-apt-pre-code { font-size:1.1rem;font-weight:800;color:var(--gl);min-width:44px; }
.ww-apt-pre-name { font-size:.9rem;font-weight:700;color:var(--li); }
.ww-apt-pre-loc  { font-size:.78rem;color:var(--sl); }

/* Success state */
.ww-success { text-align:center;padding:3rem 2rem;background:var(--d3);border:1px solid var(--br);border-radius:var(--radius-lg); }
.ww-success-ico { font-size:3rem;margin-bottom:1rem; }
.ww-success h3  { font-size:1.4rem;font-weight:800;color:var(--w);margin-bottom:.75rem; }
.ww-success-ref { font-size:1rem;color:var(--sl);margin-bottom:1rem; }
.ww-success-ref span { color:var(--gl);font-weight:800;font-size:1.1rem; }
.ww-success p   { color:var(--sl);font-size:.9rem;margin-bottom:.5rem; }
.ww-success-btns { display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-top:1.5rem; }

/* ── Worldwide Airport page ── */
.wwa-hero {
  position:relative;min-height:520px;display:flex;align-items:center;justify-content:center;
  text-align:center;
  padding:150px 5% 80px;background-size:cover;background-position:center 35%;overflow:hidden;
}
.wwa-hero-overlay {
  position:absolute;inset:0;
  background:
    linear-gradient(to right, rgba(6,10,15,.92) 0%,rgba(6,10,15,.5) 28%,transparent 50%),
    linear-gradient(to left,  rgba(6,10,15,.92) 0%,rgba(6,10,15,.5) 28%,transparent 50%),
    linear-gradient(to bottom,rgba(6,10,15,.72) 0%,rgba(6,10,15,.28) 45%,rgba(6,10,15,.72) 100%);
}
.wwa-hero-inner {
  position:relative;z-index:2;max-width:760px;width:100%;margin:0 auto;
}
.wwa-hero-badge {
  font-size:.75rem;font-weight:700;color:var(--gl);letter-spacing:.08em;text-transform:uppercase;
  margin-bottom:.75rem;
}
.wwa-hero-title {
  font-size:clamp(1.8rem,4vw,3rem);font-weight:800;
  color:#fff !important;   /* always white — dark AND light theme */
  line-height:1.15;margin-bottom:.75rem;
}
.wwa-hero-accent { color:var(--gl); }
.wwa-hero-sub {
  font-size:.97rem;color:rgba(238,242,247,.82);
  max-width:580px;margin:0 auto 1.75rem;line-height:1.7;
}
.wwa-hero-ctas { display:flex;gap:.75rem;flex-wrap:wrap;justify-content:center; }

/* Light theme — keep hero text white (dark overlay stays the same) */
html[data-theme="light"] .wwa-hero-title { color:#fff !important; }
html[data-theme="light"] .wwa-hero-sub   { color:rgba(238,242,247,.85) !important; }
html[data-theme="light"] .wwa-hero-badge { color:var(--gl) !important; }

.wwa-about-grid { display:grid;grid-template-columns:1fr 420px;gap:3rem;align-items:center; }
.wwa-about-badge { font-size:.75rem;font-weight:700;color:var(--gl);letter-spacing:.08em;text-transform:uppercase;margin-bottom:.75rem; }
.wwa-about-text h2 { font-size:clamp(1.4rem,2.5vw,2rem);font-weight:800;color:var(--w);margin-bottom:1rem; }
.wwa-about-text p  { font-size:.95rem;color:var(--sl);line-height:1.75;margin-bottom:1.5rem; }
.wwa-about-facts { display:grid;grid-template-columns:1fr 1fr;gap:.75rem; }
.wwa-fact { display:flex;align-items:flex-start;gap:.6rem;background:var(--d3);border:1px solid var(--br);border-radius:10px;padding:.75rem; }
.wwa-fact-icon { font-size:1.1rem;flex-shrink:0; }
.wwa-fact strong { display:block;font-size:.75rem;font-weight:700;color:var(--gl);margin-bottom:.1rem; }
.wwa-fact span   { font-size:.78rem;color:var(--sl); }
.wwa-about-img { height:380px;border-radius:var(--radius-lg);background-size:cover;background-position:center;box-shadow:var(--shadow-lg); }

.wwa-svc-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem; }
.wwa-svc-item { background:var(--d3);border:1px solid var(--br);border-radius:var(--radius-md);padding:1.5rem;transition:transform .25s; }
.wwa-svc-item:hover { transform:translateY(-3px); }
.wwa-svc-featured { border-color:var(--gl); }
.wwa-svc-num { font-size:1.8rem;margin-bottom:.6rem; }
.wwa-svc-item h3 { font-size:1rem;font-weight:800;color:var(--w);margin-bottom:.5rem; }
.wwa-svc-item p  { font-size:.9rem;color:var(--sl);line-height:1.65;margin-bottom:1rem; }
.wwa-svc-link { font-size:.8rem;font-weight:700;color:var(--gl);text-decoration:none;transition:color .2s; }
.wwa-svc-link:hover { color:var(--gb); }

.wwa-includes-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem; }
.wwa-inc { display:flex;align-items:flex-start;gap:.75rem;background:var(--d3);border:1px solid var(--br);border-radius:var(--radius-md);padding:1.25rem; }
.wwa-inc span { font-size:1.4rem;flex-shrink:0; }
.wwa-inc strong { display:block;font-size:.9rem;font-weight:700;color:var(--w);margin-bottom:.25rem; }
.wwa-inc p { font-size:.85rem;color:var(--sl);line-height:1.55;margin:0; }

.wwa-other-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:.75rem; }
.wwa-other-card { background:var(--d3);border:1px solid var(--br);border-radius:var(--radius-md);padding:1rem;text-decoration:none;transition:all .2s; }
.wwa-other-card:hover { border-color:var(--gl);transform:translateY(-2px); }
.wwa-other-code    { font-size:.82rem;font-weight:800;color:var(--gl);margin-bottom:.2rem; }
.wwa-other-city    { font-size:.88rem;font-weight:700;color:var(--li);margin-bottom:.1rem; }
.wwa-other-country { font-size:.73rem;color:var(--sl); }

/* Light theme overrides */
html[data-theme="light"] .ww-form-section { background:#fff;border-color:rgba(0,0,0,.1); }
html[data-theme="light"] .ww-fg input,
html[data-theme="light"] .ww-fg select,
html[data-theme="light"] .ww-fg textarea { background:#f8f9fb;border-color:rgba(0,0,0,.15);color:#111; color-scheme:light; }
html[data-theme="light"] .ww-fg input[type=date],
html[data-theme="light"] .ww-fg input[type=time] { color-scheme:light; }
html[data-theme="light"] .ww-apt-card { background:#fff;border-color:rgba(0,0,0,.1); }
html[data-theme="light"] .ww-apt-card:hover { border-color:var(--gold); }
html[data-theme="light"] .ww-why-card { background:#fff;border-color:rgba(0,0,0,.1); }
html[data-theme="light"] .ww-svc-card { background:#fff;border-color:rgba(0,0,0,.1); }
html[data-theme="light"] .ww-apt-drop { background:#fff;border-color:rgba(0,0,0,.1); }
html[data-theme="light"] #q-apt-input { background:#f8f9fb;border-color:rgba(0,0,0,.15);color:#111; }
html[data-theme="light"] .ww-success { background:#fff;border-color:rgba(0,0,0,.1); }
html[data-theme="light"] .wwa-about-text h2 { color:#111; }
html[data-theme="light"] .wwa-fact { background:#f8f9fb;border-color:rgba(0,0,0,.1); }
html[data-theme="light"] .wwa-inc { background:#f8f9fb;border-color:rgba(0,0,0,.1); }
html[data-theme="light"] .wwa-svc-item { background:#fff;border-color:rgba(0,0,0,.1); }
html[data-theme="light"] .wwa-other-card { background:#fff;border-color:rgba(0,0,0,.1); }

/* Responsive */
@media (max-width:900px) {
  .wwa-about-grid { grid-template-columns:1fr; }
  .wwa-about-img  { height:260px; }
  .wwa-svc-grid   { grid-template-columns:1fr; }
  .wwa-includes-grid { grid-template-columns:repeat(2,1fr); }
  .nav-dropdown, .nav-mega { display:none !important; }
}
@media (max-width:768px) {
  .ww-hero,.wwa-hero { background-attachment:scroll; }
  .ww-form-row-2,.ww-form-row-3,.ww-form-row-4 { grid-template-columns:1fr; }
  .wwa-about-facts { grid-template-columns:1fr; }
  .wwa-includes-grid { grid-template-columns:1fr; }
  .nav-dropdown { display:none !important; }
}
@media (max-width:480px) {
  .ww-airport-grid { grid-template-columns:1fr; }
  .ww-hero-stats { flex-direction:column;gap:.5rem; }
  .ww-stat-div { display:none; }
}

/* ================================================================
   WORLDWIDE AIRPORT — Styled FAQ
   ================================================================ */
.wwa-faq-section { background: var(--d2); }

.wwa-faq-header { text-align:center; margin-bottom:2.5rem; }
.wwa-faq-tag {
  display:inline-block;
  background:var(--gp); border:1px solid var(--br);
  color:var(--gl); font-size:.72rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  padding:.3rem .9rem; border-radius:20px; margin-bottom:1rem;
}
.wwa-faq-accent { color:var(--gl); }

.wwa-faq-grid { display:flex; flex-direction:column; gap:.6rem; }

.wwa-faq-item {
  background:var(--d3);
  border:1px solid var(--br);
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:border-color .2s, box-shadow .2s;
}
.wwa-faq-item:hover { border-color:rgba(212,175,55,.35); }
.wwa-faq-item.wwa-faq-open {
  border-color:var(--gl);
  box-shadow:0 4px 24px rgba(212,175,55,.1);
}

.wwa-faq-q {
  width:100%; display:flex; align-items:center; gap:.9rem;
  padding:1.1rem 1.25rem;
  background:transparent; border:none; cursor:pointer;
  text-align:left; transition:background .2s;
}
.wwa-faq-q:hover { background:var(--gp2); }
.wwa-faq-item.wwa-faq-open .wwa-faq-q { background:var(--gp2); }

.wwa-faq-icon {
  font-size:1.15rem; flex-shrink:0;
  width:36px; height:36px;
  background:var(--gp); border:1px solid var(--br);
  border-radius:8px; display:flex; align-items:center; justify-content:center;
}
.wwa-faq-item.wwa-faq-open .wwa-faq-icon {
  background:var(--gp); border-color:var(--gl);
}

.wwa-faq-qtext {
  flex:1; font-size:.92rem; font-weight:700;
  color:var(--li); line-height:1.4;
}
.wwa-faq-item.wwa-faq-open .wwa-faq-qtext { color:var(--w); }

.wwa-faq-chevron {
  flex-shrink:0; color:var(--gl);
  transition:transform .3s cubic-bezier(.34,1.56,.64,1);
  display:flex; align-items:center;
}
.wwa-faq-item.wwa-faq-open .wwa-faq-chevron { transform:rotate(180deg); }

.wwa-faq-a {
  max-height:0; overflow:hidden;
  transition:max-height .35s ease, padding .3s ease;
  padding:0 1.25rem 0 calc(1.25rem + 36px + .9rem);
}
.wwa-faq-item.wwa-faq-open .wwa-faq-a {
  max-height:300px;
  padding:.1rem 1.25rem 1.25rem calc(1.25rem + 36px + .9rem);
}
.wwa-faq-a p {
  font-size:.9rem; color:var(--sl); line-height:1.75; margin:0;
  border-top:1px solid var(--b2); padding-top:.9rem;
}
.wwa-faq-a strong { color:var(--gl); font-weight:700; }

/* Bottom CTA */
.wwa-faq-cta {
  display:flex; align-items:center; justify-content:center; gap:1rem;
  flex-wrap:wrap; margin-top:2rem;
  padding-top:1.5rem; border-top:1px solid var(--br);
}
.wwa-faq-cta p { font-size:.9rem; color:var(--sl); margin:0; }

/* Light theme */
html[data-theme="light"] .wwa-faq-section { background:#f4f6f9; }
html[data-theme="light"] .wwa-faq-item { background:#fff; border-color:rgba(0,0,0,.1); }
html[data-theme="light"] .wwa-faq-item:hover { border-color:rgba(212,175,55,.4); }
html[data-theme="light"] .wwa-faq-item.wwa-faq-open { border-color:var(--gold); box-shadow:0 4px 20px rgba(212,175,55,.12); }
html[data-theme="light"] .wwa-faq-q:hover,
html[data-theme="light"] .wwa-faq-item.wwa-faq-open .wwa-faq-q { background:rgba(212,175,55,.06); }
html[data-theme="light"] .wwa-faq-icon { background:rgba(212,175,55,.1); border-color:rgba(212,175,55,.25); }
html[data-theme="light"] .wwa-faq-qtext { color:#222; }
html[data-theme="light"] .wwa-faq-item.wwa-faq-open .wwa-faq-qtext { color:#111; }
html[data-theme="light"] .wwa-faq-a p { color:#555; border-top-color:rgba(0,0,0,.08); }
html[data-theme="light"] .wwa-faq-cta { border-top-color:rgba(0,0,0,.1); }
html[data-theme="light"] .wwa-faq-cta p { color:#666; }

@media (max-width:600px) {
  .wwa-faq-a { padding:0 1rem 0 1rem; }
  .wwa-faq-item.wwa-faq-open .wwa-faq-a { padding:.1rem 1rem 1.1rem; }
  .wwa-faq-q { padding:.9rem 1rem; gap:.65rem; }
  .wwa-faq-icon { width:30px; height:30px; font-size:1rem; }
}

/* ── Worldwide Airport page — additional SEO elements ── */
.wwa-trust-strip {
  display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:.5rem 1.5rem;
  padding:.65rem 5%;background:var(--gp2);border-bottom:1px solid var(--br);
  font-size:.75rem;font-weight:600;color:var(--sl);
}
.wwa-trust-item span { color:var(--gl);margin-right:.3rem; }

.wwa-svc-list-items { list-style:none;margin:.6rem 0 1rem;padding:0; }
.wwa-svc-list-items li { font-size:.8rem;color:var(--sl);padding:3px 0 3px 1rem;position:relative;line-height:1.5; }
.wwa-svc-list-items li::before { content:'✓';position:absolute;left:0;color:var(--gl);font-weight:700; }

.wwa-why-grid-2col { display:grid;grid-template-columns:1fr 320px;gap:3rem;align-items:start; }
.wwa-why-text h2 { font-size:clamp(1.3rem,2.5vw,1.9rem);font-weight:800;color:var(--w);margin-bottom:1rem; }
.wwa-why-text p  { font-size:.9rem;color:var(--sl);line-height:1.75;margin-bottom:.75rem; }
.wwa-why-list { list-style:none;margin:.75rem 0 0;padding:0; }
.wwa-why-list li { font-size:.9rem;color:var(--sl);padding:5px 0 5px 1.25rem;position:relative;border-bottom:1px solid var(--b2); }
.wwa-why-list li:last-child { border-bottom:none; }
.wwa-why-list li::before { content:'✓';position:absolute;left:0;color:var(--gl);font-weight:800; }
.wwa-why-list strong { color:var(--li); }

.wwa-why-stats { display:grid;grid-template-columns:1fr 1fr;gap:1rem; }
.wwa-why-stat {
  background:var(--d3);border:1px solid var(--br);border-radius:var(--radius-md);
  padding:1.25rem;text-align:center;display:flex;flex-direction:column;gap:.3rem;
}
.wwa-why-stat-num   { font-size:1.6rem;font-weight:900;color:var(--gl);line-height:1; }
.wwa-why-stat-label { font-size:.72rem;color:var(--sl);font-weight:600;letter-spacing:.04em; }

.wwa-other-label { font-size:.7rem;color:var(--gl);font-weight:700;margin-top:.3rem; }

html[data-theme="light"] .wwa-trust-strip { background:rgba(212,175,55,.05);border-bottom-color:rgba(0,0,0,.08); }
html[data-theme="light"] .wwa-why-text h2 { color:#111; }
html[data-theme="light"] .wwa-why-text p  { color:#555; }
html[data-theme="light"] .wwa-why-list li { color:#555;border-bottom-color:rgba(0,0,0,.06); }
html[data-theme="light"] .wwa-why-stat { background:#fff;border-color:rgba(0,0,0,.1); }

@media (max-width:900px) {
  .wwa-why-grid-2col { grid-template-columns:1fr; }
  .wwa-why-stats { grid-template-columns:repeat(4,1fr); }
}
@media (max-width:600px) {
  .wwa-why-stats { grid-template-columns:1fr 1fr; }
  .wwa-trust-strip { gap:.4rem 1rem;font-size:.7rem; }
}

/* ================================================================
   AIRPORT PAGE v2 — Master SEO Template
   ================================================================ */

/* ── Hero ── */
.apt-hero {
  position:relative; min-height:540px; display:flex; align-items:center;
  justify-content:center; text-align:center;
  padding:150px 5% 80px;
  background-size:cover; background-position:center 35%;
  background-attachment:fixed; overflow:hidden;
}
.apt-hero-overlay {
  position:absolute; inset:0;
  background:
    linear-gradient(to right, rgba(6,10,15,.92) 0%,rgba(6,10,15,.5) 28%,transparent 50%),
    linear-gradient(to left,  rgba(6,10,15,.92) 0%,rgba(6,10,15,.5) 28%,transparent 50%),
    linear-gradient(to bottom,rgba(6,10,15,.72) 0%,rgba(6,10,15,.28) 45%,rgba(6,10,15,.72) 100%);
}
.apt-hero-inner { position:relative; z-index:2; max-width:820px; width:100%; margin:0 auto; }
.apt-hero-badge {
  display:inline-block; background:rgba(212,175,55,.15); border:1px solid rgba(212,175,55,.35);
  color:var(--gl); font-size:.75rem; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; padding:.35rem 1rem; border-radius:20px; margin-bottom:1rem;
}
.apt-hero-title {
  font-size:clamp(1.9rem,4.5vw,3.2rem); font-weight:800;
  color:#fff !important; line-height:1.15; margin-bottom:.85rem;
}
.apt-hero-accent { color:var(--gl); }
.apt-hero-sub {
  font-size:1.05rem; color:rgba(238,242,247,.82);
  max-width:640px; margin:0 auto 1.75rem; line-height:1.7;
}
.apt-hero-ctas { display:flex; gap:.75rem; flex-wrap:wrap; justify-content:center; margin-bottom:1.75rem; }
.btn-apt-wa {
  display:inline-flex; align-items:center; gap:.6rem;
  background:#25D366; border:none; color:#fff;
  font-weight:700; font-size:.95rem; padding:13px 22px;
  border-radius:50px; text-decoration:none;
  box-shadow:0 4px 16px rgba(37,211,102,.35); transition:all .25s;
}
.btn-apt-wa:hover { background:#1ebe5d; color:#fff !important; box-shadow:0 6px 22px rgba(37,211,102,.5); transform:translateY(-1px); }
.apt-trust-pills {
  display:flex; align-items:center; justify-content:center; gap:.5rem 1.25rem;
  flex-wrap:wrap; font-size:.78rem; font-weight:600; color:rgba(238,242,247,.7);
}
.atp span { color:var(--gl); margin-right:.25rem; }

/* Light theme hero */
html[data-theme="light"] .apt-hero-title { color:#fff !important; }
html[data-theme="light"] .apt-hero-sub   { color:rgba(238,242,247,.85) !important; }

/* ── Service cards ── */
.apt-svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; align-items:stretch; }
.apt-svc-card {
  background:var(--d3); border:1px solid var(--br); border-radius:var(--radius-lg);
  padding:1.75rem; transition:transform .25s, box-shadow .25s;
  display:flex; flex-direction:column;
}
.apt-svc-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.apt-svc-featured { border-color:var(--gl); }
.apt-svc-icon { font-size:1.8rem; margin-bottom:.75rem; }
.apt-svc-card h3 { font-size:1.05rem; font-weight:800; color:var(--w); margin-bottom:.6rem; }
.apt-svc-card p  { font-size:.92rem; color:var(--sl); line-height:1.7; margin-bottom:1rem; }
.apt-svc-list { list-style:none; margin:.5rem 0 1.25rem; padding:0; flex:1; }
.apt-svc-list li { font-size:.88rem; color:var(--sl); padding:4px 0 4px 1.1rem; position:relative; line-height:1.5; }
.apt-svc-list li::before { content:'✓'; position:absolute; left:0; color:var(--gl); font-weight:700; }
.apt-svc-btn {
  display:inline-flex; align-items:center; margin-top:auto;
  background:var(--gp); border:1px solid var(--br); color:var(--gl);
  font-size:.85rem; font-weight:700; padding:9px 18px; border-radius:8px;
  text-decoration:none; transition:all .2s; align-self:flex-start;
}
.apt-svc-btn:hover { background:linear-gradient(135deg,var(--gb),var(--gold)); color:#000; border-color:transparent; }

/* Price note */
.apt-price-note {
  display:flex; align-items:flex-start; gap:.5rem;
  background:var(--gp2); border:1px solid var(--br); border-radius:var(--radius-sm);
  padding:.85rem 1rem; font-size:.88rem; color:var(--sl); margin-top:1.25rem; line-height:1.6;
  flex-wrap:wrap;
}
.apt-price-note > span:first-child { font-size:1rem; flex-shrink:0; }
.apt-price-note > span:last-child { flex:1; min-width:0; }
.apt-price-note a { color:var(--gl); }

/* ── Includes grid ── */
.apt-includes-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.apt-inc { display:flex; align-items:flex-start; gap:.85rem; background:var(--d3); border:1px solid var(--br); border-radius:var(--radius-md); padding:1.25rem; }
.apt-inc span { font-size:1.5rem; flex-shrink:0; }
.apt-inc strong { display:block; font-size:.95rem; font-weight:700; color:var(--w); margin-bottom:.3rem; }
.apt-inc p { font-size:.88rem; color:var(--sl); line-height:1.6; margin:0; }

/* ── Who we serve ── */
.apt-who-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.apt-who-card { background:var(--d3); border:1px solid var(--br); border-radius:var(--radius-md); padding:1.5rem; transition:transform .25s, box-shadow .25s; display:flex; flex-direction:column; }
.apt-who-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:rgba(212,175,55,.3); }
.apt-who-icon { font-size:1.8rem; margin-bottom:.65rem; }
.apt-who-card h3 { font-size:1rem; font-weight:700; color:var(--w); margin-bottom:.5rem; }
.apt-who-card p  { font-size:.88rem; color:var(--sl); line-height:1.65; margin:0; flex:1; }

/* ── Nearby airports ── */
.apt-nearby-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:.75rem; }
.apt-nearby-card { background:var(--d3); border:1px solid var(--br); border-radius:var(--radius-md); padding:1rem; text-decoration:none; transition:all .2s; }
.apt-nearby-card:hover { border-color:var(--gl); transform:translateY(-2px); }
.apt-nearby-code  { font-size:.82rem; font-weight:800; color:var(--gl); margin-bottom:.2rem; }
.apt-nearby-city  { font-size:.92rem; font-weight:700; color:var(--li); margin-bottom:.15rem; }
.apt-nearby-price { font-size:.8rem; color:var(--sl); margin-bottom:.2rem; }
.apt-nearby-label { font-size:.72rem; color:var(--gl); font-weight:700; }

/* Light theme */
html[data-theme="light"] .apt-svc-card { background:#fff; border-color:rgba(0,0,0,.1); }
html[data-theme="light"] .apt-svc-card h3 { color:#111; }
html[data-theme="light"] .apt-svc-card p  { color:#444; }
html[data-theme="light"] .apt-svc-list li { color:#555; }
html[data-theme="light"] .apt-inc { background:#fff; border-color:rgba(0,0,0,.1); }
html[data-theme="light"] .apt-inc strong { color:#111; }
html[data-theme="light"] .apt-inc p { color:#555; }
html[data-theme="light"] .apt-who-card { background:#fff; border-color:rgba(0,0,0,.1); }
html[data-theme="light"] .apt-who-card h3 { color:#111; }
html[data-theme="light"] .apt-who-card p  { color:#444; }
html[data-theme="light"] .apt-nearby-card { background:#fff; border-color:rgba(0,0,0,.1); }
html[data-theme="light"] .apt-nearby-city { color:#222; }
html[data-theme="light"] .apt-price-note { background:rgba(212,175,55,.05); border-color:rgba(212,175,55,.2); }

/* Responsive */
@media (max-width:900px) { .apt-svc-grid { grid-template-columns:1fr; } }
@media (max-width:768px) {
  .apt-hero { background-attachment:scroll; min-height:460px; padding:130px 4% 60px; }
  .apt-includes-grid { grid-template-columns:1fr; }
  .apt-who-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:480px) {
  .apt-who-grid { grid-template-columns:1fr; }
  .apt-nearby-grid { grid-template-columns:repeat(2,1fr); }
}

/* ── Airports hub — SEO intro strip ── */
.airports-seo-intro {
  padding: .85rem 0 .6rem;
  border-bottom: 1px solid var(--br);
  margin-bottom: .5rem;
}
.airports-seo-intro p {
  font-size: .9rem; color: var(--sl); line-height: 1.7; margin: 0;
}
.airports-seo-intro strong { color: var(--li); }
.airports-seo-intro a { color: var(--gl); }
html[data-theme="light"] .airports-seo-intro p { color: #374151; }
html[data-theme="light"] .airports-seo-intro strong { color: #111; }
html[data-theme="light"] .airports-seo-intro { border-bottom-color: rgba(0,0,0,.08); }

/* ── Indian Airports mega menu — wider, left-anchored ── */
.nav-mega-india {
  min-width: min(96vw, 980px);
  /* Anchor to left edge of the trigger instead of centering,
     so it doesn't overflow the left side of the viewport */
  left: 0;
  transform: translateX(0);
}
@keyframes drop-in-india {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-mega-india { animation: drop-in-india .2s cubic-bezier(.4,0,.2,1); }

/* ================================================================
   AIRPORT PAGE — Shared components (price cards, steps, btn-lg)
   Used by airport.php template across all Indian airport pages
   ================================================================ */

/* ── Price grid & cards ── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.price-card {
  background: var(--d3);
  border: 1px solid var(--br);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.price-card-featured {
  border-color: var(--gl);
  background: var(--gp2);
}
.price-card-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--sl);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .5rem;
}
.price-card-amount {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gl);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  margin-bottom: .3rem;
}
.price-card-note {
  font-size: .75rem;
  color: var(--sl);
}

/* Light theme price cards */
html[data-theme="light"] .price-card { background: #fff; border-color: rgba(0,0,0,.1); }
html[data-theme="light"] .price-card-featured { background: rgba(212,175,55,.06); border-color: var(--gold); }
html[data-theme="light"] .price-card-label { color: #555; }
html[data-theme="light"] .price-card-note  { color: #777; }

/* ── Steps (How It Works) ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 2px;
  background: linear-gradient(90deg, var(--gl), var(--gb), var(--gold));
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gb), var(--gold));
  color: #000;
  font-size: 1.2rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(212,175,55,.35);
}
.step h4 {
  font-size: 1rem; font-weight: 700;
  color: var(--w); margin-bottom: .4rem;
}
.step p {
  font-size: .9rem; color: var(--sl); line-height: 1.65;
}

/* Light theme steps */
html[data-theme="light"] .step h4 { color: #111; }
html[data-theme="light"] .step p  { color: #444; }

/* ── btn-lg modifier ── */
.btn-lg {
  padding: 14px 32px !important;
  font-size: 1rem !important;
}

/* ── CTA band (used in pricing section) ── */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem;
  background: var(--gp2);
  border: 1px solid var(--br);
  border-radius: var(--radius-md);
  text-align: center;
}
.cta-band p {
  color: var(--sl);
  font-size: .95rem;
  margin: 0;
  width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .btn-lg { padding: 12px 24px !important; font-size: .95rem !important; }
  .apt-svc-grid { grid-template-columns: 1fr; }
  .apt-includes-grid { grid-template-columns: repeat(2, 1fr); }
  .apt-who-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .price-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .apt-includes-grid { grid-template-columns: 1fr; }
  .apt-who-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   AIRPORT PAGE — Price Table + About Section
   ================================================================ */

/* ── Price table ── */
.apt-price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--br);
  margin-bottom: 1rem;
}
.apt-price-table {
  width: 100%; border-collapse: collapse;
  font-size: .92rem;
}
.apt-price-table thead tr {
  background: linear-gradient(135deg, var(--d2), var(--d3));
  border-bottom: 2px solid var(--br);
}
.apt-price-table thead th {
  padding: .85rem 1.1rem; text-align: left;
  font-size: .72rem; font-weight: 800; color: var(--gl);
  text-transform: uppercase; letter-spacing: .08em; white-space: nowrap;
}
.apt-price-table tbody tr {
  border-bottom: 1px solid var(--b2);
  transition: background .15s;
}
.apt-price-table tbody tr:last-child { border-bottom: none; }
.apt-price-table tbody tr:hover { background: var(--gp2); }
.apt-price-table tbody td {
  padding: .9rem 1.1rem; color: var(--li); vertical-align: middle;
}
.apt-price-table tbody td:nth-child(3) { color: var(--sl); font-size: .85rem; }
.apt-pt-featured { background: var(--gp2) !important; }
.apt-pt-featured td:first-child strong { color: var(--gl); }
.apt-pt-icon { margin-right: .5rem; font-size: 1rem; }
.apt-pt-price {
  font-size: 1.4rem; font-weight: 900; color: var(--gl);
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.apt-pt-addon {
  display: inline-block; font-size: .65rem; font-weight: 700;
  background: var(--gp); border: 1px solid var(--br);
  color: var(--gl); padding: 1px 6px; border-radius: 4px;
  margin-left: .4rem; vertical-align: middle; letter-spacing: .04em;
}
.apt-pt-btn {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--gb), var(--gold));
  color: #000; font-size: .78rem; font-weight: 800;
  padding: 6px 14px; border-radius: 6px; text-decoration: none;
  white-space: nowrap; transition: filter .2s;
}
.apt-pt-btn:hover { filter: brightness(1.1); color: #000 !important; }

/* Light theme price table */
html[data-theme="light"] .apt-price-table-wrap { border-color: rgba(0,0,0,.1); }
html[data-theme="light"] .apt-price-table thead tr { background: #f5f7fa; }
html[data-theme="light"] .apt-price-table tbody tr:hover { background: rgba(212,175,55,.05); }
html[data-theme="light"] .apt-price-table tbody td { color: #222; }
html[data-theme="light"] .apt-price-table tbody td:nth-child(3) { color: #555; }
html[data-theme="light"] .apt-pt-featured { background: rgba(212,175,55,.06) !important; }
html[data-theme="light"] .apt-price-table tbody tr { border-bottom-color: rgba(0,0,0,.07); }

/* ── About section ── */
.apt-about-grid {
  display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start;
}
.apt-about-badge {
  font-size: .75rem; font-weight: 700; color: var(--gl);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: .75rem;
}
.apt-about-text h2 {
  font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 800;
  color: var(--w); margin-bottom: 1rem;
}
.apt-about-text p {
  font-size: .95rem; color: var(--sl); line-height: 1.8; margin-bottom: 1rem;
}
.apt-about-text strong { color: var(--li); }
.apt-about-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.5rem;
}
.apt-fact {
  display: flex; align-items: flex-start; gap: .6rem;
  background: var(--d3); border: 1px solid var(--br);
  border-radius: 10px; padding: .75rem;
}
.apt-fact span { font-size: 1.1rem; flex-shrink: 0; }
.apt-fact strong { display: block; font-size: .75rem; font-weight: 700; color: var(--gl); margin-bottom: .1rem; }
.apt-fact span:last-child { font-size: .82rem; color: var(--sl); }

/* About CTA card */
.apt-about-cta-col { position: sticky; top: 88px; }
.apt-about-cta-card {
  background: var(--d3); border: 1px solid var(--gl);
  border-radius: var(--radius-lg); padding: 1.5rem; text-align: center;
  box-shadow: 0 8px 32px rgba(212,175,55,.12);
}
.apt-about-cta-icon { font-size: 2rem; margin-bottom: .75rem; }
.apt-about-cta-card h3 { font-size: 1rem; font-weight: 800; color: var(--w); margin-bottom: .4rem; }
.apt-about-cta-card p  { font-size: .82rem; color: var(--sl); margin-bottom: .75rem; line-height: 1.5; }
.apt-about-cta-price {
  font-size: 1.6rem; font-weight: 900; color: var(--gl);
  margin-bottom: .25rem; font-variant-numeric: tabular-nums;
}

/* Light theme about */
html[data-theme="light"] .apt-about-text h2 { color: #111; }
html[data-theme="light"] .apt-about-text p  { color: #444; }
html[data-theme="light"] .apt-about-text strong { color: #111; }
html[data-theme="light"] .apt-fact { background: #fff; border-color: rgba(0,0,0,.1); }
html[data-theme="light"] .apt-about-cta-card { background: #fff; border-color: var(--gold); }
html[data-theme="light"] .apt-about-cta-card h3 { color: #111; }
html[data-theme="light"] .apt-about-cta-card p  { color: #555; }

/* Responsive */
@media (max-width: 900px) {
  .apt-about-grid { grid-template-columns: 1fr; }
  .apt-about-cta-col { position: static; }
}
@media (max-width: 600px) {
  .apt-about-facts { grid-template-columns: 1fr; }
  .apt-price-table thead th:nth-child(3),
  .apt-price-table tbody td:nth-child(3) { display: none; }
}

/* ── Sticky mobile Book Now bar (airport pages) ── */
.sticky-book-bar {
  display: none; /* hidden by default — JS shows it after hero scrolls out */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--d2);
  border-top: 1px solid var(--br);
  padding: .75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.35);
}
.sbb-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; max-width: 600px; margin: 0 auto;
}
.sbb-info { display: flex; flex-direction: column; gap: .1rem; }
.sbb-city  { font-size: .88rem; font-weight: 700; color: var(--li); }
.sbb-price { font-size: .8rem; color: var(--gl); font-weight: 600; }
.sbb-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: linear-gradient(135deg, var(--gl), #a07820);
  color: #000; font-weight: 800; font-size: .92rem;
  padding: .65rem 1.4rem; border-radius: 10px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 3px 12px rgba(212,175,55,.35); flex-shrink: 0;
}
.sbb-btn:hover { color: #000 !important; filter: brightness(1.1); }

/* Only show on mobile — JS handles visibility on scroll */
@media (max-width: 768px) {
  body.page-airport { padding-bottom: 72px; }
}

/* ── Airports listing — Details button + hyperlinked city name ── */

/* Row view: actions group (Details + Book Now side by side) */
.airport-row-actions {
  display: flex; align-items: center; gap: .5rem; flex-shrink: 0;
}
.airport-row-details-btn {
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--br); border-radius: 7px;
  color: var(--sl); font-size: .78rem; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  transition: all .2s;
}
.airport-row-details-btn:hover {
  border-color: var(--gl); color: var(--gl); background: var(--gp);
}

/* Hyperlinked city name in row view */
a.airport-row-city {
  color: var(--li); font-weight: 600; font-size: .92rem;
  text-decoration: none; transition: color .2s;
  display: block;
}
a.airport-row-city:hover { color: var(--gl); }

/* Card view: actions group */
.airport-card-actions {
  display: flex; gap: .5rem; padding: 0 .75rem .75rem;
}
.airport-card-details {
  flex: 1; text-align: center;
  padding: 7px 10px;
  border: 1px solid var(--br); border-radius: 7px;
  color: var(--sl); font-size: .78rem; font-weight: 600;
  text-decoration: none; transition: all .2s;
}
.airport-card-details:hover {
  border-color: var(--gl); color: var(--gl); background: var(--gp);
}
.airport-card-book { flex: 1; text-align: center; }

/* Light theme */
html[data-theme="light"] .airport-row-details-btn { border-color: rgba(0,0,0,.15); color: #555; }
html[data-theme="light"] .airport-row-details-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,.08); }
html[data-theme="light"] a.airport-row-city { color: #222; }
html[data-theme="light"] a.airport-row-city:hover { color: var(--gold); }
html[data-theme="light"] .airport-card-details { border-color: rgba(0,0,0,.15); color: #555; }
html[data-theme="light"] .airport-card-details:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,.08); }

/* ── Airport card/row green hover — light theme ── */
html[data-theme="light"] .airport-row:hover {
  background: rgba(37,211,102,.04);
  border-color: #1ebe5d;
  box-shadow: 0 4px 18px rgba(37,211,102,.12), 0 0 0 1px rgba(37,211,102,.18);
}
html[data-theme="light"] .airport-row:hover .airport-row-code { color: #1a9e4a; }
html[data-theme="light"] .airport-row:hover a.airport-row-city { color: #1a9e4a; }
html[data-theme="light"] .airport-card:hover {
  box-shadow: 0 12px 32px rgba(37,211,102,.15), 0 0 0 1px rgba(37,211,102,.3);
  border-color: #1ebe5d;
}
html[data-theme="light"] .airport-card:hover .airport-card-city { color: #1a9e4a; }
html[data-theme="light"] .airport-card:hover .airport-card-code { color: #1a9e4a; background: rgba(37,211,102,.1); border-color: rgba(37,211,102,.3); }

/* ── Services page hero — keep H1 white on both themes ── */
html[data-theme="light"] .svc-hero-h1 { color: #fff !important; }
html[data-theme="light"] .svc-hero-sub { color: rgba(238,242,247,.85) !important; }
html[data-theme="light"] .svc-hero-badge { color: var(--gl) !important; }

/* ── Custom logo image (replaces emoji when set via Media Manager) ── */
.logo-img {
  height: 58px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}
#nav.scrolled .logo-img { filter: brightness(1.05); }

.footer-logo-img {
  height: 94px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
}

/* Dark theme — invert dark logos to white */
html[data-theme="dark"] .logo-img,
html[data-theme="dark"] .footer-logo-img {
  filter: brightness(0) invert(1);
}
html[data-theme="light"] .logo-img,
html[data-theme="light"] .footer-logo-img {
  filter: none;
}

/* Mobile — slightly smaller */
@media (max-width: 768px) {
  .logo-img      { height: 46px; max-width: 190px; }
  .footer-logo-img { height: 76px; max-width: 240px; }
}

/* ── About page — full-bleed story section ── */
@media (max-width: 768px) {
  /* Stack text above image on mobile */
  .about-story-grid { grid-template-columns: 1fr !important; }
  .about-story-img  { min-height: 300px !important; position: relative !important; }
}

/* ══════════════════════════════════════════════════════════════
   BOOKING FORM — LIGHT THEME VISUAL POLISH
   Adds depth, contrast, and readability for html[data-theme="light"]
   These rules override the earlier bkv3 light-theme declarations
   because they appear later in the cascade.
══════════════════════════════════════════════════════════════ */

/* 1. Section background — off-white so white cards visually pop */
html[data-theme="light"] .book-form-section {
  background: #f1f5f9;
}

/* 2. bkv3 cards — white surface with shadow + stronger border */
html[data-theme="light"] .bkv3-card {
  background: #ffffff;
  border-color: #d1dae6;
  box-shadow: 0 2px 12px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.04);
}
html[data-theme="light"] .bkv3-card:focus-within {
  box-shadow: 0 0 0 2px rgba(212,175,55,.3), 0 4px 16px rgba(0,0,0,.08);
  border-color: rgba(212,175,55,.55);
}

/* 3. Card header — soft grey gradient + gold left accent for identity */
html[data-theme="light"] .bkv3-card-head {
  background: linear-gradient(90deg, #f5f7fa 0%, #f9fafb 100%);
  border-bottom-color: #dde3ea;
  border-left: 3px solid rgba(212,175,55,.5);
  color: #475569;
  letter-spacing: .1em;
}

/* 4. Search input — visible border */
html[data-theme="light"] .bkv3-search-input {
  background: #fff;
  border-color: #c1cad5;
  color: #1e293b;
}
html[data-theme="light"] .bkv3-search-input::placeholder { color: #94a3b8; }
html[data-theme="light"] .bkv3-search-input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}

/* 5. Selects — visible border + proper text colour */
html[data-theme="light"] .bkv3-select {
  background: #fff;
  border-color: #c1cad5;
  color: #1e293b;
}
html[data-theme="light"] .bkv3-select:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}
html[data-theme="light"] .bkv3-select-wrap::after { background-color: #64748b; }

/* 6. Passenger table — visible outer border */
html[data-theme="light"] .bkv3-pax-table {
  background: #f8fafc;
  border-color: #c1cad5;
}
html[data-theme="light"] .bkv3-pax-row-item {
  border-bottom-color: #dde3ea;
  border-right-color: #dde3ea;
}
html[data-theme="light"] .bkv3-pax-type  { color: #1e293b; }
html[data-theme="light"] .bkv3-pax-age   { background: rgba(0,0,0,.04); border-color: #dde3ea; color: #64748b; }
html[data-theme="light"] .bkv3-pax-count { color: #92400e; font-weight: 900; }

/* 7. Passenger +/- buttons */
html[data-theme="light"] .bkv3-pax-btn {
  background: #ffffff;
  border-color: #c1cad5;
  color: #374151;
}
html[data-theme="light"] .bkv3-pax-btn:hover:not([disabled]) {
  background: rgba(212,175,55,.1);
  border-color: #d4af37;
  color: #92400e;
}

/* 8. Price box — amber-tinted band */
html[data-theme="light"] .bkv3-price-box {
  background: rgba(245,158,11,.08);
  border-color: rgba(212,175,55,.3);
}
html[data-theme="light"] .bkv3-price-meta  { color: #64748b; }
html[data-theme="light"] .bkv3-price-amount { color: #92400e; }
html[data-theme="light"] .bkv3-price-note   { color: #64748b; }

/* 9. Add-on rows */
html[data-theme="light"] .bkv3-addon-row-item { border-bottom-color: #dde3ea; }
html[data-theme="light"] .bkv3-addon-title    { color: #1e293b; }
html[data-theme="light"] .bkv3-addon-subtitle { color: #64748b; }
html[data-theme="light"] .bkv3-addon-cb       { background: #fff; border-color: #94a3b8; }
html[data-theme="light"] .bkv3-total-row { border-top-color: #dde3ea; }
html[data-theme="light"] .bkv3-total-val { color: #92400e; }

/* 10. Popular airport chips & label */
html[data-theme="light"] .as-pop-label { color: #64748b; }
html[data-theme="light"] .as-chip {
  background: #f1f5f9;
  border-color: #c1cad5;
  color: #334155;
}
html[data-theme="light"] .as-chip:hover {
  background: rgba(212,175,55,.12);
  border-color: rgba(212,175,55,.5);
  color: #92400e;
}

/* 11. Airport dropdown */
html[data-theme="light"] .as-drop {
  background: #ffffff;
  border-color: #c1cad5;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
}
html[data-theme="light"] .as-di-city  { color: #1e293b; }
html[data-theme="light"] .as-di-name  { color: #64748b; }
html[data-theme="light"] .as-drop-count { color: #94a3b8; border-bottom-color: #e2e8f0; }

/* 12. Selected airport row */
html[data-theme="light"] .bkv3-selected {
  background: rgba(245,158,11,.08);
  border-color: rgba(212,175,55,.35);
}
html[data-theme="light"] .bkv3-selected-name { color: #1e293b; }
html[data-theme="light"] .bkv3-selected-sub  { color: #64748b; }

/* 13. Service description panel */
html[data-theme="light"] .bkv3-svc-desc {
  background: rgba(245,158,11,.06);
  border-color: rgba(212,175,55,.25);
}
html[data-theme="light"] .bkv3-svc-desc-title  { color: #1e293b; }
html[data-theme="light"] .bkv3-svc-desc-list strong { color: #1e293b; }
html[data-theme="light"] .bkv3-svc-desc-list span   { color: #475569; }
html[data-theme="light"] .bkv3-svc-desc-note { color: #64748b; border-top-color: rgba(212,175,55,.15); }

/* 14. Booking details card (.book-form-card) */
html[data-theme="light"] .book-form-card {
  background: #ffffff;
  border: 1px solid #d1dae6;
  box-shadow: 0 4px 20px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
}
html[data-theme="light"] .bfc-head {
  background: linear-gradient(90deg, #f5f7fa 0%, #f9fafb 100%);
  border-bottom: 1px solid #dde3ea;
  border-left: 3px solid rgba(212,175,55,.5);
}
html[data-theme="light"] .bfc-head h2 { color: #1e293b; }

/* 15. Form fields inside booking details */
html[data-theme="light"] .bk-fg label { color: #475569; font-weight: 700; }
html[data-theme="light"] .bk-fg input,
html[data-theme="light"] .bk-fg select,
html[data-theme="light"] .bk-fg textarea {
  background: #ffffff;
  border-color: #c1cad5;
  color: #1e293b;
}
html[data-theme="light"] .bk-fg input::placeholder,
html[data-theme="light"] .bk-fg textarea::placeholder { color: #94a3b8; }
html[data-theme="light"] .bk-fg input:focus,
html[data-theme="light"] .bk-fg select:focus,
html[data-theme="light"] .bk-fg textarea:focus {
  border-color: #d4af37;
  background: #fffdf7;
  box-shadow: 0 0 0 3px rgba(212,175,55,.1);
}

/* 16. Form section labels */
html[data-theme="light"] .form-section-label {
  color: #92400e;
}
html[data-theme="light"] .form-section-label::after {
  background: linear-gradient(90deg, rgba(212,175,55,.3) 0%, transparent 100%);
}

/* 17. Transit block */
html[data-theme="light"] .transit-block {
  background: #f8fafc;
  border-color: #dde3ea;
}
html[data-theme="light"] .transit-divider { border-top-color: #dde3ea; }

/* 18. Submit button — golden gradient works in both themes already */
/* Add a stronger shadow for light background contrast */
html[data-theme="light"] .book-submit {
  box-shadow: 0 6px 24px rgba(212,175,55,.4);
}
html[data-theme="light"] .book-submit:hover:not(:disabled) {
  box-shadow: 0 12px 36px rgba(212,175,55,.55);
}

/* 19. Trust pills row (below form) */
html[data-theme="light"] .book-pills-row {
  background: #ffffff;
  border-top-color: #e2e8f0;
  border-bottom-color: #e2e8f0;
}
html[data-theme="light"] .book-pill { color: #475569; }

/* 20. Info strip cards */
html[data-theme="light"] .book-info-strip { background: #f8fafc; }
html[data-theme="light"] .bi-card {
  background: #ffffff;
  border-color: #dde3ea;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
html[data-theme="light"] .bi-card h3 { color: #1e293b; }
html[data-theme="light"] .bi-card p  { color: #475569; }

/* 21. Book note link */
html[data-theme="light"] .book-note { color: #64748b; }

/* ══════════════════════════════════════════════════════════════
   BOOKING FORM — GREEN AIRPORT ACCENTS (both themes)
   Popular airport chips → green; dropdown city names → green
══════════════════════════════════════════════════════════════ */

/* ── Popular airport chips — DARK theme ── */
.as-chip {
  background: rgba(22,163,74,.1);
  border-color: rgba(34,197,94,.35);
  color: #4ade80;
}
.as-chip:hover {
  background: rgba(22,163,74,.2);
  border-color: rgba(34,197,94,.65);
  color: #86efac;
}

/* ── Popular airport chips — LIGHT theme ── */
html[data-theme="light"] .as-chip {
  background: rgba(22,163,74,.08);
  border-color: rgba(22,163,74,.4);
  color: #15803d;
  font-weight: 700;
}
html[data-theme="light"] .as-chip:hover {
  background: rgba(22,163,74,.16);
  border-color: rgba(22,163,74,.7);
  color: #166534;
}

/* ── Dropdown: city name in green — DARK theme ── */
.as-di-city { color: #4ade80; }

/* ── Dropdown: city name in green — LIGHT theme ── */
html[data-theme="light"] .as-di-city { color: #166534; }

/* ── Dropdown item: green left accent on hover ── */
.as-drop-item {
  border-left: 3px solid transparent;
  padding-left: calc(.85rem - 3px);
  transition: background .12s, border-color .12s;
}
.as-drop-item:hover {
  border-left-color: rgba(34,197,94,.6);
  background: rgba(22,163,74,.07);
}
html[data-theme="light"] .as-drop-item:hover {
  border-left-color: rgba(22,163,74,.55);
  background: rgba(22,163,74,.06);
}

/* ── Popular label ── */
.as-pop-label { color: #4ade80; }
html[data-theme="light"] .as-pop-label { color: #15803d; }
