/*!
 * AeroCabs — shared styles.
 * Every class is `ac-` prefixed so this can sit alongside the home page's
 * inline design markup without collisions.
 *   · floating WhatsApp / call buttons  · footer  · testimonials  · FAQs
 *   · the shell used by fares / faqs / privacy / terms / refund
 */

/* Any component rule with a `display:` beats the UA sheet's [hidden]{display:none}.
   Pin it once here so `el.hidden = true` always actually hides. */
[hidden]{ display:none !important; }

:root{
  --accent:#149FE6;
  --ink:#17130E;
  --cream:#F4F1EA;
  --cream-2:#EDE8DE;
  --paper:#FBFAF6;
  --line:rgba(23,19,14,.12);
  --muted:rgba(23,19,14,.58);
  --night:#0A0F18;
}

/* ══════════════ floating WhatsApp + call buttons ══════════════ */

.ac-fab-stack{
  position:fixed; right:18px; bottom:18px; z-index:60;
  display:flex; flex-direction:column; gap:12px; align-items:flex-end;
  padding-bottom:env(safe-area-inset-bottom);
}
.ac-fab-stack .ac-fab{
  display:flex; align-items:center; gap:0;
  height:54px; width:54px; padding:0;
  border-radius:27px; color:#fff; text-decoration:none;
  box-shadow:0 12px 28px -10px rgba(10,15,24,.55), 0 2px 6px rgba(10,15,24,.18);
  overflow:hidden; white-space:nowrap;
  transition:width .22s cubic-bezier(.2,.7,.3,1), transform .18s ease, box-shadow .18s ease;
}
.ac-fab svg{ flex:none; width:54px; }
.ac-fab-label{
  font-family:'Hanken Grotesk',system-ui,sans-serif;
  font-weight:700; font-size:14.5px; letter-spacing:.01em;
  opacity:0; padding-right:20px; transition:opacity .18s ease;
}
.ac-fab-wa{ background:#25D366; }
.ac-fab-tel{ background:var(--accent); }
.ac-fab:hover, .ac-fab:focus-visible{
  width:186px; transform:translateY(-1px); opacity:1;
  box-shadow:0 16px 34px -10px rgba(10,15,24,.6), 0 2px 6px rgba(10,15,24,.2);
}
.ac-fab:hover .ac-fab-label, .ac-fab:focus-visible .ac-fab-label{ opacity:1; }
.ac-fab:focus-visible{ outline:3px solid rgba(255,255,255,.85); outline-offset:2px; }

@media (max-width:640px){
  .ac-fab-stack{ right:14px; bottom:14px; gap:10px; }
  .ac-fab{ height:50px; width:50px; border-radius:25px; }
  .ac-fab svg{ width:50px; }
  .ac-fab:hover{ width:50px; }              /* no hover-expand on touch */
  .ac-fab:hover .ac-fab-label{ opacity:0; }
}
@media (prefers-reduced-motion:reduce){
  .ac-fab{ transition:none; }
}

/* ══════════════ footer (shared by every page) ══════════════ */

.ac-foot{
  display:block; background:var(--cream); border-top:1px solid rgba(23,19,14,.1);
  font-family:'Hanken Grotesk',system-ui,sans-serif;
}
.ac-foot-grid{
  max-width:1200px; margin:0 auto; padding:56px 56px 32px;
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:40px;
}
.ac-foot-brand{ display:flex; align-items:center; gap:11px; }
.ac-foot-mark{
  width:32px; height:32px; border-radius:9px; background:var(--ink);
  display:flex; align-items:center; justify-content:center;
}
.ac-foot-word{ font-weight:700; font-size:17px; color:var(--ink); }
.ac-foot-note{ font-size:14px; line-height:1.55; color:var(--muted); margin:16px 0 0; max-width:270px; }
.ac-foot .ac-foot-wa{
  display:inline-flex; align-items:center; gap:8px; margin-top:16px;
  background:#25D366; color:#fff; font-weight:700; font-size:13.5px;
  padding:9px 15px 9px 11px; border-radius:10px; text-decoration:none;
}
.ac-foot-wa svg{ width:18px; height:18px; }
.ac-foot-wa:hover{ opacity:.9; }
.ac-foot h4{
  font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  color:rgba(23,19,14,.5); font-weight:700; margin:0 0 14px;
}
.ac-foot-grid > div > a,
.ac-foot-addr{
  display:block; font-size:14px; line-height:1.5; color:rgba(23,19,14,.7);
  text-decoration:none; margin-bottom:9px;
}
.ac-foot-grid > div > a:hover{ color:var(--accent); }
.ac-foot-grid > div > a[aria-current="page"]{ color:var(--accent); font-weight:600; }
.ac-foot-addr{ color:var(--muted); }
.ac-foot-base{
  max-width:1200px; margin:0 auto; padding:22px 56px 40px;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:12px; border-top:1px solid rgba(23,19,14,.08);
  font-size:13px; color:rgba(23,19,14,.45);
}
.ac-foot-legal{ display:flex; gap:22px; flex-wrap:wrap; }
.ac-foot .ac-foot-legal a{ color:rgba(23,19,14,.55); text-decoration:none; }
.ac-foot .ac-foot-legal a:hover{ color:var(--accent); }
.ac-foot .ac-foot-legal a[aria-current="page"]{ color:var(--accent); font-weight:600; }

@media (max-width:1024px){ .ac-foot-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){
  .ac-foot-grid{ grid-template-columns:1fr; padding:44px 24px 26px; gap:30px; }
  .ac-foot-base{ padding:20px 24px 96px; }   /* clear of the floating buttons */
}

/* ══════════════ testimonials ══════════════ */

.ac-quote-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:40px;
}
.ac-quote{
  margin:0; background:var(--paper); border:1px solid rgba(23,19,14,.1);
  border-radius:18px; padding:24px 24px 20px; display:flex; flex-direction:column;
}
.ac-quote-stars{ color:var(--accent); font-size:15px; letter-spacing:.14em; margin-bottom:12px; }
.ac-quote blockquote{
  margin:0; font-size:16px; line-height:1.6; color:var(--ink); flex:1;
}
.ac-quote blockquote::before{ content:'“'; }
.ac-quote blockquote::after{ content:'”'; }
.ac-quote figcaption{
  margin-top:18px; padding-top:14px; border-top:1px solid rgba(23,19,14,.1);
  font-size:14px; color:var(--muted);
}
.ac-quote figcaption strong{ color:var(--ink); font-weight:700; display:block; }
.ac-quote figcaption span{ display:block; margin-top:2px; font-size:13px; }
@media (max-width:1024px){ .ac-quote-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .ac-quote-grid{ grid-template-columns:1fr; } }

