/* ==========================================================================
   BROMPTON CABS / BROMPTON AIRPORT TRANSFER — Brand Tokens & Styles
   Palette taken from the official poster banner:
   Deep Royal Navy Blue, Vibrant Taxi Yellow / Gold, Electric Cyan & Pure White.
   ========================================================================== */
:root {
  --ink: #050d1c;
  --ink-2: #08162e;
  --panel: #0c1f3f;
  --panel-2: #102952;
  --panel-card: #0e2448;
  --line: rgba(0, 180, 216, 0.16);
  --line-strong: rgba(245, 179, 0, 0.32);
  --line-gold: rgba(245, 179, 0, 0.5);

  --yellow: #F5B300;
  --yellow-bright: #FFCC00;
  --yellow-soft: #FFD84D;
  --yellow-glow: rgba(245, 179, 0, 0.38);
  
  --cyan: #00B4D8;
  --cyan-glow: rgba(0, 180, 216, 0.35);
  
  --platinum: #CFDAEC;
  --white: #FFFFFF;
  --muted: #8E9FB8;

  --display: 'Marcellus', 'Georgia', serif;
  --body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --wrap: 1200px;
  --pad: clamp(18px, 5vw, 40px);
  --sect: clamp(64px, 9vw, 120px);
  --r: 16px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 16px 36px rgba(245, 179, 0, 0.22);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; overflow-x: clip; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--platinum);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--yellow-bright); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; color: var(--white); line-height: 1.14; margin: 0; letter-spacing: .01em; }
h1 { font-size: clamp(2.3rem, 6.2vw, 4.5rem); }
h2 { font-size: clamp(1.85rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1rem; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--sect); position: relative; }

/* ---------- Eyebrow & Glowing Accents ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--body); font-size: .74rem; font-weight: 800;
  letter-spacing: .3em; text-transform: uppercase; color: var(--yellow-bright);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: ""; width: 46px; height: 3px; border-radius: 2px; flex: none;
  background: linear-gradient(90deg, var(--yellow-bright), rgba(245, 179, 0, 0));
  box-shadow: 0 0 14px var(--yellow-glow);
}
.eyebrow.center { justify-content: center; }
.head { max-width: 760px; }
.head.center { margin-inline: auto; text-align: center; }
.head.center .eyebrow { justify-content: center; }
.head p { color: var(--muted); margin-top: 16px; font-size: 1.02rem; }
.rule { height: 1px; background: var(--line); position: relative; overflow: hidden; }
.rule::after {
  content: ""; position: absolute; inset-block: 0; left: -30%; width: 30%;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  animation: sweep 6s linear infinite;
}
@keyframes sweep { to { left: 110%; } }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--yellow); --fg: #050d1c;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px; border: 1px solid transparent;
  background: var(--bg); color: var(--fg);
  font-weight: 800; font-size: .92rem; letter-spacing: .02em; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  text-align: center;
}
.btn svg { width: 18px; height: 18px; flex: none; fill: currentColor; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px var(--yellow-glow); background: var(--yellow-bright); }
.btn.ghost { background: transparent; border-color: rgba(245, 179, 0, 0.4); color: var(--white); }
.btn.ghost:hover { border-color: var(--yellow-bright); background: rgba(245, 179, 0, 0.12); color: var(--yellow-bright); box-shadow: none; }
.btn.wa { background: #25D366; color: #ffffff; }
.btn.wa:hover { box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35); background: #22bf5b; }
.btn.cyan { background: var(--cyan); color: #050d1c; }
.btn.cyan:hover { box-shadow: 0 14px 30px var(--cyan-glow); background: #38c8e8; }
.btn.sm { padding: 10px 18px; font-size: .8rem; gap: 8px; }
.btn.sm svg { width: 15px; height: 15px; }

/* ---------- Top Bar ---------- */
.topbar {
  background: #040a16; border-bottom: 1px solid var(--line);
  font-size: .8rem; color: var(--muted);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 44px; flex-wrap: wrap; }
