/* ============================================================
   Hero styles now live in a <style> block scoped inside the
   .hero-v2 section on airport-transfer-mauritius.html, so the
   hero is portable and self-contained. This file keeps only
   the shared quote-widget styles plus the routes/founder/
   comparison-table styles used elsewhere on the page.
   ============================================================ */

/* ============================================================
   Passenger Badge Chip
   ============================================================ */
.mu-vehicle > span {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: #cffafe;
  color: #0d7377;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

/* ============================================================
   Quote widget — used inside hero
   ============================================================ */
.quote-widget,
.quote-result {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.18),
              0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 16px;
  text-align: left;
  scroll-margin-top: 96px;
}

@media (min-width: 640px) {
  .quote-widget,
  .quote-result {
    padding: 20px;
    border-radius: 18px;
  }
}

.quote-result {
  border: 2px solid #0e7490;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 520px) {
  .quote-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    gap: 14px;
  }
}

.quote-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.quote-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 6px;
  padding: 0;
}

.quote-pickup {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  color: #111827;
  font-weight: 600;
  min-height: 44px;
}

.quote-pickup i {
  font-size: 18px;
  color: #0e7490;
}

.quote-select,
.quote-input {
  width: 100%;
  padding: 11px 14px;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 14px;
  color: #111827;
  min-height: 44px;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.quote-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' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230e7490' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.quote-select:focus,
.quote-input:focus {
  outline: none;
  border-color: #0e7490;
  box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.15);
}

.quote-pax {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.quote-pax-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  background: #fff;
  cursor: pointer;
  transition: border-color 150ms, background 150ms, color 150ms;
  user-select: none;
}

.quote-pax-btn:hover { border-color: #0e7490; }

.quote-pax-btn.active {
  border-color: #0e7490;
  background: #0e7490;
  color: #fff;
}

.quote-pax-btn:focus-within {
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.2);
}

.quote-extras {
  margin-top: 12px;
}

.quote-extras-toggle {
  font-size: 13px;
  color: #0e7490;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.quote-extras-toggle::-webkit-details-marker { display: none; }
.quote-extras[open] .quote-extras-toggle { color: #111827; }

.quote-submit {
  margin-top: 16px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 52px;
  padding: 0 20px;
  background: #0e7490;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 20px -8px rgba(14, 116, 144, 0.5);
  transition: background 150ms, transform 150ms, box-shadow 150ms;
  font-family: inherit;
}

.quote-submit:hover {
  background: #0c627a;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(14, 116, 144, 0.55);
}

.quote-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.3),
              0 8px 20px -8px rgba(14, 116, 144, 0.5);
}

.quote-footnote {
  font-size: 11px;
  color: #6b7280;
  text-align: center;
  margin: 10px 0 0;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Result panel */
.quote-result-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  font-weight: 700;
  margin: 0 0 4px;
}

.quote-result-price {
  font-size: 44px;
  font-weight: 800;
  color: #0e7490;
  line-height: 1;
  margin: 0 0 8px;
}

.quote-result-route {
  font-size: 14px;
  color: #374151;
  margin: 0 0 4px;
}

.quote-result-meta {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 14px;
}

.quote-result-pay {
  font-size: 12px;
  color: #4b5563;
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  border-radius: 8px;
  padding: 10px 12px;
  margin: 0 0 14px;
  line-height: 1.4;
}

.quote-result-pay i {
  color: #16a34a;
  margin-right: 2px;
}

.quote-result-pay strong { color: #111827; }

.quote-result-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 480px) {
  .quote-result-ctas { flex-direction: row; }
}

.quote-cta-primary,
.quote-cta-secondary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background 150ms, transform 150ms;
}

.quote-cta-primary {
  background: #0e7490;
  color: #fff;
  box-shadow: 0 6px 14px -4px rgba(14, 116, 144, 0.45);
}

.quote-cta-primary:hover {
  background: #0c627a;
  transform: translateY(-1px);
}

.quote-cta-secondary {
  background: #fff;
  color: #15803d;
  border: 1.5px solid #15803d;
}

