/* =========================================================================
   Royal Wheels — design system
   Light theme. Royal blue + warm gold on soft white.
   ========================================================================= */

/* ------------------------------------------------------------------ tokens */
:root {
  /* brand */
  --ink:        #0d1b2f;
  --ink-2:      #1c3054;
  --blue-900:   #0e2350;
  --blue-800:   #143166;
  --blue-700:   #1a437f;
  --blue-600:   #1f57a3;
  --blue-500:   #2a6fc4;
  --blue-100:   #e3edfb;
  --blue-50:    #f2f7fe;

  --gold-700:   #8a6314;
  --gold-600:   #b5851f;
  --gold-500:   #d4a132;
  --gold-200:   #f4e3ba;
  --gold-100:   #fbf3e0;

  /* neutrals */
  --white:      #ffffff;
  --bg:         #f7f9fc;
  --bg-2:       #eef3fa;
  --surface:    #ffffff;
  --border:     #e2e8f2;
  --border-2:   #cfdae9;
  --text:       #14213d;
  --muted:      #5c6c86;
  --muted-2:    #8494ab;

  /* status */
  --green-600:  #0f8a5f;
  --green-100:  #dff5eb;
  --amber-600:  #b7791f;
  --amber-100:  #fdf1da;
  --red-600:    #c53b3b;
  --red-100:    #fdeaea;

  /* shape */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(16, 34, 64, .06);
  --shadow-sm: 0 2px 8px rgba(16, 34, 64, .06);
  --shadow:    0 8px 24px rgba(16, 34, 64, .08);
  --shadow-lg: 0 18px 50px rgba(16, 34, 64, .12);
  --shadow-xl: 0 30px 70px rgba(14, 35, 80, .16);

  --ring: 0 0 0 3px rgba(42, 111, 196, .22);

  /* layout */
  --wrap: 1200px;
  --gutter: clamp(16px, 2.6vw, 28px);
  --header-h: 74px;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font);
}

/* ------------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

img, svg, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-800); }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; letter-spacing: -0.01em; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: var(--r-sm); }

::selection { background: var(--blue-100); color: var(--blue-900); }

/* ------------------------------------------------------------------ layout */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--alt { background: var(--white); }
.section--soft { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }

/* Wider screens get a wider column rather than ever-growing empty margins. */
@media (min-width: 1500px) { :root { --wrap: 1320px; } }
@media (min-width: 1900px) { :root { --wrap: 1460px; } }
@media (min-width: 2300px) { :root { --wrap: 1640px; } }

.grid { display: grid; gap: clamp(16px, 1.8vw, 22px); }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1180px) { .g-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 1080px) { .g-3, .g-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px)  { .g-2, .g-3, .g-4 { grid-template-columns: minmax(0, 1fr); } }

/* An odd number of cards in a two-column grid otherwise leaves a hole in the
   last row; the straggler stretches across instead. */
@media (min-width: 681px) and (max-width: 1080px) {
  .g-3 > :last-child:nth-child(odd),
  .g-4 > :last-child:nth-child(odd) { grid-column: span 2; }
}

.stack { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; gap: 12px; }
.row-wrap { flex-wrap: wrap; }
.spread { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.center { text-align: center; }
.hide { display: none !important; }

/* -------------------------------------------------------- section headings */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold-700);
  background: var(--gold-100);
  border: 1px solid var(--gold-200);
  padding: 6px 13px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.eyebrow--blue { color: var(--blue-700); background: var(--blue-50); border-color: var(--blue-100); }

.sec-head { max-width: 660px; margin-bottom: 40px; }
.sec-head.center { margin-inline: auto; }
.sec-head p { color: var(--muted); font-size: 1.05rem; margin-top: 14px; }

.sec-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; max-width: none; }
@media (max-width: 900px) { .sec-head--split { flex-direction: column; align-items: flex-start; } }

