/* ============================================
   VANBERT AVIATION — V2 Premium Redesign
   Serif headlines + warm charcoal + glassmorphism
   ============================================ */

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

:root {
  /* Palette */
  --black: #000000;
  --charcoal: #0E0E10;
  --charcoal-warm: #141416;
  --dark-grey: #1C1C1E;
  --mid-grey: #2A2A2C;
  --stone: #3A3A3C;
  --light-grey: #8E8E93;
  --off-white: #F5F5F7;
  --white: #ffffff;
  --gold: #C9A96E;
  --gold-light: #DFC48F;
  --gold-dim: #8C7A4F;

  /* Text */
  --text-primary: rgba(255,255,255, 0.92);
  --text-secondary: rgba(255,255,255, 0.60);
  --text-muted: rgba(255,255,255, 0.40);
  --text-faint: rgba(255,255,255, 0.20);

  /* Glass */
  --glass-bg: rgba(255,255,255, 0.04);
  --glass-border: rgba(255,255,255, 0.08);
  --glass-hover: rgba(255,255,255, 0.07);

  /* Fonts */
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --gutter: 80px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
ul { list-style: none; }
img { max-width: 100%; display: block; }
em { font-style: italic; }

/* Skip navigation */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 6px 6px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; outline: none; }

/* Containers */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-full { max-width: 1400px; margin: 0 auto; padding: 0 var(--gutter); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--white);
}

h1 { font-size: clamp(52px, 6vw, 88px); line-height: 1.05; }
h1 em { font-weight: 300; }

h2 { font-size: clamp(36px, 3.5vw, 56px); line-height: 1.12; }
h2 em { font-weight: 300; }

h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
}

h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.gold { color: var(--gold); }

.body-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
}