/* ══════════════ FAQ accordion ══════════════ */

.ac-faq{
  border-top:1px solid var(--line);
  font-family:'Hanken Grotesk',system-ui,sans-serif;
}
.ac-faq:last-child{ border-bottom:1px solid var(--line); }
.ac-faq > summary{
  list-style:none; cursor:pointer; padding:20px 44px 20px 0; position:relative;
  font-size:17px; font-weight:600; color:var(--ink); line-height:1.45;
}
.ac-faq > summary::-webkit-details-marker{ display:none; }
.ac-faq > summary:hover{ color:var(--accent); }
.ac-faq > summary:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; border-radius:4px; }
.ac-faq-plus{
  position:absolute; right:6px; top:24px; width:14px; height:14px;
}
.ac-faq-plus::before, .ac-faq-plus::after{
  content:''; position:absolute; background:var(--accent); border-radius:2px;
  transition:transform .2s ease, opacity .2s ease;
}
.ac-faq-plus::before{ left:0; top:6px; width:14px; height:2px; }
.ac-faq-plus::after{ left:6px; top:0; width:2px; height:14px; }
.ac-faq[open] .ac-faq-plus::after{ transform:rotate(90deg); opacity:0; }
.ac-faq-a{ padding:0 48px 22px 0; }
.ac-faq-a p{ margin:0; font-size:15.5px; line-height:1.65; color:var(--muted); }
@media (prefers-reduced-motion:reduce){
  .ac-faq-plus::before, .ac-faq-plus::after{ transition:none; }
}

.ac-faq-group{ margin-top:44px; }
.ac-faq-group:first-child{ margin-top:26px; }
.ac-faq-group > h2{
  font-family:'Hanken Grotesk',system-ui,sans-serif;
  font-size:13px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--accent); font-weight:700; margin:0 0 6px;
}

/* ══════════════ sub-page shell (fares / faqs / legal) ══════════════ */

.ac-page{
  margin:0; background:var(--cream); color:var(--ink);
  font-family:'Hanken Grotesk',system-ui,sans-serif;
  -webkit-font-smoothing:antialiased;
}
.ac-page *{ box-sizing:border-box; }
.ac-page .ac-body a{ color:var(--accent); }

