@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0B1628;
  --navy-mid:    #0F1E38;
  --navy-light:  #172440;
  --navy-card:   #111D30;
  --neon:        #9ED418;
  --neon-hi:     #B6FF00;
  --neon-lo:     #7DFF00;
  --white:       #FFFFFF;
  --off-white:   #E8EDF5;
  --muted:       #6B7A96;
  --muted-light: #8A9AB8;
  --border:      rgba(255,255,255,0.08);
  --radius:      14px;
  --radius-lg:   22px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4 { font-family: 'Syne', sans-serif; letter-spacing: -0.03em; line-height: 1.08; color: var(--white); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.1rem; font-weight: 700; }
p  { color: var(--muted-light); line-height: 1.7; }
a  { text-decoration: none; color: inherit; }
em { font-style: normal; color: var(--neon-hi); }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 12px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: background 0.3s, border-color 0.3s;
}
.nav.scrolled { background: rgba(11,22,40,0.94); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-logo img { height: 80px; width: auto; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.65rem; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 12px); left: 0;
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 12px; padding: 8px; min-width: 200px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 9px 14px; font-size: 0.85rem; border-radius: 8px; color: var(--muted-light); transition: background 0.15s, color 0.15s; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.nav-cta {
  background: linear-gradient(160deg, var(--neon-hi), var(--neon-lo));
  color: var(--navy); font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.85rem; padding: 10px 22px; border-radius: 50px;
  box-shadow: 0 4px 16px rgba(182,255,0,0.12);
  transition: filter 0.2s, transform 0.18s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
}
.nav-cta:hover { filter: brightness(1.07); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(182,255,0,0.2); }
.nav-cta:active { transform: scale(0.97); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; border-radius: 8px; transition: background 0.2s; }
.nav-hamburger:hover { background: rgba(255,255,255,0.06); }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 42%; filter: blur(1.5px) brightness(0.78) saturate(0.85); transform: scale(1.03); z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(11,22,40,0.97) 0%, rgba(11,22,40,0.88) 38%, rgba(11,22,40,0.5) 65%, rgba(11,22,40,0.28) 100%),
    linear-gradient(to bottom, rgba(11,22,40,0.5) 0%, rgba(11,22,40,0.1) 35%, rgba(11,22,40,0.6) 80%, rgba(11,22,40,0.92) 100%);
}
.hero-vignette { position: absolute; inset: 0; z-index: 2; background: radial-gradient(ellipse 85% 80% at 65% 50%, transparent 30%, rgba(5,11,22,0.45) 70%, rgba(5,11,22,0.82) 100%); pointer-events: none; }
.hero-glow { position: absolute; inset: 0; z-index: 2; background: radial-gradient(ellipse 60% 50% at 10% 30%, rgba(139,197,24,0.06) 0%, transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 10; max-width: 1120px; margin: 0 auto; width: 100%; padding: 150px 32px 100px; display: grid; grid-template-columns: 1fr 400px; gap: 72px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(182,255,0,0.1); border: 1px solid rgba(182,255,0,0.25); color: var(--neon-hi); font-size: 0.72rem; font-weight: 500; padding: 7px 16px; border-radius: 50px; margin-bottom: 36px; letter-spacing: 0.08em; text-transform: uppercase; animation: fadeUp 0.6s ease both; }
.hero-text h1 { margin-bottom: 28px; animation: fadeUp 0.6s 0.1s ease both; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.58); line-height: 1.7; margin-bottom: 44px; font-weight: 300; max-width: 420px; animation: fadeUp 0.6s 0.2s ease both; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; animation: fadeUp 0.6s 0.3s ease both; }
.pill { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(8px); padding: 8px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 400; color: rgba(255,255,255,0.58); }
.pill .dot { width: 6px; height: 6px; background: var(--neon-hi); border-radius: 50%; flex-shrink: 0; }