.body-text.muted { color: var(--text-secondary); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.text-link:hover { color: var(--gold-light); gap: 12px; }
.text-link svg { transition: transform 0.3s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn-primary:hover { background: var(--gold); }
.btn-primary.sm { padding: 12px 28px; font-size: 12px; }
.btn-primary.lg { padding: 20px 48px; font-size: 14px; }
.btn-primary.full { width: 100%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost.sm { padding: 12px 28px; font-size: 12px; }
.btn-ghost.lg { padding: 20px 48px; font-size: 14px; }
.btn-ghost.full { width: 100%; }

.btn-sm {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  border: 1px solid var(--glass-border);
  transition: all 0.3s var(--ease);
}
.btn-sm:hover { border-color: var(--gold); color: var(--gold); }

.btn-sm.gold-btn {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-sm.gold-btn:hover { background: var(--gold-light); }

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--dark-grey) 0%, var(--charcoal-warm) 100%);
  border: 1px dashed rgba(255,255,255,0.08);
  font-family: var(--sans);
}
.img-placeholder span:first-child { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.img-placeholder .img-note { font-size: 11px; color: var(--text-faint); letter-spacing: 0.05em; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar { background: var(--charcoal); border-bottom: 1px solid var(--glass-border); }
.top-bar .container-full { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; }
.top-bar a, .top-bar span { font-size: 12px; color: var(--light-grey); }
.top-bar a:hover { color: var(--white); }
.top-bar .dot { margin: 0 10px; opacity: 0.3; }
.top-left, .top-right { display: flex; align-items: center; }
.social-links { display: flex; gap: 14px; margin-left: 4px; }
.social-links a { color: var(--light-grey); display: flex; }

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.3s;
}

.main-nav .container-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 32px; width: auto; }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  position: relative;
  padding: 8px 12px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-signup { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.nav-signup:hover { color: var(--white); }
.btn-book {
  padding: 14px 26px;
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-book:hover { background: var(--gold); }

.mobile-toggle { display: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px var(--gutter) 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0a0c14 0%, #0d0f17 30%, #0a0a10 60%, #080810 100%);
  /* Replace with: background-image: url('hero.jpg'); background-size: cover; background-position: center; */
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.15) 35%,
    rgba(0,0,0,0.3) 65%,
    rgba(0,0,0,0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-headline { margin-bottom: 24px; }

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
}

/* BOOKING MODULE — Frosted glass */
.booking-module {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  background: rgba(255,255,255, 0.06);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.booking-toggles {
  display: flex;
  padding: 0 28px;
  background: rgba(255,255,255, 0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.toggle-btn {
  padding: 14px 0;
  margin-right: 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.toggle-btn.active { color: var(--white); font-weight: 600; border-bottom-color: var(--gold); }
.toggle-btn:hover { color: var(--white); }

.booking-fields {
  display: flex;
  align-items: center;
  padding: 20px 24px;
}

.booking-fields .field { flex: 1; padding: 0 16px; }
.booking-fields .field label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  margin-bottom: 6px;
}
.field-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}
.field-value svg { color: var(--text-muted); flex-shrink: 0; }
.field-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

.search-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 12px;
  transition: all 0.3s;
}
.search-btn:hover { background: var(--gold-light); }
.search-btn svg { color: var(--black); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.scroll-indicator span { font-size: 11px; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom, var(--text-muted), transparent); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ============================================
   EDITORIAL STATEMENT SECTIONS
   ============================================ */
.statement-section {
  padding: 100px 0;
  background: var(--charcoal-warm);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.statement {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-secondary);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.statement em { color: var(--white); font-style: italic; }

.statement-section.dark { background: var(--black); }

.big-number-row {
  display: flex;
  justify-content: center;
  gap: 80px;
}
.big-number { text-align: center; }
.big-number .num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.big-number .num-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Pull quote */
.quote-section { background: var(--charcoal); }
.pull-quote { text-align: center; }
.pull-quote p {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.pull-quote cite {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ============================================
   WHY VANBERT
   ============================================ */
.why-section { padding: 120px 0; background: var(--black); }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.why-left h2 { margin: 16px 0 20px; }
.why-left .body-text { margin-bottom: 28px; max-width: 400px; }

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Glass cards */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: all 0.4s var(--ease);
}
.glass:hover {
  background: var(--glass-hover);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.feature-card { padding: 32px 28px; }
.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.feature-icon.gold-icon { color: var(--gold); background: rgba(201, 169, 110,0.08); }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ============================================
   FLEET
   ============================================ */
.fleet-section { padding: 120px 0 80px; background: var(--charcoal-warm); }

.section-intro { margin-bottom: 48px; }
.section-intro h2 { margin-top: 16px; }
.section-intro.center { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.section-intro.center .body-text { max-width: 520px; }

.fleet-scroll { overflow-x: auto; padding: 0 var(--gutter); -webkit-overflow-scrolling: touch; }
.fleet-scroll::-webkit-scrollbar { display: none; }
.fleet-track { display: flex; gap: 20px; padding-bottom: 20px; min-width: min-content; }

.fleet-card {
  flex: 0 0 360px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.fleet-card:hover { border-color: rgba(255,255,255,0.14); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }

.fleet-img { position: relative; height: 220px; overflow: hidden; }
.fleet-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.fleet-info { padding: 24px; }
.fleet-info h3 { margin-bottom: 4px; }
.fleet-subtitle { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }

.fleet-specs-row { display: flex; gap: 24px; padding: 16px 0; border-top: 1px solid var(--glass-border); }
.spec { display: flex; flex-direction: column; gap: 2px; }
.spec-val { font-size: 18px; font-weight: 600; color: var(--white); }
.spec-label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.03em; }

.fleet-bottom { display: flex; justify-content: flex-end; align-items: center; margin-top: 16px; }

/* Image fit for real photos */
.fleet-img img, .blog-img img, .map-visual img { width: 100%; height: 100%; object-fit: cover; }

.cta-card {
  flex: 0 0 300px;
  background: linear-gradient(160deg, rgba(201, 169, 110,0.08) 0%, rgba(201, 169, 110,0.02) 100%);
  border-color: rgba(201, 169, 110,0.15);
  display: flex;
  align-items: center;
}
.cta-card-inner { padding: 40px 32px; }
.cta-card-inner h3 { font-family: var(--serif); font-size: 28px; font-weight: 400; margin-bottom: 12px; }
.cta-card-inner p { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }

.fleet-nav-row { padding: 24px 0 0; }

/* ============================================
   DEALS
   ============================================ */
.deals-section { padding: 120px 0; background: var(--black); }

.deals-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.deals-header-right .body-text { margin-bottom: 24px; max-width: 440px; }
.deals-cta-row { display: flex; gap: 12px; }

.deals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.deal-card { padding: 24px; border-radius: 8px; }
.deal-card.hot { border-color: rgba(201, 169, 110,0.2); background: rgba(201, 169, 110,0.03); }

.deal-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.deal-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  border-radius: 3px;
}
.deal-badge.hot-badge { background: rgba(201, 169, 110,0.12); color: var(--gold); }
.deal-date { font-size: 13px; color: var(--text-muted); }

.deal-route { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.deal-from, .deal-to { min-width: 0; }
.airport-code { display: block; font-size: 24px; font-weight: 700; color: var(--white); letter-spacing: 0.05em; }
.airport-city { font-size: 12px; color: var(--text-muted); white-space: nowrap; }
.route-line { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-muted); flex-shrink: 0; }
.plane-icon { color: var(--gold); }

.deal-meta {
  display: flex;
  gap: 4px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 12px 0;
  border-top: 1px solid var(--glass-border);
  margin-bottom: 16px;
}
.deal-sep { opacity: 0.3; }

.deal-bottom { display: flex; justify-content: space-between; align-items: center; }
.deal-pricing { display: flex; align-items: baseline; gap: 10px; }
.original-price { font-size: 14px; color: var(--text-faint); text-decoration: line-through; }
.deal-price { font-size: 26px; font-weight: 600; color: var(--gold); font-family: var(--serif); }

/* ============================================
   SHUTTLE
   ============================================ */
.shuttle-section { padding: 120px 0; background: var(--charcoal-warm); }

.glass-table {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 48px;
}

.shuttle-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr 1fr 0.7fr 0.8fr;
  padding: 14px 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--glass-border);
}

.shuttle-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr 1fr 0.7fr 0.8fr;
  padding: 16px 24px;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
  font-size: 14px;
  color: var(--text-secondary);
  transition: background 0.3s;
}
.shuttle-row:last-child { border-bottom: none; }
.shuttle-row:hover { background: rgba(255,255,255,0.02); }

.route-cell { font-weight: 500; color: var(--white); }
.route-arrow { color: var(--gold); margin: 0 6px; }
.price-cell { font-weight: 600; color: var(--gold); font-size: 16px; }

.center-link { text-align: center; padding-top: 32px; }

/* ============================================
   ROUTES
   ============================================ */
.routes-section { padding: 120px 0; background: var(--black); }

.routes-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.map-visual {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.map-visual .img-placeholder.square { aspect-ratio: 1; border-radius: 12px; }

.routes-content h2 { margin: 16px 0 32px; }

.route-list { display: flex; flex-direction: column; }
.route-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s;
}
.route-item:hover { padding-left: 8px; }
.route-cities { font-size: 16px; font-weight: 500; color: var(--text-primary); }
.route-time { font-size: 14px; color: var(--text-muted); font-weight: 500; }

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-hero {
  padding: 160px 0 80px;
  background: var(--charcoal-warm);
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}
.blog-hero h1 { margin: 16px 0 20px; }
.blog-hero .hero-sub { font-size: 18px; color: var(--text-secondary); }

.blog-list-section { padding: 80px 0 120px; background: var(--black); }
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.blog-list-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
}
.blog-list-img { height: 220px; overflow: hidden; }
.blog-list-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-list-card:hover .blog-list-img img { transform: scale(1.05); }
.blog-list-content { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-list-content h3 { font-size: 20px; margin-bottom: 10px; }
.blog-list-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.blog-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-muted); }
.btn-sm.full { width: 100%; justify-content: center; }

/* ============================================
   TRUST
   ============================================ */
.trust-section {
  padding: 80px 0;
  background: var(--black);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.trust-grid { display: flex; justify-content: center; gap: 0; margin-bottom: 48px; }
.trust-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid var(--glass-border);
}
.trust-item:last-child { border-right: none; }
.trust-num { display: block; font-family: var(--serif); font-size: 40px; font-weight: 300; color: var(--white); margin-bottom: 6px; }
.trust-label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.05em; }

.partner-bar { text-align: center; }
.partner-label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; color: var(--text-faint); margin-bottom: 20px; display: block; }
.partners { display: flex; justify-content: center; gap: 40px; }
.partner { font-size: 14px; font-weight: 700; color: var(--text-faint); letter-spacing: 0.1em; }

/* ============================================
   BLOG
   ============================================ */
.blog-section { padding: 120px 0; background: var(--charcoal-warm); }

.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.blog-header h2 { margin-top: 16px; }

.blog-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.blog-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.blog-card:hover { border-color: rgba(255,255,255,0.14); transform: translateY(-4px); }

.blog-card.featured-blog { grid-row: 1 / 3; display: flex; flex-direction: column; }
.blog-img { height: 240px; overflow: hidden; }
.blog-card.featured-blog .blog-img { flex: 1; min-height: 240px; }
.blog-img.sm { height: 160px; }

.blog-content { padding: 24px; }
.blog-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-card h3 { margin-bottom: 10px; font-size: 17px; }
.blog-card.featured-blog h3 { font-size: 22px; }
.blog-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}
.read-more:hover { gap: 10px; color: var(--gold-light); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 140px 0;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0d0c08 0%, #12100a 40%, #0a0a0a 100%);
  /* Replace with: background-image: url('cta-bg.jpg'); background-size: cover; */
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}
.cta-content .eyebrow { margin-bottom: 20px; }
.cta-content h2 { margin-bottom: 16px; }
.cta-content .body-text { color: var(--text-secondary); margin-bottom: 40px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { padding: 72px 0 36px; background: var(--charcoal); border-top: 1px solid var(--glass-border); }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--glass-border);
}