.topbar a:hover { color: var(--yellow-bright); }
.topbar .tb-left { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--platinum); }
.topbar svg { width: 15px; height: 15px; fill: var(--yellow); }
.plate {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-strong); border-radius: 6px;
  padding: 3px 12px; font-weight: 800; font-size: .7rem; letter-spacing: .2em;
  color: var(--yellow-bright); text-transform: uppercase; background: rgba(245, 179, 0, 0.1);
}
.plate .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 10px var(--yellow); }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 900;
  background: rgba(5, 13, 28, 0.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.scrolled { background: rgba(5, 13, 28, 0.98); box-shadow: 0 12px 36px rgba(0, 0, 0, 0.65); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 78px; }

.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #102952, #050d1c);
  border: 1px solid var(--yellow);
  font-family: var(--body); font-weight: 900; font-size: 1.15rem; color: var(--yellow-bright);
  position: relative; overflow: hidden;
  box-shadow: 0 0 14px rgba(245, 179, 0, 0.25);
}
.brand-mark::after {
  content: ""; position: absolute; right: 0; top: 50%; width: 14px; height: 4px; border-radius: 2px;
  background: var(--cyan); box-shadow: 0 0 10px var(--cyan);
}
.brand-txt strong { display: block; font-family: var(--body); font-weight: 800; color: var(--white); font-size: 1.12rem; letter-spacing: .02em; line-height: 1.15; }
.brand-txt span { display: block; font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--yellow); font-weight: 700; }

.menu { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.menu a { font-size: .88rem; font-weight: 600; color: var(--platinum); position: relative; padding: 6px 0; transition: color .2s; }
.menu a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--yellow); transition: width .3s ease; box-shadow: 0 0 10px var(--yellow); }
.menu a:hover { color: var(--white); }
.menu a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.burger {
  display: none; width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: rgba(245, 179, 0, 0.08); border: 1px solid var(--line-strong);
  cursor: pointer; padding: 0; position: relative;
}
.burger span {
  position: absolute; left: 50%; width: 20px; height: 2px; background: var(--yellow-bright); border-radius: 2px;
  transform: translateX(-50%); transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger.on span:nth-child(1) { top: 22px; transform: translateX(-50%) rotate(45deg); }
.burger.on span:nth-child(2) { opacity: 0; }
.burger.on span:nth-child(3) { top: 22px; transform: translateX(-50%) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw); z-index: 950;
  background: var(--ink-2); border-left: 1px solid var(--line-strong);
  transform: translateX(105%); transition: transform .38s cubic-bezier(.4, 0, .2, 1);
  padding: 26px 24px calc(26px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: 6px; overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer .d-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.drawer a.d-link {
  padding: 15px 4px; border-bottom: 1px solid var(--line);
  font-size: .98rem; font-weight: 600; color: var(--platinum);
  display: flex; justify-content: space-between; align-items: center;
}
.drawer a.d-link:hover { color: var(--yellow-bright); }
.drawer a.d-link span { color: var(--yellow); font-size: .7rem; letter-spacing: .2em; font-weight: 700; }
.drawer .d-btns { display: grid; gap: 10px; margin-top: 24px; }
.scrim { position: fixed; inset: 0; background: rgba(3, 6, 12, .75); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: .3s; z-index: 940; }
.scrim.on { opacity: 1; visibility: visible; }
.x-btn { width: 40px; height: 40px; border-radius: 10px; background: rgba(245, 179, 0, 0.08); border: 1px solid var(--line); color: var(--white); cursor: pointer; font-size: 1.1rem; line-height: 1; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: clamp(620px, 94svh, 880px); display: flex; align-items: center; overflow: hidden; background: radial-gradient(circle at 75% 30%, rgba(0, 180, 216, 0.12), transparent 50%), radial-gradient(circle at 20% 80%, rgba(245, 179, 0, 0.08), transparent 40%); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media img { position: absolute; inset: 0; animation: kb 26s ease-in-out infinite alternate; }
.hero-media video { position: absolute; inset: 0; }
@keyframes kb { from { transform: scale(1.03); } to { transform: scale(1.15); } }
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 13, 28, 0.96) 0%, rgba(5, 13, 28, 0.82) 50%, rgba(5, 13, 28, 0.5) 100%),
    linear-gradient(180deg, rgba(5, 13, 28, 0.9) 0%, transparent 35%, rgba(5, 13, 28, 0.98) 100%);
}
.hero-veil::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}
.hero .wrap { position: relative; z-index: 2; padding-block: clamp(70px, 12vw, 110px); }
.hero-copy { max-width: 730px; }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--yellow-bright); text-shadow: 0 0 25px var(--yellow-glow); position: relative; }
.hero-sub { font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--platinum); max-width: 560px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

