/* ============================================================
   Port Miami Transfers — Design System
   Ocean-navy premium travel aesthetic
   ============================================================ */

:root {
  /* --- Ocean navy scale --- */
  --navy-950: #060d1a;
  --navy-900: #0a1426;
  --navy-850: #0d1b30;
  --navy-800: #102543;
  --navy-750: #16304f;
  --navy-700: #1d3c61;
  --navy-600: #29507c;

  /* --- Surfaces / glass --- */
  --glass: rgba(20, 41, 71, 0.55);
  --glass-2: rgba(14, 29, 52, 0.72);
  --hairline: rgba(150, 185, 230, 0.14);
  --hairline-strong: rgba(150, 185, 230, 0.26);

  /* --- Text --- */
  --ink: #eef4ff;
  --ink-soft: #c7d6ec;
  --muted: #8ba3c4;
  --muted-dim: #61759a;

  /* --- Accents --- */
  --gold: #ecbd6e;
  --gold-bright: #f7d599;
  --gold-deep: #c8923f;
  --coral: #ff7d68;
  --coral-deep: #e85c47;
  --ocean: #45b6e0;
  --ocean-bright: #6fd2f0;

  /* --- Gradients --- */
  --grad-gold: linear-gradient(135deg, #f7d599 0%, #ecbd6e 45%, #d99f4a 100%);
  --grad-coral: linear-gradient(135deg, #ff9a7d 0%, #ff7d68 50%, #e85c47 100%);
  --grad-ocean: linear-gradient(135deg, #6fd2f0 0%, #45b6e0 50%, #2f7fb8 100%);
  --grad-cta: linear-gradient(135deg, #f7d599 0%, #ecbd6e 40%, #ff9a7d 110%);

  /* --- Shadows --- */
  --sh-sm: 0 2px 10px rgba(3, 10, 22, 0.35);
  --sh-md: 0 14px 40px rgba(3, 10, 22, 0.45);
  --sh-lg: 0 30px 80px rgba(3, 10, 22, 0.55);
  --sh-gold: 0 18px 50px rgba(236, 189, 110, 0.28);

  /* --- Geometry --- */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  --maxw: 1500px;
  --gut: clamp(20px, 5vw, 64px);

  /* --- Type --- */
  --display: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
  --body: "Plus Jakarta Sans", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--navy-950);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient background field behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 700px at 78% -8%, rgba(69, 182, 224, 0.16), transparent 60%),
    radial-gradient(900px 620px at 8% 12%, rgba(236, 189, 110, 0.10), transparent 58%),
    radial-gradient(1000px 800px at 50% 108%, rgba(255, 125, 104, 0.10), transparent 60%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 40%, var(--navy-950) 100%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; margin: 0; }

::selection { background: rgba(236, 189, 110, 0.3); color: #fff; }

/* ============================================================
   Layout helpers
   ============================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }

.section { position: relative; padding: clamp(72px, 11vw, 140px) 0; }
.section--tight { padding: clamp(56px, 8vw, 100px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: var(--grad-gold); border-radius: 2px;
}

.sec-head { max-width: 740px; margin-bottom: clamp(36px, 5vw, 60px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow::before { display: none; }
.sec-title { font-size: clamp(2rem, 4.4vw, 3.3rem); }
.sec-title .hl { color: var(--gold); }
.sec-sub { color: var(--muted); font-size: 1.075rem; margin-top: 18px; max-width: 62ch; }
.sec-head.center .sec-sub { margin-inline: auto; }

/* Header, footer, progress bar, drawer & floating actions live in header-footer.css */

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 600; font-size: 0.98rem;
  padding: 15px 26px; border-radius: var(--r-pill);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap; line-height: 1; position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--grad-cta); color: #2a1c08; box-shadow: var(--sh-gold); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 24px 60px rgba(236, 189, 110, 0.4); }
.btn--ghost { background: rgba(150, 185, 230, 0.07); color: var(--ink); border: 1px solid var(--hairline-strong); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--gold); color: #fff; background: rgba(236, 189, 110, 0.1); }
.btn--sm { padding: 11px 20px; font-size: 0.9rem; }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }

/* shine sweep on primary */
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-18deg); transition: left 0.7s var(--ease);
}
.btn--primary:hover::after { left: 140%; }

/* ============================================================
   Glass card primitive
   ============================================================ */