.footer-logo { margin-bottom: 14px; }
.footer-logo-img { height: 24px; width: auto; }

.footer-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social a { color: var(--text-muted); display: inline-flex; align-items: center; justify-content: center; padding: 10px; min-width: 44px; min-height: 44px; }
.footer-social a:hover { color: var(--white); }

.footer-col h4 { margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-muted); padding: 10px 0; min-height: 44px; line-height: 1.5; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 28px;
}
.footer-legal p { font-size: 12px; color: var(--text-faint); line-height: 1.5; }
.footer-legal .disclaimer { font-size: 11px; margin-top: 6px; max-width: 560px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: var(--text-faint); }
.footer-bottom-links a:hover { color: var(--text-muted); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { padding: 120px 0; background: var(--charcoal-warm); overflow: hidden; }

.testimonial-carousel { margin-top: 48px; position: relative; }
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.testimonial-card {
  flex: 0 0 100%;
  padding: 48px;
  text-align: center;
}
.testimonial-stars {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 4px;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto 32px;
}
.testimonial-author { display: flex; flex-direction: column; gap: 4px; }
.author-name { font-size: 15px; font-weight: 600; color: var(--white); }
.author-detail { font-size: 13px; color: var(--text-muted); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--glass-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.carousel-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ============================================
   NEWSLETTER / DEAL ALERTS
   ============================================ */
.newsletter-section { padding: 80px 0; background: var(--black); }

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 48px;
}
.newsletter-content { max-width: 400px; }
.newsletter-content h3 { font-size: 24px; margin: 12px 0 8px; }
.newsletter-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.newsletter-form { flex: 1; max-width: 440px; }
.newsletter-input-group {
  display: flex;
  gap: 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  overflow: hidden;
}
.newsletter-input-group input {
  flex: 1;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
}
.newsletter-input-group input::placeholder { color: var(--text-muted); }
.newsletter-input-group input:focus { outline: none; }
.newsletter-input-group .btn-primary { border-radius: 0; white-space: nowrap; }
.newsletter-disclaimer {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .testimonial-card { padding: 32px 16px; }
  .newsletter-inner { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .newsletter-form { max-width: 100%; width: 100%; }
  .newsletter-input-group { flex-direction: column; }
  .newsletter-input-group .btn-primary { width: 100%; border-radius: 0 0 6px 6px; }
}

/* ============================================
   DEALS PAGE — Row Layout
   ============================================ */
.deals-list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }

.deal-row {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border-radius: 8px;
  transition: all 0.3s var(--ease);
}
.deal-row:hover { border-color: rgba(255,255,255,0.14); transform: translateX(4px); }

.deal-row-route { display: flex; align-items: center; gap: 16px; }
.deal-row-airports { display: flex; flex-direction: column; gap: 2px; }
.deal-row-code { font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: 0.03em; }
.deal-row-city { font-size: 12px; color: var(--text-muted); white-space: nowrap; }
.deal-row-arrow { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-muted); }

.deal-row-details { display: flex; gap: 20px; font-size: 14px; color: var(--text-secondary); }
.deal-row-date { font-weight: 500; color: var(--white); }

.deal-row-action { display: flex; align-items: center; gap: 16px; }
.deal-row-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  border-radius: 3px;
  white-space: nowrap;
}

/* Filter buttons */
.filter-btn {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

@media (max-width: 768px) {
  .deal-row { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .deal-row-details { flex-wrap: wrap; gap: 12px; }
  .deal-row-action { justify-content: space-between; }
  .deals-filter { width: 100%; }
}

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: var(--sans);
  font-size: 12px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--text-faint); }
.breadcrumb-current { color: var(--text-secondary); }

/* ============================================
   INNER PAGES
   ============================================ */
