/* ══════════════════════════════════════════════════
   TransferCL — main.css  (Design System Premium)
   Fuentes: Cormorant Garamond + DM Sans
══════════════════════════════════════════════════ */

:root {
  /* ── Acento dorado (claro — visible sobre fondo oscuro) ── */
  --gold:        #C9A84C;
  --gold-light:  #D4B865;
  --gold-dim:    #A98B3A;
  --gold-soft:   rgba(201,168,76,0.13);

  /* ── Fondo marino (Login palette) ── */
  --bg:          #0E1F30;
  --surface:     #132535;
  --surface-2:   #0A1A27;
  --border:      rgba(77,200,238,0.12);
  --border-2:    rgba(77,200,238,0.20);

  /* ── Texto claro ── */
  --text:        #F0F6FC;
  --text-2:      rgba(240,246,252,0.70);
  --muted:       rgba(240,246,252,0.40);
  --white:       #FFFFFF;

  /* ── Semánticos ── */
  --success:     #3DAA5C;
  --warning:     #F5A623;
  --danger:      #E53E3E;
  --red:         #E53E3E;
  --green:       #3DAA5C;
  --amber:       #F5A623;

  /* ── Sombras (oscuras) ── */
  --shadow-sm:   0 1px 2px rgba(0,0,0,0.25);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.35);
  --shadow-lg:   0 20px 40px rgba(0,0,0,0.50);

  /* ── Containers blancos ── */
  --surface-light:   #FFFFFF;
  --surface-light-2: #F7F4ED;
  --surface-light-3: #FAFAF8;

  /* ── Texto sobre blanco ── */
  --text-on-light:   #1A1814;
  --text-on-light-2: #4A4740;
  --muted-on-light:  #7A756C;

  /* ── Bordes sobre blanco ── */
  --border-light:    #E8E4DA;
  --border-light-2:  #D4CEBE;

  /* ── Focus ring ── */
  --shadow-focus: 0 0 0 3px var(--gold-glow);

  /* ── Espaciado semántico ── */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* ── Radios ── */
  --radius-sm:   2px;
  --radius-md:   6px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-full: 50%;    /* círculos: avatares, badges — DESIGN_1.md */
  --radius-pill: 9999px; /* píldoras: botones redondeados */

  /* ── Gradiente de fondo ── */
  --bg-gradient: linear-gradient(135deg, #08111C 0%, #0E1F30 60%, #112540 100%);

  /* ── Alias de compatibilidad JS — NO RENOMBRAR ── */
  --cyan:        var(--gold);
  --dark:        var(--bg);
  --black:       var(--text);
  --surface2:    var(--surface-2);
  --border2:     var(--border-2);
  --gold-glow:   rgba(201,168,76,0.15);
  --white80:     rgba(240,246,252,0.80);
  --white40:     rgba(240,246,252,0.40);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'DM Sans', sans-serif;
  background: linear-gradient(135deg, #08111C 0%, #0E1F30 60%, #112540 100%) fixed;
  color:var(--text);
  font-size:15px;
  overflow-x:hidden;
}
::-webkit-scrollbar { width:4px }
::-webkit-scrollbar-track { background:var(--bg) }
::-webkit-scrollbar-thumb { background:var(--border); border-radius:2px }

/* ════════════════════════════
   NAV
════════════════════════════ */
nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 48px;
  background:rgba(8,17,28,0.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(77,200,238,0.10);
}
.logo {
  font-family:'Cormorant Garamond', serif;
  font-size:26px; font-weight:300; letter-spacing:0.08em; color:var(--gold);
}
.logo span { color:var(--text); }
.nav-right { display:flex; gap:32px; align-items:center; }
.nav-links { display:flex; gap:32px; align-items:center; list-style:none; }
.nav-links a {
  color:var(--muted); text-decoration:none; font-size:13px;
  letter-spacing:0.06em; text-transform:uppercase; transition:color 0.2s;
}
.nav-links a:hover { color:var(--gold); }
.nav-cta {
  background:var(--text); color:var(--bg);
  border:none;
  padding:9px 24px; font-size:12px; letter-spacing:0.1em; text-transform:uppercase;
  cursor:pointer; transition:all 0.25s; font-family:'DM Sans', sans-serif;
  border-radius:2px;
}
.nav-cta:hover { background:var(--gold); color:var(--white); }

/* Lang switcher */
.lang-switcher {
  display:flex; gap:0; border:1px solid var(--border); border-radius:2px; overflow:hidden;
}
.lang-btn {
  background:transparent; border:none; color:var(--muted);
  padding:6px 12px; font-size:11px; letter-spacing:0.08em; font-weight:500;
  cursor:pointer; font-family:'DM Sans', sans-serif; transition:all 0.2s;
  border-right:1px solid var(--border);
}
.lang-btn:last-child { border-right:none; }
.lang-btn.active { background:var(--gold); color:var(--white); }
.lang-btn:hover:not(.active) { color:var(--text); background:var(--surface-2); }

/* Hamburger */
.hamburger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; padding:4px; background:none; border:none;
}
.hamburger span { display:block; width:22px; height:2px; background:var(--text); transition:all 0.3s; }