.card {
  background: var(--glass);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--sh-md);
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding-top: 96px; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(900px 600px at 70% 40%, rgba(69,182,224,0.10), transparent 65%),
    linear-gradient(180deg, rgba(6,13,26,0.2) 0%, rgba(6,13,26,0.5) 70%, var(--navy-950) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 8px; border-radius: var(--r-pill);
  background: rgba(150,185,230,0.08); border: 1px solid var(--hairline-strong);
  font-size: 0.84rem; font-weight: 500; color: var(--ink-soft); margin-bottom: 26px;
  backdrop-filter: blur(8px);
}
.hero-badge b { display: inline-flex; align-items: center; gap: 5px; padding: 4px 11px; border-radius: var(--r-pill); background: var(--grad-cta); color: #2a1c08; font-family: var(--display); font-weight: 700; font-size: 0.74rem; }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #43d17a; box-shadow: 0 0 0 0 rgba(67,209,122,0.7); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(67,209,122,0.6);} 70% { box-shadow: 0 0 0 9px rgba(67,209,122,0);} 100% { box-shadow: 0 0 0 0 rgba(67,209,122,0);} }

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.7rem); line-height: 1.03; letter-spacing: -0.03em;
}
.hero h1 .grad { background: var(--grad-cta); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--ink-soft); max-width: 56ch; margin: 26px 0 36px; line-height: 1.55; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 44px; }
.hero__trust .t { display: flex; flex-direction: column; gap: 2px; }
.hero__trust .t b { font-family: var(--display); font-size: 1.7rem; font-weight: 700; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__trust .t span { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.02em; }
.hero__trust .t + .t { padding-left: 28px; border-left: 1px solid var(--hairline); }

/* hero side card — quick quote */
.hero-quote { padding: 26px; }
.hero-quote h3 { font-size: 1.15rem; margin-bottom: 4px; }
.hero-quote p.muted { color: var(--muted); font-size: 0.88rem; margin: 0 0 20px; }
.hero-route { display: flex; align-items: stretch; gap: 14px; margin-bottom: 16px; }
.hero-route__line { display: flex; flex-direction: column; align-items: center; padding-top: 18px; }
.hero-route__line i { width: 11px; height: 11px; border-radius: 50%; border: 2px solid var(--gold); }
.hero-route__line i.fill { background: var(--gold); }
.hero-route__line s { flex: 1; width: 2px; background: linear-gradient(var(--gold), var(--ocean)); margin: 4px 0; border-radius: 2px; }
.hero-route__fields { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.scrolldown { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; }
.scrolldown .mouse { width: 24px; height: 38px; border: 2px solid var(--hairline-strong); border-radius: 14px; display: flex; justify-content: center; padding-top: 7px; }
.scrolldown .mouse i { width: 4px; height: 8px; background: var(--gold); border-radius: 2px; animation: scrolly 1.8s infinite; }
@keyframes scrolly { 0% { opacity: 0; transform: translateY(-3px);} 40% { opacity: 1;} 80%,100% { opacity: 0; transform: translateY(8px);} }

/* form fields shared */
.field { position: relative; }
.field label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.input {
  width: 100%; padding: 13px 15px; border-radius: var(--r-sm);
  background: rgba(8,17,33,0.6); border: 1px solid var(--hairline);
  color: var(--ink); transition: border-color 0.25s, box-shadow 0.25s, background 0.25s; outline: none;
}
.input::placeholder { color: var(--muted-dim); }
.input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(236,189,110,0.16); background: rgba(8,17,33,0.85); }
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238ba3c4' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about__copy p { color: var(--ink-soft); margin: 0 0 18px; }
.about__copy p:first-of-type { font-size: 1.16rem; color: var(--ink); }
.about__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: var(--r-pill); background: rgba(150,185,230,0.07); border: 1px solid var(--hairline); font-size: 0.86rem; font-weight: 500; }
.chip svg { width: 15px; height: 15px; color: var(--gold); }

.about__media { position: relative; }
.about__media image-slot { width: 100%; height: 480px; border-radius: var(--r-xl); box-shadow: var(--sh-lg); }
.about__media .float {
  position: absolute; left: -22px; bottom: 34px; padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
}
.about__media .float .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--grad-cta); display: grid; place-items: center; color: #2a1c08; flex: none; }
.about__media .float .ic svg { width: 24px; height: 24px; }
.about__media .float b { font-family: var(--display); display: block; font-size: 1.5rem; line-height: 1; }
.about__media .float span { font-size: 0.8rem; color: var(--muted); }
.about__media .anchor { position: absolute; top: -18px; right: -14px; width: 92px; height: 92px; border-radius: 22px; background: var(--grad-ocean); opacity: 0.18; filter: blur(2px); z-index: -1; }

/* ============================================================
   WHY US — feature grid
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature {
  padding: 28px 24px; border-radius: var(--r-lg);
  background: var(--glass); border: 1px solid var(--hairline);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s, background 0.4s;
  position: relative; overflow: hidden;
}
.feature::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(236,189,110,0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s;
}
.feature:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: var(--hairline-strong); background: var(--glass-2); }
.feature:hover::before { opacity: 1; }
.feature__ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px; background: rgba(236,189,110,0.12); color: var(--gold); transition: transform 0.4s var(--ease); }
.feature:hover .feature__ic { transform: scale(1.08) rotate(-4deg); }
.feature__ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature p { font-size: 0.9rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ============================================================
   SHARED vs PRIVATE toggle
   ============================================================ */
.svp { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.svp__left .toggle-wrap { display: inline-flex; align-items: center; gap: 16px; margin: 26px 0 18px; }
.toggle-label { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--muted); transition: color 0.3s; }
.toggle-label.on { color: var(--gold); }
.toggle {
  width: 78px; height: 40px; border-radius: var(--r-pill); padding: 4px;
  background: var(--navy-800); border: 1px solid var(--hairline-strong); position: relative; cursor: pointer; flex: none;
}
.toggle__knob { width: 32px; height: 32px; border-radius: 50%; background: var(--grad-cta); box-shadow: var(--sh-sm); transition: transform 0.4s var(--ease); }
.toggle.private .toggle__knob { transform: translateX(38px); background: var(--grad-ocean); }
.svp__note { color: var(--muted); font-size: 0.95rem; max-width: 42ch; }

.svp__panels { position: relative; }
.svp-card { padding: 30px; }
.svp-card.hidden-fade { display: none; }
.svp-card__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--hairline); }
.svp-card__head h3 { font-size: 1.5rem; }
.svp-card__head .tag { font-size: 0.78rem; font-weight: 600; padding: 6px 13px; border-radius: var(--r-pill); }
.tag--shared { background: rgba(69,182,224,0.15); color: var(--ocean-bright); }
.tag--private { background: rgba(236,189,110,0.15); color: var(--gold-bright); }
.svp-rows { display: flex; flex-direction: column; gap: 2px; }
.svp-row { display: grid; grid-template-columns: 130px 1fr; gap: 14px; padding: 13px 0; border-bottom: 1px solid rgba(150,185,230,0.07); }
.svp-row:last-child { border-bottom: none; }
.svp-row .k { font-size: 0.82rem; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; padding-top: 2px; }
.svp-row .v { font-size: 0.98rem; color: var(--ink); }
@keyframes fadeUpIn { from { opacity: 0; transform: translateY(14px);} to { opacity: 1; transform: none; } }
.svp-card.show { animation: fadeUpIn 0.5s var(--ease); }

/* ============================================================
   PRICING tabs
   ============================================================ */