/* TRUST BAR */
.trust-bar {
  position: relative; z-index: 20;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(16px); padding: 16px 24px;
}
.trust-bar::before {
  content: ''; position: absolute; top: -40px; left: 0; right: 0; height: 40px;
  background: linear-gradient(to top, rgba(11,22,40,0.6), transparent);
  pointer-events: none;
}
.trust-bar-inner { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-bar-item { display: flex; align-items: center; gap: 10px; }
.trust-stars { color: #F5C518; font-size: 0.95rem; letter-spacing: 2px; }
.trust-num { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--white); }
.trust-label { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.trust-divider { width: 1px; height: 26px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* BOOKING CARD */
.booking-card { background: rgba(15,30,56,0.92); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: 0 24px 80px rgba(0,0,0,0.55); backdrop-filter: blur(20px); animation: fadeUp 0.6s 0.25s ease both; }
.booking-card h2 { font-size: 1.2rem; margin-bottom: 4px; color: var(--white); }
.booking-card .sub { font-size: 0.78rem; color: var(--muted); margin-bottom: 20px; }
.booking-card .sub strong { color: var(--neon-hi); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1/-1; }
label { font-size: 0.67rem; font-weight: 500; color: var(--muted-light); text-transform: uppercase; letter-spacing: 0.07em; }
input, select { width: 100%; padding: 11px 13px; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.875rem; color: var(--white); background: rgba(255,255,255,0.05); outline: none; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; -webkit-appearance: none; }
input::placeholder { color: rgba(255,255,255,0.22); }
input:focus, select:focus { border-color: var(--neon-hi); background: rgba(182,255,0,0.04); box-shadow: 0 0 0 3px rgba(182,255,0,0.1); }
select option { background: var(--navy-mid); color: var(--white); }
.btn-primary { width: 100%; background: linear-gradient(160deg, var(--neon-hi), var(--neon-lo)); color: var(--navy); font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.95rem; padding: 15px; border-radius: 12px; border: none; cursor: pointer; margin-top: 6px; letter-spacing: 0.01em; box-shadow: 0 8px 28px rgba(182,255,0,0.15); transition: filter 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s; }
.btn-primary:hover { filter: brightness(1.07); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(182,255,0,0.22); }
.btn-primary:active { transform: scale(0.97); transition-duration: 0.08s; }
.form-note { text-align: center; font-size: 0.73rem; color: var(--muted); margin-top: 10px; }

/* SECTIONS */
/* ── SECTIONS & TRANSITIONS ── */
.section { padding: 88px 24px; position: relative; }
.section-inner { max-width: 1020px; margin: 0 auto; position: relative; z-index: 2; }

/* Default section (#0B1628): fade in from dark, fade out to dark */
.section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 120px; pointer-events: none; z-index: 1;
  background: linear-gradient(to bottom, #070E1A 0%, transparent 100%);
}
.section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px; pointer-events: none; z-index: 1;
  background: linear-gradient(to top, #070E1A 0%, transparent 100%);
}

/* Dark section (#070E1A): fade in/out from navy */
.section-dark { background: #070E1A; }
.section-dark::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 120px; pointer-events: none; z-index: 1;
  background: linear-gradient(to bottom, #0B1628 0%, transparent 100%);
}
.section-dark::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px; pointer-events: none; z-index: 1;
  background: linear-gradient(to top, #0B1628 0%, transparent 100%);
}

/* CTA band: no pseudo-fades — border lines do the job */
.cta-band-transition {
  display: block; height: 80px;
  background: linear-gradient(to bottom, #0B1628, #0D1A2E);
}
.cta-band-transition.up {
  background: linear-gradient(to bottom, #0D1A2E, #070E1A);
}

/* Final CTA: fade in from navy-mid */
.final-cta::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 120px; pointer-events: none;
  background: linear-gradient(to bottom, #0D1A2E 0%, transparent 100%);
}
.section-label { font-size: 0.72rem; font-weight: 500; color: #8EC832; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px; display: block; }
h2.section-title { margin-bottom: 40px; }

/* PRICE CARDS */
.prices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 14px; }
.price-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(10px); border-radius: 20px; padding: 26px 22px; position: relative; overflow: hidden; will-change: transform; transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease, background 0.2s, border-color 0.2s; }
.price-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background 0.2s; }
.price-card:hover { transform: translateY(-6px) scale(1.02); background: rgba(255,255,255,0.055); border-color: rgba(182,255,0,0.22); box-shadow: 0 20px 56px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.1); }
.price-card:hover::before { background: linear-gradient(90deg, var(--neon-hi), var(--neon-lo)); }
.price-card:active { transform: scale(0.98); transition-duration: 0.1s; }
.price-tag { position: absolute; top: 14px; right: 14px; background: linear-gradient(135deg, var(--neon-hi), var(--neon-lo)); color: var(--navy); font-size: 0.6rem; font-weight: 800; padding: 4px 10px; border-radius: 50px; text-transform: uppercase; }
.pc-airport { font-size: 0.68rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.pc-route { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--white); margin-bottom: 14px; line-height: 1.3; }
.pc-from { font-size: 0.68rem; color: var(--muted); margin-bottom: 2px; }
.pc-price { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.9rem; color: var(--white); letter-spacing: -0.04em; }
.pc-price span { font-size: 0.85rem; font-weight: 400; color: var(--muted); }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 2px; }
.step { padding: 38px 32px; background: #0A1422; transition: background 0.2s; }
.step:hover { background: #0D1A2E; }
.step-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 4.5rem; color: var(--neon-hi); opacity: 0.12; line-height: 1; margin-bottom: 18px; letter-spacing: -0.05em; transition: opacity 0.2s; }
.step:hover .step-num { opacity: 0.2; }
.step h3 { margin-bottom: 10px; color: var(--white); }
.step p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* WHY CARDS */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 16px; }
.why-card { border-radius: 18px; will-change: transform; transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease, background 0.2s, border-color 0.2s; }
.why-card:nth-child(1) { padding: 32px 24px 26px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); backdrop-filter: blur(10px); }
.why-card:nth-child(2) { padding: 26px 24px 28px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); backdrop-filter: blur(8px); }
.why-card:nth-child(3) { padding: 28px 24px; background: rgba(182,255,0,0.025); border: 1px solid rgba(182,255,0,0.1); backdrop-filter: blur(12px); }
.why-card:nth-child(4) { padding: 30px 24px 24px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); backdrop-filter: blur(10px); }
.why-card:hover { transform: translateY(-5px) scale(1.02); border-color: rgba(182,255,0,0.2); background: rgba(255,255,255,0.055); box-shadow: 0 16px 48px rgba(0,0,0,0.38); }
.why-card:active { transform: scale(0.98); transition-duration: 0.1s; }
.why-icon { width: 44px; height: 44px; background: rgba(182,255,0,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 16px; }
.why-card h3 { margin-bottom: 8px; color: var(--white); }
.why-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color 0.2s; }
.faq-item:hover { border-color: rgba(182,255,0,0.15); }
.faq-q { width: 100%; text-align: left; padding: 20px 24px; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q-text { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--white); }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: var(--neon-hi); font-size: 1rem; line-height: 1; transition: transform 0.25s, background 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(182,255,0,0.12); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 0.875rem; color: var(--muted-light); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 14px; }
.review-card { border-radius: 18px; padding: 26px; will-change: transform; transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease, background 0.2s, border-color 0.2s; }
.review-card:nth-child(1) { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); backdrop-filter: blur(12px); }
.review-card:nth-child(2) { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); backdrop-filter: blur(6px); }
.review-card:nth-child(3) { background: rgba(182,255,0,0.02); border: 1px solid rgba(182,255,0,0.09); backdrop-filter: blur(10px); }
.review-card:hover { transform: translateY(-4px) scale(1.02); background: rgba(255,255,255,0.05); border-color: rgba(182,255,0,0.18); box-shadow: 0 14px 44px rgba(0,0,0,0.35); }
.review-card:active { transform: scale(0.98); transition-duration: 0.1s; }
.review-stars { color: #F5C518; font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; line-height: 1.7; color: var(--off-white); margin-bottom: 14px; font-style: italic; opacity: 0.82; }
.reviewer { font-size: 0.75rem; font-weight: 500; color: var(--muted); }

/* TRUST ITEMS */
.trust-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 12px; margin-top: 32px; }
.trust-item { display: flex; align-items: flex-start; gap: 12px; padding: 18px 20px; border-radius: 14px; backdrop-filter: blur(8px); will-change: transform; transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease, background 0.2s, border-color 0.2s; }
.trust-item:nth-child(odd)  { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); }
.trust-item:nth-child(even) { background: rgba(182,255,0,0.03); border: 1px solid rgba(182,255,0,0.1); }
.trust-item:hover { transform: scale(1.02); background: rgba(255,255,255,0.05); border-color: rgba(182,255,0,0.18); box-shadow: 0 8px 28px rgba(0,0,0,0.28); }
.trust-item:active { transform: scale(0.98); transition-duration: 0.1s; }
.trust-check { width: 22px; height: 22px; background: linear-gradient(135deg, var(--neon-hi), var(--neon-lo)); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--navy); font-size: 0.65rem; font-weight: 800; }
.trust-item span { font-size: 0.875rem; font-weight: 500; color: var(--off-white); line-height: 1.4; padding-top: 1px; }