/* Mobile menu */
.mobile-menu {
  display:none; position:fixed; inset:0; z-index:190;
  background:rgba(8,17,28,0.98); backdrop-filter:blur(16px);
  flex-direction:column; align-items:center; justify-content:center;
  gap:32px; padding:80px 24px 120px;
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  font-size:24px; font-family:'Cormorant Garamond', serif;
  font-weight:300; color:var(--text-2); text-decoration:none;
  letter-spacing:0.04em; transition:color 0.2s;
}
.mobile-menu a:hover { color:var(--gold); }
.mobile-lang { display:flex; gap:12px; margin-top:8px; }
.mobile-lang button {
  background:none; border:1px solid var(--border); color:var(--muted);
  padding:8px 20px; font-size:13px; letter-spacing:0.08em;
  font-family:'DM Sans', sans-serif; cursor:pointer; border-radius:2px;
  transition:all 0.2s;
}
.mobile-lang button.active { background:var(--gold); border-color:var(--gold); color:var(--white); }
.btn-menu-cta {
  background:var(--gold); color:var(--white); border:none;
  padding:14px 40px; font-size:13px; letter-spacing:0.1em;
  text-transform:uppercase; font-family:'DM Sans', sans-serif;
  cursor:pointer; border-radius:2px; margin-top:8px;
}

/* ════════════════════════════
   HERO BOOKING (foto de fondo + formulario)
════════════════════════════ */
.hero-booking {
  position:relative; min-height:100vh;
  display:flex; align-items:center;
  padding:100px 48px 64px; overflow:hidden;
  /* Foto de fondo vía CSS — más fiable que <img> */
  background:
    linear-gradient(125deg, rgba(8,17,28,0.80) 0%, rgba(8,17,28,0.50) 55%, rgba(17,37,64,0.30) 100%),
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&q=75&auto=format&fit=crop')
    center 35% / cover no-repeat;
  /* Fallback marino si la imagen no carga */
  background-color:#0E1F30;
}
/* El div .hb-bg y la img ya no son necesarios — se ocultan */
.hb-bg { display:none; }
.hb-overlay { display:none; }
.hb-grid {
  position:relative; z-index:2;
  max-width:1240px; margin:0 auto; width:100%;
  display:grid; grid-template-columns:1fr 1fr;
  gap:72px; align-items:start;
}

/* Titular izquierda */
.hb-headline { padding-top:32px; }
.hero-tag {
  display:inline-block; font-size:10px; letter-spacing:0.22em;
  text-transform:uppercase; color:var(--gold);
  border:1px solid rgba(201,168,76,0.35);
  padding:6px 18px; margin-bottom:28px; border-radius:100px;
}
.hero-title {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(48px,5.5vw,80px); font-weight:300;
  line-height:0.95; letter-spacing:-0.02em; margin-bottom:20px;
  color:#F0F6FC;
}
.hero-title em { font-style:italic; color:var(--gold); }
.hero-subtitle {
  font-size:15px; color:rgba(240,246,252,0.65);
  max-width:420px; line-height:1.75; font-weight:400; margin-bottom:36px;
}
.hb-trust-chips {
  display:flex; flex-direction:column; gap:11px;
}
.hb-trust-chips span {
  font-size:12.5px; color:rgba(240,246,252,0.60);
  display:flex; align-items:center; gap:10px; letter-spacing:0.01em;
}

/* Formulario derecha — glassmorphism sobre foto */
.hb-form-wrap { max-height:85vh; overflow-y:auto; }
.hb-form-wrap::-webkit-scrollbar { width:3px; }
.hb-form-wrap::-webkit-scrollbar-thumb { background:rgba(201,168,76,0.25); border-radius:2px; }
.booking-engine {
  background:var(--surface-light);
  border:none; border-radius:var(--radius-lg);
  padding:28px; box-shadow:var(--shadow-lg);
  position:relative;
}
.booking-engine::before {
  content:''; position:absolute; top:0; left:0;
  right:0; height:2px; border-radius:6px 6px 0 0;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
  pointer-events:none;
}