/* Features Banner Pills (24/7, Professional Drivers, Flight Monitoring, Fixed Prices) */
.feature-badges {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px; margin-top: 36px;
}
.f-badge {
  background: rgba(12, 31, 63, 0.85); border: 1px solid var(--line-strong);
  border-radius: 12px; padding: 14px 16px; display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(8px); transition: transform .25s ease, border-color .25s ease;
}
.f-badge:hover { transform: translateY(-3px); border-color: var(--yellow-bright); }
.f-badge .f-ico { width: 36px; height: 36px; border-radius: 10px; background: rgba(245, 179, 0, 0.15); display: grid; place-items: center; flex: none; }
.f-badge .f-ico svg { width: 18px; height: 18px; fill: var(--yellow-bright); }
.f-badge strong { display: block; font-size: .88rem; color: var(--white); font-weight: 700; line-height: 1.2; }
.f-badge span { font-size: .72rem; color: var(--muted); }

.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; max-width: 660px; }
.fact { background: rgba(10, 24, 48, 0.85); padding: 18px 20px; }
.fact strong { display: block; font-family: var(--body); font-weight: 800; color: var(--white); font-size: 1.02rem; margin-bottom: 4px; }
.fact span { font-size: .78rem; color: var(--muted); line-height: 1.5; display: block; }
.scroll-hint { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3; color: var(--muted); font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint i { width: 1px; height: 34px; background: linear-gradient(180deg, var(--yellow), transparent); display: block; animation: drop 2.2s ease-in-out infinite; }
@keyframes drop { 0%, 100% { opacity: .3; transform: scaleY(.5); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Marquee ---------- */
.marquee {
  background: linear-gradient(90deg, #050d1c, #0a1f42, #050d1c);
  border-block: 1px solid var(--line);
  overflow: hidden; width: 100%; padding: 16px 0; position: relative;
}
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }
.mq-track { display: flex; width: max-content; animation: slide 34s linear infinite; }
.marquee:hover .mq-track { animation-play-state: paused; }
.mq-track span {
  display: inline-flex; align-items: center; gap: 22px; padding-right: 22px;
  font-family: var(--body); font-weight: 800; font-size: clamp(1rem, 2vw, 1.25rem); color: var(--white);
  letter-spacing: .06em; white-space: nowrap; text-transform: uppercase;
}
.mq-track span i { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 12px var(--yellow); flex: none; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Special Poster Pricing Section ---------- */
.pricing-section {
  background: radial-gradient(circle at 50% 0%, rgba(0, 180, 216, 0.12), transparent 60%), #061226;
  border-block: 1px solid var(--line);
  padding-block: var(--sect);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px; margin-top: 48px;
}
.price-card {
  background: linear-gradient(180deg, #0d234a, #07152d);
  border: 1px solid var(--line);
  border-radius: 18px; padding: 26px 20px; text-align: center;
  position: relative; overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  display: flex; flex-direction: column; justify-content: space-between;
}
.price-card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}
.price-card:hover {
  transform: translateY(-8px); border-color: var(--yellow);
  box-shadow: 0 20px 45px rgba(245, 179, 0, 0.22);
}
.price-card.featured {
  border-color: var(--yellow);
  box-shadow: 0 16px 36px rgba(245, 179, 0, 0.18);
  background: linear-gradient(180deg, #112d5e, #091a38);
}
.price-tag-badge {
  display: inline-block; background: rgba(245, 179, 0, 0.15); border: 1px solid var(--line-strong);
  color: var(--yellow-bright); font-size: .68rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 14px;
}
.price-card h3 { font-size: 1.35rem; color: var(--white); margin-bottom: 8px; font-weight: 700; font-family: var(--body); }
.price-val {
  font-family: var(--body); font-weight: 900; font-size: 2.5rem; color: var(--yellow-bright);
  line-height: 1.1; margin: 12px 0 16px; text-shadow: 0 0 20px rgba(245, 179, 0, 0.35);
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.price-val span.cur { font-size: 1.6rem; }
.price-card p { font-size: .84rem; color: var(--muted); margin-bottom: 20px; line-height: 1.45; }
.price-card .btn { width: 100%; }

/* Poster Highlight Banner Unit */
.banner-feature {
  background: linear-gradient(135deg, #0a1f42 0%, #050d1c 100%);
  border: 1px solid var(--line-gold); border-radius: 20px;
  padding: clamp(24px, 4vw, 40px); margin-top: 48px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}
.banner-feature-img { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.banner-feature-img img { width: 100%; object-fit: cover; }

/* ---------- Services Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; margin-top: 52px; }
.card {
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.card:hover { transform: translateY(-7px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--panel-2); }
.card-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) contrast(1.05); transition: transform .7s ease, filter .5s ease; }
.card:hover .card-img img { transform: scale(1.07); filter: saturate(1) contrast(1.05); }
.card-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 13, 28, 0.15), rgba(5, 13, 28, 0.88)); }
.card-tag {
  position: absolute; left: 14px; top: 14px; z-index: 2;
  background: rgba(5, 13, 28, 0.85); border: 1px solid var(--yellow);
  border-radius: 100px; padding: 5px 14px; font-size: .68rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; color: var(--yellow-bright);
}
.card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 10px; font-weight: 700; font-family: var(--body); }
.card-body p { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }
.card-acts { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; }

/* ---------- Journey & Service Experience Timeline (Replacing Fleet) ---------- */
.timeline-section {
  position: relative;
  background: var(--ink-2);
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.timeline-section::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.09) 0%, transparent 70%);
  pointer-events: none;
}
.timeline-container {
  position: relative;
  max-width: 1100px;
  margin: 54px auto 0;
}
.timeline-track-line {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--yellow), var(--cyan), var(--yellow));
  box-shadow: 0 0 15px var(--yellow-glow);
}
.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
  margin-bottom: clamp(48px, 7vw, 76px);
}
.timeline-step:last-child {
  margin-bottom: 0;
}
.timeline-step:nth-child(even) .timeline-card {
  order: 2;
}
.timeline-step:nth-child(even) .timeline-media {
  order: 1;
}
.timeline-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--panel-2);
  border: 2px solid var(--yellow-bright);
  box-shadow: 0 0 22px var(--yellow-glow), inset 0 0 10px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-weight: 800;
  font-size: .88rem;
  color: var(--yellow-bright);
  z-index: 3;
}
.timeline-card {
  background: linear-gradient(135deg, var(--panel), var(--panel-card));
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  padding: clamp(24px, 3.5vw, 36px);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.timeline-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 25px rgba(245, 179, 0, 0.15);
}
.timeline-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245, 179, 0, 0.12);
  border: 1px solid rgba(245, 179, 0, 0.35);
  color: var(--yellow-bright);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.timeline-card h3 {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  color: var(--white);
  margin-bottom: 12px;
}
.timeline-card p {
  color: var(--platinum);
  font-size: .94rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.timeline-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.timeline-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--muted);
}
.timeline-card ul li svg {
  width: 15px;
  height: 15px;
  fill: var(--yellow);
  flex: none;
}
.timeline-media {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  aspect-ratio: 16/11;
  background: var(--panel);
}
.timeline-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.timeline-media:hover img {
  transform: scale(1.04);
}
.timeline-media-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(5, 13, 28, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--yellow);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.timeline-media-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--yellow);
}