/* CTA BAND */
.cta-band {
  background: linear-gradient(160deg, #0D1A2E 0%, #0A1525 50%, #111D30 100%);
  text-align: center; padding: 90px 24px;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 110px; pointer-events: none;
  background: linear-gradient(to bottom, #0B1628 0%, transparent 100%);
  z-index: 0;
}
/* bottom fade out toward section-dark (#070E1A) */
.cta-band .cta-fade-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 110px;
  background: linear-gradient(to top, #070E1A 0%, transparent 100%);
  pointer-events: none;
}
.cta-band::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(182,255,0,0.07) 0%, transparent 70%); pointer-events: none; }
.cta-band h2 { max-width: 680px; margin: 0 auto 14px; position: relative; }
.cta-band p { font-size: 1.05rem; color: var(--muted); margin-bottom: 34px; font-weight: 300; position: relative; }
.btn-neon { display: inline-block; background: linear-gradient(160deg, var(--neon-hi), var(--neon-lo)); color: var(--navy); font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; padding: 16px 40px; border-radius: var(--radius); border: none; cursor: pointer; box-shadow: 0 8px 28px rgba(182,255,0,0.15); transition: filter 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s; position: relative; }
.btn-neon:hover { filter: brightness(1.07); transform: translateY(-2px); box-shadow: 0 10px 34px rgba(182,255,0,0.22); }
.btn-neon:active { transform: scale(0.97); transition-duration: 0.08s; }