/* ----------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display);
  font-weight: 600; font-size: .95rem; line-height: 1;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-primary { background: var(--blue-700); color: #fff; box-shadow: 0 6px 18px rgba(20, 49, 102, .24); }
.btn-primary:hover { background: var(--blue-800); color: #fff; box-shadow: 0 10px 26px rgba(20, 49, 102, .3); }

.btn-gold { background: var(--gold-500); color: #2b1f04; box-shadow: 0 6px 18px rgba(181, 133, 31, .28); }
.btn-gold:hover { background: var(--gold-600); color: #fff; }

.btn-ghost { background: var(--white); color: var(--ink); border-color: var(--border-2); box-shadow: var(--shadow-xs); }
.btn-ghost:hover { border-color: var(--blue-500); color: var(--blue-700); background: var(--blue-50); }

.btn-quiet { background: transparent; color: var(--ink); border-color: transparent; padding: 10px 14px; }
.btn-quiet:hover { background: var(--bg-2); }

.btn-outline-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-outline-light:hover { background: rgba(255,255,255,.2); color: #fff; border-color: rgba(255,255,255,.6); }

.btn-danger { background: var(--red-600); color: #fff; }
.btn-danger:hover { background: #a92f2f; color: #fff; }

.btn-sm { padding: 9px 15px; font-size: .86rem; }
.btn-lg { padding: 17px 30px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; pointer-events: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-family: var(--font-display); color: var(--blue-700);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .18s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ------------------------------------------------------------------- chips */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--bg-2); color: var(--muted);
  border: 1px solid var(--border);
}
.chip svg { width: 14px; height: 14px; }
.chip--blue  { background: var(--blue-50);  color: var(--blue-700);  border-color: var(--blue-100); }
.chip--gold  { background: var(--gold-100); color: var(--gold-700);  border-color: var(--gold-200); }
.chip--green { background: var(--green-100); color: var(--green-600); border-color: #bfe9d6; }
.chip--amber { background: var(--amber-100); color: var(--amber-600); border-color: #f6dfb4; }
.chip--red   { background: var(--red-100);   color: var(--red-600);   border-color: #f6cccc; }

/* ------------------------------------------------------------------ header */
.topbar {
  background: var(--blue-900);
  color: rgba(255,255,255,.82);
  font-size: .82rem;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 40px; }
.topbar a { color: rgba(255,255,255,.92); }
.topbar a:hover { color: #fff; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-item svg { width: 14px; height: 14px; opacity: .8; }
@media (max-width: 860px) { .topbar-left .topbar-item:not(:first-child) { display: none; } }
@media (max-width: 560px) { .topbar { display: none; } }

.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); flex: none; }
.brand:hover { color: var(--ink); }
/* the client's own wordmark, never allowed to reflow into stacked text */
.brand-logo { height: clamp(30px, 3.4vw, 40px); width: auto; display: block; }
.brand-mark { width: 40px; height: 40px; flex: none; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 13px; border-radius: var(--r-sm);
  font-size: .93rem; font-weight: 500; color: var(--ink-2);
  white-space: nowrap;
  transition: background .18s ease, color .18s ease;
}
.nav a:hover { background: var(--blue-50); color: var(--blue-700); }
.nav a.active { color: var(--blue-700); font-weight: 600; background: var(--blue-50); }

.header-cta { display: flex; align-items: center; gap: 10px; }

.burger { display: none; width: 42px; height: 42px; border-radius: var(--r-sm); border: 1px solid var(--border-2); align-items: center; justify-content: center; }
.burger svg { width: 20px; height: 20px; }

/* Rather than dropping straight to a burger — which leaves a near-empty header
   bar on a 1080px-wide portrait monitor — the nav first compacts, and only
   becomes a drawer once it genuinely cannot fit. */
@media (max-width: 1240px) {
  .nav a { padding: 9px 10px; font-size: .88rem; }
  .header-cta .btn-ghost { display: none; }
}
@media (max-width: 1040px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
}
@media (max-width: 560px) {
  .header-cta .btn-primary { display: none; }   /* lives in the drawer instead */
}

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(13, 27, 47, .45);
  backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity .22s ease;
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(88vw, 330px);
  background: var(--white); padding: 22px;
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; gap: 6px; overflow-y: auto;
}
.drawer.open .drawer-panel { transform: none; }
.drawer-panel a {
  padding: 13px 14px; border-radius: var(--r); font-weight: 500; color: var(--ink-2);
  border-bottom: 1px solid var(--border);
}
.drawer-panel a:hover { background: var(--blue-50); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.drawer-close { width: 40px; height: 40px; border-radius: var(--r-sm); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }

/* -------------------------------------------------------------------- hero */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(42,111,196,.35), transparent 60%),
    radial-gradient(760px 420px at 10% 110%, rgba(212,161,50,.18), transparent 62%),
    linear-gradient(150deg, var(--blue-900) 0%, #16386f 52%, #1c4a8c 100%);
  color: #fff;
  padding: clamp(54px, 7vw, 86px) 0 clamp(150px, 15vw, 190px);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 120px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}
.hero-skyline { position: absolute; left: 0; right: 0; bottom: 0; opacity: .16; pointer-events: none; }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 50px); align-items: center; }
/* Kept side-by-side down to 1080 so a portrait monitor doesn't get a tall
   column of text with an empty half beside it. */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .hero { padding-bottom: clamp(165px, 20vw, 215px); }
  .hero h1 { max-width: 20ch; }
  .hero-lede { max-width: 62ch; }
}