/* Feature Showcase Grid (interior, luggage, wheelchair access) */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.exp-card {
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, border-color .3s ease;
}
.exp-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.exp-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ink);
}
.exp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.exp-card:hover .exp-img img {
  transform: scale(1.05);
}
.exp-body {
  padding: 24px;
}
.exp-body h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
  color: var(--white);
}
.exp-body p {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 54px; position: relative; }
.step {
  background: linear-gradient(180deg, var(--panel), transparent);
  border: 1px solid var(--line); border-radius: var(--r); padding: 30px 24px; position: relative; overflow: hidden;
  transition: border-color .3s ease, transform .3s ease;
}
.step:hover { border-color: var(--yellow); transform: translateY(-5px); }
.step .num {
  font-family: var(--body); font-weight: 900; font-size: 2.4rem; color: transparent;
  -webkit-text-stroke: 1px rgba(245, 179, 0, 0.5); display: block; line-height: 1; margin-bottom: 16px;
}
.step:hover .num { -webkit-text-stroke: 1px var(--yellow-bright); color: rgba(245, 179, 0, 0.15); }
.step h3 { margin-bottom: 9px; font-size: 1.12rem; font-family: var(--body); font-weight: 700; }
.step p { color: var(--muted); font-size: .9rem; margin: 0; }
.step::after { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--yellow); transition: width .45s ease; box-shadow: 0 0 12px var(--yellow); }
.step:hover::after { width: 100%; }

