/* ──────────────────────────────────────────────────────────────────
   GlobeRides theme — single hand-rolled CSS file. No framework, no
   compile step. Editorial type pairing (Inter + JetBrains Mono),
   dark navy hero + warm accent for CTAs, generous whitespace.
   ────────────────────────────────────────────────────────────────── */

:root {
  --bg:           #ffffff;
  --bg-alt:       #f6f5f1;
  --ink:          #0d1418;
  --ink-soft:     #4a5560;
  --ink-mute:     #8b95a0;
  --border:       rgba(13, 20, 24, 0.10);

  --navy:         #0b1727;
  --navy-deep:    #060d18;
  --gold:         #f5b400;        /* primary CTA */
  --gold-deep:    #d99a00;
  --teal:         #0fb5a1;
  --success:      #10b981;
  --danger:       #dc2626;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;

  --shadow-sm:  0 1px 2px rgba(13,20,24,0.06);
  --shadow:     0 6px 24px rgba(13,20,24,0.08);
  --shadow-lg:  0 20px 60px rgba(13,20,24,0.18);

  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  --container: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.85; }

h1, h2, h3, h4 { margin: 0 0 0.4em; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow    { max-width: 760px; }
.right     { text-align: right; }
.mono      { font-family: var(--font-mono); font-size: 0.75em; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow--dark { color: var(--navy); }

.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 8px; vertical-align: middle; }
.dot--success { background: var(--success); }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { opacity: 1; transform: translateY(-1px); }
.btn--primary { background: var(--gold); color: var(--navy-deep); }
.btn--primary:hover { background: var(--gold-deep); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn--ghost:hover { background: var(--bg-alt); }
.btn--ghost-light { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.18); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.12); }
.btn--lg { padding: 14px 26px; font-size: 15px; }

/* ─── Header ──────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex; align-items: center; gap: 24px;
  height: 70px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.brand-mark {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy-deep);
  font-family: var(--font-mono); font-weight: 700; font-size: 13px;
  letter-spacing: -0.02em;
}
/* Header + footer brand marks share the gold gradient now —
   override removed so the brand reads consistently across the page. */

.primary-nav { margin: 0 auto 0 12px; }
.nav-list { list-style: none; padding: 0; margin: 0; display: flex; gap: 6px; }
.nav-list a {
  display: inline-block; padding: 8px 12px; border-radius: 6px;
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-list a:hover { color: var(--ink); background: var(--bg-alt); }

.site-header__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.phone-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: var(--bg-alt);
  border-radius: 999px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  color: var(--ink);
}
.phone-pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(16,185,129,0.18); }

@media (max-width: 880px) {
  .primary-nav, .phone-pill { display: none; }
}

/* ─── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 48px 0 60px;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 110% -20%, rgba(245,180,0,0.18), transparent 60%),
    radial-gradient(800px 600px at -10% 110%, rgba(15,181,161,0.22), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  pointer-events: none;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(closest-side, #000 60%, transparent 100%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hero__copy { padding-top: 8px; }
.hero__copy .eyebrow { color: var(--gold); }
.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.08;
}
.hero__sub { color: rgba(255,255,255,0.72); font-size: 15px; max-width: 460px; margin-top: 12px; }
.hero__bullets { list-style: none; padding: 0; margin: 18px 0 20px; }
.hero__bullets li { color: rgba(255,255,255,0.82); padding: 2px 0; font-size: 14px; }
.hero__bullets li .tick {
  color: var(--success); font-weight: 700; margin-right: 8px;
}
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 14px;
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 12px; color: rgba(255,255,255,0.6);
}
.trust-item strong { color: var(--gold); margin-right: 4px; }

.hero__form {
  position: relative;
  /* Pretty card frame: gradient ring + deep shadow that pops on the
     dark hero. Inner card is plain white via the .quote-form rule. */
  padding: 1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(140deg, rgba(245,180,0,0.55), rgba(15,181,161,0.4) 50%, rgba(255,255,255,0.1));
  box-shadow:
    0 24px 60px rgba(0,0,0,0.35),
    0 4px 14px rgba(0,0,0,0.25);
}

@media (max-width: 980px) {
  .hero { padding: 40px 0 52px; }
  .hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__sub { max-width: none; }
}

/* ─── Quote form (rendered by plugin) ─────────────────────────── */
.quote-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  color: var(--ink);
  position: relative;
}

/* Tabs: Quote / Details. Both are real buttons — clicking "Details"
   runs the same step-1 validation as the Continue button before
   advancing. */