.hero h1 { color: #fff; max-width: 15ch; }
.hero-lede { color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.35vw, 1.14rem); max-width: 52ch; margin-top: 20px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.2);
  padding: 8px 14px; border-radius: var(--r-pill);
  font-size: .84rem; font-weight: 500; color: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
}
.hero-badge svg { width: 15px; height: 15px; color: var(--gold-500); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-art { position: relative; }
.hero-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 34px 70px rgba(0,0,0,.42);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(205deg, transparent 42%, rgba(8,24,52,.62));
}
.hero-fare {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  background: rgba(255,255,255,.97);
  border-radius: var(--r-lg);
  padding: 13px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 13px;
}
.hero-fare small { display: block; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.hero-fare b { display: block; font-family: var(--font-display); font-size: 1.32rem; color: var(--ink); letter-spacing: -.02em; line-height: 1.15; }
.hero-fare span { font-size: .78rem; color: var(--muted); }
.hero-fare-tick {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: var(--green-100); color: var(--green-600);
  display: flex; align-items: center; justify-content: center;
}
.hero-fare-tick svg { width: 16px; height: 16px; }
@media (max-width: 1000px) { .hero-art { width: 100%; max-width: 720px; } }
/* the photo column narrows before it stacks, so the fare card shrinks with it */
@media (min-width: 1001px) and (max-width: 1240px) {
  .hero-fare { padding: 10px 14px; gap: 10px; }
  .hero-fare b { font-size: 1.1rem; }
  .hero-fare span { font-size: .72rem; }
  .hero-fare-tick { width: 26px; height: 26px; }
  .hero-fare-tick svg { width: 14px; height: 14px; }
}
@media (max-width: 560px) {
  /* two equal buttons instead of one wide + one narrow stacked raggedly */
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-actions .btn { width: 100%; padding-inline: 12px; }
  .hero-badges { gap: 8px; }
  .hero-badge { font-size: .78rem; padding: 7px 11px; }
}
@media (max-width: 520px) {
  .hero-fare { left: 12px; bottom: 12px; padding: 10px 13px; gap: 10px; }
  .hero-fare b { font-size: 1.1rem; }
  .booking-tab { padding: 11px 13px; font-size: .86rem; }
}

/* ---------------------------------------------------------- booking widget */
.booking-shell { position: relative; z-index: 20; margin-top: clamp(-140px, -11vw, -110px); }

/* NB: no overflow:hidden here — the destination dropdown has to be able to
   escape the card. Corners are rounded on the tab strip and body instead. */
.booking {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.booking-tabs {
  display: flex; gap: 4px; padding: 10px 10px 0;
  background: var(--bg); border-bottom: 1px solid var(--border);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.booking-tab {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px;
  font-family: var(--font-display); font-weight: 600; font-size: .93rem;
  color: var(--muted);
  border-radius: var(--r) var(--r) 0 0;
  border: 1px solid transparent; border-bottom: none;
  position: relative; top: 1px;
  white-space: nowrap;
  transition: all .18s ease;
}
.booking-tab svg { width: 17px; height: 17px; }
.booking-tab:hover { color: var(--blue-700); }
.booking-tab.active { background: var(--white); color: var(--blue-800); border-color: var(--border); }

.booking-body { padding: 24px; border-radius: 0 0 var(--r-xl) var(--r-xl); }
.booking-grid { display: grid; grid-template-columns: 1.35fr 1.35fr .85fr .85fr .8fr auto; gap: 14px; align-items: end; }
@media (max-width: 1240px) { .booking-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .booking-grid .booking-submit { grid-column: 1 / -1; } }
@media (max-width: 760px)  { .booking-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px)  { .booking-grid { grid-template-columns: minmax(0, 1fr); } }

.booking-note {
  display: flex; align-items: center; gap: 9px;
  margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--border);
  color: var(--muted); font-size: .85rem;
}
.booking-note svg { width: 15px; height: 15px; color: var(--green-600); flex: none; }

/* ------------------------------------------------------------------ fields */
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field > label, .field-label {
  font-size: .76rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted-2);
}
.field-hint { font-size: .8rem; color: var(--muted); }
.field-error { font-size: .82rem; color: var(--red-600); font-weight: 500; }

.input, .textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  padding: 12px 14px;
  font-size: .95rem;
  color: var(--text);
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.input::placeholder, .textarea::placeholder { color: var(--muted-2); }
.input:hover, .textarea:hover { border-color: var(--blue-500); }
.input:focus, .textarea:focus { outline: none; border-color: var(--blue-600); box-shadow: var(--ring); }
.textarea { min-height: 116px; resize: vertical; line-height: 1.55; }
.input[readonly] { background: var(--bg); color: var(--muted); cursor: default; }
.input.locked { background: var(--blue-50); border-color: var(--blue-100); color: var(--blue-800); font-weight: 500; }
.input.locked svg { width: 17px; height: 17px; flex: none; color: var(--blue-600); }

.input-icon { position: relative; }
.input-icon svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--muted-2); pointer-events: none; }
.input-icon .input { padding-left: 38px; }

/* native date/time controls kept, but styled to match */
input[type="date"].input, input[type="time"].input { min-height: 46px; }
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator { opacity: .5; cursor: pointer; }

/* --------------------------------------------------------- custom dropdown */
.dd { position: relative; }
.dd-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  padding: 12px 14px;
  font-size: .95rem;
  text-align: left;
  color: var(--text);
  transition: border-color .16s ease, box-shadow .16s ease;
  min-height: 46px;
}
.dd-trigger:hover { border-color: var(--blue-500); }
.dd-trigger:focus-visible { border-color: var(--blue-600); box-shadow: var(--ring); }
.dd.open .dd-trigger { border-color: var(--blue-600); box-shadow: var(--ring); }
.dd-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dd-value.placeholder { color: var(--muted-2); }
.dd-caret { width: 16px; height: 16px; flex: none; color: var(--muted-2); transition: transform .2s ease; }
.dd.open .dd-caret { transform: rotate(180deg); }

.dd-panel {
  position: absolute; z-index: 90; left: 0; top: calc(100% + 6px);
  /* grow past a narrow trigger so long destination names stay on one line */
  min-width: 100%; width: max-content; max-width: min(380px, 88vw);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  max-height: 306px; overflow-y: auto;
  opacity: 0; transform: translateY(-6px) scale(.99); pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}
.dd.open .dd-panel { opacity: 1; transform: none; pointer-events: auto; }
.dd-panel.up { top: auto; bottom: calc(100% + 6px); }
.dd-panel.flip-right { left: auto; right: 0; }

.dd-search { padding: 6px 6px 8px; position: sticky; top: -6px; background: var(--white); z-index: 2; }
.dd-search .input { padding: 9px 12px; font-size: .9rem; }

.dd-group { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); padding: 10px 12px 5px; }
.dd-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: .93rem; text-align: left; color: var(--text);
  transition: background .12s ease, color .12s ease;
}
.dd-opt:hover, .dd-opt.cursor { background: var(--blue-50); color: var(--blue-800); }
.dd-opt.selected { background: var(--blue-100); color: var(--blue-900); font-weight: 600; }
.dd-opt-meta { font-size: .78rem; color: var(--muted-2); white-space: nowrap; }
.dd-opt:hover .dd-opt-meta { color: var(--blue-600); }
.dd-empty { padding: 18px 12px; text-align: center; color: var(--muted-2); font-size: .9rem; }

/* ------------------------------------------------------- confirm popover */
.pop {
  position: fixed; z-index: 300;
  width: 268px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: 15px;
  opacity: 0; transform: scale(.96) translateY(4px);
  transition: opacity .14s ease, transform .14s ease;
}
.pop.show { opacity: 1; transform: none; }
.pop-title { font-family: var(--font-display); font-weight: 700; font-size: .96rem; color: var(--ink); margin-bottom: 5px; }
.pop-msg { font-size: .86rem; color: var(--muted); line-height: 1.5; margin-bottom: 13px; }
.pop-actions { display: flex; gap: 8px; justify-content: flex-end; }
.pop-arrow {
  position: absolute; width: 11px; height: 11px; background: var(--white);
  border-left: 1px solid var(--border); border-top: 1px solid var(--border);
  transform: rotate(45deg);
}