.quote-cta-secondary:hover { background: #f0fdf4; }

.quote-result-back {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  color: #6b7280;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.quote-result-back:hover { color: #0e7490; }

[x-cloak] { display: none !important; }

/* ============================================================
   Founder card + comparison table (kept from previous build)
   ============================================================ */
.founder-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #fff 100%);
  border: 1px solid #e0f2fe;
  border-radius: 1.25rem;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .founder-card {
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
    align-items: center;
  }
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.08);
}

.compare-table th,
.compare-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  border-bottom: 1px solid #f3f4f6;
}

.compare-table thead th {
  background: #f9fafb;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  font-weight: 700;
}

.compare-table thead th.us {
  background: #0e7490;
  color: #fff;
}

.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .feature { font-weight: 600; color: #374151; }
.compare-table .them { color: #6b7280; }
.compare-table .us-cell {
  color: #111827;
  font-weight: 600;
  background: #f0f9ff;
}
@media(max-width:639px){
  .compare-table td.them,.compare-table thead th:nth-child(2){display:none}
  .compare-table th,.compare-table td{font-size:0.8rem;padding:0.7rem 0.75rem}
}

/* Routes table */
.routes-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.08);
  font-size: 0.9375rem;
}

.routes-table th,
.routes-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid #f3f4f6;
}