.tabs { display: inline-flex; gap: 6px; padding: 6px; border-radius: var(--r-pill); background: var(--navy-850); border: 1px solid var(--hairline); margin-bottom: 40px; position: relative; flex-wrap: wrap; }
.tab { padding: 12px 24px; border-radius: var(--r-pill); font-family: var(--display); font-weight: 600; font-size: 0.92rem; color: var(--muted); transition: color 0.3s; position: relative; z-index: 1; }
.tab.active { color: #2a1c08; }
.tab-ind { position: absolute; top: 6px; bottom: 6px; border-radius: var(--r-pill); background: var(--grad-cta); transition: left 0.4s var(--ease), width 0.4s var(--ease); z-index: 0; box-shadow: var(--sh-gold); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { padding: 30px 26px; border-radius: var(--r-lg); background: var(--glass); border: 1px solid var(--hairline); transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s; position: relative; }
.price-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: var(--hairline-strong); }
.price-card.feat { border-color: rgba(236,189,110,0.4); background: linear-gradient(180deg, rgba(236,189,110,0.08), var(--glass)); }
.price-card.feat::after { content: "Most Popular"; position: absolute; top: 20px; right: 22px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-bright); }
.price-card .pc-veh { display: inline-flex; align-items: center; gap: 9px; font-size: 0.82rem; font-weight: 600; color: var(--ocean-bright); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.price-card .pc-veh svg { width: 18px; height: 18px; }
.price-card h3 { font-size: 1.22rem; margin-bottom: 6px; line-height: 1.2; }
.price-card .cap { font-size: 0.86rem; color: var(--muted); margin-bottom: 22px; }
.price-card .amt { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.price-card .amt b { font-family: var(--display); font-size: 2.4rem; font-weight: 700; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-card .amt .cur { font-size: 1.2rem; color: var(--gold); font-weight: 700; }
.price-card .amt s { color: var(--muted); font-size: 0.86rem; text-decoration: none; }
.price-card .pc-foot { margin-top: 22px; }
.pricing-note { margin-top: 28px; text-align: center; color: var(--muted); font-size: 0.92rem; }
.pricing-note svg { width: 16px; height: 16px; vertical-align: -3px; color: var(--gold); margin-right: 6px; }

/* ============================================================
   BOOKING widget
   ============================================================ */
.booking-shell { position: relative; }
.booking-card { padding: clamp(28px, 4vw, 48px); position: relative; border-radius: var(--r-xl); }
.booking-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: var(--grad-cta);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.6; pointer-events: none;
}
.booking-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.booking-grid .field--wide { grid-column: span 2; }
.booking-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--hairline); }
.booking-steps { display: flex; gap: 22px; flex-wrap: wrap; }
.booking-steps .bs { display: flex; align-items: center; gap: 11px; font-size: 0.9rem; color: var(--ink-soft); }
.booking-steps .bs i { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: rgba(236,189,110,0.14); color: var(--gold); font-family: var(--display); font-weight: 700; font-size: 0.82rem; font-style: normal; }

/* ============================================================
   FLEET carousel
   ============================================================ */
.fleet { position: relative; }
.fleet__viewport { overflow: hidden; border-radius: var(--r-xl); }
.fleet__track { display: flex; transition: transform 0.6s var(--ease); }
.fleet-slide { min-width: 100%; display: grid; grid-template-columns: 1.1fr 0.9fr; }
.fleet-slide__media { position: relative; min-height: 440px; }
.fleet-slide__media image-slot { width: 100%; height: 100%; border-radius: 0; }
.fleet-slide__body { padding: clamp(30px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; background: var(--glass-2); }
.fleet-slide__body .num { font-family: var(--display); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 14px; }
.fleet-slide__body h3 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 8px; }
.fleet-slide__body .cap-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; border-radius: var(--r-pill); background: rgba(69,182,224,0.13); color: var(--ocean-bright); font-size: 0.86rem; font-weight: 600; margin-bottom: 22px; align-self: flex-start; }
.fleet-slide__body .cap-badge svg { width: 16px; height: 16px; }
.fleet-slide__body p { color: var(--ink-soft); margin: 0 0 26px; max-width: 46ch; }
.fleet-slide__specs { display: flex; gap: 28px; flex-wrap: wrap; }
.fleet-slide__specs .sp { }
.fleet-slide__specs .sp b { font-family: var(--display); display: block; font-size: 1.4rem; }
.fleet-slide__specs .sp span { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.fleet__nav { display: flex; align-items: center; justify-content: space-between; margin-top: 26px; }
.fleet__dots { display: flex; gap: 10px; }
.fleet__dots button { width: 10px; height: 10px; border-radius: 50%; background: var(--hairline-strong); transition: all 0.3s; }
.fleet__dots button.active { width: 30px; border-radius: var(--r-pill); background: var(--grad-cta); }
.fleet__arrows { display: flex; gap: 12px; }
.arrow-btn { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--hairline-strong); background: var(--glass); display: grid; place-items: center; transition: all 0.3s var(--ease); }
.arrow-btn:hover { background: var(--grad-cta); color: #2a1c08; transform: scale(1.06); border-color: transparent; }
.arrow-btn svg { width: 20px; height: 20px; }

/* ============================================================
   ACCORDION (ports + faqs)
   ============================================================ */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc-item { border: 1px solid var(--hairline); border-radius: var(--r-md); background: var(--glass); overflow: hidden; transition: border-color 0.3s, background 0.3s; }
.acc-item.open { border-color: rgba(236,189,110,0.35); background: var(--glass-2); }
.acc-head { width: 100%; display: flex; align-items: center; gap: 18px; padding: 22px 26px; text-align: left; transition: background 0.25s; }
.acc-head:hover { background: rgba(150,185,230,0.05); }
.acc-head .acc-ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(69,182,224,0.12); color: var(--ocean-bright); display: grid; place-items: center; flex: none; }
.acc-head .acc-ic svg { width: 20px; height: 20px; }
.acc-head h3 { font-size: 1.1rem; flex: 1; }
.acc-head .chev { width: 26px; height: 26px; flex: none; transition: transform 0.4s var(--ease); color: var(--gold); }
.acc-item.open .chev { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.acc-body__inner { padding: 0 26px 26px 84px; color: var(--ink-soft); }
.acc-body__inner p { margin: 0 0 14px; }
.acc-body__inner p:last-child { margin-bottom: 0; }

/* terminal mini-table inside accordion */
.term-table { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; margin-top: 4px; }
.term-cell { padding: 13px 16px; border-radius: var(--r-sm); background: rgba(8,17,33,0.5); border: 1px solid var(--hairline); }
.term-cell b { font-family: var(--display); color: var(--gold); font-size: 0.95rem; }
.term-cell span { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 2px; }
.time-list { display: flex; flex-direction: column; gap: 0; }
.time-list .tl { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid rgba(150,185,230,0.08); }
.time-list .tl:last-child { border-bottom: none; }
.time-list .tl .route { color: var(--ink); }
.time-list .tl .mins { font-family: var(--display); font-weight: 600; color: var(--gold); white-space: nowrap; }
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.area-grid .ar b { color: var(--ink); display: block; margin-bottom: 3px; }
.area-grid .ar span { font-size: 0.86rem; color: var(--muted); }

/* FAQ search */
.faq-search { position: relative; max-width: 520px; margin: 0 auto 36px; }
.faq-search svg.lens { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--muted); pointer-events: none; }
.faq-search input { width: 100%; padding: 16px 18px 16px 50px; border-radius: var(--r-pill); background: var(--glass); border: 1px solid var(--hairline-strong); color: var(--ink); outline: none; transition: border-color 0.25s, box-shadow 0.25s; }
.faq-search input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(236,189,110,0.16); }
.faq-empty { text-align: center; color: var(--muted); padding: 30px; display: none; }
.faq-empty.show { display: block; }
.acc-item.filtered-out { display: none; }
mark { background: rgba(236,189,110,0.3); color: var(--gold-bright); border-radius: 3px; padding: 0 2px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst { position: relative; max-width: 880px; margin: 0 auto; }
.tst__viewport { position: relative; min-height: 280px; }
.tst-card { position: absolute; inset: 0; padding: clamp(30px, 4vw, 48px); text-align: center; opacity: 0; transform: translateY(16px) scale(0.98); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); pointer-events: none; }
.tst-card.active { opacity: 1; transform: none; pointer-events: auto; }
.tst-stars { display: inline-flex; gap: 4px; margin-bottom: 22px; color: var(--gold); }
.tst-stars svg { width: 22px; height: 22px; }
.tst-quote { font-family: var(--display); font-size: clamp(1.2rem, 2.4vw, 1.7rem); line-height: 1.45; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 26px; text-wrap: balance; }
.tst-author { display: flex; align-items: center; justify-content: center; gap: 13px; }
.tst-author .av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-ocean); display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: #06121f; }
.tst-author .nm { text-align: left; }
.tst-author .nm b { display: block; font-family: var(--display); }
.tst-author .nm span { font-size: 0.84rem; color: var(--muted); }
.tst__nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 30px; }
.tst__dots { display: flex; gap: 9px; }
.tst__dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--hairline-strong); transition: all 0.3s; }
.tst__dots button.active { width: 28px; border-radius: var(--r-pill); background: var(--grad-cta); }
.quote-mark { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); font-family: var(--display); font-size: 7rem; line-height: 1; color: rgba(236,189,110,0.1); z-index: -1; }