/* --------------------------------------------------------------- toast */
.toast-wrap { position: fixed; z-index: 400; right: 20px; bottom: 20px; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.toast {
  display: flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff;
  padding: 13px 17px; border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  font-size: .9rem; font-weight: 500;
  max-width: 360px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}
.toast.show { opacity: 1; transform: none; }
.toast svg { width: 17px; height: 17px; flex: none; }
.toast.ok svg { color: #56d3a0; }
.toast.err { background: #7c1d1d; }
.toast.err svg { color: #ffb4b4; }

/* --------------------------------------------------------------- cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-2); }

/* ------------------------------------------------------- vehicle imagery */
/* Real photographs are the default; the SVG drawing is only a fallback for a
   class the client has not photographed yet, so it gets padding and a tinted
   panel while photos bleed edge to edge. */
.veh-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.veh-drawing {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--blue-50) 0%, #e7eefb 100%);
  padding: 18px;
}
.veh-drawing svg { width: 100%; height: auto; }

/* vehicle card */
.vcard { display: flex; flex-direction: column; overflow: hidden; }
.vcard-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.vcard-flag {
  position: absolute; top: 12px; left: 12px;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: var(--gold-500); color: #2b1f04;
  padding: 4px 10px; border-radius: var(--r-pill);
}
.vcard-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.vcard-title { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--ink); }
.vcard-models { font-size: .85rem; color: var(--muted); margin-top: -4px; }
.vcard-specs { display: flex; gap: 8px; flex-wrap: wrap; }
.vcard-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.vcard-price small { display: block; font-size: .72rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.vcard-price b { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); letter-spacing: -.02em; white-space: nowrap; }
/* price and button stop fighting for the same line on a phone */
@media (max-width: 540px) {
  .vcard-foot { flex-direction: column; align-items: stretch; gap: 12px; }
  .vcard-foot .btn { width: 100%; }
}

/* ------------------------------------------------------------- carousel */
.car { position: relative; overflow: hidden; height: 100%; background: var(--bg-2); }
.car-track { display: flex; height: 100%; will-change: transform; touch-action: pan-y; cursor: grab; }
.car.is-dragging .car-track { cursor: grabbing; }
.car-slide { flex: 0 0 100%; height: 100%; min-width: 0; }
.car-slide img { width: 100%; height: 100%; object-fit: cover; display: block; user-select: none; -webkit-user-drag: none; }
.car.is-zoomable .car-track { cursor: zoom-in; }
.car.is-zoomable.is-dragging .car-track { cursor: grabbing; }

.car-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(12,27,51,.28);
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, background .16s ease, transform .16s ease;
  z-index: 2;
}
.car-arrow svg { width: 16px; height: 16px; }
.car-arrow.prev { left: 10px; }
.car-arrow.next { right: 10px; }
.car:hover .car-arrow, .car:focus-within .car-arrow { opacity: 1; pointer-events: auto; }
.car-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.car-arrow[disabled] { opacity: 0 !important; pointer-events: none; }
/* touch devices have no hover, so the arrows stay put */
@media (hover: none) {
  .car-arrow { opacity: .92; pointer-events: auto; }
  .car-arrow[disabled] { opacity: 0 !important; }
}

.car-dots {
  position: absolute; left: 0; right: 0; bottom: 9px; z-index: 2;
  display: flex; justify-content: center; gap: 6px;
}
.car-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: rgba(255,255,255,.6);
  box-shadow: 0 1px 3px rgba(0,0,0,.35);
  transition: width .22s ease, background .22s ease;
}
.car-dot.on { width: 18px; background: #fff; }

.car-count {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: rgba(12,27,51,.62); color: #fff;
  font-size: .72rem; font-weight: 600;
  padding: 3px 9px; border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}

/* ------------------------------------------------------------- lightbox */
html.lb-open { overflow: hidden; }
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(8, 16, 30, .93);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .22s ease;
}
.lightbox.open { opacity: 1; }
.lb-figure {
  margin: 0; max-width: 92vw; max-height: 88vh;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  transform: scale(.97); transition: transform .24s var(--ease, cubic-bezier(.22,.61,.36,1));
}
.lightbox.open .lb-figure { transform: none; }
.lb-figure img {
  max-width: 92vw; max-height: 78vh;
  width: auto; height: auto;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  background: #0d1b2f;
  user-select: none; -webkit-user-drag: none;
}
.lb-figure img.in-right { animation: lbInRight .28s cubic-bezier(.22,.61,.36,1); }
.lb-figure img.in-left  { animation: lbInLeft  .28s cubic-bezier(.22,.61,.36,1); }
@keyframes lbInRight { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }
@keyframes lbInLeft  { from { opacity: 0; transform: translateX(-26px); } to { opacity: 1; transform: none; } }

.lb-figure figcaption {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
  color: rgba(255,255,255,.86); font-size: .9rem;
}
.lb-count { color: rgba(255,255,255,.6); font-variant-numeric: tabular-nums; }