/* FINAL CTA */
.final-cta { text-align: center; padding: 110px 24px; background: #070E1A; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; bottom: -20%; left: 50%; transform: translateX(-50%); width: 500px; height: 300px; background: radial-gradient(ellipse, rgba(182,255,0,0.06) 0%, transparent 70%); pointer-events: none; }
.final-cta h2 { margin-bottom: 14px; position: relative; }
.final-cta p { font-size: 1rem; color: var(--muted); margin-bottom: 32px; font-weight: 300; position: relative; }
.btn-neon-lg { display: inline-block; background: linear-gradient(160deg, var(--neon-hi), var(--neon-lo)); color: var(--navy); font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; padding: 18px 56px; border-radius: var(--radius); border: none; cursor: pointer; box-shadow: 0 8px 28px rgba(182,255,0,0.15); transition: filter 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s; position: relative; }
.btn-neon-lg:hover { filter: brightness(1.07); transform: translateY(-2px); box-shadow: 0 10px 34px rgba(182,255,0,0.22); }
.btn-neon-lg:active { transform: scale(0.97); transition-duration: 0.08s; }

/* AIRPORT LINKS */
.airport-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 12px; margin-top: 32px; }
.airport-link { display: flex; align-items: center; gap: 10px; padding: 16px 20px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; color: var(--off-white); font-size: 0.875rem; font-weight: 500; transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), border-color 0.2s, background 0.2s; }
.airport-link:hover { border-color: rgba(182,255,0,0.2); background: rgba(255,255,255,0.055); transform: translateY(-2px); }
.airport-link .arrow { margin-left: auto; color: var(--neon-hi); opacity: 0.6; }

/* BREADCRUMB */
.breadcrumb { font-size: 0.78rem; color: var(--muted); margin-bottom: 12px; }
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--neon-hi); }
.breadcrumb span { margin: 0 6px; opacity: 0.4; }

/* FOOTER */
footer { background: #040A14; padding: 56px 24px 32px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1020px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { height: 48px; width: auto; margin-bottom: 16px; display: block; }
.footer-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 24px; border-top: 1px solid var(--border); }
.footer-copy { font-size: 0.78rem; color: #2E3D55; }
.footer-note { font-size: 0.75rem; color: #2E3D55; max-width: 500px; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 860px) {
  .hero-content { grid-template-columns: 1fr; gap: 36px; padding: 110px 20px 60px; }
  .hero-sub { max-width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .trust-divider { display: none; }
  .trust-bar-inner { gap: 16px; justify-content: flex-start; }
}
@media (max-width: 500px) {
  .nav { padding: 10px 18px; }
  .section { padding: 60px 18px; }
  .footer-top { grid-template-columns: 1fr; }
}