/* ============================================================
   HOW TO BOOK — stepper
   ============================================================ */
.stepper { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 20px; }
.step { position: relative; padding: 0 16px; text-align: center; }
.step__rail { position: absolute; top: 33px; left: 50%; right: -50%; height: 3px; background: var(--hairline); z-index: 0; }
.step:last-child .step__rail { display: none; }
.step__rail i { position: absolute; inset: 0; width: 0; background: var(--grad-cta); transition: width 0.8s var(--ease); border-radius: 3px; }
.step.lit .step__rail i { width: 100%; }
.step__num { width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 22px; display: grid; place-items: center; background: var(--navy-800); border: 2px solid var(--hairline-strong); position: relative; z-index: 1; transition: all 0.5s var(--ease); color: var(--muted); }
.step.lit .step__num { background: var(--grad-cta); color: #2a1c08; border-color: transparent; box-shadow: var(--sh-gold); transform: scale(1.05); }
.step__num svg { width: 28px; height: 28px; }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 64px); }
.contact__info { display: flex; flex-direction: column; gap: 14px; }
.ci-row { display: flex; align-items: flex-start; gap: 16px; padding: 20px; border-radius: var(--r-md); background: var(--glass); border: 1px solid var(--hairline); transition: border-color 0.3s, transform 0.3s; }
.ci-row:hover { border-color: var(--hairline-strong); transform: translateX(4px); }
.ci-row .ic { width: 46px; height: 46px; border-radius: 13px; background: rgba(236,189,110,0.12); color: var(--gold); display: grid; place-items: center; flex: none; }
.ci-row .ic svg { width: 22px; height: 22px; }
.ci-row b { font-family: var(--display); display: block; font-size: 1.02rem; margin-bottom: 2px; }
.ci-row span { color: var(--muted); font-size: 0.92rem; }
.ci-row a { color: var(--gold-bright); }
.contact__form { padding: clamp(28px, 3.5vw, 40px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-single { margin-bottom: 16px; }
textarea.input { resize: vertical; min-height: 110px; }
.form-success { display: none; align-items: center; gap: 10px; margin-top: 16px; padding: 14px 18px; border-radius: var(--r-sm); background: rgba(67,209,122,0.12); border: 1px solid rgba(67,209,122,0.3); color: #7be3a4; font-size: 0.92rem; }
.form-success.show { display: flex; }

/* ============================================================
   Scroll-reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }
.reveal[data-delay="7"] { transition-delay: 0.56s; }

/* ============================================================
   HERO banner background image + overlay
   ============================================================ */
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,13,26,0.62) 0%, rgba(8,17,33,0.68) 45%, rgba(6,13,26,0.94) 100%),
    linear-gradient(105deg, rgba(6,13,26,0.86) 0%, rgba(6,13,26,0.45) 55%, rgba(6,13,26,0.25) 100%);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: 0.7; }