.lb-close, .lb-arrow {
  position: absolute; z-index: 2;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .16s ease, transform .16s ease;
}
.lb-close:hover, .lb-arrow:hover { background: rgba(255,255,255,.24); }
.lb-close { top: 20px; right: 20px; width: 44px; height: 44px; }
.lb-close svg { width: 20px; height: 20px; }
.lb-arrow { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.lb-arrow:hover { transform: translateY(-50%) scale(1.06); }
.lb-arrow svg { width: 22px; height: 22px; }
.lb-arrow.prev { left: 24px; }
.lb-arrow.next { right: 24px; }
@media (max-width: 640px) {
  .lb-arrow { width: 42px; height: 42px; }
  .lb-arrow.prev { left: 10px; }
  .lb-arrow.next { right: 10px; }
  .lb-close { top: 12px; right: 12px; width: 38px; height: 38px; }
  .lb-figure img { max-height: 68vh; }
}

/* fleet page media column */
.fleet-media { display: flex; flex-direction: column; background: var(--bg-2); }
.fleet-media.flip { order: 2; }
.fleet-hero { aspect-ratio: 4 / 3; overflow: hidden; }
.fleet-thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(70px, 1fr)); gap: 6px; padding: 6px; background: var(--white); }
.fleet-thumb {
  aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r-sm);
  border: 2px solid transparent; transition: border-color .16s ease, transform .16s ease;
}
.fleet-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .18s ease; }
.fleet-thumb:hover { border-color: var(--blue-500); transform: translateY(-2px); }
.fleet-thumb img { opacity: .62; }
.fleet-thumb:hover img, .fleet-thumb.on img { opacity: 1; }
.fleet-thumb.on { border-color: var(--blue-700); }
@media (max-width: 900px) {
  .fleet-row { grid-template-columns: minmax(0, 1fr) !important; }
  .fleet-media.flip { order: 0; }
  /* full-width 4:3 would dominate the whole screen once stacked */
  .fleet-hero { aspect-ratio: 16 / 9; }
}

/* feature card */
.fcard { padding: 26px 24px; display: flex; flex-direction: column; gap: 12px; }
.fcard-icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--blue-700);
  border: 1px solid var(--blue-100);
}
.fcard-icon svg { width: 22px; height: 22px; }
.fcard.gold .fcard-icon { background: var(--gold-100); color: var(--gold-700); border-color: var(--gold-200); }
.fcard h3 { font-size: 1.06rem; }
.fcard p { color: var(--muted); font-size: .93rem; }

/* service card */
.scard { padding: 28px 26px; display: flex; flex-direction: column; gap: 13px; }
.scard-icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--blue-50), #e5edfa);
  border: 1px solid var(--blue-100);
}
.scard-icon svg { width: 32px; height: 32px; }
.scard-num { font-family: var(--font-display); font-weight: 800; font-size: .8rem; color: var(--gold-600); letter-spacing: .1em; }
.scard p { color: var(--muted); font-size: .93rem; }
.scard .link-arrow { margin-top: auto; padding-top: 8px; font-size: .9rem; }

/* ------------------------------------------------------- services page */
.svc {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  padding: clamp(30px, 4vw, 46px) 0;
  border-bottom: 1px solid var(--border);
}
.svc:last-child { border-bottom: 0; }
.svc.flip .svc-media { order: 2; }

.svc-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: var(--shadow);
}
.svc-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.svc:hover .svc-media img { transform: scale(1.03); }
.svc-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(9,26,56,.5));
  pointer-events: none;
}
.svc-num {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--font-display); font-weight: 800; font-size: .82rem; letter-spacing: .1em;
  background: rgba(255,255,255,.94); color: var(--blue-800);
  padding: 6px 12px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}

.svc-body { min-width: 0; }
.svc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 20px;
  background: linear-gradient(150deg, var(--blue-50), #e5edfa);
  border: 1px solid var(--blue-100);
  margin-bottom: 18px;
  box-shadow: var(--shadow-xs);
}
.svc-icon svg { width: 40px; height: 40px; }
.svc-body h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
.svc-lead { font-size: 1.06rem; color: var(--ink-2); margin: 12px 0 10px; font-weight: 500; }
.svc-body > p.muted { font-size: .97rem; }

.svc-features { display: grid; gap: 10px; margin: 20px 0 4px; }
.svc-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .94rem; color: var(--ink-2); }
.svc-features svg { width: 18px; height: 18px; flex: none; color: var(--green-600); margin-top: 1px; }
.svc-actions { gap: 12px; margin-top: 24px; }

@media (max-width: 900px) {
  .svc { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .svc.flip .svc-media { order: 0; }
  .svc-media { aspect-ratio: 16 / 9; }
  .svc-icon { width: 60px; height: 60px; border-radius: 17px; margin-bottom: 14px; }
  .svc-icon svg { width: 34px; height: 34px; }
}
@media (max-width: 520px) {
  .svc-actions .btn { width: 100%; }
}

/* step card */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; counter-reset: step; }
@media (max-width: 940px) { .steps { grid-template-columns: minmax(0, 1fr); } }
.step { position: relative; padding: 28px 26px; }
.step-badge {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-800); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(20,49,102,.26);
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .93rem; }
.step-line { position: absolute; top: 50px; right: -14px; width: 28px; height: 2px; background: var(--border-2); }
@media (max-width: 940px) { .step-line { display: none; } }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.stat { background: var(--white); padding: 30px 22px; text-align: center; }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 800; color: var(--blue-800); letter-spacing: -.03em; line-height: 1; }
.stat span { display: block; margin-top: 8px; font-size: .86rem; color: var(--muted); font-weight: 500; }

/* route / hotel tiles */
.routes { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 1240px) { .routes { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 900px)  { .routes { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .routes { grid-template-columns: minmax(0, 1fr); } }
.rtile {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; text-align: left; width: 100%;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: transform .18s ease, box-shadow .22s ease, border-color .18s ease;
}
.rtile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-500); }
.rtile-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--blue-50); color: var(--blue-700); display: flex; align-items: center; justify-content: center; flex: none; border: 1px solid var(--blue-100); }
.rtile-icon svg { width: 20px; height: 20px; }
.rtile-text { min-width: 0; flex: 1; }
.rtile-text b { display: block; font-family: var(--font-display); font-size: .97rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rtile-text span { display: block; font-size: .81rem; color: var(--muted); }
.rtile-price { font-size: .84rem; font-weight: 700; color: var(--blue-700); white-space: nowrap; }

/* review card */
.rev { padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; }
.rev-stars { display: flex; gap: 3px; color: var(--gold-500); }
.rev-stars svg { width: 17px; height: 17px; }
.rev-body { color: var(--ink-2); font-size: .95rem; line-height: 1.65; }
.rev-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: var(--blue-800); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
}
.rev-who b { display: block; font-size: .92rem; color: var(--ink); font-family: var(--font-display); }
.rev-who span { font-size: .79rem; color: var(--muted-2); }