.inner-hero {
  padding: 160px 0 80px;
  background: var(--charcoal-warm);
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}
.inner-hero h1 { margin: 16px 0 20px; }
.inner-hero .hero-sub { font-size: 18px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.inner-section { padding: 100px 0; }
.inner-section.alt { background: var(--charcoal-warm); }
.inner-section.dark { background: var(--black); }

.inner-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.inner-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.inner-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.inner-content h2 { margin-bottom: 20px; }
.inner-content h3 { margin-bottom: 12px; }
.inner-content p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.inner-content p:last-child { margin-bottom: 0; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  padding: 14px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  min-height: 48px;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Contact info */
.contact-info-item { margin-bottom: 28px; }
.contact-info-item h4 { margin-bottom: 8px; color: var(--gold); }
.contact-info-item p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.contact-info-item a { color: var(--text-primary); }
.contact-info-item a:hover { color: var(--gold); }

/* Career cards */
.career-card { padding: 32px; }
.career-card h3 { margin-bottom: 8px; }
.career-meta { display: flex; gap: 16px; margin-bottom: 16px; }
.career-meta span { font-size: 12px; color: var(--text-muted); letter-spacing: 0.05em; }
.career-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }

/* Inner page images */
.inner-img { border-radius: 8px; overflow: hidden; border: 1px solid var(--glass-border); }
.inner-img img { width: 100%; height: 100%; object-fit: cover; }

/* Safety pillars */
.safety-card { padding: 32px; text-align: center; }
.safety-card .safety-icon { margin: 0 auto 20px; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(201, 169, 110,0.08); color: var(--gold); }
.safety-card h3 { margin-bottom: 10px; }
.safety-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

@media (max-width: 768px) {
  .inner-hero { padding: 120px 0 60px; }
  .inner-grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .inner-grid-3 { grid-template-columns: 1fr; }
  .inner-grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root { --gutter: 40px; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .deals-header { grid-template-columns: 1fr; gap: 24px; }
  .deals-grid { grid-template-columns: 1fr 1fr; }
  .routes-layout { grid-template-columns: 1fr; }
  .routes-visual { display: none; }
  .footer-top { grid-template-columns: repeat(3, 1fr); }
  .big-number-row { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --gutter: 24px; }
  /* Mobile: keep top bar visible but compact — hide secondary items */
  .top-bar { padding: 6px 0; font-size: 11px; }
  .top-bar .container-full { flex-direction: column; gap: 4px; align-items: center; }
  .top-bar .top-right .social-links,
  .top-bar .top-right .top-trip-link,
  .top-bar .top-right .dot { display: none; }
  .top-bar .top-left a, .top-bar .top-right a { padding: 4px 6px; min-height: 32px; display: inline-flex; align-items: center; }
  .nav-links, .nav-signup { display: none; }
  .mobile-toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
  }
  .mobile-toggle span { width: 22px; height: 1.5px; background: var(--white); }

  .hero { min-height: auto; padding: 100px var(--gutter) 60px; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .booking-fields { flex-direction: column; gap: 16px; padding: 20px; }
  .field-divider { display: none; }
  .booking-fields .field { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%; }
  .search-btn { width: 100%; margin: 8px 0 0; justify-content: center; }

  .why-right { grid-template-columns: 1fr; }
  .fleet-card { flex: 0 0 300px; }
  .deals-grid { grid-template-columns: 1fr; }
  .big-number-row { flex-direction: column; gap: 32px; }

  .shuttle-head { display: none; }
  .shuttle-row { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 20px; }

  .trust-grid { flex-direction: column; gap: 24px; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--glass-border); padding: 20px 0; }
  .trust-item:last-child { border-bottom: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured-blog { grid-row: auto; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .blog-list-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 120px 0 60px; }

  /* Mobile touch targets (minimum 44px) */
  .btn-book { padding: 14px 24px; font-size: 12px; min-height: 44px; }
  .btn-primary, .btn-ghost { padding: 16px 32px; min-height: 48px; }
  .btn-sm { padding: 12px 20px; min-height: 44px; }
  .nav-link { padding: 8px 0; }
  .route-item { padding: 18px 0; min-height: 48px; }
  .mobile-toggle { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }

  /* Mobile typography refinement */
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.3em; }
  .statement { font-size: 20px; }
  .pull-quote p { font-size: 28px; }
  .big-number .num { font-size: 48px; }

  /* Push body content above sticky bottom action bar */
  body { padding-bottom: 64px; }
}

/* =========================================
   FLOATING WHATSAPP BUTTON
   ========================================= */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 26px;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 4px 10px rgba(0,0,0,0.2);
  z-index: 55;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5), 0 6px 14px rgba(0,0,0,0.25);
  color: #fff;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  z-index: -1;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #0E0E10;
  color: #C9A96E;
  font-size: 12px; font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
  border: 1px solid rgba(255,255,255,0.08);
}
.wa-float:hover .wa-tooltip { opacity: 1; }
@media (max-width: 768px) {
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 80px; }
  .wa-float svg { width: 26px; height: 26px; }
  .wa-tooltip { display: none; }
}

/* =========================================
   STICKY MOBILE ACTION BAR (Call / Book)
   ========================================= */
.mobile-action-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  background: rgba(11, 11, 13, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 169, 110, 0.25);
  padding: 10px 16px env(safe-area-inset-bottom, 10px);
  z-index: 60;
  gap: 10px;
}
.mobile-action-bar a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px;
  border-radius: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mobile-action-bar .mab-call {
  border: 1px solid rgba(201, 169, 110, 0.5);
  color: var(--gold);
}
.mobile-action-bar .mab-book {
  background: var(--gold);
  color: var(--black);
}
.mobile-action-bar svg { width: 16px; height: 16px; }
@media (max-width: 768px) {
  .mobile-action-bar { display: flex; }
}

/* =========================================
   CERTIFICATIONS TRUST BAR
   ========================================= */