/* ============================================================
   ALL-INCLUSIVE highlight card (Why Us)
   ============================================================ */
.allinc {
  grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 22px;
  padding: 26px 30px; border-radius: var(--r-lg); margin-top: 4px;
  background: linear-gradient(120deg, rgba(236,189,110,0.12), rgba(255,125,104,0.08));
  border: 1px solid rgba(236,189,110,0.32);
}
.allinc__ic { width: 56px; height: 56px; border-radius: 15px; background: var(--grad-cta); color: #2a1c08; display: grid; place-items: center; flex: none; }
.allinc__ic svg { width: 28px; height: 28px; }
.allinc__txt { flex: 1; min-width: 260px; }
.allinc__txt h3 { font-size: 1.18rem; margin-bottom: 5px; }
.allinc__txt p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
.allinc__txt b { color: var(--gold-bright); }
.allinc__addons { display: flex; gap: 12px; flex-wrap: wrap; }
.allinc__addons .ao { padding: 11px 17px; border-radius: var(--r-sm); background: rgba(8,17,33,0.5); border: 1px solid var(--hairline); font-size: 0.86rem; white-space: nowrap; }
.allinc__addons .ao b { font-family: var(--display); color: var(--gold); }

/* ============================================================
   PRIVATE vs RIDESHARE comparison
   ============================================================ */
.compare { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--hairline); background: var(--glass); }
.compare__head { display: grid; grid-template-columns: 1.1fr 1fr 1fr; }
.compare__head > div { padding: 22px 24px; }
.compare__head .ch-label { display: flex; align-items: flex-end; font-family: var(--display); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.compare__head .ch-ours { background: linear-gradient(180deg, rgba(236,189,110,0.16), rgba(236,189,110,0.06)); border-left: 1px solid rgba(236,189,110,0.3); border-right: 1px solid rgba(236,189,110,0.3); }
.compare__head .ch-ours b, .compare__head .ch-theirs b { font-family: var(--display); font-size: 1.18rem; display: block; }
.compare__head .ch-ours b { color: var(--gold-bright); }
.compare__head .ch-ours span, .compare__head .ch-theirs span { font-size: 0.82rem; color: var(--muted); }
.cmp-row { display: grid; grid-template-columns: 1.1fr 1fr 1fr; border-top: 1px solid var(--hairline); }
.cmp-row > div { padding: 18px 24px; display: flex; align-items: center; gap: 11px; font-size: 0.95rem; }
.cmp-k { font-family: var(--display); font-weight: 600; color: var(--ink); font-size: 0.92rem !important; }
.cmp-ours { background: rgba(236,189,110,0.05); border-left: 1px solid rgba(236,189,110,0.3); border-right: 1px solid rgba(236,189,110,0.3); color: var(--ink); }
.cmp-ours svg { width: 19px; height: 19px; color: #43d17a; flex: none; }
.cmp-theirs { color: var(--muted); }
.cmp-theirs svg { width: 18px; height: 18px; color: var(--coral); flex: none; }
.compare__foot { display: grid; grid-template-columns: 1.1fr 1fr 1fr; border-top: 1px solid var(--hairline); }
.compare__foot > div { padding: 22px 24px; }
.compare__foot .cf-ours { background: rgba(236,189,110,0.08); border-left: 1px solid rgba(236,189,110,0.3); border-right: 1px solid rgba(236,189,110,0.3); }
@media (max-width: 760px) {
  .compare__head, .cmp-row, .compare__foot { grid-template-columns: 1fr; }
  .compare__head .ch-label { display: none; }
  .compare__head > div, .cmp-row > div, .compare__foot > div { padding: 14px 18px; }
  .cmp-k { background: rgba(8,17,33,0.4); }
  .cmp-ours, .cmp-theirs, .ch-ours, .ch-theirs, .cf-ours { border-left: none !important; border-right: none !important; }
  .cmp-theirs { border-top: 1px dashed var(--hairline); }
}

/* ============================================================
   FLEET grid — lighter stage so cars pop
   ============================================================ */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fleet-grid .fcard:nth-child(4), .fleet-grid .fcard:nth-child(5) { grid-column: span 1; }
.fcard {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--hairline);
  background: var(--glass); display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.fcard:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: var(--hairline-strong); }
.fcard__stage {
  position: relative; aspect-ratio: 16 / 10; display: grid; place-items: center; padding: 22px;
  background:
    radial-gradient(120% 90% at 50% 18%, rgba(206,224,247,0.20), transparent 70%),
    linear-gradient(165deg, #d7e3f3 0%, #aebfd6 48%, #8194b4 100%);
}
.fcard__stage img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 24px 28px rgba(3,10,22,0.45)); transition: transform 0.5s var(--ease); }
.fcard:hover .fcard__stage img { transform: scale(1.05); }
.fcard__cap { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: var(--r-pill); background: rgba(8,17,33,0.82); border: 1px solid var(--hairline-strong); color: var(--gold-bright); font-size: 0.8rem; font-weight: 700; backdrop-filter: blur(6px); }
.fcard__cap svg { width: 15px; height: 15px; }
.fcard__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.fcard__body h3 { font-size: 1.28rem; margin-bottom: 3px; }
.fcard__model { font-size: 0.84rem; font-weight: 600; color: var(--ocean-bright); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 13px; }
.fcard__body p { color: var(--muted); font-size: 0.92rem; margin: 0 0 18px; line-height: 1.55; flex: 1; }
.fcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--hairline); }
.fcard__tags { display: flex; gap: 7px; flex-wrap: wrap; }
.fcard__tags span { font-size: 0.74rem; font-weight: 600; padding: 5px 10px; border-radius: var(--r-pill); background: rgba(150,185,230,0.08); border: 1px solid var(--hairline); color: var(--ink-soft); }
.fcard__foot a { font-family: var(--display); font-weight: 600; font-size: 0.9rem; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.fcard__foot a svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.fcard__foot a:hover svg { transform: translateX(3px); }

/* ============================================================
   BOOKING widget (mylimobiz embed)
   ============================================================ */
.booking-card { padding: clamp(26px, 3.5vw, 42px); position: relative; border-radius: var(--r-xl); }
.booking-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: var(--grad-cta);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.55; pointer-events: none;
}
.booking-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.booking-head h3 { font-size: 1.5rem; }
.booking-head p { margin: 4px 0 0; color: var(--muted); font-size: 0.94rem; }
.booking-steps { display: flex; gap: 22px; flex-wrap: wrap; margin-bottom: 24px; }
.booking-steps .bs { display: flex; align-items: center; gap: 11px; font-size: 0.92rem; color: var(--ink-soft); }
.booking-steps .bs i { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: rgba(236,189,110,0.14); color: var(--gold); font-family: var(--display); font-weight: 700; font-size: 0.84rem; font-style: normal; flex: none; }
.widget-shell { border-radius: var(--r-lg); border: 1px solid var(--hairline); background: rgba(8,17,33,0.5); padding: 22px; min-height: 120px; }
.widget-shell a[data-ores-widget] { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 1.05rem; padding: 17px 32px; border-radius: var(--r-pill); background: var(--grad-cta); color: #2a1c08 !important; box-shadow: var(--sh-gold); text-decoration: none; transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.widget-shell a[data-ores-widget]:hover { transform: translateY(-3px); box-shadow: 0 24px 60px rgba(236,189,110,0.4); }
.widget-fallback { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.widget-fallback p { margin: 0; color: var(--muted); font-size: 0.92rem; flex: 1; min-width: 220px; }

/* ============================================================
   3-up TESTIMONIALS slider
   ============================================================ */
.t3 { position: relative; }
.t3__viewport { overflow: hidden; padding: 10px 4px; }
.t3__track { display: flex; gap: 20px; transition: transform 0.6s var(--ease); }
.t3-card { flex: 0 0 calc((100% - 40px) / 3); box-sizing: border-box; padding: 30px 28px; border-radius: var(--r-lg); background: var(--glass); border: 1px solid var(--hairline); display: flex; flex-direction: column; }
.t3-card .stars { display: inline-flex; gap: 3px; color: var(--gold); margin-bottom: 16px; }
.t3-card .stars svg { width: 18px; height: 18px; }
.t3-card .q { font-size: 1rem; color: var(--ink-soft); line-height: 1.6; margin: 0 0 22px; flex: 1; }
.t3-card .who { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--hairline); }
.t3-card .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-ocean); display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: #06121f; flex: none; }
.t3-card .who b { font-family: var(--display); display: block; font-size: 0.98rem; }
.t3-card .who span { font-size: 0.82rem; color: var(--muted); }
.t3-card .who .badge { margin-left: auto; font-size: 0.7rem; font-weight: 700; color: var(--ocean-bright); display: inline-flex; align-items: center; gap: 4px; }
.t3-card .who .badge svg { width: 13px; height: 13px; }
.t3__nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px; }
.t3__dots { display: flex; gap: 9px; }
.t3__dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--hairline-strong); transition: all 0.3s; }
.t3__dots button.active { width: 28px; border-radius: var(--r-pill); background: var(--grad-cta); }