/* ---------- Why Us ---------- */
.why { position: relative; background: var(--ink-2); border-block: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin-top: 52px; }
.why-item { background: var(--ink-2); padding: 32px 26px; transition: background .3s ease; }
.why-item:hover { background: var(--panel); }
.why-ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px;
  background: rgba(245, 179, 0, 0.12); border: 1px solid rgba(245, 179, 0, 0.3);
}
.why-ico svg { width: 20px; height: 20px; fill: var(--yellow); }
.why-item h3 { font-size: 1.08rem; margin-bottom: 8px; font-family: var(--body); font-weight: 700; }
.why-item p { color: var(--muted); font-size: .9rem; margin: 0; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; margin-top: 44px; text-align: center; }
.stat { padding: 24px 14px; border: 1px solid var(--line); border-radius: var(--r); background: rgba(12, 31, 63, 0.5); }
.stat strong { display: block; font-family: var(--body); font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--yellow-bright); line-height: 1; }
.stat span { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 8px; display: block; }

/* ---------- Coverage ---------- */
.airports { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.airports a {
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 18px; font-size: .9rem; font-weight: 600;
  background: rgba(0, 180, 216, 0.04); transition: .3s; display: inline-flex; align-items: center; gap: 10px;
}
.airports a:hover { border-color: var(--yellow); color: var(--yellow-bright); background: rgba(245, 179, 0, 0.1); }
.airports a svg { width: 15px; height: 15px; fill: var(--yellow); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 52px; }
.quote { background: linear-gradient(180deg, var(--panel), var(--ink-2)); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 26px; position: relative; }
.quote .mark { font-family: var(--display); font-size: 3.4rem; color: var(--yellow); line-height: .6; opacity: .7; }
.quote p { color: var(--platinum); font-size: .95rem; margin: 14px 0 20px; }
.quote .who { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; }
.quote .who i { width: 36px; height: 36px; border-radius: 50%; background: var(--panel-2); border: 1px solid var(--line-strong); display: grid; place-items: center; font-style: normal; font-family: var(--body); font-weight: 800; color: var(--yellow-bright); font-size: .9rem; flex: none; }
.quote .who strong { display: block; color: var(--white); font-size: .9rem; font-weight: 700; }
.quote .who span { font-size: .76rem; color: var(--muted); }
.stars { color: var(--yellow-bright); letter-spacing: 3px; font-size: .9rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 4vw, 50px); margin-top: 52px; align-items: start; }
.info-list { display: grid; gap: 14px; }
.info {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px;
  border: 1px solid var(--line); border-radius: 14px; background: var(--panel); transition: .3s;
}
.info:hover { border-color: var(--yellow); transform: translateX(4px); }
.info .i-ico { width: 42px; height: 42px; border-radius: 11px; background: rgba(245, 179, 0, 0.12); border: 1px solid rgba(245, 179, 0, 0.3); display: grid; place-items: center; flex: none; }
.info .i-ico svg { width: 18px; height: 18px; fill: var(--yellow); }
.info strong { display: block; color: var(--white); font-size: .95rem; font-weight: 700; margin-bottom: 2px; }
.info span { font-size: .86rem; color: var(--muted); word-break: break-word; }
.form-card { background: linear-gradient(180deg, var(--panel), var(--ink-2)); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(24px, 4vw, 38px); }
.form-card h3 { margin-bottom: 6px; font-family: var(--body); font-weight: 700; }
.form-card .sm-note { color: var(--muted); font-size: .86rem; margin-bottom: 24px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(5, 13, 28, 0.7); border: 1px solid var(--line);
  border-radius: 11px; padding: 13px 15px; font-size: .94rem; color: var(--white);
  transition: border-color .25s ease, background .25s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #5C6884; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--yellow); background: rgba(5, 13, 28, 0.95); }
.field textarea { resize: vertical; min-height: 104px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F5B300'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; padding-right: 40px; }
.form-card .btn { width: 100%; margin-top: 6px; }
.form-note { font-size: .78rem; color: var(--muted); text-align: center; margin: 14px 0 0; }
.err { color: #FF6B6B; font-size: .78rem; margin-top: 7px; display: none; }
.field.bad input, .field.bad select, .field.bad textarea { border-color: #FF6B6B; }
.field.bad .err { display: block; }

/* ---------- CTA Band ---------- */
.band { position: relative; overflow: hidden; border-block: 1px solid var(--line); background: var(--ink-2); }
.band .wrap { position: relative; z-index: 2; text-align: center; padding-block: clamp(54px, 8vw, 88px); }
.band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(245, 179, 0, 0.2), transparent 65%);
}
.band h2 { margin-bottom: 14px; }
.band p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; }
.band .hero-btns { justify-content: center; margin-bottom: 0; }

/* ---------- Footer ---------- */
.footer { background: #030812; border-top: 1px solid var(--line); padding-top: clamp(50px, 7vw, 80px); }
.f-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.f-grid h4 { font-size: .78rem; letter-spacing: .24em; text-transform: uppercase; color: var(--yellow-bright); font-family: var(--body); font-weight: 800; margin-bottom: 20px; }
.f-grid p, .f-grid li { color: var(--muted); font-size: .88rem; }
.f-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.f-grid ul a:hover { color: var(--yellow-bright); }
.f-brand .brand { margin-bottom: 18px; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line); display: grid; place-items: center; transition: .3s; }
.socials a svg { width: 17px; height: 17px; fill: var(--platinum); transition: .3s; }
.socials a:hover { border-color: var(--yellow); background: rgba(245, 179, 0, 0.1); }
.socials a:hover svg { fill: var(--yellow); }
.f-bottom { margin-top: clamp(38px, 5vw, 60px); border-top: 1px solid var(--line); padding-block: 24px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .8rem; color: var(--muted); }
.f-bottom a { color: var(--yellow-bright); font-weight: 700; text-decoration: none; transition: color .2s ease; }
.f-bottom a:hover { color: var(--white); text-decoration: underline; }

/* ---------- Floating Buttons ---------- */
.floats { position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 800; display: flex; direction: column; gap: 12px; }
.float {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55); position: relative; transition: transform .25s ease;
  border: 1px solid rgba(255, 255, 255, .2);
}
.float:hover { transform: scale(1.08); }
.float svg { width: 25px; height: 25px; fill: #fff; }
.float.wa { background: #25D366; }
.float.tel { background: var(--yellow); }
.float.tel svg { fill: #050d1c; }
.float.wa::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.65); opacity: 0; } }
.totop {
  position: fixed; left: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 800;
  width: 46px; height: 46px; border-radius: 12px; background: var(--panel); border: 1px solid var(--line-strong);
  display: grid; place-items: center; cursor: pointer; opacity: 0; visibility: hidden; transition: .3s;
}
.totop.on { opacity: 1; visibility: visible; }
.totop svg { width: 18px; height: 18px; fill: var(--white); }

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.rv.in { opacity: 1; transform: none; }