@media (max-width:960px) {
  .hero-booking { padding:90px 24px 48px; }
  .hb-grid { grid-template-columns:1fr; gap:40px; }
  .hb-headline { padding-top:0; }
  .hb-form-wrap { max-height:none; }
}
@media (max-width:600px) {
  .hero-booking { padding:80px 16px 40px; }
}

/* Botones hero (ya no usados como sección separada) */
.btn-primary {
  background:var(--gold); color:#08111C; border:none;
  padding:13px 32px; font-size:12px; letter-spacing:0.10em;
  text-transform:uppercase; font-weight:600; cursor:pointer;
  font-family:'DM Sans', sans-serif; border-radius:3px; transition:all 0.2s;
}
.btn-primary:hover { background:var(--gold-light); transform:translateY(-1px); }
.btn-ghost {
  background:transparent; color:rgba(240,246,252,0.70);
  border:1px solid rgba(240,246,252,0.25);
  padding:13px 32px; font-size:12px; letter-spacing:0.08em;
  text-transform:uppercase; cursor:pointer; font-family:'DM Sans', sans-serif;
  border-radius:3px; transition:all 0.2s;
}
.btn-ghost:hover { border-color:var(--gold); color:var(--gold); }

/* Mode tabs */
.mode-toggle {
  display:flex; gap:0; border-bottom:1px solid var(--border-light); margin-bottom:24px;
}
.mode-btn {
  flex:1; padding:10px 16px; font-size:12px; letter-spacing:0.08em;
  text-transform:uppercase; cursor:pointer; color:var(--muted-on-light);
  border:none; border-bottom:2px solid transparent; margin-bottom:-1px;
  background:transparent; font-family:'DM Sans', sans-serif; transition:all 0.2s;
}
.mode-btn.active { color:var(--gold); border-bottom-color:var(--gold); }
.mode-btn.emergency { color:var(--muted-on-light); }
.mode-btn.emergency.active { color:var(--danger); border-bottom-color:var(--danger); }

/* Emergency banner */
.emerg-banner {
  display:none; align-items:center; gap:12px;
  background:rgba(229,62,62,0.06); border:1px solid rgba(229,62,62,0.20);
  border-radius:3px; padding:12px 16px; margin-bottom:20px;
  font-size:13px; color:var(--text-on-light-2); line-height:1.5;
}
.emerg-banner.show { display:flex; }
.emerg-icon { font-size:18px; flex-shrink:0; }

/* Fields */
.field { margin-bottom:18px; }
.field label {
  display:block; font-size:10px; letter-spacing:0.12em;
  text-transform:uppercase; color:var(--text-on-light-2); margin-bottom:8px;
  font-weight:500;
}
.field input, .field select,
input[type="text"], input[type="date"], input[type="time"],
input[type="tel"], input[type="email"], select {
  width:100%;
  background:var(--surface-light); border:1px solid var(--border-light);
  color:var(--text-on-light); padding:11px 14px; font-size:14px;
  font-family:'DM Sans', sans-serif; border-radius:2px; outline:none;
  transition:border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance:none; appearance:none;
}
.field input:focus, .field select:focus,
input[type="text"]:focus, input[type="date"]:focus, input[type="time"]:focus {
  border-color:var(--gold);
  background:var(--surface-light-2);
  box-shadow:var(--shadow-focus);
}
.field input::placeholder { color:var(--muted-on-light); }
select {
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center;
  background-color:var(--surface-light); padding-right:36px;
}

/* Loc toggle */
.loc-toggle { display:flex; gap:8px; margin-bottom:8px; flex-wrap:wrap; }
.loc-btn {
  background:transparent; border:1px solid var(--border-light); color:var(--muted-on-light);
  padding:7px 14px; font-size:12px; letter-spacing:0.05em; border-radius:2px;
  cursor:pointer; font-family:'DM Sans', sans-serif; transition:all 0.2s;
}
.loc-btn.active { background:var(--gold); border-color:var(--gold); color:var(--white); font-weight:500; }
.loc-btn:hover:not(.active) { border-color:var(--gold-dim); color:var(--text-on-light); }