/* ============================================================
   BLOG cards (homepage section + index)
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bcard { display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--hairline); background: var(--glass); transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s; }
.bcard:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: var(--hairline-strong); }
.bcard__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.bcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.bcard:hover .bcard__media img { transform: scale(1.06); }
.bcard__tag { position: absolute; top: 14px; left: 14px; padding: 6px 13px; border-radius: var(--r-pill); background: rgba(8,17,33,0.82); border: 1px solid var(--hairline-strong); color: var(--gold-bright); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; backdrop-filter: blur(6px); }
.bcard__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.bcard__meta { display: flex; gap: 14px; font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; }
.bcard__meta span { display: inline-flex; align-items: center; gap: 5px; }
.bcard__meta svg { width: 14px; height: 14px; }
.bcard h3 { font-size: 1.2rem; line-height: 1.25; margin-bottom: 10px; }
.bcard p { color: var(--muted); font-size: 0.92rem; margin: 0 0 20px; flex: 1; line-height: 1.55; }
.bcard__more { font-family: var(--display); font-weight: 600; font-size: 0.9rem; color: var(--gold); display: inline-flex; align-items: center; gap: 7px; }
.bcard__more svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.bcard:hover .bcard__more svg { transform: translateX(4px); }

/* ============================================================
   ARTICLE + LEGAL pages
   ============================================================ */