/* ---------- Multi-Page Additions ---------- */
.menu a.active { color: var(--yellow-bright); }
.menu a.active::after { width: 100%; background: var(--yellow-bright); }
.drawer a.d-link.active { color: var(--yellow-bright); }
.drawer a.d-link.active span { color: var(--yellow-bright); }

.page-hero { position: relative; overflow: hidden; isolation: isolate; }
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; animation: kb 30s ease-in-out infinite alternate; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 13, 28, 0.95) 10%, rgba(5, 13, 28, 0.7) 100%),
    linear-gradient(180deg, rgba(5, 13, 28, 0.9), transparent 45%, rgba(5, 13, 28, 0.98));
}
.page-hero .wrap { position: relative; z-index: 2; padding-block: clamp(64px, 11vw, 120px); }
.page-hero h1 { font-size: clamp(2rem, 5.4vw, 3.6rem); margin-bottom: 16px; }
.page-hero p { color: var(--platinum); max-width: 600px; font-size: 1.02rem; margin: 0; }
.crumbs { display: flex; align-items: center; gap: 10px; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--yellow-bright); }
.crumbs i { width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); display: block; flex: none; }

.story p { color: var(--muted); font-size: 1rem; }
.story .lead { color: var(--platinum); font-size: 1.1rem; font-family: var(--display); line-height: 1.6; }
.sig {
  margin-top: 28px; padding-left: 20px; border-left: 3px solid var(--yellow);
  font-family: var(--display); color: var(--white); font-size: 1.05rem; line-height: 1.5;
}
.sig span { display: block; font-family: var(--body); font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--yellow); margin-top: 8px; font-weight: 700; }
.tick { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 13px; }
.tick li { display: flex; gap: 12px; align-items: flex-start; font-size: .94rem; color: var(--platinum); }
.tick li svg { width: 19px; height: 19px; fill: var(--yellow); flex: none; margin-top: 3px; }