/* Row 2 columns */
.row2 { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

/* Peak tag */
.fpeak-tag {
  font-size:11px; letter-spacing:0.05em; color:var(--gold-dim);
  margin-top:6px; padding:4px 10px; border-left:2px solid var(--gold);
  background:var(--gold-soft); border-radius:0 2px 2px 0;
}

/* Flight row */
#flightRow .flight-badge {
  float:right; font-size:10px; font-weight:600; color:var(--green);
  background:rgba(34,209,138,0.1); border:1px solid rgba(34,209,138,0.3);
  border-radius:3px; padding:2px 8px; letter-spacing:0.5px;
}

/* Pax row */
.pax-row { display:flex; gap:32px; margin-bottom:20px; flex-wrap:wrap; }
.pax-label {
  font-size:10px; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--muted-on-light); margin-bottom:10px; font-weight:500;
}
.pax-ctrl { display:flex; align-items:center; gap:12px; }
.pax-ctrl button {
  width:32px; height:32px; border-radius:2px;
  background:var(--surface-light-2); border:1px solid var(--border-light);
  color:var(--text-on-light); font-size:16px; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:all 0.2s; line-height:1; font-family:'DM Sans', sans-serif;
}
.pax-ctrl button:hover { border-color:var(--gold); color:var(--gold); }
.pax-ctrl span { font-size:18px; font-family:system-ui,-apple-system,sans-serif; font-variant-numeric:tabular-nums; min-width:24px; text-align:center; color:var(--text-on-light); }

/* Vehicle grid */
.vehicle-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-bottom:8px; }
.v-opt {
  background:var(--surface-light); border:1px solid var(--border-light);
  border-radius:4px; padding:16px 12px; text-align:center;
  cursor:pointer; transition:all 0.2s;
}
.v-opt:hover { border-color:var(--gold-dim); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.v-opt.sel { border-color:var(--gold); background:var(--gold-soft); box-shadow:0 0 0 3px rgba(138,110,47,0.08); }
.vi { width:100%; height:auto; max-height:64px; object-fit:contain; display:block; margin-bottom:10px; }
.vn { font-size:13px; font-weight:500; margin-bottom:3px; color:var(--text-on-light); }
.vc { font-size:11px; color:var(--muted-on-light); }
.v-warn {
  font-size:12px; color:var(--warning); margin-top:6px;
  padding:8px 12px; background:rgba(179,122,26,0.06);
  border:1px solid rgba(179,122,26,0.2); border-radius:2px; display:none;
}

/* Extras */
.extras { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:24px; }
.extra-chip {
  display:flex; align-items:center; gap:6px;
  background:var(--surface-light-2); border:1px solid var(--border-light);
  border-radius:2px; padding:8px 14px; cursor:pointer;
  font-size:13px; transition:all 0.2s; user-select:none; color:var(--text-on-light-2);
}
.extra-chip.on { border-color:var(--gold); background:var(--gold-soft); color:var(--gold-dim); }
.extra-chip input { display:none; }

/* Price panel */
.price-panel {
  display:flex; justify-content:space-between; align-items:flex-end;
  background:var(--surface-light-2); border:1px solid var(--border-light);
  border-left:3px solid var(--gold); border-radius:3px;
  padding:20px 24px; margin-bottom:20px; transition:border-left-color 0.3s;
}
.price-label {
  font-size:10px; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--text-on-light-2); margin-bottom:8px; font-weight:500;
}
.price-amount {
  font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-variant-numeric:tabular-nums; font-feature-settings:"tnum" 1;
  font-size:2rem; font-weight:500; color:var(--text-on-light); line-height:1;
}
.price-currency { font-size:14px; color:var(--text-on-light-2); }
.price-usd { font-size:13px; color:var(--text-on-light-2); margin-top:4px; }
.price-note { font-size:12px; color:var(--text-on-light-2); margin-top:6px; line-height:1.4; }
.price-dist .dlabel { font-size:10px; color:var(--text-on-light-2); letter-spacing:0.08em; text-transform:uppercase; margin-bottom:4px; }
.price-dist .dval { font-family:-apple-system, system-ui, sans-serif; font-variant-numeric:tabular-nums; font-size:28px; font-weight:500; color:var(--text-on-light); }