.rating-summary { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.rating-big { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1; }

/* post card */
.pcard { display: flex; flex-direction: column; overflow: hidden; }
.pcard-media { aspect-ratio: 16 / 9; background: linear-gradient(150deg, var(--blue-800), var(--blue-600)); position: relative; overflow: hidden; }
.pcard-media svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pcard-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pcard-meta { display: flex; align-items: center; gap: 10px; font-size: .78rem; color: var(--muted-2); }
.pcard h3 { font-size: 1.06rem; line-height: 1.35; }
.pcard h3 a { color: var(--ink); }
.pcard h3 a:hover { color: var(--blue-700); }
.pcard p { color: var(--muted); font-size: .91rem; }
.pcard .link-arrow { margin-top: auto; padding-top: 6px; font-size: .89rem; }

/* ------------------------------------------------------------------ faq */
.faq { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item.open { border-color: var(--blue-500); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--ink);
}
.faq-q:hover { color: var(--blue-700); }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--blue-50); color: var(--blue-700); display: flex; align-items: center; justify-content: center; flex: none; transition: transform .22s ease, background .2s ease; }
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue-700); color: #fff; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .26s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); font-size: .95rem; }

/* --------------------------------------------------------------- cta band */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-900), #1b4585 62%, #235196);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 56px);
  color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; right: -60px; top: -80px; width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(212,161,50,.3), transparent 70%);
}
/* when artwork is supplied it replaces the flat gradient background */
.cta-band.has-image {
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.cta-band.has-image::before { display: none; }
.cta-band.has-image > div:first-child { max-width: 62ch; }
@media (max-width: 900px) {
  .cta-band.has-image { background-position: 72% center; }
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.8); margin-top: 12px; max-width: 54ch; position: relative; }
.cta-band .row { position: relative; }

/* ----------------------------------------------------------------- footer */
.footer { background: var(--blue-900); color: rgba(255,255,255,.72); padding: 64px 0 0; margin-top: 0; }
.footer a { color: rgba(255,255,255,.72); }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: clamp(24px, 3vw, 36px); padding-bottom: 44px; }
/* The blurb goes full width and the four link groups share one tidy row,
   rather than leaving "Get in touch" stranded on a row of its own. */
@media (max-width: 1240px) {
  .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; } }
@media (max-width: 420px) { .footer-grid { grid-template-columns: minmax(0, 1fr); } }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer li { margin-bottom: 9px; font-size: .91rem; }
.footer-about p { font-size: .92rem; color: rgba(255,255,255,.68); max-width: 34ch; margin-top: 16px; }
.footer-logo {
  display: inline-block;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 12px;
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
  line-height: 0;
  transition: transform .18s ease;
}
.footer-logo:hover { transform: translateY(-2px); }
.footer-logo img { width: 168px; height: auto; display: block; }
@media (max-width: 700px) { .footer-logo img { width: 140px; } }
.footer .brand-name { color: #fff; }
.footer .brand-sub { color: rgba(255,255,255,.5); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; margin-top: 3px; flex: none; color: var(--gold-500); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .85rem; color: rgba(255,255,255,.55);
}
.social { display: flex; gap: 10px; }
.social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; }
.social a:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); }
.social svg { width: 16px; height: 16px; }

/* floating whatsapp */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: #1fa855; color: #fff;
  padding: 13px 18px; border-radius: var(--r-pill);
  box-shadow: 0 10px 30px rgba(31,168,85,.4);
  font-weight: 600; font-size: .92rem;
  transition: transform .18s ease, box-shadow .2s ease;
}
.wa-float:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(31,168,85,.5); }
.wa-float svg { width: 20px; height: 20px; }
@media (max-width: 560px) { .wa-float span { display: none; } .wa-float { padding: 15px; } }

/* --------------------------------------------------------- page headers */
.page-head {
  background: linear-gradient(150deg, var(--blue-900) 0%, #16386f 100%);
  color: #fff;
  padding: clamp(40px, 6vw, 68px) 0;
  position: relative; overflow: hidden;
}
.page-head::before {
  content: ""; position: absolute; right: -80px; top: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(212,161,50,.22), transparent 68%);
}

/* With artwork supplied, the banner grows to give the picture room and the
   crop is biased to the vehicles rather than the sky. A gradient keeps the
   left side dark enough for the heading at every width. */
.page-head.has-art {
  background-size: cover;
  /* 66% lands the vehicle band in the middle of the strip, roofs and wheels
     included, rather than clipping either edge */
  background-position: center 66%;
  background-repeat: no-repeat;
  min-height: 380px;
  display: flex; align-items: center;
  padding-block: clamp(32px, 4vw, 48px);
}
.page-head.has-art::before { display: none; }
.page-head.has-art::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(96deg,
    rgba(10,26,58,.95) 0%,
    rgba(10,26,58,.86) 28%,
    rgba(10,26,58,.55) 50%,
    rgba(10,26,58,.15) 70%,
    rgba(10,26,58,0) 100%);
}
.page-head.has-art .wrap { position: relative; z-index: 1; width: 100%; }
.page-head.has-art h1, .page-head.has-art p { max-width: 46ch; }

@media (max-width: 1080px) {
  .page-head.has-art { min-height: 300px; background-position: 72% 72%; }
  .page-head.has-art::after {
    background: linear-gradient(96deg, rgba(10,26,58,.96) 0%, rgba(10,26,58,.9) 40%, rgba(10,26,58,.6) 72%, rgba(10,26,58,.35) 100%);
  }
}
/* On a phone the text fills the width, so the vehicles get their own strip
   along the bottom instead of sitting behind the copy. */