.quote-form__tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 3px;
  margin-bottom: 18px;
}
.quote-form__tab {
  /* reset native button styles */
  border: 0; background: transparent;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-align: center; padding: 8px 10px; border-radius: 999px;
  color: var(--ink-mute);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}
.quote-form__tab:hover { color: var(--navy); }
.quote-form__tab:active { transform: translateY(1px); }
.quote-form__tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.quote-form__tab.is-active { background: #fff; color: var(--navy); box-shadow: 0 1px 3px rgba(13,20,24,0.08); }
.quote-form__tab.is-done   { color: var(--success); }
.quote-form__tab.is-done::before { content: "✓ "; }

.quote-form__head { margin-bottom: 14px; }
.quote-form__head h2 { font-size: 1.05rem; margin-bottom: 2px; }
.quote-form__head p  { font-size: 12px; margin: 0; color: var(--ink-mute); }

.quote-form__step { display: none; }
.quote-form__step.is-active { display: block; animation: grb-fade 0.25s ease; }
@keyframes grb-fade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quote-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.quote-form .row--single { grid-template-columns: 1fr; }
.quote-form .row--3 { grid-template-columns: 1fr 1fr 1fr; }
.quote-form label {
  display: block; font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 5px;
}
.quote-form input,
.quote-form select {
  width: 100%; padding: 9px 11px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font: inherit; font-size: 14px; color: var(--ink); background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.quote-form input:hover,
.quote-form select:hover { border-color: rgba(13,20,24,0.22); }
.quote-form input:focus,
.quote-form select:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,23,39,0.12);
}

/* Custom select — kill native chrome, draw our own chevron, match
   input look pixel-for-pixel so they line up in the same row. */
.quote-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 32px;
  background-color: #fff;
  background-image:
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%230d1418' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 4.5l3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  background-size: 12px 12px;
  cursor: pointer;
  /* Truncate long option labels gracefully */
  text-overflow: ellipsis;
}
.quote-form select:focus {
  background-image:
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%230b1727' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 4.5l3 3 3-3'/%3E%3C/svg%3E");
}
/* IE/Edge legacy: hide the native arrow. (Modern Edge ignores this.) */
.quote-form select::-ms-expand { display: none; }
/* Style the option list — browsers respect these in most cases. */
.quote-form select option {
  background: #fff;
  color: var(--ink);
  padding: 8px;
}
.quote-form select option:checked,
.quote-form select option:hover {
  background: var(--bg-alt);
}

/* Date/time picker — make the native calendar icon match our chevron tone */
.quote-form input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  opacity: 0.55;
  cursor: pointer;
  filter: invert(0.4);
  transition: opacity 0.15s ease;
}
.quote-form input[type="datetime-local"]:hover::-webkit-calendar-picker-indicator { opacity: 0.85; }

/* ─── Autocomplete (Pickup / Drop-off) ──────────────────────
   Text input with a real dropdown panel below — replaces the
   native <datalist> tooltip-style suggestions. Filters as you
   type; click a suggestion to fill the field. */