.srow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; padding-block: clamp(40px, 6vw, 64px); border-bottom: 1px solid var(--line); }
.srow:last-child { border-bottom: 0; }
.srow .s-media { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.srow .s-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.srow:hover .s-media img { transform: scale(1.05); }
.srow .s-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 13, 28, 0.1), rgba(5, 13, 28, 0.7)); }
.srow .s-no {
  position: absolute; z-index: 2; right: 16px; top: 14px; font-family: var(--body); font-weight: 900;
  font-size: 2.4rem; color: transparent; -webkit-text-stroke: 1px rgba(245, 179, 0, 0.6); line-height: 1;
}
.srow:nth-child(even) .s-media { order: 2; }
.srow h3 { font-size: clamp(1.35rem, 2.6vw, 1.85rem); margin-bottom: 12px; font-family: var(--body); font-weight: 700; }
.srow p { color: var(--muted); font-size: .96rem; }
.srow .card-acts { margin-top: 24px; }

.faq { max-width: 820px; margin: 52px auto 0; display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--line); border-radius: 14px; background: var(--panel);
  overflow: hidden; transition: border-color .3s ease;
}
.faq details[open] { border-color: var(--yellow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 600; color: var(--white);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: .98rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--yellow); font-size: 1.5rem; line-height: 1; flex: none; transition: transform .3s ease; font-weight: 700; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 22px 22px; color: var(--muted); font-size: .93rem; margin: 0; }

.map { margin-top: 52px; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; position: relative; background: var(--panel); }
.map iframe { width: 100%; height: min(440px, 60vw); border: 0; display: block; filter: grayscale(1) invert(.92) contrast(.85) hue-rotate(180deg); }

/* ---------- Quick Booking Hero Split ---------- */
#booking, .anchor { scroll-margin-top: 128px; }
.anchor { display: block; height: 0; overflow: hidden; }

.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(28px, 4vw, 58px); align-items: center;
}
.hero-grid .hero-copy { max-width: 620px; }
.hero-grid h1 { font-size: clamp(2.1rem, 4.5vw, 3.6rem); }
.hero-grid .hero-sub { margin-bottom: 28px; }
.hero-grid .hero-btns { margin-bottom: 0; }
.facts.wide { max-width: none; margin-top: clamp(34px, 4.5vw, 52px); }

.qb {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(12, 31, 63, 0.95), rgba(7, 18, 38, 0.98));
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  padding: clamp(22px, 2.7vw, 32px);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
}
.qb::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--yellow), rgba(0, 180, 216, 0.8) 72%);
}
.qb-head { margin-bottom: 20px; }
.qb-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--yellow-bright); font-weight: 800; margin-bottom: 10px;
}
.qb-eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--yellow); }
.qb-head h2 { font-size: clamp(1.45rem, 2.3vw, 1.95rem); margin-bottom: 8px; font-family: var(--body); font-weight: 700; }
.qb-head p { color: var(--muted); font-size: .86rem; margin: 0; line-height: 1.6; }

.qb .f-row { gap: 13px; }
.qb .field { margin-bottom: 13px; }
.qb .field label { font-size: .68rem; letter-spacing: .14em; margin-bottom: 6px; }
.qb .field input, .qb .field select { padding: 11px 14px; font-size: .92rem; border-radius: 10px; }
.qb .field select { padding-right: 38px; }
.qb .btn { width: 100%; margin-top: 4px; }
.qb .form-note { margin-top: 12px; font-size: .76rem; }
.field .opt { text-transform: none; letter-spacing: 0; font-weight: 400; }
.form-note a { color: var(--yellow-bright); font-weight: 700; }