@media (max-width: 680px) {
  .page-head.has-art {
    min-height: 330px;
    background-position: 74% bottom;
    align-items: flex-start;
    padding-block: 30px 120px;
  }
  .page-head.has-art::after {
    background: linear-gradient(180deg,
      rgba(10,26,58,.95) 0%,
      rgba(10,26,58,.88) 40%,
      rgba(10,26,58,.42) 72%,
      rgba(10,26,58,.15) 100%);
  }
  .page-head.has-art h1, .page-head.has-art p { max-width: none; }
}
.page-head h1 { color: #fff; font-size: clamp(1.85rem, 3.6vw, 2.7rem); position: relative; }
.page-head p { color: rgba(255,255,255,.78); margin-top: 14px; max-width: 62ch; position: relative; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: rgba(255,255,255,.6); margin-bottom: 16px; position: relative; }
.crumbs a { color: rgba(255,255,255,.8); }
.crumbs svg { width: 13px; height: 13px; }

/* ------------------------------------------------------- quote / results */
.quote-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 28px; align-items: start; }
/* below this the results cards get squeezed into an unreadable middle column,
   so the summary moves underneath instead */
@media (max-width: 1240px) {
  .quote-layout { grid-template-columns: minmax(0, 1fr); }
  .summary { position: static; }
}

.qbar {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 16px 20px; box-shadow: var(--shadow-xs);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.qbar-leg { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.qbar-place { display: flex; flex-direction: column; }
.qbar-place small { font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.qbar-place b { font-family: var(--font-display); font-size: .97rem; color: var(--ink); }
.qbar-sep { color: var(--blue-500); }
.qbar-sep svg { width: 20px; height: 20px; }
.qbar-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-left: auto; }

.result-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.result-count { font-size: .92rem; color: var(--muted); }
.result-count b { color: var(--ink); }

/* option card (Viator-style, light theme) */
.opt {
  display: grid; grid-template-columns: 250px minmax(0, 1fr) auto; gap: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-xs);
  transition: box-shadow .22s ease, border-color .2s ease, transform .2s ease;
  margin-bottom: 16px;
}
.opt:hover { box-shadow: var(--shadow); border-color: var(--border-2); transform: translateY(-2px); }
.opt.selected { border-color: var(--blue-600); box-shadow: 0 0 0 2px rgba(31,87,163,.16), var(--shadow); }
@media (max-width: 1020px) { .opt { grid-template-columns: 250px minmax(0, 1fr); } }
@media (max-width: 720px)  { .opt { grid-template-columns: minmax(0, 1fr); } }

.opt-media {
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden; min-height: 176px;
}
@media (max-width: 720px) {
  .opt-media { border-right: none; border-bottom: 1px solid var(--border); aspect-ratio: 16 / 9; min-height: 0; }
}
.opt-flag {
  position: absolute; top: 10px; left: 10px;
  font-size: .66rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: var(--blue-800); color: #fff; padding: 4px 10px; border-radius: var(--r-pill);
}
.opt-flag.gold { background: var(--gold-500); color: #2b1f04; }

.opt-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.opt-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.opt-models { font-size: .86rem; color: var(--muted); margin-top: -5px; }
.opt-specs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 2px; }
.opt-features { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.opt-features li { display: flex; align-items: center; gap: 6px; font-size: .84rem; color: var(--muted); }
.opt-features svg { width: 14px; height: 14px; color: var(--green-600); flex: none; }

.opt-buy {
  border-left: 1px solid var(--border);
  padding: 20px 22px;
  display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 10px;
  min-width: 208px; text-align: right;
  background: linear-gradient(180deg, #fff, var(--blue-50));
}
/* at tablet width the price panel drops under the description, full width */
@media (max-width: 1020px) {
  .opt-buy {
    grid-column: 1 / -1;
    border-left: none; border-top: 1px solid var(--border);
    flex-direction: row; align-items: center; justify-content: space-between;
    text-align: left; min-width: 0; flex-wrap: wrap;
  }
  .opt-note { justify-content: flex-start; }
}
@media (max-width: 480px) {
  .opt-buy { flex-direction: column; align-items: stretch; gap: 12px; }
  .opt-buy .btn { width: 100%; }
}
.opt-price small { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted-2); font-weight: 700; }
.opt-price b { font-family: var(--font-display); font-size: 1.65rem; color: var(--ink); letter-spacing: -.03em; line-height: 1.1; }
.opt-price em { display: block; font-style: normal; font-size: .77rem; color: var(--muted-2); }
.opt-note { font-size: .78rem; color: var(--green-600); font-weight: 600; display: flex; align-items: center; gap: 5px; justify-content: flex-end; }
.opt-note svg { width: 13px; height: 13px; }
.opt.dim .opt-media, .opt.dim .opt-body { opacity: .62; }
.opt-warn { font-size: .8rem; color: var(--amber-600); display: flex; align-items: center; gap: 6px; }
.opt-warn svg { width: 14px; height: 14px; }

/* sticky summary */
.summary { position: sticky; top: calc(var(--header-h) + 18px); }
.summary-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.summary-head { padding: 18px 20px; background: var(--blue-900); color: #fff; }
.summary-head h3 { color: #fff; font-size: 1.02rem; }
.summary-head p { color: rgba(255,255,255,.7); font-size: .84rem; margin-top: 4px; }
.summary-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 12px; }
.summary-row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; font-size: .9rem; }
.summary-row span { color: var(--muted); flex: 0 0 auto; }
.summary-row b { color: var(--ink); font-weight: 600; text-align: right; flex: 1 1 auto; min-width: 0; }
.summary-total { border-top: 1px dashed var(--border); padding-top: 14px; margin-top: 2px; }
.summary-total span { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1rem; }
.summary-total b { font-family: var(--font-display); font-size: 1.5rem; color: var(--blue-800); letter-spacing: -.02em; }
.summary-foot { padding: 0 20px 20px; }
.summary-perks { padding: 14px 20px 18px; border-top: 1px solid var(--border); background: var(--bg); }
.summary-perks li { display: flex; align-items: center; gap: 9px; font-size: .84rem; color: var(--muted); margin-bottom: 8px; }
.summary-perks li:last-child { margin-bottom: 0; }
.summary-perks svg { width: 15px; height: 15px; color: var(--green-600); flex: none; }

/* checkout form */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-xs); padding: clamp(22px, 3vw, 30px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-section-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-bottom: 4px; }
.form-divider { height: 1px; background: var(--border); margin: 26px 0; }

/* optional add-ons at checkout */
.extras { display: flex; flex-direction: column; gap: 10px; }
.extra {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.extra:hover { border-color: var(--blue-500); background: var(--blue-50); }
.extra.on { border-color: var(--blue-600); background: var(--blue-50); box-shadow: 0 0 0 1px var(--blue-600) inset; }
.extra-check {
  width: 22px; height: 22px; flex: none;
  border: 2px solid var(--border-2); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
}
.extra.on .extra-check { background: var(--blue-700); border-color: var(--blue-700); color: #fff; }
.extra-check svg { width: 13px; height: 13px; }
.extra-text { flex: 1; min-width: 0; }
.extra-text b { display: block; font-family: var(--font-display); font-size: .95rem; color: var(--ink); }
.extra-text span { display: block; font-size: .83rem; color: var(--muted); margin-top: 2px; }
.extra-qty { display: inline-flex; align-items: center; gap: 4px; flex: none; }
.extra-qty.hide { display: none; }
.extra-qty button {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--white); border: 1px solid var(--border-2);
  color: var(--blue-700); font-weight: 700; line-height: 1;
}
.extra-qty button:hover { border-color: var(--blue-600); background: var(--blue-100); }
.extra-qty [data-qty] { min-width: 20px; text-align: center; font-weight: 700; font-size: .9rem; }
.extra-price { flex: none; text-align: right; font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: .95rem; }
.extra-price em { display: block; font-style: normal; font-size: .74rem; font-weight: 500; color: var(--muted-2); }
@media (max-width: 560px) {
  .extra { flex-wrap: wrap; gap: 10px; }
  .extra-text { flex: 1 1 60%; }
  .extra-price { margin-left: auto; }
}

/* confirmation */
.confirm-hero { text-align: center; max-width: 620px; margin-inline: auto; }
.confirm-tick {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 22px;
  background: var(--green-100); color: var(--green-600);
  display: flex; align-items: center; justify-content: center;
  border: 3px solid #bfe9d6;
}
.confirm-tick svg { width: 36px; height: 36px; }
.ref-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue-50); border: 1px dashed var(--blue-500);
  color: var(--blue-800); font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  padding: 12px 22px; border-radius: var(--r-pill); letter-spacing: .04em;
  margin: 18px 0 8px;
}