.cert-bar { margin-top: 72px; padding-top: 56px; border-top: 1px solid var(--glass-border); }
.cert-bar-header { text-align: center; margin-bottom: 44px; }
.cert-bar-label { display: block; font-size: 11px; letter-spacing: 3px; color: var(--gold); margin-bottom: 12px; }
.cert-bar-sub { font-size: 15px; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.6; }
.cert-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.cert-badge {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 28px 16px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px;
  color: var(--text); transition: all .35s ease; cursor: default;
}
.cert-badge:hover { border-color: rgba(201, 169, 110,0.4); transform: translateY(-3px); color: var(--gold); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.cert-badge svg { color: var(--gold); opacity: 0.85; }
.cert-badge:hover svg { opacity: 1; }
.cert-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; letter-spacing: 1px; }
.cert-tier { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
@media (max-width: 900px) {
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cert-badge { padding: 20px 10px; }
}

/* =========================================
   MEGA MENU DROPDOWN (Hub)
   ========================================= */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-toggle {
  background: transparent; border: none; color: inherit; font: inherit;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  /* padding comes from .nav-link class — do not override */
}
.nav-dropdown-toggle svg { transition: transform .25s ease; opacity: 0.7; }
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg { transform: rotate(180deg); opacity: 1; }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-8px);
  min-width: 320px;
  background: rgba(20,20,22,0.96); backdrop-filter: blur(24px) saturate(1.2); -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
  padding: 12px; box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: rgba(20,20,22,0.96); border-top: 1px solid rgba(255,255,255,0.08); border-left: 1px solid rgba(255,255,255,0.08);
}
.nav-dropdown-menu a {
  display: block; padding: 12px 14px; border-radius: 8px; color: var(--text);
  transition: background .2s ease, color .2s ease; text-decoration: none;
}
.nav-dropdown-menu a:hover { background: rgba(201, 169, 110,0.08); }
.nav-dropdown-menu .dd-title {
  display: block; font-family: 'Cormorant Garamond', serif; font-size: 18px; line-height: 1.2; color: var(--text);
  margin-bottom: 2px;
}
.nav-dropdown-menu a:hover .dd-title { color: var(--gold); }
.nav-dropdown-menu .dd-desc {
  display: block; font-size: 12px; color: var(--text-muted); letter-spacing: 0.2px;
}