.routes-table thead th {
  background: #0e7490;
  color: #fff;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.routes-table tbody tr:hover { background: #f9fafb; }
.routes-table tbody tr:last-child td { border-bottom: none; }
.routes-table .route-price { font-weight: 700; color: #0e7490; white-space: nowrap; }
.routes-table .route-time { color: #6b7280; white-space: nowrap; }

@media (max-width: 640px) {
  .routes-table th,
  .routes-table td {
    padding: 0.625rem 0.625rem;
    font-size: 0.8125rem;
  }
}

/* ============================================================
   MAURITIUS THEME — island character: lagoon, sand, sunset
   Palette: lagoon #0e7490 · turquoise #22d3ee · coral #f4663f
            sand #fffbf5 · golden #f59e0b · ocean ink #0c4a5e
   ============================================================ */

/* --- Section background washes (fade to white at edges = soft blends) --- */
.mu-sand {
  background:
    radial-gradient(ellipse 50% 38% at 100% 12%, rgba(251,191,36,.12) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fff8ee 42%, #fff8ee 58%, #ffffff 100%);
}
.mu-lagoon-tint {
  background:
    radial-gradient(ellipse 55% 45% at 0% 10%, rgba(34,211,238,.12) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #effafc 42%, #effafc 58%, #ffffff 100%);
}
.mu-whatsapp {
  background:
    radial-gradient(ellipse 50% 45% at 95% 90%, rgba(34,197,94,.10) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f0fdf4 42%, #f0fdf4 58%, #ffffff 100%);
}

/* --- WhatsApp section: reliable 2-column grid (no Tailwind dependency) --- */
.mu-wa {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 768px) {
  .mu-wa { grid-template-columns: minmax(260px, 360px) 1fr; gap: 48px; }
}
.mu-wa__img {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 18px 38px -14px rgba(12,74,94,.30);
}
.mu-wa__body { text-align: center; }
@media (min-width: 768px) { .mu-wa__body { text-align: left; } .mu-wa__body .mu-kicker { margin-left: 0; } }

/* --- Wave divider (organic edge between sections) --- */
.mu-wave {
  display: block;
  width: 100%;
  height: 56px;
  line-height: 0;
}
.mu-wave svg { display: block; width: 100%; height: 100%; }
@media (min-width: 768px) { .mu-wave { height: 80px; } }

/* --- Section kicker pill (consistent island chip) --- */
.mu-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #0e7490;
  background: rgba(14,116,144,.07);
  border: 1px solid rgba(14,116,144,.15);
  padding: 6px 14px;
  border-radius: 999px;
}
.mu-kicker i { color: #f4663f; font-size: 14px; }

/* --- How it works: tropical numbered steps with journey line --- */
.mu-steps { position: relative; }
@media (min-width: 768px) {
  .mu-steps::before {
    content: "";
    position: absolute;
    top: 46px; left: 16%; right: 16%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #22d3ee 0 9px, transparent 9px 18px);
    opacity: .55;
    z-index: 0;
  }
}
.mu-step { position: relative; z-index: 1; }
.mu-step__circle {
  width: 64px; height: 64px;
  border-radius: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  position: relative;
  color: #fff;
  box-shadow: 0 12px 24px -8px rgba(14,116,144,.35);
}
.mu-step:nth-child(1) .mu-step__circle { background: linear-gradient(135deg, #22d3ee, #0e7490); }
.mu-step:nth-child(2) .mu-step__circle { background: linear-gradient(135deg, #34d399, #0d9488); }
.mu-step:nth-child(3) .mu-step__circle { background: linear-gradient(135deg, #fbbf24, #f4663f); }
.mu-step__circle i { font-size: 27px; }
.mu-step__num {
  position: absolute; top: -8px; right: -8px;
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff; color: #0c4a5e;
  font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #ecfeff;
  box-shadow: 0 3px 8px -2px rgba(12,74,94,.25);
}

/* ════════════════════════════════════════════════════════
   EDITORIAL REDESIGN — airport transfer page
   Matches car-rental-mauritius design language
   ════════════════════════════════════════════════════════ */

/* ─── NEW PHOTO HERO ──────────────────────────────────── */
.at-hero{position:relative;min-height:calc(100dvh - 64px);background:url('img/airport-transfer-arrival.webp') center center/cover no-repeat;display:flex;flex-direction:column;justify-content:flex-end;overflow:visible}
.at-hero::before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.78) 0%,rgba(0,0,0,.68) 30%,rgba(0,0,0,.60) 55%,rgba(0,0,0,.55) 100%);z-index:1;pointer-events:none}
.at-hero-inner{position:relative;z-index:2;flex:1;display:flex;align-items:flex-end;width:100%;max-width:1280px;margin:0 auto;padding:48px 32px 56px;gap:48px}
.at-hero-copy{flex:1;min-width:0}
.at-hero-copy .at-kicker{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.28);color:rgba(255,255,255,.92);font-size:11px;font-weight:700;padding:5px 14px;border-radius:999px;margin-bottom:16px;letter-spacing:.12em;text-transform:uppercase;backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px)}
.at-hero-h1{font-size:clamp(2.2rem,6vw,4.8rem);line-height:.95;font-weight:900;letter-spacing:-.03em;color:#fff;margin-bottom:18px;max-width:18ch}
.at-hero-h1 .at-price-hl{color:#f4663f}
.at-hero-sub{font-size:1rem;line-height:1.6;color:rgba(255,255,255,.82);margin-bottom:20px;max-width:500px}
.at-hero-sub strong{color:#fff}
.at-hero-checks{display:flex;flex-wrap:wrap;gap:8px 18px}
.at-hero-checks span{display:flex;align-items:center;gap:6px;font-size:13px;font-weight:500;color:rgba(255,255,255,.82)}
.at-hero-checks span i{color:#5ee7f5}
.at-hero-trust{display:flex;flex-wrap:wrap;gap:8px 16px;margin-top:14px;padding-top:14px;border-top:1px solid rgba(255,255,255,.18)}
.at-hero-trust span{display:flex;align-items:center;gap:6px;font-size:12px;font-weight:600;color:rgba(255,255,255,.7);letter-spacing:.01em}
.at-hero-trust span i{color:#f4663f;font-size:13px}
/* Quote card in hero */
.at-hero-card-col{flex:0 0 470px;max-width:470px}
.at-hero-card{background:#fff;border-radius:20px;box-shadow:0 16px 56px rgba(0,0,0,.28);overflow:hidden}
@media(max-width:1023px){
  .at-hero-inner{flex-direction:column;align-items:flex-start;padding:20px 16px 28px;gap:24px}
  .at-hero-card-col{flex:none;width:100%;max-width:100%}
  .at-hero{min-height:auto}
}
/* Keep hero-v3 FAB (mobile sticky CTA) */
.at-fab{position:fixed;left:14px;right:14px;bottom:14px;z-index:60;display:flex;align-items:center;justify-content:center;gap:8px;background:linear-gradient(135deg,#F4663F,#E2452A);color:#fff;text-decoration:none;font-weight:700;font-size:15px;padding:15px 18px;border-radius:14px;box-shadow:0 16px 32px -8px rgba(228,69,42,.55);transform:translateY(140%);pointer-events:none;transition:transform .35s cubic-bezier(.16,.84,.44,1)}
.at-fab.is-visible{transform:translateY(0);pointer-events:auto}
@media(min-width:1024px){.at-fab{display:none!important}}
/* Mobile: trim hero copy so the quote card + "See price" sit closer to the fold */
@media(max-width:640px){
  .at-hero-inner{gap:12px;padding:14px 16px 18px}
  .at-hero-h1{font-size:1.8rem;line-height:1.05;margin-bottom:10px}
  .at-hero-sub{margin-bottom:10px}
  .at-hero-copy p[class*="md:hidden"]{padding-top:.35rem;padding-bottom:.5rem;font-size:1rem}
  .at-hero-checks{gap:5px 12px}
  .at-hero-checks span{font-size:12px}
  /* Trust row is desktop-only to protect above-the-fold on small screens */
  .at-hero-trust{display:none}
}

/* ─── Section typography ──────────────────────────────── */
.at-sec-h2{font-size:clamp(1.75rem,3.5vw,2.6rem);font-weight:800;color:#0f172a;line-height:1.15;letter-spacing:-.028em}
.at-sec-sub{font-size:1rem;color:#6b7280;line-height:1.65;max-width:560px}

/* ─── Steps: big numerals ────────────────────────────── */
.at-steps-section{background:#f0fdfa;border-top:1px solid #e8edf3}
.at-steps-grid{display:grid;grid-template-columns:1fr 48px 1fr 48px 1fr;align-items:start}
.at-step-item{padding:0 24px;text-align:center}
.at-step-num{font-size:3.6rem;font-weight:900;color:#0e7490;line-height:1;letter-spacing:-.04em;margin-bottom:14px;opacity:.88}
.at-step-title{font-size:1.05rem;font-weight:700;color:#0f172a;margin-bottom:8px}
.at-step-body{font-size:.9rem;color:#6b7280;line-height:1.6}
.at-step-vdiv{width:1px;background:linear-gradient(to bottom,transparent,#cbd5e1,transparent);height:72px;margin-top:32px;justify-self:center}
@media(max-width:767px){
  .at-steps-grid{grid-template-columns:1fr;gap:0}
  .at-step-vdiv{display:none}
  .at-step-item{padding:0 0 28px;text-align:left;display:flex;gap:18px;align-items:flex-start}
  .at-step-num{font-size:2.6rem;margin-bottom:0;min-width:60px;flex-shrink:0}
}

/* ─── Vehicles: richer cards ──────────────────────────── */
.at-vehicles-section{background:#fafafa;border-top:1px solid #e8edf3}
.mu-vehicle{background:#fff;border:1px solid #e8edf3!important;border-radius:22px!important;box-shadow:0 2px 8px rgba(0,0,0,.04)!important;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease!important}
.mu-vehicle:hover{transform:translateY(-5px)!important;box-shadow:0 20px 44px rgba(0,0,0,.1)!important;border-color:#bae6fd!important}
.mu-vehicle img{border-radius:12px;background:#f8fafc}

/* ─── What's Included panel — keep but refresh kicker ── */
.at-included-section{background:#fff;border-top:1px solid #e8edf3}

/* ─── Why ExoTrip: 2-col photo + list ──────────────────── */
.at-why-section{background:#fff;border-top:none;padding-top:2.5rem;padding-bottom:5rem}
.at-why-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.at-why-photo{position:relative;border-radius:24px;overflow:hidden;aspect-ratio:1/1}
.at-why-photo img{width:100%;height:100%;object-fit:cover;display:block}
.at-why-badge{position:absolute;bottom:24px;left:20px;right:20px;background:rgba(255,255,255,.94);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border-radius:14px;padding:16px 20px;box-shadow:0 8px 28px rgba(0,0,0,.14)}
.at-why-badge-row{display:flex;align-items:center;gap:14px}
.at-why-badge-score{font-size:2.2rem;font-weight:900;color:#0f172a;line-height:1}
.at-why-badge-stars{color:#f59e0b;font-size:13px;display:block;margin-bottom:3px}
.at-why-badge-label{font-size:11.5px;color:#6b7280;font-weight:500}
.at-why-items{margin-top:28px;display:flex;flex-direction:column;gap:22px}
.at-why-item{display:flex;gap:16px;align-items:flex-start}
.at-why-icon{width:38px;height:38px;border-radius:10px;background:#f0fdf4;color:#0e7490;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:19px;margin-top:1px}
.at-why-item-head{font-size:1rem;font-weight:700;color:#0f172a;margin:0 0 4px}
.at-why-item-body{font-size:.875rem;color:#6b7280;margin:0;line-height:1.55}
@media(max-width:1023px){
  .at-why-grid{grid-template-columns:1fr;gap:36px}
  .at-why-photo{aspect-ratio:16/9;border-radius:18px}
}

/* ─── Dark CTA: full-bleed aerial photo ────────────────── */
.at-dark-cta{position:relative;background:url('img/mauritius-view.webp') center 40%/cover no-repeat;overflow:hidden}
.at-dark-cta::before{content:'';position:absolute;inset:0;background:linear-gradient(160deg,rgba(8,20,40,.9),rgba(14,80,110,.8));z-index:0}
.at-dark-cta-inner{position:relative;z-index:1;max-width:56rem;margin:0 auto;text-align:center;padding:96px 24px}
.at-dark-cta h2{color:#fff;margin-bottom:14px}
.at-dark-cta p{color:rgba(255,255,255,.78);margin-bottom:28px;line-height:1.65;max-width:520px;margin-left:auto;margin-right:auto}
.at-dark-cta-small{color:rgba(255,255,255,.45)!important;font-size:12px!important;margin-top:16px!important}
.at-dark-cta-small a{color:rgba(255,255,255,.55);text-decoration:underline}

/* ─── Routes table ──────────────────────────────────────── */
.at-routes-section{background:#f8fafc;border-top:1px solid #e8edf3}

/* ─── FAQ section ───────────────────────────────────────── */
.at-faq-section{background:#fafafa;border-top:1px solid #e8edf3}

/* ════════════════════════════════════════════════════════
   HERO INSTANT QUOTE (hero-iq) — migrated from inline style
   ════════════════════════════════════════════════════════ */
.hero-iq{background:#fff;border:1px solid #e2e8f0;border-radius:18px;padding:16px;margin:0 0 14px;box-shadow:0 14px 34px -16px rgba(12,74,94,.30)}
.hero-iq__head{display:flex;align-items:baseline;flex-wrap:wrap;column-gap:4px;row-gap:2px;font-size:13px;font-weight:700;color:#0e7490;margin:2px 2px 12px}
.hero-iq__head-main{font-size:19px;font-weight:800;line-height:1.1;color:#0b7285}
.hero-iq__head-sub{font-size:15px;font-weight:700;line-height:1.1;color:#0e7490}
.hero-iq__head i{color:#f59e0b;font-size:15px}
.hero-iq__subhead{font-size:11.5px;font-weight:600;color:#0e7490;background:#f0fdfa;border:1px solid #cffafe;border-radius:8px;padding:5px 10px;margin:-6px 0 12px;text-align:center;letter-spacing:.01em}
.hero-iq__row{display:grid;grid-template-columns:1fr 96px auto;gap:8px;align-items:end}
@media(max-width:520px){.hero-iq__row{grid-template-columns:1fr 1fr}.hero-iq__btn{grid-column:1/-1}}
.hero-iq__lbl{display:block;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:#64748b;margin:0 0 4px 2px}
.hero-iq__select{width:100%;appearance:none;-webkit-appearance:none;background:#f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;border:1px solid #cbd5e1;border-radius:10px;padding:11px 28px 11px 12px;font-size:14px;font-weight:600;color:#0f172a;font-family:inherit;cursor:pointer}
.hero-iq__select:focus{outline:none;border-color:#0e7490;box-shadow:0 0 0 3px rgba(14,116,144,.15)}
.hero-iq__select option{background:#fff;color:#0f172a;font-weight:600;padding:10px}
.hero-iq__select option[disabled]{color:#94a3b8;font-weight:500}
.hero-iq__select option:checked{background:#0e7490;color:#fff}
.hero-iq__select optgroup{background:#ecfeff;color:#0e7490;font-weight:800}
.hero-iq__btn{background:linear-gradient(135deg,#16a34a,#15803d);color:#fff;border:none;border-radius:10px;padding:11px 16px;font-size:14px;font-weight:700;cursor:pointer;white-space:nowrap;font-family:inherit;transition:filter .15s ease,transform .15s ease}
.hero-iq__btn:hover{filter:brightness(1.07);transform:translateY(-1px)}
.hero-iq__price{display:flex;align-items:baseline;gap:10px;flex-wrap:wrap}
.hero-iq__price strong{font-size:34px;font-weight:800;color:#f4663f;line-height:1}
.hero-iq__price small{font-size:13px;color:#64748b;font-weight:600}
.hero-iq__actions{display:flex;align-items:center;gap:14px;margin-top:12px;flex-wrap:wrap}
/* Vehicle photo in result */
.hero-iq__vimg{width:100%;height:132px;object-fit:contain;border-radius:12px;background:#f8fafc;padding:8px;margin-bottom:8px}
.hero-iq__vehicle-name{font-size:15px;font-weight:800;color:#0f172a;text-align:center;margin:2px 0 6px}
/* Anchor line */
.hero-iq__anchor{font-size:12px;color:#94a3b8;font-weight:600;text-align:center;margin-bottom:4px}
.hero-iq__anchor s{color:#ef4444;text-decoration-color:#ef4444}
/* Hero price */
.hero-iq__price-hero{text-align:center;line-height:1;margin-bottom:2px}
.hero-iq__price-hero strong{font-size:56px;font-weight:900;color:#16a34a;letter-spacing:-.03em}
.hero-iq__price-caption{font-size:12px;color:#64748b;font-weight:700;text-align:center;margin-bottom:12px}

.hero-iq__upgrade{margin:0 0 12px}
.hero-iq__upgrade-label{display:block;font-size:12px;font-weight:700;color:#0e7490;margin:0 0 6px 2px}
/* Perks strip */
.hero-iq__perks-strip{display:grid;grid-template-columns:1fr 1fr;gap:8px 10px;margin-bottom:14px;padding:12px;background:#f0fdf4;border-radius:11px;border:1px solid #bbf7d0}
.hero-iq__perks-strip span{display:flex;align-items:center;gap:6px;font-size:12px;font-weight:700;color:#15803d}
.hero-iq__perks-strip i{font-size:14px;flex-shrink:0}
/* CTA */
.hero-iq__reserve{display:flex;align-items:center;justify-content:center;gap:6px;background:linear-gradient(135deg,#F4663F,#E2452A);color:#fff;font-weight:700;font-size:15px;padding:14px 20px;border-radius:11px;text-decoration:none;box-shadow:0 10px 24px -10px rgba(228,69,42,.55);transition:filter .15s ease,transform .15s ease;width:100%;text-align:center}
.hero-iq__reserve:hover{filter:brightness(1.05);transform:translateY(-1px)}
.hero-iq__back{display:block;background:none;border:none;color:#94a3b8;font-size:12px;font-weight:600;text-decoration:none;cursor:pointer;font-family:inherit;text-align:center;margin-top:8px;width:100%}
.hero-iq__note{font-size:12px;color:#64748b;margin:10px 0 0}
.hero-iq__wa{display:inline-flex;align-items:center;gap:6px;margin-top:12px;font-size:13px;font-weight:600;color:#15803d;text-decoration:none}
.hero-iq__wa:hover{text-decoration:underline}
.hero-iq__wa i{font-size:16px}
/* Panel mode: right-hand card in hero */
.hero-iq--panel{max-width:none;padding:22px;margin:0}
@media(min-width:640px){.hero-iq--panel{padding:26px}}
.hero-iq--panel .hero-iq__row{grid-template-columns:1fr;gap:12px}
.hero-iq--panel .hero-iq__select{padding:13px 30px 13px 13px;font-size:15px}
.hero-iq--panel .hero-iq__btn{width:100%;padding:14px;font-size:15px;border-radius:12px}
/* Trip type toggle (Arrival / Departure / Two-way) */
.hero-iq__trip{display:grid;grid-template-columns:repeat(3,1fr);gap:5px;background:#f1f5f9;border-radius:12px;padding:4px;margin:0 0 14px;grid-column:1/-1}
.hero-iq__trip button{appearance:none;border:none;background:transparent;cursor:pointer;font-family:inherit;font-size:13px;font-weight:700;color:#64748b;padding:9px 4px;border-radius:9px;transition:background .15s ease,color .15s ease;display:flex;align-items:center;justify-content:center;gap:5px}
.hero-iq__trip button.is-active{background:#fff;color:#0e7490;box-shadow:inset 0 0 0 1px rgba(14,116,144,.32),0 2px 6px -2px rgba(12,74,94,.2)}
.hero-iq__trip button i{font-size:15px}
/* Passenger selector (button group, sits above the destination field) */
.hero-iq__pax{grid-column:1/-1;margin:0 0 2px}
.hero-iq__pax-btns{display:grid;grid-template-columns:repeat(3,1fr);gap:5px;background:#f1f5f9;border-radius:12px;padding:4px}
.hero-iq__pax-btns button{appearance:none;border:none;background:transparent;cursor:pointer;font-family:inherit;font-size:14px;font-weight:700;color:#64748b;padding:11px 4px;border-radius:9px;transition:background .15s ease,color .15s ease;display:flex;align-items:baseline;justify-content:center;gap:4px}
.hero-iq__pax-btns button.is-active{background:#fff;color:#0e7490;box-shadow:inset 0 0 0 1px rgba(14,116,144,.32),0 2px 6px -2px rgba(12,74,94,.2)}
.hero-iq__pax-unit{font-size:11px;font-weight:600;color:#94a3b8}
.hero-iq__pax-btns button.is-active .hero-iq__pax-unit{color:#0e7490}
/* Destination free-text input + datalist (type or pick) */
.hero-iq__input{cursor:text}
.hero-iq__input::-webkit-calendar-picker-indicator{opacity:0;cursor:pointer}
.hero-iq__input::placeholder{color:#94a3b8;font-weight:500}
.hero-iq__hint{display:block;font-size:11px;font-weight:600;color:#94a3b8;margin:5px 0 0 2px}
.faq-item{background:#fff!important;border-radius:14px!important;border:1px solid #eef2f4!important;box-shadow:none!important}
.faq-item:hover{border-color:#bae6fd!important}

/* ─── WhatsApp section ──────────────────────────────────── */
.at-wa-section{background:#fff8f0;border-top:1px solid #e8edf3}

/* ─── Comparison table ──────────────────────────────────── */
.at-compare-section{background:#fff;border-top:1px solid #e8edf3}

/* ─── Mobile sticky bar ─────────────────────────────────── */
#at-mobile-sticky{transition:transform .25s ease}
#at-mobile-sticky.hidden-bar{transform:translateY(100%)}

/* --- Vehicle cards: warm lift + coral price --- */
.mu-vehicle {
  background: #fff;
  border: 1px solid #eef2f4;
  border-radius: 18px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  box-shadow: 0 1px 2px rgba(12,74,94,.04);
}
.mu-vehicle:hover {
  transform: translateY(-5px);
  border-color: #a5f3fc;
  box-shadow: 0 22px 40px -16px rgba(14,116,144,.28);
}
.mu-price { color: #f4663f; }
.mu-vehicle .mu-book-btn {
  border-color: #0e7490;
  color: #0e7490;
}
.mu-vehicle:hover .mu-book-btn {
  background: linear-gradient(135deg, #F4663F, #E2452A);
  border-color: transparent;
  color: #fff;
}

/* --- Lagoon feature panel (What's included) --- */
.mu-lagoon-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(251,191,36,.22) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 0% 100%, rgba(34,211,238,.28) 0%, transparent 55%),
    linear-gradient(135deg, #0c4a5e 0%, #0e7490 55%, #0d9488 100%);
  color: #fff;
  box-shadow: 0 30px 60px -24px rgba(12,74,94,.55);
}
.mu-inc-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.mu-inc-item i {
  font-size: 22px;
  color: #fcd34d;
  flex-shrink: 0;
  line-height: 1;
}
.mu-inc-item .mu-inc-t { font-weight: 700; color: #fff; }
.mu-inc-item .mu-inc-d { color: rgba(255,255,255,.78); font-size: 13px; }

/* --- Palm-frond watermark for tropical sections --- */
.mu-frond {
  position: absolute;
  pointer-events: none;
  opacity: .07;
  z-index: 0;
}

/* --- Routes: island-explorer flavour --- */
.routes-table tbody tr:hover { background: #ecfeff; }
.routes-table .route-price { color: #f4663f; }

@media (prefers-reduced-motion: no-preference) {
  .mu-vehicle, .mu-step__circle { will-change: transform; }
}