/* ------------------------------------------------------------ prose/article */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin: 36px 0 14px; }
.prose h3 { font-size: 1.18rem; margin: 28px 0 10px; }
.prose p { color: var(--ink-2); font-size: 1.03rem; line-height: 1.78; margin-bottom: 18px; }
.prose ul { margin: 0 0 18px; padding-left: 4px; }
.prose li { position: relative; padding-left: 22px; margin-bottom: 9px; color: var(--ink-2); line-height: 1.7; }
.prose li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); }
.prose strong { color: var(--ink); font-weight: 700; }

/* -------------------------------------------------------------- utilities */
/* ---------------------------------------------------------------- pricing
   Every price is written into the page in both currencies; the header switch
   flips which one is the headline. `display: contents` lets the wrapper
   vanish so the inner <b> keeps whatever styling its container gives it. */
.price { display: inline-block; }
.price-pkr { display: contents; }
.price-usd { display: none; }
:root[data-currency="usd"] .price-pkr { display: none; }
:root[data-currency="usd"] .price-usd { display: contents; }

.price-alt {
  display: block;
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted-2);
  letter-spacing: 0;
  line-height: 1.3;
  margin-top: 2px;
}
.summary-total .price-alt { font-size: .74rem; }
.opt-price .price-alt { font-size: .8rem; }
.hero-fare .price-alt { font-size: .74rem; }
.hero-fare .price { display: block; }   /* keeps the route on its own line */
.rtile-price .price-alt { font-size: .74rem; }
.summary-row .price { flex: 1 1 auto; min-width: 0; text-align: right; }

/* the switch itself */
.cur-switch {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-pill);
  padding: 2px;
}
.cur-switch button {
  padding: 3px 11px;
  border-radius: var(--r-pill);
  font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  color: rgba(255,255,255,.72);
  transition: background .16s ease, color .16s ease;
}
.cur-switch button:hover { color: #fff; }
.cur-switch button[aria-pressed="true"] { background: var(--gold-500); color: #2b1f04; }

/* drawer copy sits on white, so it needs the light-background treatment */
.drawer .cur-switch { background: var(--bg-2); border-color: var(--border); }
.drawer .cur-switch button { color: var(--muted); }
.drawer .cur-switch button:hover { color: var(--ink); }
.drawer .cur-switch button[aria-pressed="true"] { background: var(--blue-700); color: #fff; }
.cur-label { font-size: .74rem; color: rgba(255,255,255,.6); letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.drawer .cur-label { color: var(--muted-2); }

.muted { color: var(--muted); }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 44px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.skeleton {
  background: linear-gradient(90deg, var(--bg-2) 25%, #e6ecf6 37%, var(--bg-2) 63%);
  background-size: 400% 100%;
  animation: shimmer 1.3s ease infinite;
  border-radius: var(--r);
}
@keyframes shimmer { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state svg { width: 46px; height: 46px; color: var(--border-2); margin: 0 auto 14px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