/* Book button */
.btn-book {
  width:100%; background:var(--text-on-light); color:var(--surface-light); border:none;
  padding:14px; font-size:13px; letter-spacing:0.1em; text-transform:uppercase;
  font-weight:500; cursor:pointer; font-family:'DM Sans', sans-serif;
  border-radius:2px; transition:all 0.2s; margin-bottom:12px;
}
.btn-book:hover:not(:disabled) { background:var(--gold); color:var(--text-on-light); transform:translateY(-1px); }
.btn-book.emerg-btn { background:linear-gradient(135deg,#E53E3E,#C53030); color:white; }
.book-note { font-size:11px; color:var(--muted-on-light); text-align:center; line-height:1.5; }

/* ════════════════════════════
   STATS
════════════════════════════ */
.stats-section {
  padding:80px 48px; display:grid;
  grid-template-columns:repeat(4,1fr); gap:1px; background:var(--border);
}
.stat-item { background:var(--bg); padding:40px 32px; }
.stat-number {
  font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-variant-numeric:tabular-nums; font-feature-settings:"tnum" 1;
  font-size:52px; font-weight:500;
  color:var(--gold); line-height:1; letter-spacing:-0.02em;
}
.stat-label { font-size:12px; color:var(--muted); letter-spacing:0.05em; margin-top:8px; }

/* ════════════════════════════
   PHOTO STRIP
════════════════════════════ */
.photo-strip { display:grid; grid-template-columns:repeat(3,1fr); height:320px; overflow:hidden; }
.photo-strip-item { position:relative; overflow:hidden; }
.photo-strip-item img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.6s ease; filter:brightness(0.7) saturate(0.85);
}
.photo-strip-item:hover img { transform:scale(1.05); filter:brightness(0.85) saturate(1); }
.photo-strip-caption {
  position:absolute; bottom:20px; left:20px;
  font-size:12px; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--white); text-shadow:0 2px 8px rgba(0,0,0,0.6);
}
.photo-strip-caption strong {
  display:block; font-family:'Cormorant Garamond', serif;
  font-size:20px; font-weight:300; letter-spacing:0.04em; text-transform:none;
}

/* ════════════════════════════
   FEATURES
════════════════════════════ */
.features-section { padding:100px 48px; background:var(--surface-2); border-top:1px solid var(--border); }
.section-label { font-size:11px; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
.section-title {
  font-family:'Cormorant Garamond', serif; font-size:clamp(36px,5vw,54px);
  font-weight:300; line-height:1.1; margin-bottom:64px;
}
.features-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--border); }
.feature-card { background:var(--surface); padding:40px 32px; transition:background 0.3s; }
.feature-card:hover { background:var(--gold-soft); }
.feature-icon {
  width:48px; height:48px; margin-bottom:24px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; font-size:22px;
}
.feature-title { font-size:16px; font-weight:500; margin-bottom:10px; }
.feature-desc { font-size:13px; color:var(--muted); line-height:1.7; }

/* ════════════════════════════
   AIRPORTS
════════════════════════════ */
.airports-section { padding:100px 48px; }
.airports-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:48px; }
.airport-card-photo {
  position:relative; height:180px; overflow:hidden;
  border:1px solid var(--border); cursor:pointer; transition:all 0.3s;
}
.airport-card-photo img {
  width:100%; height:100%; object-fit:cover;
  filter:brightness(0.45) saturate(0.7); transition:all 0.4s;
}
.airport-card-photo:hover img { filter:brightness(0.6) saturate(1); transform:scale(1.04); }
.airport-card-photo:hover { border-color:var(--gold-dim); }
.airport-card-photo-overlay {
  position:absolute; inset:0; padding:20px 22px;
  display:flex; flex-direction:column; justify-content:flex-end;
  background:linear-gradient(to top,rgba(0,0,0,0.7) 0%,transparent 60%);
}
.airport-tag {
  position:absolute; top:14px; right:14px;
  font-size:10px; letter-spacing:0.1em; color:var(--gold-dim); text-transform:uppercase;
  border:1px solid var(--gold); padding:4px 10px; border-radius:2px;
  background:var(--white);
}
.airport-code {
  font-family:-apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-variant-numeric:tabular-nums;
  font-size:42px; font-weight:600; color:var(--white); line-height:1;
}
.airport-name { font-size:14px; margin:8px 0 4px; font-weight:500; }
.airport-city { font-size:12px; color:var(--muted); }