.quote-form .ac { position: relative; }
.quote-form .ac__input {
  padding-right: 36px;
  background-image:
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%238b95a0' stroke-width='1.4' stroke-linejoin='round'%3E%3Cpath d='M8 1.5C5.24 1.5 3 3.69 3 6.4c0 3.6 5 8.1 5 8.1s5-4.5 5-8.1c0-2.71-2.24-4.9-5-4.9zm0 6.7a1.8 1.8 0 110-3.6 1.8 1.8 0 010 3.6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  background-size: 14px 14px;
}
.quote-form .ac__panel[hidden] { display: none !important; }
.quote-form .ac__panel {
  display: block;
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow:
    0 16px 40px rgba(13,20,24,0.16),
    0 4px 12px  rgba(13,20,24,0.08);
  padding: 6px;
  max-height: 280px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  z-index: 50;
  animation: ac-in 0.18s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
@keyframes ac-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.quote-form .ac__panel::-webkit-scrollbar { width: 6px; }
.quote-form .ac__panel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.quote-form .ac__panel li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.1s ease, color 0.1s ease;
  user-select: none;
}
.quote-form .ac__panel li + li { margin-top: 1px; }
.quote-form .ac__panel li:hover,
.quote-form .ac__panel li.is-active {
  background: var(--bg-alt);
  color: var(--navy);
}
.quote-form .ac__panel li[hidden] { display: none; }
.quote-form .ac__pin {
  display: inline-grid; place-items: center;
  width: 26px; height: 26px;
  background: var(--bg-alt);
  border-radius: 50%;
  color: var(--navy);
  flex-shrink: 0;
}
.quote-form .ac__panel li:hover .ac__pin,
.quote-form .ac__panel li.is-active .ac__pin {
  background: var(--navy); color: var(--gold);
}
.quote-form .ac__label { flex: 1; min-width: 0; }
.quote-form .ac__sub {
  display: block;
  font-size: 12px; font-weight: 400;
  color: var(--ink-soft);
  margin-top: 1px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.quote-form .ac__empty {
  padding: 10px 12px;
  font-size: 13px; color: var(--ink-soft);
}
.quote-form .estimate__dist { font-weight: 500; color: var(--ink-soft); }
.quote-form .ac__empty {
  padding: 14px 12px; text-align: center;
  color: var(--ink-mute); font-size: 13px;
}

/* ─── Dropdown (Passengers / Luggage) ───────────────────────
   Button trigger + panel — same visual language as the
   Pickup/Drop-off autocomplete so the form reads as one design. */
.quote-form .dd { position: relative; }
.quote-form .dd__trigger {
  width: 100%; padding: 9px 11px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: #fff;
  font: inherit; font-size: 14px; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; cursor: pointer; text-align: left;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.quote-form .dd__trigger:hover { border-color: rgba(13,20,24,0.22); }
.quote-form .dd__trigger:focus,
.quote-form .dd__trigger[aria-expanded="true"] {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,23,39,0.12);
}
.quote-form .dd__chevron {
  width: 12px; height: 12px; color: var(--ink-soft); flex-shrink: 0;
  transition: transform 0.2s ease, color 0.15s ease;
}
.quote-form .dd__trigger[aria-expanded="true"] .dd__chevron {
  transform: rotate(180deg); color: var(--navy);
}

.quote-form .dd__panel[hidden] { display: none !important; }
.quote-form .dd__panel {
  display: block;
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow:
    0 16px 40px rgba(13,20,24,0.16),
    0 4px 12px  rgba(13,20,24,0.08);
  padding: 6px;
  max-height: 280px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  z-index: 50;
  animation: dd-in 0.18s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  /* min-width so the panel feels substantial even when the parent
     cell is half-width; overflows the trigger to the right if needed. */
  min-width: 220px;
}
@keyframes dd-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.quote-form .dd__panel::-webkit-scrollbar { width: 6px; }
.quote-form .dd__panel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.quote-form .dd__panel li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.1s ease, color 0.1s ease;
  user-select: none;
}
.quote-form .dd__panel li + li { margin-top: 1px; }
.quote-form .dd__panel li:hover,
.quote-form .dd__panel li.is-active {
  background: var(--bg-alt);
  color: var(--navy);
}
.quote-form .dd__panel li[aria-selected="true"] {
  background: var(--navy); color: #fff; font-weight: 600;
}
.quote-form .dd__panel li[aria-selected="true"]::after {
  content: "✓"; margin-left: auto; color: var(--gold); font-weight: 700;
}
.quote-form .dd__icon {
  display: inline-grid; place-items: center;
  width: 26px; height: 26px;
  background: var(--bg-alt);
  border-radius: 50%;
  color: var(--navy);
  flex-shrink: 0;
}
.quote-form .dd__panel li:hover .dd__icon,
.quote-form .dd__panel li.is-active .dd__icon {
  background: var(--navy); color: var(--gold);
}
.quote-form .dd__panel li[aria-selected="true"] .dd__icon {
  background: rgba(255,255,255,0.16); color: var(--gold);
}
.quote-form .dd__label { flex: 1; }

/* ─── Stepper (deprecated, kept in case markup lingers) ─────
   Booking.com-style [−] value [+]. Single row, no popover —
   minus / plus on each side of a centered live count. */