/* Mobile: let dropdown render inline in the mobile menu */
@media (max-width: 960px) {
  .nav-dropdown { display: block; width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; }
  .nav-dropdown-menu {
    position: static; transform: none; min-width: 0; margin-top: 8px;
    background: rgba(255,255,255,0.02); box-shadow: none; padding: 6px;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu { transform: none; }
}

/* =========================================
   LIVE FLIGHT TRACKER (MapLibre + OpenSky)
   ========================================= */
#tracker-maplibre { background: #0E0E10; }
#tracker-maplibre .maplibregl-ctrl-group { background: rgba(20,20,22,0.9); border: 1px solid rgba(255,255,255,0.08); }
#tracker-maplibre .maplibregl-ctrl-group button { color: #C9A96E; }
#tracker-maplibre .maplibregl-ctrl-attrib { background: rgba(14,14,16,0.7); color: rgba(201, 169, 110,0.5); font-size: 10px; }
#tracker-maplibre .maplibregl-ctrl-attrib a { color: #C9A96E; }

/* Airport markers */
.vb-airport-marker {
  width: 10px; height: 10px; border-radius: 50%;
  background: #C9A96E; border: 2px solid #0E0E10;
  box-shadow: 0 0 0 2px rgba(201, 169, 110,0.25);
  cursor: pointer; position: relative;
}
.vb-airport-marker.home { background: #C9A96E; box-shadow: 0 0 0 2px rgba(201, 169, 110,0.35); }
.vb-airport-label {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 1.5px; font-weight: 500; color: #C9A96E;
  text-shadow: 0 0 4px #0E0E10, 0 0 8px #0E0E10;
  white-space: nowrap; pointer-events: none;
}
.vb-airport-marker.home .vb-airport-label { color: #C9A96E; }

/* Popups */
.vb-popup .maplibregl-popup-content {
  background: rgba(20,20,22,0.96); color: #C9A96E;
  border: 1px solid rgba(201, 169, 110,0.2); border-radius: 10px;
  padding: 14px 18px; backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  font-family: 'DM Sans', sans-serif;
}
.vb-popup .maplibregl-popup-tip { border-top-color: rgba(20,20,22,0.96); border-bottom-color: rgba(20,20,22,0.96); }
.vb-pop-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: #C9A96E; margin-bottom: 2px; }
.vb-pop-meta { font-size: 11px; letter-spacing: 1.5px; color: rgba(201, 169, 110,0.5); text-transform: uppercase; }

/* Empty state */
.tracker-empty { padding: 40px 20px; text-align: center; color: rgba(201, 169, 110,0.5); font-size: 13px; line-height: 1.6; }
.tracker-empty p { margin: 0 0 8px; }
.tracker-empty-hint { font-size: 11px; color: rgba(201, 169, 110,0.3); }

/* Tracker legend: hide the simulated-only states, add "home airport" entry */
.tracker-legend .legend-dot.active { background: #C9A96E; }
.tracker-legend .legend-dot.scheduled { background: #7BC69E; }
.tracker-legend .legend-dot.landed { background: #C9A96E; }

/* Tracker search + quick routes */
.tracker-search {
  position: relative; margin: 14px 0 12px;
}
.tracker-search input {
  width: 100%; padding: 12px 40px 12px 42px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px;
  color: #C9A96E; font-family: 'DM Sans', sans-serif; font-size: 14px;
  transition: border-color .2s ease, background .2s ease;
}
.tracker-search input::placeholder { color: rgba(201, 169, 110,0.35); }
.tracker-search input:focus { outline: none; border-color: #C9A96E; background: rgba(255,255,255,0.05); }
.tracker-search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: rgba(201, 169, 110,0.4); pointer-events: none;
}
.tracker-search-clear {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: transparent; border: none; cursor: pointer; padding: 6px;
  color: rgba(201, 169, 110,0.5); border-radius: 4px;
}
.tracker-search-clear:hover { color: #C9A96E; background: rgba(201, 169, 110,0.08); }

.tracker-quick-routes {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.tracker-quick-btn {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(201, 169, 110,0.75); font-size: 11px; letter-spacing: 0.5px;
  padding: 6px 12px; border-radius: 20px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all .2s ease;
}
.tracker-quick-btn:hover { border-color: rgba(201, 169, 110,0.4); color: #C9A96E; }
.tracker-quick-btn.active { background: rgba(201, 169, 110,0.12); border-color: #C9A96E; color: #C9A96E; }

.count-pill {
  display: inline-block; margin-left: 8px; padding: 3px 10px;
  font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase;
  background: rgba(201, 169, 110,0.1); color: #C9A96E; border-radius: 20px;
  font-weight: 500; vertical-align: middle;
}

/* Search hint box above list (collapsed when results exist) */
.tracker-search-hint {
  font-size: 12px; color: rgba(201, 169, 110,0.5); line-height: 1.5;
  padding: 10px 12px; margin-bottom: 12px;
  background: rgba(255,255,255,0.02); border-left: 2px solid #C9A96E; border-radius: 4px;
}
.tracker-search-hint strong { color: #C9A96E; }

/* Tracker hero hints */
.tracker-hero-hints {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 32px; max-width: 900px;
}
.tracker-hero-hints .hint-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 10px;
}
.tracker-hero-hints .hint-num {
  flex: 0 0 28px; height: 28px; border-radius: 50%;
  background: rgba(201, 169, 110,0.12); color: #C9A96E;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500; font-family: 'Cormorant Garamond', serif;
}
.tracker-hero-hints .hint-item > div { display: flex; flex-direction: column; gap: 2px; }
.tracker-hero-hints strong { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: #C9A96E; font-weight: 400; }
.tracker-hero-hints span { font-size: 12px; color: rgba(201, 169, 110,0.55); line-height: 1.45; }
.tracker-hero-hints em { color: #C9A96E; font-style: normal; font-family: monospace; font-size: 11px; }
@media (max-width: 900px) {
  .tracker-hero-hints { grid-template-columns: 1fr; gap: 10px; }
}

/* Detail disclaimer */
.detail-disclaimer {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11px; color: rgba(201, 169, 110,0.45); line-height: 1.55;
}
.detail-disclaimer a { color: #C9A96E; }

/* Inline <code> styling for instructions */
.feature-card code {
  font-family: 'SF Mono', 'Monaco', 'Menlo', monospace; font-size: 0.9em;
  background: rgba(201, 169, 110,0.08); color: #C9A96E;
  padding: 2px 6px; border-radius: 3px;
}

/* Feed error banner + enriched list rows */
.tracker-feed-error {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px; margin-bottom: 14px;
  background: rgba(217,123,123,0.08); border: 1px solid rgba(217,123,123,0.25);
  border-radius: 10px; font-size: 13px; line-height: 1.5;
}
.tracker-feed-error .tfe-icon { color: #D97B7B; font-size: 18px; flex-shrink: 0; line-height: 1.2; }
.tracker-feed-error .tfe-body { display: flex; flex-direction: column; gap: 2px; color: rgba(201, 169, 110,0.75); }
.tracker-feed-error .tfe-body strong { color: #C9A96E; font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 400; }
.tracker-feed-error .tfe-body a { color: #C9A96E; }

.flight-row { text-align: left; position: relative; }
.flight-row-aircraft {
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(201, 169, 110,0.8); margin-top: 6px; padding-top: 6px;
  border-top: 1px dashed rgba(255,255,255,0.06);
}
.flight-secondary { color: rgba(201, 169, 110,0.7); font-weight: 500; }

/* =========================================
   WEATHER WIDGET (destination pages + hub)
   ========================================= */
.wx-widget {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: 14px;
  padding: 28px; margin: 24px 0;
}
.wx-loading .wx-skeleton {
  height: 120px; border-radius: 10px;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  background-size: 200% 100%; animation: wxShimmer 1.5s ease infinite;
}
@keyframes wxShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.wx-error { color: rgba(201, 169, 110,0.6); font-size: 14px; text-align: center; padding: 40px 20px; }

.wx-current {
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.wx-current-left { display: flex; gap: 22px; align-items: center; }
.wx-icon-lg { width: 64px; height: 64px; color: var(--gold); flex-shrink: 0; }
.wx-icon-lg svg { width: 100%; height: 100%; }
.wx-temp { display: flex; align-items: baseline; gap: 2px; line-height: 1; }
.wx-temp-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; color: #C9A96E; font-weight: 300; }
.wx-temp-unit { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--gold); }
.wx-condition { font-size: 16px; color: #C9A96E; margin-top: 4px; }
.wx-feels { font-size: 11px; letter-spacing: 1.5px; color: var(--text-muted); text-transform: uppercase; margin-top: 4px; }

.wx-current-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 28px; }
.wx-meta-item { display: flex; flex-direction: column; gap: 2px; }
.wx-meta-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
.wx-meta-val { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: #C9A96E; }

.wx-forecast {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--glass-border);
}
.wx-day {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 8px; background: rgba(255,255,255,0.02); border-radius: 10px;
  transition: background .2s ease;
}
.wx-day:hover { background: rgba(255,255,255,0.04); }
.wx-day-name { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
.wx-day-icon { width: 32px; height: 32px; color: var(--gold); }
.wx-day-icon svg { width: 100%; height: 100%; }
.wx-day-temps { display: flex; gap: 6px; align-items: baseline; font-family: 'Cormorant Garamond', serif; font-size: 18px; }
.wx-day-temps strong { color: #C9A96E; font-weight: 400; }
.wx-day-temps span { color: var(--text-muted); font-size: 15px; }
.wx-day-pop { font-size: 10px; color: #7BA8C6; letter-spacing: 0.5px; }

.wx-marine {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
  margin-top: 20px; padding: 12px 16px;
  background: rgba(90,140,180,0.08); border: 1px solid rgba(90,140,180,0.2); border-radius: 8px;
}
.wx-marine-label {
  font-size: 10px; letter-spacing: 2px; color: #7BA8C6; font-weight: 500;
  padding: 3px 8px; background: rgba(123,168,198,0.15); border-radius: 3px;
}
.wx-marine-item { font-size: 13px; color: rgba(201, 169, 110,0.8); }
.wx-marine-item strong { color: #C9A96E; font-family: 'Cormorant Garamond', serif; font-size: 16px; margin-right: 4px; }

.wx-grid-loading { padding: 40px 20px; text-align: center; color: var(--text-muted); font-size: 13px; grid-column: 1 / -1; }

@media (max-width: 720px) {
  .wx-widget { padding: 20px; }
  .wx-current { grid-template-columns: 1fr; gap: 20px; }
  .wx-current-left { gap: 14px; }
  .wx-icon-lg { width: 48px; height: 48px; }
  .wx-temp-num { font-size: 40px; }
  .wx-current-meta { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .wx-meta-val { font-size: 14px; }
  .wx-forecast { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .wx-day { padding: 10px 4px; }
}
@media (max-width: 480px) {
  .wx-forecast { grid-template-columns: repeat(2, 1fr); }
  .wx-current-meta { grid-template-columns: repeat(2, 1fr); }
}

/* Crew Standards Grid (operators.html) */
.crew-standards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 40px; }
.crew-standard { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px; padding: 28px 24px; transition: all .3s ease; }
.crew-standard:hover { border-color: rgba(201, 169, 110,0.3); transform: translateY(-3px); }
.crew-standard .cs-num { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--gold); margin-bottom: 10px; font-weight: 300; }
.crew-standard h3 { font-size: 22px; margin: 0 0 10px; color: var(--text); }
.crew-standard p { color: var(--text-muted); font-size: 14px; line-height: 1.65; margin: 0; }

/* Booking modal: transparent pricing disclosure */
.book-pricing-promise {
  margin-top: 24px; padding: 18px 20px;
  background: rgba(201, 169, 110,0.06); border: 1px solid rgba(201, 169, 110,0.2);
  border-radius: 10px; display: flex; gap: 14px; align-items: flex-start;
}
.book-pricing-promise-icon { flex: 0 0 32px; color: var(--gold); }
.book-pricing-promise-body h4 { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: #C9A96E; margin: 0 0 6px; font-weight: 400; }
.book-pricing-promise-body p { font-size: 12px; color: rgba(201, 169, 110,0.6); line-height: 1.55; margin: 0; }
.book-pricing-promise-body a { color: var(--gold); }

.book-pricing-breakdown {
  margin-top: 14px; padding: 14px 16px; background: rgba(255,255,255,0.02);
  border-radius: 8px; font-size: 12px;
}
.book-pricing-breakdown-title { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.book-pricing-breakdown ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.book-pricing-breakdown li { color: rgba(201, 169, 110,0.7); font-size: 12px; position: relative; padding-left: 14px; }
.book-pricing-breakdown li::before { content: '✓'; position: absolute; left: 0; color: #7BC69E; font-size: 10px; }

/* Top utility bar "My Trip" access link */
.top-trip-link {
  color: var(--gold) !important;
  font-weight: 500; letter-spacing: 0.5px;
  position: relative; padding-left: 18px;
}
.top-trip-link::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 12px; height: 12px;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A96E' stroke-width='2'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.top-trip-link:hover { color: #FFFFFF !important; }

/* =========================================
   EMPTY LEG MARKETPLACE V2
   ========================================= */
.deals-live-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 8px;
  margin-top: 28px; margin-bottom: 18px;
  font-size: 13px; color: var(--text-secondary);
}
.deals-live-bar strong { color: var(--white); font-weight: 600; }
.deals-live-bar .live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #2BD466; box-shadow: 0 0 0 0 rgba(43, 212, 102, 0.5);
  animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(43, 212, 102, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(43, 212, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(43, 212, 102, 0); }
}
.dot-sep { color: var(--text-faint); }

.deal-card-v2 {
  display: block !important;
  padding: 22px !important;
  border-radius: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.deal-card-v2:hover {
  border-color: rgba(201, 169, 110, 0.3) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.deal-card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 20px; flex-wrap: wrap;
}
.deal-pricing { display: flex; align-items: center; gap: 14px; }
.deal-savings-pill {
  background: linear-gradient(135deg, #C9A96E, #8B7547);
  color: #0E0E10;
  font-weight: 800; font-size: 13px;
  padding: 6px 12px; border-radius: 100px;
  letter-spacing: 0.04em;
}
.deal-price-stack { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1; }
.deal-price-was {
  font-size: 13px; color: var(--text-faint);
  text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.25);
}
.deal-price-now {
  font-size: 24px; font-weight: 700;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.deal-card-mid {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 13px; color: var(--text-secondary);
}
.deal-card-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
  margin-top: 14px;
}
.deal-row-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.deal-countdown {
  font-size: 12px; font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.deal-countdown.cd-urgent { color: #F2B355; }
.deal-countdown.cd-expired { color: #E5928A; opacity: 0.6; }

.deals-empty {
  text-align: center; padding: 40px 20px;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 8px; margin-top: 20px;
  color: var(--text-muted);
}

/* Alert preference chips */
.pref-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: var(--text-secondary);
  cursor: pointer; user-select: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.pref-chip:hover { background: rgba(255,255,255,0.07); border-color: rgba(201, 169, 110,0.3); }
.pref-chip input { accent-color: var(--gold); cursor: pointer; }
.pref-chip:has(input:checked) {
  background: rgba(201, 169, 110,0.12);
  border-color: rgba(201, 169, 110,0.5);
  color: var(--gold);
}
.alert-subscribed { box-shadow: 0 0 0 1px rgba(45, 178, 95, 0.4); }

@media (max-width: 600px) {
  .deal-card-top { flex-direction: column; gap: 14px; }
  .deal-pricing { width: 100%; justify-content: space-between; }
  .deal-card-bottom { flex-direction: column; align-items: stretch; }
  .deal-row-actions { justify-content: stretch; }
  .deal-row-actions a { flex: 1; text-align: center; }
}

/* =========================================
   CUSTOMS GUIDE PAGES
   ========================================= */
.customs-checklist { padding: 24px; border-radius: 10px; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative; padding-left: 28px; margin-bottom: 10px;
  font-size: 14px; color: var(--text-secondary); line-height: 1.55;
}
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px;
  background: rgba(201, 169, 110,0.15);
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.check-list li::after {
  content: ''; position: absolute; left: 5px; top: 9px;
  width: 6px; height: 10px;
  border: solid var(--gold);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.customs-island-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px; margin-top: 36px;
}
.customs-island-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; border-radius: 10px;
  text-decoration: none; color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.customs-island-card:hover {
  border-color: rgba(201, 169, 110,0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.customs-card-flag { font-size: 32px; line-height: 1; flex-shrink: 0; }
.customs-card-body { flex: 1; }
.customs-card-body h3 {
  font-family: var(--serif); font-size: 22px; line-height: 1.2;
  margin: 6px 0 8px; color: var(--white);
}
.customs-card-body p {
  font-size: 13px; color: var(--text-secondary); line-height: 1.55;
  margin: 0;
}
.customs-card-meta {
  display: block; margin-top: 10px;
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--text-faint); text-transform: uppercase;
}
.customs-card-arrow {
  font-size: 22px; color: var(--gold);
  align-self: center;
  transition: transform 0.2s;
}
.customs-island-card:hover .customs-card-arrow { transform: translateX(4px); }

.customs-spec-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.customs-spec-card {
  padding: 22px; border-radius: 8px; text-align: center;
}
.customs-spec-card .eyebrow { margin-bottom: 8px; }
.customs-spec-value {
  font-family: var(--serif); font-size: 26px;
  color: var(--white); line-height: 1.2;
  margin: 0;
}

.fbo-card {
  padding: 22px; border-radius: 10px;
  border: 1px solid var(--glass-border);
}

.customs-step-list { display: flex; flex-direction: column; gap: 18px; }
.customs-step {
  display: flex; gap: 16px; align-items: flex-start;
}
.customs-step-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(201, 169, 110,0.15);
  border: 1px solid rgba(201, 169, 110,0.4);
  color: var(--gold);
  font-family: var(--serif); font-size: 16px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.customs-step h4 {
  font-size: 15px; font-weight: 600;
  color: var(--white); margin: 4px 0 6px;
}
.customs-step p {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.55; margin: 0;
}

.customs-fee-table {
  width: 100%; border-collapse: collapse;
  margin-top: 18px; font-size: 13px;
}
.customs-fee-table thead th {
  text-align: left; padding: 10px 14px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-faint); font-weight: 600;
  border-bottom: 1px solid var(--glass-border);
}
.customs-fee-table tbody td {
  padding: 12px 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.customs-fee-table tbody td:last-child {
  text-align: right; color: var(--white); font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.customs-fee-table tbody tr:last-child td { border-bottom: none; }

@media (max-width: 600px) {
  .customs-island-card { flex-direction: column; }
  .customs-card-arrow { display: none; }
  .customs-spec-value { font-size: 22px; }
  .customs-fee-table { font-size: 12px; }
  .customs-fee-table tbody td, .customs-fee-table thead th { padding: 10px 8px; }
}

/* =========================================
   CONTACT FORM — simple, airy
   ========================================= */
.vb-contact-form {
  display: flex; flex-direction: column; gap: 24px;
  max-width: 540px;
}
.vb-contact-form .vb-field { display: flex; flex-direction: column; gap: 10px; }
.vb-contact-form .vb-field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.vb-contact-form label {
  font-size: 14px; font-weight: 500;
  color: var(--text-primary); letter-spacing: 0;
  text-transform: none;
}
.vb-contact-form input[type="text"],
.vb-contact-form input[type="email"],
.vb-contact-form input[type="tel"],
.vb-contact-form select,
.vb-contact-form textarea {
  width: 100%; padding: 16px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  color: var(--text-primary); font-family: 'DM Sans', sans-serif; font-size: 15px;
  transition: border-color .2s ease, background .2s ease;
  line-height: 1.4;
}
.vb-contact-form input:focus,
.vb-contact-form select:focus,
.vb-contact-form textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,0.04);
}
.vb-contact-form input::placeholder,
.vb-contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.vb-contact-form textarea { resize: vertical; min-height: 140px; }
.vb-select { position: relative; }
.vb-select-native {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.vb-select-toggle {
  width: 100%;
  min-height: 56px;
  padding: 16px 52px 16px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.vb-select-toggle:hover,
.vb-select.is-open .vb-select-toggle,
.vb-select-toggle:focus-visible {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.04);
}
.vb-select-label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vb-select-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 12px;
  height: 8px;
  transform: translateY(-50%);
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .2s ease;
}
.vb-select.is-open .vb-select-icon {
  transform: translateY(-50%) rotate(180deg);
}
.vb-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 12px;
  background: #121212;
  box-shadow: 0 18px 42px rgba(0,0,0,0.42);
}
.vb-select-option {
  width: 100%;
  padding: 13px 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.vb-select-option:hover,
.vb-select-option:focus-visible,
.vb-select-option.is-selected {
  outline: none;
  background: rgba(201,169,110,0.14);
  color: #F4E5C4;
}

/* Consent checkbox row */
.vb-check-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; line-height: 1.55;
  color: var(--text-secondary); cursor: pointer;
  margin-top: 4px;
}
.vb-check-row input[type="checkbox"] {
  margin-top: 2px; flex-shrink: 0;
  width: 16px; height: 16px;
  accent-color: var(--gold); cursor: pointer;
}
.vb-check-row a { color: var(--gold); }

/* Submit button + helper note */
.vb-submit-btn {
  margin-top: 6px;
  padding: 18px 32px !important;
  font-size: 14px !important;
}
.vb-response-note {
  font-size: 13px; color: var(--text-muted);
  margin-top: -4px; line-height: 1.5;
}
.vb-response-note a { color: var(--gold); }

/* Error state */
.vb-field.error input,
.vb-field.error select,
.vb-field.error textarea { border-color: #D97B7B; }

/* Success state */
.vb-success {
  padding: 44px 28px; text-align: center;
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 14px;
}
.vb-success-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  background: rgba(201,169,110,0.12); color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.vb-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300;
  color: var(--text-primary); margin: 0 0 10px;
}
.vb-success p {
  color: var(--text-secondary); font-size: 14px; line-height: 1.6;
  max-width: 420px; margin: 0 auto;
}
.vb-success a { color: var(--gold); }

@media (max-width: 680px) {
  .vb-contact-form .vb-field-row { grid-template-columns: 1fr; gap: 20px; }
}