/* ════════════════════════════
   TRUST SECTION
════════════════════════════ */
.trust-strip {
  display:flex; align-items:center; justify-content:center;
  flex-wrap:wrap; gap:0; padding:28px 48px;
  background:var(--bg); border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.trust-item { display:flex; align-items:center; gap:12px; padding:12px 28px; }
.trust-div { width:1px; height:40px; background:var(--border); }
.trust-icon { font-size:22px; }
.trust-text h4 { font-size:13px; font-weight:500; color:var(--text); margin-bottom:2px; }
.trust-text p { font-size:11px; color:var(--muted); }

/* Reviews */
.reviews-section { padding:80px 48px; background:var(--surface-2); border-top:1px solid var(--border); }
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:48px; }
.review-card {
  background:var(--surface); border:1px solid var(--border);
  padding:28px; border-radius:3px; transition:border-color 0.2s; color:var(--text-2);
}
.review-card:hover { border-color:var(--gold-dim); }
.review-stars { color:var(--gold); font-size:16px; margin-bottom:14px; }
.review-text { font-size:14px; color:var(--text-2); line-height:1.7; margin-bottom:16px; font-style:italic; }
.review-author { font-size:11px; color:var(--muted); letter-spacing:0.05em; text-transform:uppercase; }

/* CTA band */
.cta-band {
  padding:100px 48px; text-align:center;
  background:linear-gradient(135deg, var(--surface-2) 0%, var(--bg) 100%);
  border-top:1px solid var(--border);
}
.cta-band h2 {
  font-family:'Cormorant Garamond', serif; font-size:clamp(36px,5vw,56px);
  font-weight:300; margin-bottom:16px;
}
.cta-band p { font-size:15px; color:var(--muted); margin-bottom:40px; }
.cta-band em, .cta-band span { color:var(--gold); }
.cta-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* Footer */
footer {
  background:var(--surface-2); border-top:1px solid var(--border);
  padding:64px 48px 32px;
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.footer-logo {
  font-family:'Cormorant Garamond', serif; font-size:24px;
  font-weight:300; color:var(--gold); margin-bottom:16px;
}
.footer-logo span { color:var(--text); }
.footer-desc { font-size:13px; color:var(--muted); line-height:1.7; }
.footer-col h4 { font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:var(--text); margin-bottom:16px; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:10px; }
.footer-col a { font-size:13px; color:var(--muted); text-decoration:none; transition:color 0.2s; }
.footer-col a:hover { color:var(--gold); }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  border-top:1px solid var(--border); padding-top:24px; flex-wrap:wrap; gap:12px;
}
.footer-bottom span { font-size:12px; color:var(--muted); }
.footer-badges { display:flex; gap:8px; }
.badge-pci {
  background:var(--surface); border:1px solid var(--border);
  font-size:10px; letter-spacing:0.08em; color:var(--muted);
  padding:4px 10px; border-radius:2px;
}