.ac-nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 40px; background:var(--night);
  position:sticky; top:0; z-index:20;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.ac-nav-brand{ display:flex; align-items:center; gap:11px; text-decoration:none; }
.ac-nav-mark{
  width:34px; height:34px; border-radius:10px; background:#17130E;
  display:flex; align-items:center; justify-content:center;
}
.ac-nav-word{ font-weight:700; font-size:18px; letter-spacing:-.01em; color:#fff; }
.ac-nav-links{ display:flex; align-items:center; gap:28px; }
.ac-nav-links a{ color:rgba(235,244,255,.78); font-size:14.5px; font-weight:500; text-decoration:none; }
.ac-nav-links a:hover{ color:#fff; }
.ac-nav-links a[aria-current="page"]{ color:#fff; font-weight:600; }
.ac-nav-cta{
  background:var(--accent); color:#fff !important; font-weight:600; font-size:14px;
  padding:10px 18px; border-radius:10px;
}
@media (max-width:720px){
  .ac-nav{ padding:14px 20px; }
  .ac-nav-links{ gap:16px; }
  .ac-nav-links a:not(.ac-nav-cta){ display:none; }
}

.ac-wrap{ max-width:1080px; margin:0 auto; padding:0 40px; }
.ac-wrap-narrow{ max-width:760px; margin:0 auto; padding:0 40px; }
@media (max-width:640px){ .ac-wrap, .ac-wrap-narrow{ padding:0 22px; } }

.ac-hero{
  background:var(--night); color:#F2F7FF; padding:64px 0 68px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.ac-hero .ac-eyebrow{ color:var(--accent); }
.ac-hero h1{
  font-family:'Instrument Serif',serif; font-weight:400;
  font-size:56px; line-height:1.02; letter-spacing:-.01em;
  color:#F2F7FF; margin:14px 0 0; max-width:760px;
}
.ac-hero p{
  font-size:17px; line-height:1.6; color:rgba(235,244,255,.72);
  margin:18px 0 0; max-width:620px;
}
@media (max-width:640px){ .ac-hero{ padding:44px 0 48px; } .ac-hero h1{ font-size:38px; } }

.ac-eyebrow{
  font-size:12px; letter-spacing:.2em; text-transform:uppercase;
  font-weight:600; color:var(--accent); margin:0;
}
.ac-h2{
  font-family:'Hanken Grotesk',system-ui,sans-serif; font-weight:700;
  font-size:44px; line-height:1.04; letter-spacing:-.02em;
  color:var(--ink); margin:14px 0 0;
}
@media (max-width:640px){ .ac-h2{ font-size:32px; } }

.ac-body{ padding:56px 0 80px; }
.ac-body h2{
  font-size:24px; font-weight:700; color:var(--ink);
  margin:44px 0 12px; letter-spacing:-.01em; line-height:1.25;
}
.ac-body h2:first-child{ margin-top:0; }
.ac-body h3{ font-size:17px; font-weight:700; color:var(--ink); margin:26px 0 8px; }
.ac-body p, .ac-body li{ font-size:15.5px; line-height:1.68; color:rgba(23,19,14,.66); }
.ac-body p{ margin:0 0 14px; }
.ac-body ul, .ac-body ol{ margin:0 0 16px; padding-left:22px; }
.ac-body li{ margin-bottom:8px; }
.ac-body strong{ color:var(--ink); }
.ac-updated{
  display:inline-block; font-size:12.5px; font-weight:600; letter-spacing:.02em;
  color:var(--muted); background:rgba(23,19,14,.06);
  padding:6px 12px; border-radius:999px; margin-bottom:30px;
}
.ac-callout{
  background:var(--paper); border:1px solid var(--line);
  border-left:3px solid var(--accent);
  border-radius:12px; padding:18px 20px; margin:22px 0 26px;
}
.ac-callout p:last-child{ margin-bottom:0; }

/* ══════════════ fares page ══════════════ */

.ac-fare-controls{
  display:flex; align-items:flex-end; gap:14px; flex-wrap:wrap;
  padding:26px 0 4px;
}
.ac-fare-controls label{
  display:block; font-size:11.5px; font-weight:600; letter-spacing:.03em;
  text-transform:uppercase; color:var(--muted); margin-bottom:6px;
}
.ac-fare-controls select, .ac-fare-controls input{
  padding:11px 14px; border:1px solid rgba(23,19,14,.18); border-radius:11px;
  background:#fff; font-size:15px; color:var(--ink); font-family:inherit; min-width:210px;
}
.ac-seg{ display:flex; gap:6px; background:rgba(23,19,14,.06); padding:4px; border-radius:12px; }
.ac-seg button{
  border:none; background:transparent; cursor:pointer; font-family:inherit;
  font-size:14px; font-weight:600; color:var(--muted);
  padding:8px 16px; border-radius:9px;
}
.ac-seg button[aria-pressed="true"]{ background:#fff; color:var(--ink); box-shadow:0 1px 3px rgba(23,19,14,.12); }

.ac-fare-group{ margin-top:38px; }
.ac-fare-group > h2{
  font-size:13px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--accent); font-weight:700; margin:0 0 14px;
}
.ac-table-scroll{ overflow-x:auto; -webkit-overflow-scrolling:touch; border-radius:14px; }
table.ac-fare-table{
  width:100%; border-collapse:separate; border-spacing:0; background:var(--paper);
  border:1px solid var(--line); border-radius:14px; overflow:hidden; min-width:620px;
}
.ac-fare-table th, .ac-fare-table td{
  text-align:left; padding:14px 16px; font-size:14.5px;
  border-bottom:1px solid rgba(23,19,14,.08); white-space:nowrap;
}
.ac-fare-table thead th{
  background:rgba(23,19,14,.04); font-size:12px; letter-spacing:.08em;
  text-transform:uppercase; color:var(--muted); font-weight:700;
}
.ac-fare-table tbody tr:last-child td{ border-bottom:none; }
.ac-fare-table td.ac-route{ white-space:normal; }
.ac-fare-table .ac-route strong{ display:block; font-size:15.5px; color:var(--ink); font-weight:700; }
.ac-fare-table .ac-route span{ display:block; font-size:12.5px; color:var(--muted); margin-top:2px; }
.ac-fare-table .ac-price{ font-weight:700; color:var(--ink); font-size:16px; }
.ac-fare-table .ac-price small{ display:block; font-weight:500; font-size:11.5px; color:var(--muted); margin-top:2px; }
.ac-fare-table .ac-na{ color:rgba(23,19,14,.32); font-size:14px; }
.ac-fare-book{
  display:inline-block; background:var(--accent); color:#fff !important; text-decoration:none;
  font-weight:700; font-size:13.5px; padding:9px 14px; border-radius:9px;
}
.ac-fare-empty{
  border:1px dashed var(--line); border-radius:14px; padding:34px;
  text-align:center; color:var(--muted); font-size:15px;
}

.ac-note-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:44px;
}
.ac-note{
  background:var(--paper); border:1px solid var(--line); border-radius:14px; padding:20px;
}
.ac-note h3{ font-size:15.5px; font-weight:700; color:var(--ink); margin:0 0 7px; }
.ac-note p{ font-size:14px; line-height:1.6; color:var(--muted); margin:0; }
@media (max-width:900px){ .ac-note-grid{ grid-template-columns:1fr; } }

/* ══════════════════════════════════════════════════════════════════════════
   HOME PAGE — 3D hero, the three product CTAs, the booking panel, coverage.
   Loaded by index.html only; the sub-pages ignore all of it.
   ══════════════════════════════════════════════════════════════════════════ */

/* ---------- hero ---------- */

.hero-lineup{
  position:relative; overflow:hidden; text-align:center;
  background:#060A11;
  padding:58px 0 0;
}
.hero-lineup-glow{
  position:absolute; left:50%; top:38%; width:min(1100px,120vw); height:min(620px,70vw);
  transform:translate(-50%,-50%); pointer-events:none;
  background:
    radial-gradient(closest-side, color-mix(in srgb,var(--accent) 30%,transparent), transparent 72%),
    radial-gradient(closest-side at 70% 60%, rgba(120,190,255,.16), transparent 70%);
  filter:blur(6px);
}
.hero-lineup-copy{ position:relative; z-index:2; max-width:860px; margin:0 auto; padding:0 24px; }
.hero3d-eyebrow{
  font-size:12px; letter-spacing:.2em; text-transform:uppercase;
  font-weight:600; color:var(--accent); margin:0;
}
.hero3d-title{
  font-family:'Instrument Serif',serif; font-weight:400;
  font-size:clamp(46px,7.2vw,88px); line-height:0.96; letter-spacing:-.015em;
  color:#F2F7FF; margin:16px 0 0;
}
.hero3d-title em{ font-style:italic; color:var(--accent); }
.hero3d-sub{
  font-size:clamp(15.5px,1.5vw,18px); line-height:1.55;
  color:rgba(235,244,255,.74); margin:20px auto 0; max-width:620px;
}

.hero3d-stats{
  position:relative; z-index:2;
  display:flex; justify-content:center; flex-wrap:wrap; gap:14px 54px;
  max-width:1000px; margin:0 auto; padding:26px 24px 34px;
  border-top:1px solid rgba(255,255,255,.09);
}
.hero3d-stats > div{ text-align:center; }
.hero3d-stats strong{
  display:block; font-family:'Instrument Serif',serif; font-weight:400;
  font-size:32px; line-height:1; color:#F2F7FF;
}
.hero3d-stats span{
  display:block; font-size:12.5px; color:rgba(235,244,255,.55); margin-top:4px;
}
@media (max-width:640px){
  .hero-lineup{ padding-top:38px; }
  .hero3d-stats{ gap:14px 30px; padding:20px 20px 28px; }
  .hero3d-stats strong{ font-size:26px; }
}

/* ---------- the three product CTAs ---------- */

.prod{ background:#0A0F18; padding:74px 0 88px; scroll-margin-top:76px; }
.prod-wrap{ max-width:1200px; margin:0 auto; padding:0 56px; }
.prod-eyebrow{
  font-size:12px; letter-spacing:.2em; text-transform:uppercase;
  font-weight:600; color:var(--accent); margin:0;
}
.prod-h2{
  font-family:'Hanken Grotesk',system-ui,sans-serif; font-weight:700;
  font-size:clamp(30px,3.6vw,44px); line-height:1.05; letter-spacing:-.02em;
  color:#fff; margin:14px 0 0;
}
.prod-sub{ font-size:16px; line-height:1.6; color:rgba(235,244,255,.6); margin:14px 0 0; max-width:560px; }

.prod-tabs{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:38px; }
.prod-tab{
  position:relative; display:flex; flex-direction:column; align-items:flex-start;
  gap:0; text-align:left; cursor:pointer; font-family:inherit;
  padding:22px 22px 20px; border-radius:18px;
  border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.045);
  transition:border-color .18s ease, background .18s ease, transform .18s ease;
}
.prod-tab:hover{ background:rgba(255,255,255,.08); transform:translateY(-2px); }
.prod-tab:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; }
.prod-tab[aria-selected="true"]{
  border-color:var(--accent);
  background:linear-gradient(180deg, color-mix(in srgb,var(--accent) 22%,transparent), rgba(255,255,255,.05));
}
.prod-tab[aria-selected="true"]::after{
  content:''; position:absolute; left:50%; bottom:-16px; width:14px; height:14px;
  transform:translateX(-50%) rotate(45deg);
  background:var(--accent);
}
.prod-num{
  font-family:'Instrument Serif',serif; font-size:15px; letter-spacing:.1em;
  color:var(--accent); margin-bottom:10px;
}
.prod-tab[aria-selected="true"] .prod-num{ color:#fff; }
.prod-title{ font-size:20px; font-weight:700; color:#fff; letter-spacing:-.01em; }
.prod-blurb{ font-size:13.5px; line-height:1.5; color:rgba(235,244,255,.62); margin-top:8px; }
.prod-badge{
  margin-top:14px; font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:var(--accent); border:1px solid color-mix(in srgb,var(--accent) 45%,transparent);
  padding:5px 10px; border-radius:999px;
}
.prod-tab[aria-selected="true"] .prod-badge{ color:#fff; border-color:rgba(255,255,255,.5); }
@media (max-width:900px){
  .prod-wrap{ padding:0 24px; }
  .prod-tabs{ grid-template-columns:1fr; gap:12px; }
  .prod-tab{ padding:18px; }
  .prod-tab[aria-selected="true"]::after{ display:none; }
  .prod-blurb{ margin-top:6px; }
}

/* ---------- booking panel ---------- */

.prod-grid{
  display:grid; grid-template-columns:minmax(0,1fr) 330px; gap:40px;
  align-items:start; margin-top:42px;
}
.prod-forms{ max-width:600px; }
.prod-forms > form{ margin:0; }

.bk-card{
  background:rgba(9,14,24,.68);
  backdrop-filter:blur(22px) saturate(1.3); -webkit-backdrop-filter:blur(22px) saturate(1.3);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 34px 74px -30px rgba(0,0,0,.6);
  border-radius:22px; padding:24px;
}
.bk-head{ display:flex; align-items:baseline; justify-content:space-between; gap:12px; margin-bottom:16px; }
.bk-kicker{
  font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  font-weight:700; color:var(--accent);
}
.bk-note{ font-size:12.5px; color:rgba(235,244,255,.55); }

.bk-fields{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.bk-fields > .bk-span,
.bk-fields > p,
.bk-fields > button{ grid-column:1 / -1; }
.f-lbl{
  display:block; font-size:11.5px; font-weight:600; letter-spacing:.03em;
  color:rgba(235,244,255,.62); text-transform:uppercase; margin-bottom:6px;
}
.bk-fields input,
.bk-fields select{
  width:100%; padding:12px 14px; border:1px solid rgba(23,19,14,.14);
  border-radius:11px; background:#fff; font-size:15px; color:#17130E; font-family:inherit;
}
.bk-fields select{ appearance:none; -webkit-appearance:none; }
.bk-fields input::placeholder{ color:rgba(23,19,14,.36); }

.bk-seg{ display:flex; gap:8px; }
.bk-seg button{
  flex:1; padding:11px; border-radius:11px; font-family:inherit; font-size:14px;
  font-weight:600; cursor:pointer;
  border:1px solid rgba(255,255,255,.22); background:rgba(255,255,255,.08); color:rgba(235,244,255,.75);
}
.bk-seg button[aria-pressed="true"]{
  border-color:var(--accent); font-weight:700; color:#fff;
  background:color-mix(in srgb,var(--accent) 28%,#0A0F18);
}
.bk-err{ color:#FF8A80; font-weight:600; font-size:13px; text-align:center; margin:0; }
.bk-submit{
  width:100%; border:none; border-radius:12px; cursor:pointer; font-family:inherit;
  font-weight:700; font-size:15px; padding:15px; color:#fff; margin-top:4px;
  background:var(--accent);
}
.bk-submit-wa{ background:#25D366; }
.bk-submit:hover{ opacity:.92; }
.bk-fine{ text-align:center; font-size:12px; line-height:1.5; color:rgba(235,244,255,.5); margin:2px 0 0; }

.prod-aside{
  border:1px solid rgba(255,255,255,.12); border-radius:18px;
  background:rgba(255,255,255,.04); padding:24px;
}
.prod-aside h3{ font-size:13px; letter-spacing:.12em; text-transform:uppercase; color:var(--accent); margin:0 0 16px; }
.prod-aside ul{ list-style:none; margin:0; padding:0; }
.prod-aside li{
  font-size:14px; line-height:1.58; color:rgba(235,244,255,.66);
  padding:14px 0; border-top:1px solid rgba(255,255,255,.09);
}
.prod-aside li:first-child{ border-top:none; padding-top:0; }
.prod-aside li strong{ color:#fff; font-weight:700; }
.prod-aside a{ color:var(--accent); }
@media (max-width:980px){
  .prod-grid{ grid-template-columns:1fr; gap:24px; }
  .prod-forms{ max-width:none; }
}
@media (max-width:560px){
  .bk-fields{ grid-template-columns:1fr; }
  .bk-card{ padding:18px; }
}

/* ---------- coverage ---------- */

.cov{ background:#17130E; color:#F4F1EA; }
.cov-wrap{ max-width:1200px; margin:0 auto; padding:88px 56px; }
.cov-h2{
  font-family:'Hanken Grotesk',system-ui,sans-serif; font-weight:700;
  font-size:clamp(32px,4.2vw,46px); line-height:1.04; letter-spacing:-.02em;
  color:#fff; margin:14px 0 0;
}
.cov-intro{ font-size:16px; line-height:1.6; color:rgba(244,241,234,.62); margin:18px 0 0; max-width:600px; }
.cov-block{ margin-top:44px; }
.cov-block h3{
  font-size:13px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--accent); font-weight:700; margin:0 0 6px;
}
.cov-block > p{ font-size:14.5px; color:rgba(244,241,234,.55); margin:0 0 18px; }
.cov-chips{ display:flex; flex-wrap:wrap; gap:10px; }
.cov-chip{
  display:inline-flex; align-items:baseline; gap:8px;
  border:1px solid rgba(244,241,234,.18); border-radius:999px;
  padding:9px 16px; font-size:14px; color:#F4F1EA;
}
.cov-chip i{ font-style:normal; font-size:12px; color:rgba(244,241,234,.45); }
.cov-chip-base{
  border-color:color-mix(in srgb,var(--accent) 55%,transparent);
  background:color-mix(in srgb,var(--accent) 14%,transparent);
  font-weight:600;
}
.cov-chip-more{ border-style:dashed; color:rgba(244,241,234,.6); }
.cov-foot{ font-size:14px; line-height:1.6; color:rgba(244,241,234,.5); margin:40px 0 0; max-width:640px; }
.cov-foot a{ color:#fff; border-bottom:1px solid rgba(255,255,255,.35); }
@media (max-width:640px){ .cov-wrap{ padding:56px 24px; } }


/* ---------- hero line-up ---------- */

.lineup{
  position:relative; z-index:2;
  display:grid; grid-template-columns:repeat(5,1fr); gap:14px;
  max-width:1240px; margin:38px auto 0; padding:0 40px;
}
.lineup-car{ text-align:center; }
.lineup-car h3{
  font-size:16px; font-weight:700; color:#F2F7FF; margin:14px 0 0; letter-spacing:-.01em;
}
.lineup-make{ font-size:12px; color:var(--accent); margin:4px 0 0; font-weight:600; }
.lineup-spec{ font-size:12.5px; color:rgba(235,244,255,.5); margin:3px 0 0; }

/* A light studio panel behind every car. The cars are black, so a dark tile would
   swallow them — this reads as a product shot and lets a real photo drop straight in. */
.car-visual{
  position:relative; aspect-ratio:5/2; border-radius:14px; overflow:hidden;
  background:linear-gradient(168deg,#F1EDE4 0%,#D9D2C5 62%,#C6BEAF 100%);
  border:1px solid rgba(255,255,255,.14);
  display:flex; align-items:center; justify-content:center;
}
.car-visual .car-svg{ width:86%; height:auto; filter:drop-shadow(0 10px 14px rgba(23,19,14,.28)); }
.car-visual img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }

@media (max-width:900px){
  .lineup{
    grid-template-columns:none; grid-auto-flow:column; grid-auto-columns:63%;
    overflow-x:auto; scroll-snap-type:x mandatory;
    padding:0 24px 8px; gap:12px; -webkit-overflow-scrolling:touch;
  }
  .lineup-car{ scroll-snap-align:center; }
}

/* the three service CTAs are links now, not tabs */
.prod-link{ text-decoration:none; position:relative; padding-bottom:44px; }
.prod-link .prod-badge{ margin-top:14px; }
.prod-go{
  position:absolute; left:22px; bottom:18px;
  font-size:18px; color:var(--accent); transition:transform .18s ease;
}
.prod-link:hover .prod-go{ transform:translateX(4px); }
@media (max-width:900px){ .prod-go{ left:18px; bottom:14px; } }

/* ---------- live quote line + booking success ---------- */

.bk-quote{
  grid-column:1 / -1; margin:2px 0; padding:12px 14px; border-radius:11px;
  font-size:14px; font-weight:600; line-height:1.45;
  color:rgba(235,244,255,.7); background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}
.bk-quote.is-live{
  color:#fff; background:color-mix(in srgb,var(--accent) 20%,transparent);
  border-color:color-mix(in srgb,var(--accent) 45%,transparent);
}
.f-lbl em{ font-style:normal; font-weight:500; text-transform:none; letter-spacing:0; opacity:.7; }

.bk-success{ text-align:center; }
.bk-tick{
  width:56px; height:56px; border-radius:50%; margin:8px auto 16px;
  background:color-mix(in srgb,var(--accent) 16%,transparent); color:var(--accent);
  display:flex; align-items:center; justify-content:center; font-size:28px;
}
.bk-success h2{ font-family:'Instrument Serif',serif; font-weight:400; font-size:32px; color:#fff; margin:0; }
.bk-success p{ font-size:14.5px; line-height:1.55; color:rgba(235,244,255,.72); margin:12px 0 0; }
.bk-bigfare{ font-size:20px !important; font-weight:700; color:#fff !important; }
.bk-submit-ghost{ background:rgba(255,255,255,.12); margin-top:20px; }

/* ---------- rent a car ---------- */

.rent-bar{
  display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; align-items:end;
  background:var(--paper); border:1px solid var(--line); border-radius:16px;
  padding:18px 20px; margin-bottom:8px;
}
.rent-bar .f-lbl{ color:var(--muted); }
.rent-bar select, .rent-bar input{
  width:100%; padding:11px 13px; border:1px solid rgba(23,19,14,.18);
  border-radius:11px; background:#fff; font-size:15px; color:var(--ink); font-family:inherit;
}
.rent-bar-note{ grid-column:1 / -1; margin:2px 0 0; font-size:13px; color:var(--muted); }
@media (max-width:760px){ .rent-bar{ grid-template-columns:1fr 1fr; } }

.rent-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:26px; }
@media (max-width:980px){ .rent-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:620px){ .rent-grid{ grid-template-columns:1fr; } }

.rent-card{
  position:relative; background:var(--paper); border:1px solid var(--line);
  border-radius:18px; overflow:hidden; cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.rent-card:hover, .rent-card:focus-visible{
  transform:translateY(-3px); border-color:color-mix(in srgb,var(--accent) 40%,transparent);
  box-shadow:0 18px 40px -22px rgba(23,19,14,.5);
}
.rent-card:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; }
.rent-visual{ border-radius:0; border:none; aspect-ratio:16/9; }
.rent-visual .car-svg{ filter:drop-shadow(0 10px 14px rgba(23,19,14,.22)); }
.rent-badge{
  position:absolute; left:12px; top:12px; z-index:2;
  font-size:11px; font-weight:700; letter-spacing:.05em; text-transform:uppercase;
  background:rgba(251,250,246,.94); color:var(--ink); padding:5px 10px; border-radius:7px;
}
.rent-body{ padding:16px 18px 18px; }
.rent-body h2{ font-size:18px; font-weight:700; color:var(--ink); margin:0; letter-spacing:-.01em; }
.rent-tag{ font-size:13.5px; color:var(--accent); font-weight:600; margin:4px 0 0; }
.rent-specs{
  list-style:none; display:flex; flex-wrap:wrap; gap:14px; margin:12px 0 0; padding:0;
  font-size:13px; color:var(--muted);
}
.rent-foot{
  display:flex; align-items:baseline; justify-content:space-between; gap:10px;
  margin-top:14px; padding-top:13px; border-top:1px solid var(--line);
}
.rent-price{ font-size:19px; font-weight:700; color:var(--ink); }
.rent-price small{ font-size:12.5px; font-weight:500; color:var(--muted); margin-left:4px; }
.rent-price-ask{ font-size:15px; color:var(--muted); font-weight:600; }
.rent-more{ font-size:13px; font-weight:700; color:var(--accent); white-space:nowrap; }
.rent-empty{ text-align:center; color:var(--muted); font-size:15px; padding:40px 0; }

.rent-sheet{ position:fixed; inset:0; z-index:80; display:flex; justify-content:flex-end; }
.rent-sheet-scrim{ position:absolute; inset:0; background:rgba(6,10,17,.62); backdrop-filter:blur(3px); }
.rent-sheet-panel{
  position:relative; width:min(560px,100%); background:var(--night); color:#F2F7FF;
  overflow-y:auto; -webkit-overflow-scrolling:touch; box-shadow:-20px 0 60px rgba(0,0,0,.5);
}
.rent-close{
  position:absolute; right:14px; top:14px; z-index:3;
  width:38px; height:38px; border-radius:50%; cursor:pointer; font-size:24px; line-height:1;
  border:1px solid rgba(255,255,255,.2); background:rgba(10,15,24,.7); color:#fff;
}
.rent-sheet .rent-visual{ aspect-ratio:16/9; border-radius:0; }
.rent-sheet-copy{ padding:24px 26px 40px; }
.rent-sheet-copy h2{
  font-family:'Instrument Serif',serif; font-weight:400; font-size:36px;
  line-height:1.05; color:#fff; margin:10px 0 0;
}
.rent-blurb{ font-size:15px; line-height:1.6; color:rgba(235,244,255,.7); margin:12px 0 0; }
.rent-sheet-copy h3{
  font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--accent); font-weight:700; margin:30px 0 12px;
}
.rent-statgrid{ display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-top:22px; }
.rent-statgrid > div{
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1);
  border-radius:12px; padding:12px 10px; text-align:center;
}
.rent-statgrid strong{ display:block; font-size:16px; color:#fff; }
.rent-statgrid span{ display:block; font-size:11.5px; color:rgba(235,244,255,.55); margin-top:3px; }
.rent-features{ list-style:none; margin:0; padding:0; }
.rent-features li{
  font-size:14px; color:rgba(235,244,255,.72); padding:9px 0 9px 24px; position:relative;
  border-top:1px solid rgba(255,255,255,.08);
}
.rent-features li:first-child{ border-top:none; }
.rent-features li::before{
  content:''; position:absolute; left:4px; top:16px; width:8px; height:8px;
  border-radius:2px; background:var(--accent);
}
.rent-sheet .bk-fields{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
@media (max-width:560px){
  .rent-statgrid{ grid-template-columns:repeat(2,1fr); }
  .rent-sheet .bk-fields{ grid-template-columns:1fr; }
  .rent-sheet-copy{ padding:20px 20px 36px; }
}