.btn.book { background: transparent; border-color: var(--yellow); color: var(--yellow-bright); }
.btn.book:hover { border-color: var(--yellow-bright); background: rgba(245, 179, 0, 0.15); box-shadow: 0 12px 26px var(--yellow-glow); }
.nav-cta .btn.book { padding: 12px 20px; font-size: .82rem; }
.drawer .btn.book { background: var(--yellow); border-color: transparent; color: #050d1c; }

.book-strip { background: var(--ink-2); border-block: 1px solid var(--line); }
.bs-grid {
  display: grid; grid-template-columns: .92fr 1.08fr;
  gap: clamp(30px, 4.5vw, 60px); align-items: center;
}
.bs-copy .tick { margin-top: 22px; }
.bs-btns { margin: 28px 0 0; }

/* ---------- Predictive Autocomplete ---------- */
.field.has-ac { position: relative; }
.field.has-ac input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F5B300'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7m0 9.5A2.5 2.5 0 1 1 14.5 9 2.5 2.5 0 0 1 12 11.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 17px; padding-right: 38px;
}
.ac-panel {
  position: fixed; z-index: 9999;
  background: #08162e;
  border: 1px solid var(--yellow);
  border-radius: 13px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .75);
  overflow-y: auto; overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 6px;
  max-width: calc(100vw - 24px);
  animation: acIn .16s ease both;
}
@keyframes acIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }
.ac-panel[hidden] { display: none; }
.ac-row {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 10px 11px; border-radius: 9px; cursor: pointer;
  transition: background .15s ease;
}
.ac-row:hover, .ac-row.on { background: rgba(245, 179, 0, 0.15); }
.ac-row.on { box-shadow: inset 0 0 0 1px var(--yellow); }
.ac-ic { width: 17px; height: 17px; flex: 0 0 17px; margin-top: 3px; fill: var(--yellow); opacity: .9; }
.ac-txt { display: block; min-width: 0; }
.ac-main {
  display: block; color: var(--white); font-size: .9rem; line-height: 1.35;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ac-main b { color: var(--yellow-bright); font-weight: 800; }
.ac-sub {
  display: block; color: var(--muted); font-size: .76rem; line-height: 1.35; margin-top: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ac-foot {
  border-top: 1px solid var(--line); margin-top: 6px; padding: 9px 11px 5px;
  color: #5C6884; font-size: .7rem; letter-spacing: .03em; text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-grid .hero-copy { max-width: 730px; }
  .bs-grid { grid-template-columns: 1fr; }
  .banner-feature { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .menu, .nav-cta .btn.wa { display: none; }
  .burger { display: block; }
  .nav-cta .btn.book { display: inline-flex; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr 1fr; }
  .srow { grid-template-columns: 1fr; gap: 24px; }
  .srow:nth-child(even) .s-media { order: 0; }
  #booking, .anchor { scroll-margin-top: 104px; }
  
  /* Timeline responsive */
  .timeline-track-line { left: 28px; }
  .timeline-marker { left: 28px; top: 28px; transform: none; }
  .timeline-step {
    grid-template-columns: 1fr;
    padding-left: 68px;
    gap: 20px;
    margin-bottom: 44px;
  }
  .timeline-step:nth-child(even) .timeline-card { order: 1; }
  .timeline-step:nth-child(even) .timeline-media { order: 2; }
}
@media (max-width: 640px) {
  .topbar .tb-left .tb-item.email { display: none; }
  .hero { min-height: auto; }
  .facts { grid-template-columns: 1fr; }
  .fact { padding: 15px 18px; }
  .f-row { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-btns .btn { flex: 1 1 100%; }
  .card-acts .btn { flex: 1 1 calc(50% - 5px); }
  .scroll-hint { display: none; }
  .float { width: 50px; height: 50px; }
  .f-bottom { justify-content: center; text-align: center; }
  .nav-cta .btn.book { padding: 10px 14px; font-size: .74rem; gap: 7px; }
  .nav-cta .btn.book svg { width: 15px; height: 15px; }
  .qb .f-row { grid-template-columns: 1fr; gap: 0; }
  .bs-btns .btn { flex: 1 1 100%; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 430px) {
  .nav-cta .btn.book .lbl { display: none; }
  .nav-cta .btn.book::after { content: "Book"; }
  .nav-cta .btn.book { padding: 10px 14px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .rv { opacity: 1; transform: none; }
}