/* ════════════════════════════
   MODAL + VOUCHER
════════════════════════════ */
#paxModal {
  display:none; position:fixed; inset:0; z-index:10000;
  background:rgba(26,24,20,0.5); backdrop-filter:blur(10px);
  align-items:center; justify-content:center; padding:1rem;
}
#paxModal.open { display:flex; }
.m-box {
  background:var(--surface); border:1px solid var(--border);
  border-radius:4px; width:100%; max-width:480px; max-height:90vh;
  overflow-y:auto; position:relative;
  box-shadow:var(--shadow-lg);
  animation:mFadeUp 0.22s ease;
}
.m-box::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  border-radius:4px 4px 0 0; pointer-events:none;
}
@keyframes mFadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
.m-hdr {
  padding:1.3rem 1.5rem 1rem; border-bottom:1px solid var(--border2);
  display:flex; align-items:flex-start; justify-content:space-between; gap:1rem;
}
.m-eyebrow {
  font-size:10px; font-weight:600; letter-spacing:2px; text-transform:uppercase;
  color:var(--gold); margin-bottom:4px;
}
.m-title { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:300; color:var(--text); }
.m-close {
  width:28px; height:28px; border-radius:3px; flex-shrink:0;
  background:transparent; border:1px solid var(--border2);
  color:var(--muted); cursor:pointer; font-size:14px;
  display:flex; align-items:center; justify-content:center; transition:all 0.15s;
}
.m-close:hover { border-color:var(--red); color:var(--red); }
.m-body { padding:1.3rem 1.5rem; }
.mf { margin-bottom:14px; }
.mf-lbl { display:block; font-size:10px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:var(--muted); margin-bottom:6px; }
.mf-wrap { position:relative; }
.mf-ico { position:absolute; left:12px; top:50%; transform:translateY(-50%); font-size:14px; pointer-events:none; }
.mf input {
  width:100%; padding:11px 14px 11px 36px;
  background:var(--surface-2); border:1px solid var(--border);
  border-radius:3px; color:var(--text); font-family:'DM Sans',sans-serif;
  font-size:14px; transition:border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance:none;
}
.mf input::placeholder { color:var(--muted); }
.mf input:focus { outline:none; border-color:var(--gold); background:var(--surface); box-shadow:0 0 0 3px rgba(138,110,47,0.10); }
.mf input.err-input { border-color:var(--red); box-shadow:0 0 0 3px rgba(229,62,62,0.10); }
.mf-hint { font-size:11px; color:var(--muted); margin-top:4px; }
.mf-err { font-size:11px; color:var(--red); margin-top:4px; display:none; }
.mf-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.m-ftr { padding:1rem 1.5rem 1.3rem; border-top:1px solid var(--border2); display:flex; gap:10px; }
.m-btn-ok {
  flex:1; padding:12px;
  background:var(--gold); border:none; border-radius:3px; cursor:pointer;
  font-family:'DM Sans',sans-serif; font-size:13px; font-weight:600;
  letter-spacing:1px; text-transform:uppercase; color:var(--white);
  box-shadow:0 3px 14px rgba(138,110,47,0.25); transition:all 0.2s;
}
.m-btn-ok:hover { background:var(--gold-light); transform:translateY(-1px); }
.m-btn-ok:disabled { opacity:0.55; cursor:not-allowed; transform:none; }
.m-btn-ok.emg-ok { background:linear-gradient(135deg,#E53E3E,#C53030); color:white; }
.m-btn-no {
  padding:12px 18px; background:transparent; border:1px solid var(--border);
  border-radius:3px; color:var(--muted); cursor:pointer; font-size:13px; transition:all 0.15s;
}
.m-btn-no:hover { border-color:var(--red); color:var(--red); }

/* Voucher panel */
.v-panel { background:var(--surface-2); border:1px solid var(--border); border-radius:3px; overflow:hidden; margin-bottom:14px; }
.v-top {
  background:var(--gold-soft); border-bottom:1px solid var(--border);
  padding:12px 16px; display:flex; align-items:center; justify-content:space-between;
}
.v-num { font-family:'Cormorant Garamond',serif; font-size:20px; font-weight:300; color:var(--gold); letter-spacing:1px; }
.v-tag {
  font-size:10px; font-weight:600; letter-spacing:1px; text-transform:uppercase;
  color:var(--green); background:rgba(34,209,138,0.10); border:1px solid rgba(34,209,138,0.30);
  border-radius:2px; padding:3px 8px;
}
.v-rows { padding:8px 16px; }
.v-row, .vr {
  display:flex; justify-content:space-between; align-items:baseline;
  padding:5px 0; border-bottom:1px solid var(--border2); font-size:13px;
}
.v-row:last-child, .vr:last-child { border-bottom:none; }
.vk { color:var(--muted); }
.vv { color:var(--text); font-weight:500; text-align:right; max-width:60%; word-break:break-word; }
.v-total {
  background:var(--surface); border-top:1px solid var(--border);
  padding:12px 16px; display:flex; justify-content:space-between; align-items:center;
}
.v-total .vk { font-size:10px; text-transform:uppercase; letter-spacing:1px; font-weight:600; }
.v-total .vv {
  font-family:-apple-system, system-ui, sans-serif;
  font-variant-numeric:tabular-nums;
  font-size:24px; font-weight:500; color:var(--gold);
}
.v-code {
  padding:8px 16px; text-align:center; font-size:11px; color:var(--muted);
  background:var(--surface-2); border-top:1px solid var(--border);
}
.v-code span { color:var(--gold); font-weight:500; }
.btn-wa-v {
  width:100%; padding:12px; background:#128C7E; border:none; border-radius:3px;
  color:white; cursor:pointer; text-decoration:none; font-family:'DM Sans',sans-serif;
  font-size:13px; font-weight:500; display:flex; align-items:center; justify-content:center;
  gap:8px; transition:all 0.2s;
}
.btn-wa-v:hover { background:#075E54; transform:translateY(-1px); }
.btn-pdf-v {
  width:100%; padding:12px; background:var(--surface-light); border:1px solid var(--gold); border-radius:3px;
  color:var(--text-on-light); cursor:pointer; text-decoration:none; font-family:'DM Sans',sans-serif;
  font-size:13px; font-weight:500; display:flex; align-items:center; justify-content:center;
  gap:8px; transition:all 0.2s; margin-top:8px;
}
.btn-pdf-v:hover { background:var(--surface-light-2); transform:translateY(-1px); }
.v-email { text-align:center; font-size:11px; color:var(--muted); margin-top:10px; }

/* WA float */
.wa-float {
  position:fixed; bottom:2rem; right:2rem; z-index:9998;
  width:54px; height:54px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,0.45); transition:all 0.2s; text-decoration:none;
}
.wa-float:hover { transform:scale(1.08); box-shadow:0 6px 28px rgba(37,211,102,0.6); }
.wa-float svg { width:28px; height:28px; fill:white; }
.wa-tip {
  position:absolute; right:62px; top:50%; transform:translateY(-50%);
  background:var(--surface); border:1px solid var(--border);
  border-radius:3px; padding:6px 12px; font-size:12px; color:var(--text);
  white-space:nowrap; opacity:0; transition:opacity 0.2s; pointer-events:none;
}
.wa-float:hover .wa-tip { opacity:1; }

/* Toast */
.toast {
  position:fixed; bottom:24px; left:50%; transform:translateX(-50%);
  background:var(--text); border:1px solid var(--text); border-radius:3px;
  padding:12px 24px; font-size:14px; color:var(--bg);
  z-index:10001; opacity:0; pointer-events:none;
  transition:opacity 0.35s, transform 0.35s;
  transform:translateX(-50%) translateY(8px);
  white-space:nowrap; max-width:90vw; box-shadow:var(--shadow-lg);
}
.toast.show { opacity:1; transform:translateX(-50%) translateY(0); pointer-events:auto; }

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

/* ════════════════════════════
   RESPONSIVE — TABLET 1024px
════════════════════════════ */
@media (max-width:1024px) {
  nav { padding:16px 28px; }
  .lang-switcher { display:none; }
  .stats-section { padding:48px 28px; }
  .features-section { padding:64px 28px; }
  .features-grid { grid-template-columns:1fr 1fr; }
  .photo-strip { height:220px; }
  .airports-section { padding:64px 28px; }
  .airports-grid { grid-template-columns:1fr 1fr; }
  .reviews-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px; }
  .engine-section { padding:48px 20px; }
  .row2 { grid-template-columns:1fr 1fr; }
  .trust-strip { padding:20px 24px; }
  .trust-item { padding:10px 18px; }
}

/* ════════════════════════════
   RESPONSIVE — MOBILE 768px
════════════════════════════ */
@media (max-width:768px) {
  nav { padding:14px 20px; }
  .nav-links { display:none; }
  .nav-cta { display:none; }
  .hamburger { display:flex; }

  .hero { align-items:flex-end; padding-bottom:80px; }
  .hero-content { padding:0 20px; }
  .hero-tag { font-size:10px; padding:5px 14px; margin-bottom:20px; }
  .hero-title { font-size:clamp(38px,10vw,56px); margin-bottom:16px; }
  .hero-subtitle { font-size:14px; margin-bottom:28px; }

  .stats-section { grid-template-columns:1fr 1fr; padding:0; }
  .stat-item { padding:24px 20px; }
  .stat-number { font-size:38px; }

  .photo-strip { grid-template-columns:1fr; height:auto; }
  .photo-strip-item { height:200px; }

  .features-section { padding:48px 20px; }
  .features-grid { grid-template-columns:1fr; gap:1px; }
  .feature-card { padding:28px 20px; }
  .section-title { font-size:clamp(28px,7vw,38px); margin-bottom:36px; }

  .airports-section { padding:48px 20px; }
  .airports-grid { grid-template-columns:1fr; gap:10px; }
  .airport-card-photo { height:140px; }

  .engine-section { padding:40px 16px; }
  .booking-engine { padding:20px 16px; }
  .row2 { grid-template-columns:1fr; }
  .vehicle-grid { grid-template-columns:repeat(3,1fr); gap:6px; }
  .extras { flex-direction:column; }
  .price-panel { flex-direction:column; gap:16px; }
  .pax-row { gap:20px; }

  .trust-strip { flex-direction:column; align-items:flex-start; padding:20px; gap:0; }
  .trust-div { width:100%; height:1px; margin:4px 0; }
  .trust-item { padding:10px 0; }

  .reviews-section { padding:48px 20px; }
  .reviews-grid { grid-template-columns:1fr; }

  .cta-band { padding:64px 20px; }
  .footer-grid { grid-template-columns:1fr; gap:28px; padding:0; }
  footer { padding:40px 20px 24px; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }

  .mf-row { grid-template-columns:1fr; }
}

@media (max-width:390px) {
  .hero-title { font-size:36px; }
  .vehicle-grid { grid-template-columns:1fr 1fr 1fr; }
  .v-opt { padding:10px 6px; }
  .vi { font-size:20px; }
  .vn { font-size:11px; }
  .vc { font-size:10px; }
}