.page-hero { position: relative; padding: clamp(120px, 16vw, 180px) 0 clamp(40px, 6vw, 64px); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,13,26,0.8), rgba(6,13,26,0.95)); }
.crumbs { display: flex; gap: 8px; font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--gold); }
.crumbs span { color: var(--muted-dim); }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); max-width: 20ch; }
.page-hero .lead { color: var(--ink-soft); font-size: 1.1rem; margin-top: 18px; max-width: 60ch; }
.article-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; color: var(--muted); font-size: 0.9rem; }
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-meta svg { width: 16px; height: 16px; color: var(--gold); }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 56px; align-items: start; }
.prose { max-width: 76ch; }
.prose > * { margin: 0 0 20px; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 44px 0 16px; scroll-margin-top: 100px; }
.prose h3 { font-size: 1.25rem; margin: 30px 0 12px; }
.prose p, .prose li { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; }
.prose a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(236,189,110,0.4); }
.prose a:hover { text-decoration-color: var(--gold); }
.prose ul, .prose ol { padding-left: 24px; display: flex; flex-direction: column; gap: 9px; }
.prose li::marker { color: var(--gold); }
.prose strong { color: var(--ink); }
.prose blockquote { border-left: 3px solid var(--gold); padding: 6px 0 6px 24px; margin: 28px 0; font-family: var(--display); font-size: 1.2rem; color: var(--ink); font-style: italic; }
.prose img { border-radius: var(--r-lg); border: 1px solid var(--hairline); width: 100%; }
.prose figure { margin: 28px 0; }
.prose figcaption { color: var(--muted); font-size: 0.86rem; text-align: center; margin-top: 10px; }
.prose .callout { background: var(--glass); border: 1px solid rgba(236,189,110,0.3); border-radius: var(--r-md); padding: 22px 26px; }
.prose .callout p:last-child { margin-bottom: 0; }
.prose .callout strong { color: var(--gold-bright); }
.prose table { width: 100%; border-collapse: collapse; font-size: 0.96rem; }
.prose th, .prose td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--hairline); }
.prose th { font-family: var(--display); color: var(--gold); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
.prose td { color: var(--ink-soft); }

.toc { position: sticky; top: 100px; padding: 26px; }
.toc h4 { font-family: var(--display); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.toc a { display: block; color: var(--muted); font-size: 0.92rem; padding: 7px 0; border-left: 2px solid transparent; padding-left: 14px; margin-left: -2px; transition: color 0.25s, border-color 0.25s; }
.toc a:hover, .toc a.active { color: var(--ink); border-color: var(--gold); }
.toc .btn { margin-top: 18px; }

.share { display: flex; align-items: center; gap: 12px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--hairline); }
.share span { font-family: var(--display); font-weight: 600; font-size: 0.9rem; color: var(--muted); }
.share a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--hairline-strong); display: grid; place-items: center; color: var(--ink-soft); transition: all 0.3s var(--ease); }
.share a:hover { background: var(--grad-cta); color: #2a1c08; border-color: transparent; }
.share a svg { width: 17px; height: 17px; }

.cta-band { margin-top: clamp(48px, 7vw, 80px); padding: clamp(34px, 5vw, 56px); border-radius: var(--r-xl); text-align: center; background: linear-gradient(135deg, rgba(236,189,110,0.14), rgba(69,182,224,0.08)); border: 1px solid rgba(236,189,110,0.3); }
.cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 12px; }
.cta-band p { color: var(--ink-soft); max-width: 52ch; margin: 0 auto 26px; }
.cta-band .row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-quote { max-width: 460px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .t3-card { flex-basis: calc((100% - 20px) / 2); }
  .article-layout { grid-template-columns: 1fr; gap: 36px; }
  .toc { position: static; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .about__grid, .svp, .contact__grid { grid-template-columns: 1fr; }
  .svp__panels { margin-top: 8px; }
  .stepper { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .step__rail { display: none; }
  .about__media image-slot, .about__media img { height: 360px; }
  .t3-card { flex-basis: 100%; }
}
@media (max-width: 560px) {
  :root { --gut: 20px; }
  .features, .price-grid, .form-row, .fleet-grid, .blog-grid { grid-template-columns: 1fr; }
  .stepper { grid-template-columns: 1fr; }
  .hero__trust .t + .t { padding-left: 0; border-left: none; }
  .hero__trust { gap: 20px 28px; }
  .acc-body__inner { padding-left: 26px; }
  .acc-head { padding: 18px; gap: 12px; }
  .allinc { padding: 22px; }
}

/* ============================================================
   Cruise Port Information — 2-column with guide image
   ============================================================ */
.ports__grid { display: grid; grid-template-columns: 66% 34%; gap: clamp(28px, 4vw, 56px); align-items: start; }
.ports__main .sec-head { margin-bottom: 26px; }
.ports__media { position: sticky; top: 100px; }
.ports__media img {
  width: 100%; height: auto; display: block;
  border-radius: var(--r-xl);
  border: 1px solid var(--hairline-strong);
  box-shadow: var(--sh-lg);
}
@media (max-width: 860px) {
  .ports__grid { grid-template-columns: 1fr; }
  .ports__media { position: static; max-width: 520px; margin: 0 auto; }
}

/* ============================================================
   Hero quote card — fleet lineup image
   ============================================================ */
.hero-fleet {
  margin: 16px 0 16px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: radial-gradient(120% 140% at 50% 30%, #fdfdfd 0%, #eef1f5 60%, #dde3ea 100%);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 10px 26px rgba(0,0,0,0.45);
}
.hero-fleet img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.25));
}

/* ============================================================
   Pricing — route selector + all-inclusive price table
   ============================================================ */
.price-route { max-width: 560px; margin: 0 auto 32px; text-align: center; }
.price-route label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 10px; }
.price-route__field { position: relative; }
.price-route__field .input {
  width: 100%; appearance: none; -webkit-appearance: none;
  padding-right: 46px; cursor: pointer;
  font-family: var(--display); font-weight: 600; font-size: 1.04rem;
}
.price-route__chev { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--gold); pointer-events: none; }

.ptable {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--hairline); background: var(--glass);
}
.prow {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; gap: 18px;
  padding: 15px 22px; border-top: 1px solid var(--hairline);
}
.prow:first-child { border-top: none; }
.prow.feat { background: linear-gradient(90deg, rgba(236,189,110,0.12), rgba(236,189,110,0.02)); }
.prow__veh { display: flex; align-items: center; gap: 14px; min-width: 0; }
.prow__ic { width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center; background: rgba(236,189,110,0.12); color: var(--gold); }
.prow__ic svg { width: 22px; height: 22px; }
.prow__name b { font-family: var(--display); font-size: 1.04rem; display: block; line-height: 1.25; }
.prow__name span { font-size: 0.84rem; color: var(--muted); }
.prow__price { font-family: var(--display); font-weight: 700; font-size: 1.45rem; display: flex; align-items: baseline; gap: 2px; white-space: nowrap; }
.prow__price .cur { font-size: 0.9rem; color: var(--gold-bright); font-weight: 600; }
.prow__cta { white-space: nowrap; }
@media (max-width: 620px) {
  .prow { grid-template-columns: 1fr auto; row-gap: 12px; padding: 15px 18px; }
  .prow__cta { grid-column: 1 / -1; justify-self: stretch; text-align: center; }
}

/* ============================================================
   HERO service pills (rebrand redo)
   ============================================================ */
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 30px; }
.hero-pill { display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; border-radius: var(--r-pill); background: rgba(150,185,230,0.08); border: 1px solid var(--hairline-strong); font-family: var(--display); font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); backdrop-filter: blur(8px); }
.hero-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--grad-cta); flex: none; }