.quote-form .stepper {
  display: flex; align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.quote-form .stepper:hover { border-color: rgba(13,20,24,0.22); }
.quote-form .stepper:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,23,39,0.12);
}
.quote-form .stepper__btn {
  flex: 0 0 40px;
  border: 0;
  background: var(--bg-alt);
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  display: grid; place-items: center;
  user-select: none;
}
.quote-form .stepper__btn:hover:not(:disabled) {
  background: var(--navy);
  color: #fff;
}
.quote-form .stepper__btn:active:not(:disabled) {
  background: var(--navy-deep);
}
.quote-form .stepper__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.quote-form .stepper__value {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 5px;
  font-size: 14px;
  padding: 0 8px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.quote-form .stepper__number {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.quote-form .stepper__unit {
  color: var(--ink-mute);
  font-size: 13px;
}

/* Compact text-only vehicle pills — 4 across, name + price per pill. */
.quote-form .vehicle-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.quote-form .vehicle-grid label {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  padding: 9px 6px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  color: var(--ink); text-transform: none; letter-spacing: 0;
  cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  margin-bottom: 0; text-align: center;
  min-height: 56px;
}
.quote-form .vehicle-grid label:hover { background: var(--bg-alt); }
.quote-form .vehicle-grid input { display: none; }
.quote-form .vehicle-grid .vehicle-name { font-size: 12px; line-height: 1.2; }
.quote-form .vehicle-grid label .mono { font-size: 11px; letter-spacing: 0.06em; }
.quote-form .vehicle-grid label:has(input:checked) {
  border-color: var(--navy); background: var(--navy); color: #fff;
}
.quote-form .vehicle-grid label:has(input:checked) .mono { color: var(--gold); }

/* Slider variant — used when > 4 vehicles. Horizontal scroll with
   snap. Native scrollbar styled thin. */
.quote-form .vehicle-grid--slider {
  display: flex; gap: 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.quote-form .vehicle-grid--slider::-webkit-scrollbar { height: 6px; }
.quote-form .vehicle-grid--slider::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.quote-form .vehicle-grid--slider label {
  flex: 0 0 calc(25% - 4.5px); scroll-snap-align: start; min-width: 96px;
}

.quote-form .estimate {
  margin-top: 12px;
  padding: 12px 14px;
  background: linear-gradient(180deg, var(--bg-alt), #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: space-between;
}
.quote-form .estimate__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.quote-form .estimate__price { font-size: 24px; font-weight: 700; color: var(--navy); }
.quote-form .estimate__price .small { font-size: 12px; color: var(--ink-mute); font-weight: 500; margin-left: 4px; }

.quote-form .actions { margin-top: 12px; display: flex; gap: 8px; }
.quote-form .actions .btn { flex: 1; padding: 12px; font-size: 14px; }
.quote-form .actions .btn--back {
  flex: 0 0 auto; background: transparent; color: var(--ink-soft);
  border: 1px solid var(--border);
}
.quote-form .actions .btn--back:hover { background: var(--bg-alt); }
.quote-form__hint { margin-top: 8px; font-size: 11px; color: var(--ink-mute); text-align: center; }
.quote-form__warn { color: var(--danger); font-size: 14px; padding: 18px; }

/* Step 2 — quote summary card at the top so users see what they're paying for. */
.quote-form__summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  background: var(--navy); color: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  font-size: 13px;
}
.quote-form__summary strong { display: block; margin-bottom: 2px; font-weight: 600; }
.quote-form__summary .mono { color: rgba(255,255,255,0.6); }
.quote-form__summary .price { font-size: 18px; font-weight: 700; color: var(--gold); white-space: nowrap; }

/* ─── Sections ────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }
.section__title { font-size: clamp(1.6rem, 2.4vw, 2.2rem); max-width: 720px; }
.section__sub   { max-width: 720px; }
.section__cta   { margin-top: 28px; }

/* ─── Static pages (Contact / Privacy / generic) ──────────────── */
.prose { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.prose h2 { font-size: 1.15rem; color: var(--ink); margin: 28px 0 8px; }
.prose p { margin: 0 0 14px; }
.prose ul { margin: 0 0 16px; padding-left: 20px; }
.prose li { margin: 4px 0; }
.prose a { color: var(--navy); text-decoration: underline; }

.page-contact .section__sub { margin-bottom: 8px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px;
  margin-top: 36px; align-items: start;
}
.contact-details h3 { font-size: 1.05rem; margin: 0 0 14px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 18px; }
.contact-list li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.contact-list__label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-soft);
}
.contact-list a { color: var(--navy); font-weight: 600; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-note { font-size: 13px; color: var(--ink-soft); }

.contact-form label {
  display: block; font-size: 13px; font-weight: 600;
  margin: 14px 0 5px; color: var(--ink);
}
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 11px 13px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font: inherit; font-size: 14px; background: #fff; color: var(--ink);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--navy);
}
.contact-form textarea { resize: vertical; }
.contact-form .contact-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.contact-form .btn { margin-top: 18px; }
.contact-opt { font-weight: 400; color: var(--ink-soft); }
.contact-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-notice {
  padding: 12px 14px; border-radius: var(--radius-sm);
  font-size: 14px; margin-bottom: 16px;
}
.contact-notice--ok  { background: rgba(16,185,129,0.12); color: #0f7a5a; }
.contact-notice--err { background: rgba(220,38,38,0.10); color: #b42318; }

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form .contact-row { grid-template-columns: 1fr; }
}

/* ─── Steps ───────────────────────────────────────────────────── */
.steps {
  list-style: none; padding: 0; margin: 48px 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  counter-reset: step;
}
.steps li {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.step__num {
  font-family: var(--font-mono); font-weight: 700; font-size: 13px;
  color: var(--gold); letter-spacing: 0.1em;
  margin-bottom: 12px;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* ─── Fleet ───────────────────────────────────────────────────── */
.fleet-grid {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.fleet-card {
  position: relative;
  background: #fff; border-radius: var(--radius-lg);
  padding: 22px; border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.fleet-card__tag {
  position: absolute; top: 14px; right: 14px;
  padding: 3px 8px; border-radius: 999px;
  background: var(--gold); color: var(--navy-deep);
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.fleet-card__icon {
  height: 80px; margin-bottom: 16px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--navy), var(--navy-deep));
  position: relative;
  overflow: hidden;
}
.fleet-card__icon::after {
  content: ""; position: absolute; left: 50%; bottom: -8px;
  width: 80%; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); transform: translateX(-50%);
}
.fleet-card__photo {
  width: 100%; height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
  background: var(--bg-alt);
}
.fleet-card h3 { margin-top: 4px; }
.fleet-card p  { font-size: 13px; line-height: 1.55; flex: 1; }
.fleet-card__meta { list-style: none; padding: 0; margin: 12px 0; display: flex; gap: 12px; }
.fleet-card__meta li { font-size: 13px; color: var(--ink); }
.fleet-card__price {
  display: flex; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.fleet-card__price strong { font-size: 20px; color: var(--navy); }

/* Slider variant — used when fleet has > 4 vehicles. Horizontal
   scroll with snap-points; cards keep their normal width. */
.fleet-grid--slider {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 16px;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
  /* Negative margins so the slider can bleed to the section's edge
     when scrolled, but cards still align with the container on the
     left. */
  margin: 0 -4px;
}
.fleet-grid--slider::-webkit-scrollbar { height: 8px; }
.fleet-grid--slider::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.fleet-grid--slider::-webkit-scrollbar-thumb:hover { background: var(--ink-mute); }
.fleet-grid--slider .fleet-card {
  flex: 0 0 calc(25% - 14px);
  scroll-snap-align: start;
  min-width: 240px;
}

@media (max-width: 980px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid--slider .fleet-card { flex-basis: 60%; }
}
@media (max-width: 560px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-grid--slider .fleet-card { flex-basis: 85%; }
}

/* ─── Routes table ────────────────────────────────────────────── */
.routes-table {
  margin-top: 32px; overflow-x: auto;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.routes-table table { width: 100%; border-collapse: collapse; min-width: 640px; }
.routes-table th, .routes-table td {
  padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.routes-table th {
  background: var(--bg-alt);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute);
  font-weight: 700;
}
.routes-table tr:last-child td { border-bottom: 0; }
.routes-table tbody tr:hover { background: var(--bg-alt); }
.routes-table td.right { text-align: right; color: var(--navy); }

/* ─── Reviews ─────────────────────────────────────────────────── */
.reviews-grid {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.review-card {
  margin: 0; padding: 26px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; margin-bottom: 10px; }
.review-card blockquote {
  margin: 0 0 16px; padding: 0;
  font-size: 15px; line-height: 1.6; color: var(--ink);
}
.review-card figcaption {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--ink-mute);
}
.review-card figcaption strong { color: var(--ink); }
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ─── CTA strip ───────────────────────────────────────────────── */
.cta-strip {
  background: var(--navy);
  color: #fff;
  padding: 70px 0;
}
.cta-strip__inner {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px; align-items: center;
}
.cta-strip h2 { color: #fff; }
.cta-strip p  { color: rgba(255,255,255,0.7); max-width: 480px; }
.cta-strip__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 880px) {
  .cta-strip__inner { grid-template-columns: 1fr; }
  .cta-strip__actions { justify-content: flex-start; }
}

/* ─── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
  font-size: 14px;
}
.site-footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; }
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: #fff; opacity: 1; }
.site-footer__tag { color: rgba(255,255,255,0.6); margin: 12px 0; max-width: 380px; }
.site-footer__licence { font-size: 12px; color: rgba(255,255,255,0.5); }
.site-footer__bottom {
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
@media (max-width: 880px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__bottom { flex-direction: column; gap: 6px; align-items: flex-start; }
}