/* ============================================================
   WHAT WE DO — stat band + service cards + booking ways
   ============================================================ */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: clamp(44px, 6vw, 68px); }
.statband .stat { text-align: center; padding: 28px 18px; border-radius: var(--r-lg); background: var(--glass); border: 1px solid var(--hairline); }
.statband .stat b { display: block; font-family: var(--display); font-size: clamp(2.1rem, 4vw, 2.9rem); font-weight: 800; line-height: 1; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.statband .stat span { display: block; margin-top: 12px; font-size: 0.86rem; color: var(--muted); }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc { padding: 34px 30px; border-radius: var(--r-lg); background: var(--glass); border: 1px solid var(--hairline); transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s, background 0.4s; }
.svc:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: var(--hairline-strong); background: var(--glass-2); }
.svc__ic { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; background: rgba(236,189,110,0.12); color: var(--gold); }
.svc__ic svg { width: 28px; height: 28px; }
.svc h3 { font-size: 1.28rem; margin-bottom: 11px; }
.svc p { color: var(--muted); font-size: 0.95rem; margin: 0; line-height: 1.55; }

.ways-lead { text-align: center; font-family: var(--display); font-weight: 700; color: var(--muted); margin: clamp(34px, 5vw, 52px) 0 18px; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; }
.ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.way { display: flex; gap: 15px; align-items: flex-start; padding: 22px 24px; border-radius: var(--r-md); background: rgba(150,185,230,0.05); border: 1px solid var(--hairline); }
.way i { font-family: var(--display); font-weight: 700; font-size: 0.84rem; font-style: normal; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(236,189,110,0.14); color: var(--gold); flex: none; }
.way b { font-family: var(--display); display: block; margin-bottom: 5px; font-size: 1.05rem; }
.way span { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   KNOW YOUR OPTIONS — 3-way comparison table
   ============================================================ */
.compare3 { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--hairline); background: var(--glass); }
.compare3__head, .c3-row { display: grid; grid-template-columns: 0.9fr 1.1fr 1fr 1fr; }
.compare3__head > div { padding: 22px 22px; }
.compare3__head .c3-label { display: flex; align-items: flex-end; font-family: var(--display); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.compare3__head .c3-col b { font-family: var(--display); font-size: 1.14rem; display: block; }
.compare3__head .c3-col span { font-size: 0.82rem; color: var(--muted); }
.compare3__head .c3-col.best { background: linear-gradient(180deg, rgba(236,189,110,0.18), rgba(236,189,110,0.06)); border-left: 1px solid rgba(236,189,110,0.32); border-right: 1px solid rgba(236,189,110,0.32); }
.compare3__head .c3-col.best b { color: var(--gold-bright); }
.c3-badge { display: inline-flex; align-items: center; gap: 6px; margin-top: 9px; font-size: 0.72rem; font-weight: 700; color: var(--gold-bright); }
.c3-badge svg { width: 15px; height: 15px; }
.c3-row { border-top: 1px solid var(--hairline); }
.c3-row > div { padding: 16px 22px; font-size: 0.92rem; display: flex; gap: 10px; align-items: flex-start; }
.c3-k { font-family: var(--display); font-weight: 600; color: var(--ink); align-items: center; }
.c3-cell.best { background: rgba(236,189,110,0.05); border-left: 1px solid rgba(236,189,110,0.28); border-right: 1px solid rgba(236,189,110,0.28); }
.c3-cell svg { width: 17px; height: 17px; flex: none; margin-top: 1px; }
.c3-cell.good svg { color: #2fa661; }
.c3-cell.mid svg { color: var(--gold); }
.c3-cell.bad svg { color: var(--coral); }
.c3-cell span { color: var(--ink-soft); line-height: 1.45; }
.c3-cell::before { content: attr(data-col); display: none; }
@media (max-width: 860px) {
  .compare3__head { display: none; }
  .c3-row { grid-template-columns: 1fr; padding: 6px 0 12px; }
  .c3-row > div { padding: 12px 18px; }
  .c3-k { font-size: 1.05rem !important; padding-bottom: 2px; padding-top: 16px; }
  .c3-cell { flex-wrap: wrap; border-left: none !important; border-right: none !important; }
  .c3-cell.best { background: rgba(236,189,110,0.06); }
  .c3-cell::before { display: block; flex-basis: 100%; font-family: var(--display); font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 3px; }
}

/* ============================================================
   FLEET — luggage capacity chips + van note
   ============================================================ */
.fcard__lug { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.fcard__lug .lug { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: var(--r-sm); background: rgba(69,182,224,0.10); border: 1px solid var(--hairline); font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); }
.fcard__lug .lug svg { width: 15px; height: 15px; color: var(--ocean-bright); }
.fcard__note { font-size: 0.8rem; color: var(--muted); margin: -2px 0 14px; line-height: 1.45; }

/* ============================================================
   FAQ — categories + fee table
   ============================================================ */
.faq-cat { display: flex; flex-direction: column; gap: 12px; }
.faq-cat + .faq-cat { margin-top: 30px; }
.faq-cat__title { font-family: var(--display); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin: 0 0 2px; padding-left: 4px; }
.faq-cat.filtered-out { display: none; }
.acc-body__inner ul { padding-left: 20px; display: flex; flex-direction: column; gap: 9px; margin: 4px 0 0; }
.acc-body__inner li { list-style: disc; }
.acc-body__inner li::marker { color: var(--gold); }
.acc-body__inner b { color: var(--ink); }
.fee-table { display: flex; flex-direction: column; border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--hairline); margin-top: 8px; max-width: 380px; }
.fee-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 16px; border-top: 1px solid var(--hairline); background: rgba(8,17,33,0.35); }
.fee-row:first-child { border-top: none; }
.fee-row b { font-family: var(--display); color: var(--gold); }
.section--light .fee-row { background: #f4f7fc; }
.section--light .fcard__lug .lug { background: #eef4fb; }

@media (max-width: 1080px) {
  .statband { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .ways { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .statband { grid-template-columns: 1fr 1fr; }
}
