/* =========================================================
   Express Location Plus — Design System
   Premium navy + or champagne, Plus Jakarta Sans
   Palette inspirée de Carl Friedrich Finances
   ========================================================= */

:root {
  /* Brand palette — Navy + Or */
  --ink: #0F1E3D;
  --ink-2: #1a2b52;
  --ink-3: #2d3d63;
  --blue: #B8924A;
  --blue-hover: #a07d3a;
  --blue-deep: #7a5f2a;
  --blue-soft: #e8d6a6;
  --blue-line: #d4c08a;
  --paper: #FAF7F0;
  --cream: #F2EDDF;
  --cream-2: #EAE4D0;
  --muted: #6e6a5e;
  --muted-2: #9e9a8e;
  --line: #e3ddc8;
  --line-soft: #ede8d8;
  --success: #1F8A5B;
  --warn: #C77D00;
  --danger: #b84a4a;

  /* Type */
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Radius */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-card: 0 1px 2px rgba(15, 30, 61, .04), 0 6px 20px rgba(15, 30, 61, .07);
  --shadow-lift: 0 10px 30px rgba(15, 30, 61, .13);
  --shadow-deep: 0 20px 60px rgba(15, 30, 61, .26);

  /* Spacing */
  --container: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }

/* --------- Container --------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* --------- Typography --------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--blue);
}
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.h-display { font-size: clamp(40px, 5.4vw, 76px); letter-spacing: -0.035em; line-height: 1; font-weight: 800; }
.h1 { font-size: clamp(34px, 3.6vw, 52px); }
.h2 { font-size: clamp(26px, 2.4vw, 36px); }
.h3 { font-size: 22px; }
.lede { font-size: 18px; color: var(--muted); line-height: 1.55; }
.text-mute { color: var(--muted); }
.text-blue { color: var(--blue); }

/* --------- Buttons --------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-hover); box-shadow: 0 8px 24px rgba(184, 146, 74, .40); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--cream); }
.btn-light { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-light:hover { border-color: var(--ink); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* --------- Header / Nav --------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-dark {
  background: rgba(11, 18, 32, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-link {
  padding: 9px 16px;
  border-radius: var(--r-pill);
  font-size: 14.5px;
  font-weight: 500;
  color: inherit;
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover { background: var(--cream); }
.site-header.is-dark .nav-link:hover { background: rgba(255, 255, 255, 0.08); }
.nav-link.active { color: var(--blue); }
.site-header.is-dark .nav-link.active { color: #d4b06a; }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* --------- Logo --------- */
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px; letter-spacing: -0.02em;
  color: inherit;
}
.logo-svg { height: 38px; width: auto; flex-shrink: 0; overflow: visible; }
.logo-svg .lc   { fill: #0F1E3D; }
.logo-svg .la   { fill: #B8924A; }
.logo-svg .lw   { fill: #0F1E3D; stroke: none; }
.site-header.is-dark .logo-svg .lc   { fill: #ffffff; }
.site-header.is-dark .logo-svg .la   { fill: #d4b06a; }
.site-header.is-dark .logo-svg .lw   { stroke: #ffffff; stroke-width: 2; }
.logo-mark {
  width: 34px; height: 34px;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue);
  border-radius: 9px;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.04em;
  transform: rotate(-6deg);
}
.logo-mark::after {
  content: ""; position: absolute; right: -3px; bottom: -3px;
  width: 12px; height: 12px; background: var(--ink); border-radius: 4px;
  transform: rotate(6deg);
}
.logo-wm { display: inline-flex; flex-direction: column; line-height: 1; gap: 2px; }
.logo-wm strong { font-weight: 800; }
.logo-wm small {
  font-family: var(--font-mono); font-size: 9.5px;
  font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.site-header.is-dark .logo-wm small { color: rgba(255, 255, 255, 0.55); }

/* --------- Hero (Booking-style) --------- */
.hero {
  position: relative;
  padding: 70px 0 120px;
  color: #fff;
  background: linear-gradient(180deg, #07101F 0%, #0B1220 60%, #0B1220 100%);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=1800&q=80");
  background-size: cover; background-position: center 30%;
  opacity: 0.35;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 20% 20%, rgba(184, 146, 74, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(15, 30, 61, 0.88) 75%, var(--ink) 100%);
  z-index: -1;
}
.hero-inner { text-align: left; max-width: 880px; }
.hero h1 { color: #fff; margin-top: 18px; }
.hero h1 em { font-style: normal; color: #d4b06a; }
.hero-lede { color: rgba(255, 255, 255, 0.75); margin-top: 18px; font-size: 19px; max-width: 580px; }

/* Search card */
.search-card {
  margin-top: 44px;
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow-deep);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
  gap: 4px;
  align-items: stretch;
}
.search-tabs {
  display: flex; gap: 4px;
  position: absolute; transform: translateY(-100%);
  padding-bottom: 6px;
}
.search-card-wrap { position: relative; max-width: 1080px; }
.search-tab {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  padding: 9px 18px 13px;
  border-radius: 12px 12px 0 0;
  font-size: 14px; font-weight: 500;
  transition: background .15s ease, color .15s ease;
  cursor: pointer;
}
.search-tab.active { background: #fff; color: var(--ink); }
.search-tab:hover:not(.active) { background: rgba(255, 255, 255, 0.16); color: #fff; }
.search-field {
  padding: 14px 18px;
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 4px;
  cursor: pointer;
  transition: background .15s ease;
}
.search-field:hover { background: var(--cream); }
.search-field + .search-field { border-left: 1px solid var(--line-soft); }
.search-field:hover + .search-field,
.search-field:has(+ :hover) { border-left-color: transparent; }
.search-field label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.search-field .val {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.search-field .val.placeholder { color: var(--muted-2); font-weight: 500; }
.search-btn {
  align-self: center;
  margin-right: 4px;
  padding: 16px 26px;
}

/* Popular chips below search */
.popular-row {
  display: flex; align-items: center; gap: 8px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.chip:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.25); }
.chip.light {
  background: var(--cream); border: 1px solid var(--line); color: var(--ink);
}
.chip.light:hover { background: var(--blue-soft); border-color: var(--blue-line); color: var(--blue); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* --------- Stats strip --------- */
.stat-strip {
  margin-top: -60px; position: relative; z-index: 2;
}
.stat-strip-inner {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lift);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}
.stat {
  padding: 28px 32px;
  display: flex; align-items: center; gap: 18px;
  position: relative;
}
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 24px; bottom: 24px;
  width: 1px; background: var(--line);
}
.stat-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-val {
  font-size: 32px; font-weight: 800; letter-spacing: -0.03em;
  line-height: 1; color: var(--ink);
}
.stat-lab { font-size: 14px; color: var(--muted); margin-top: 4px; }

/* --------- Sections --------- */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--ink); color: #fff; }
.section-cream { background: var(--cream); }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 40px;
}
.section-head-stack { max-width: 620px; }
.section-head-stack h2 { margin-top: 12px; }

/* --------- Vehicle cards --------- */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.vehicle-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}
.vehicle-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--cream);
  overflow: hidden;
}
.vehicle-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.vehicle-card:hover .vehicle-img img { transform: scale(1.04); }
.vehicle-tag {
  position: absolute; top: 14px; left: 14px;
  background: #fff;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
}
.vehicle-fav {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3);
  transition: color .15s ease, background .15s ease;
}
.vehicle-fav:hover { color: var(--blue); background: var(--blue-soft); }
.vehicle-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.vehicle-title {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 10px;
}
.vehicle-title h3 { font-size: 18px; font-weight: 700; }
.vehicle-title .sub {
  font-size: 13px; color: var(--muted); margin-top: 2px;
}
.vehicle-rating {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--cream); padding: 3px 8px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600;
}
.vehicle-rating .star { color: var(--blue); }
.vehicle-specs {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}
.vehicle-specs span {
  display: inline-flex; align-items: center; gap: 5px;
}
.vehicle-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--line-soft);
}
.vehicle-price { display: flex; align-items: baseline; gap: 4px; }
.vehicle-price strong {
  font-size: 24px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.02em;
}
.vehicle-price small { font-size: 13px; color: var(--muted); }
.vehicle-actions { display: flex; gap: 8px; }

/* --------- Why us --------- */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.why-card {
  padding: 32px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.why-card h3 { font-size: 18px; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 14.5px; margin: 0; }
.why-card .num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-mono); font-size: 12px; color: var(--muted-2);
}

/* --------- Help block --------- */
.help-cta {
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.help-cta::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 360px; height: 360px;
  border-radius: 50%; background: var(--blue); filter: blur(80px); opacity: 0.4;
}
.help-cta h2 { font-size: 38px; line-height: 1.05; max-width: 520px; position: relative; }
.help-cta p { color: rgba(255, 255, 255, 0.7); margin: 14px 0 0; max-width: 480px; position: relative; }
.help-cta-actions { display: flex; gap: 10px; position: relative; flex-wrap: wrap; }

/* --------- Footer --------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255, 255, 255, 0.65); font-size: 14.5px; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-tagline { color: rgba(255, 255, 255, 0.6); font-size: 14.5px; margin: 20px 0 24px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.footer-social a:hover { background: var(--blue); color: #fff; }
.footer-base {
  display: flex; justify-content: space-between;
  padding-top: 32px;
  font-size: 13px; color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap; gap: 16px;
}
.footer-base a:hover { color: #fff; }

/* --------- Page header (subpages) --------- */
.page-head {
  background: linear-gradient(135deg, #B8924A 0%, #9a7535 100%);
  padding: 56px 0 40px;
  border-bottom: none;
  color: #fff;
}
.page-head.dark {
  background: var(--ink); color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  padding: 80px 0;
}
.page-head .crumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}
.page-head .crumb a { color: rgba(255, 255, 255, 0.65); text-decoration: none; }
.page-head .crumb a:hover { color: #fff; }
.page-head.dark .crumb { color: rgba(255, 255, 255, 0.55); }
.page-head.dark .crumb a { color: rgba(255, 255, 255, 0.55); }
.page-head h1 { margin: 0; color: #fff; }
.page-head .h1 { color: #fff; }
.page-head .h-display { color: #fff; }
.page-head .lede { color: rgba(255, 255, 255, 0.82); }
.page-head .eyebrow { color: rgba(255, 255, 255, 0.72); }
.page-head .eyebrow::before { background: rgba(255, 255, 255, 0.5); }

/* --------- Filters sidebar (vehicules) --------- */
.list-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding-top: 32px; padding-bottom: 96px; }
.list-layout .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
.list-layout .vehicle-img { aspect-ratio: 16 / 11; }
.filters {
  position: sticky; top: 100px;
  align-self: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 8px;
}
.filter-group { padding: 18px 18px 20px; border-bottom: 1px solid var(--line-soft); }
.filter-group:last-child { border-bottom: 0; }
.filter-group h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; display: flex; justify-content: space-between; }
.filter-group h4 .count { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: var(--muted); }

.input {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff;
  font-size: 14.5px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.input-with-icon { position: relative; }
.input-with-icon svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted-2); pointer-events: none; }
.input-with-icon .input { padding-left: 40px; }

.check-list { display: flex; flex-direction: column; gap: 8px; }
.check {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  padding: 2px 0;
}
.check input { appearance: none; -webkit-appearance: none; width: 16px; height: 16px; border: 1.5px solid var(--line); border-radius: 4px; position: relative; cursor: pointer; flex-shrink: 0; transition: border-color .15s, background .15s; }
.check input:checked { background: var(--blue); border-color: var(--blue); }
.check input:checked::after {
  content: ""; position: absolute; left: 4px; top: 1px;
  width: 5px; height: 9px; border: solid #fff; border-width: 0 1.8px 1.8px 0; transform: rotate(45deg);
}
.check .ctxt { flex: 1; }
.check .ccount { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); }

.chip-row { display: flex; flex-wrap: wrap; gap: 6px; }

/* Range slider */
.range-wrap { padding-top: 4px; }
.range {
  -webkit-appearance: none; appearance: none; width: 100%; height: 4px;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) 60%, var(--line) 60%, var(--line) 100%);
  border-radius: 2px; outline: none;
}
.range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; background: #fff; border: 2px solid var(--blue); border-radius: 50%; cursor: pointer; }
.range::-moz-range-thumb { width: 18px; height: 18px; background: #fff; border: 2px solid var(--blue); border-radius: 50%; cursor: pointer; }
.range-labels { display: flex; justify-content: space-between; margin-top: 10px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.range-labels .v { color: var(--blue); font-weight: 600; }

/* List toolbar */
.list-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 20px; flex-wrap: wrap;
}
.list-count { font-size: 15px; color: var(--muted); }
.list-count strong { color: var(--ink); font-size: 20px; font-weight: 800; }
.sort-row { display: flex; align-items: center; gap: 8px; }
.sort-row small { font-size: 13px; color: var(--muted); margin-right: 4px; }

/* Pagination */
.pagination {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 40px;
}
.pagination button, .pagination span {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: #fff; border: 1px solid var(--line);
  font-size: 14px; font-weight: 600; color: var(--ink);
  cursor: pointer; transition: all .15s ease;
}
.pagination button:hover { border-color: var(--ink); }
.pagination .current { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination .gap { border: 0; background: transparent; cursor: default; color: var(--muted-2); }

/* --------- Espace --------- */
.app-layout { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 73px); }
.app-side {
  background: var(--cream);
  border-right: 1px solid var(--line);
  padding: 28px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.app-side .user-mini {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff; font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.app-side .user-mini strong { font-size: 14.5px; }
.app-side .user-mini small { display: block; color: var(--muted); font-size: 12px; }
.menu-item {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 500;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.menu-item:hover { background: rgba(11, 18, 32, 0.05); }
.menu-item.active { background: var(--ink); color: #fff; }
.menu-item.active svg { color: #fff; }
.menu-item .badge {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  background: var(--blue); color: #fff;
  padding: 2px 7px; border-radius: var(--r-pill);
}
.app-main { padding: 36px 40px 80px; }

/* KPI cards */
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 36px; }
.kpi {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  position: relative;
}
.kpi-lab { font-size: 13px; color: var(--muted); }
.kpi-val { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-top: 4px; }
.kpi-trend { font-size: 12px; color: var(--success); font-weight: 600; margin-top: 4px; display: inline-flex; align-items: center; gap: 4px; }
.kpi-trend.down { color: var(--danger); }
.kpi-trend.flat { color: var(--muted); }
.kpi .icon-box {
  position: absolute; top: 18px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}

/* Reservation table */
.card-block {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
}
.card-head {
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.card-head h3 { font-size: 17px; }
.res-row {
  display: grid;
  grid-template-columns: 64px 1.4fr 1.2fr 1fr 110px 90px;
  align-items: center; gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line-soft);
  transition: background .12s ease;
}
.res-row:hover { background: var(--cream); }
.res-row:last-child { border-bottom: 0; }
.res-thumb {
  width: 64px; height: 44px;
  border-radius: 8px;
  background: var(--cream);
  overflow: hidden;
}
.res-thumb img { width: 100%; height: 100%; object-fit: cover; }
.res-name { font-size: 15px; font-weight: 600; }
.res-ref { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.res-dates { font-size: 13.5px; }
.res-price { font-weight: 700; font-size: 16px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 11px;
  border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 600;
  background: var(--cream); color: var(--ink-2);
}
.pill.success { background: #DEF3E6; color: #1B6B3F; }
.pill.info { background: var(--blue-soft); color: var(--blue); }
.pill.warn { background: #FFF1D6; color: #8B5A00; }
.pill.danger { background: #FBDEDE; color: #9C2A2A; }
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.res-head {
  display: grid;
  grid-template-columns: 64px 1.4fr 1.2fr 1fr 110px 90px;
  gap: 14px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 500;
}

/* --------- Contact --------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding: 64px 0;
}
.contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 36px 36px 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  margin-bottom: 7px;
}
.textarea {
  width: 100%; min-height: 140px;
  padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; font-family: inherit; font-size: 14.5px;
  resize: vertical;
}
.textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  background: #fff;
}
.contact-card h4 { font-size: 13px; color: var(--muted); margin-bottom: 6px; font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-card .val { font-size: 18px; font-weight: 700; }
.contact-card .sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.contact-card.dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.contact-card.dark h4 { color: rgba(255, 255, 255, 0.6); }
.contact-card.dark .sub { color: rgba(255, 255, 255, 0.6); }
.map-card { aspect-ratio: 4 / 3; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); position: relative; }
.map-card iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2) contrast(1.05); }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 26px;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq-card:hover { border-color: var(--ink); }
.faq-q { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; }
.faq-q h3 { font-size: 16px; }
.faq-q .plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}
.faq-a { color: var(--muted); margin: 12px 0 0; font-size: 14.5px; line-height: 1.55; }

/* --------- À propos specifics --------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--ink);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img .badge {
  position: absolute; bottom: 24px; left: 24px;
  background: #fff; color: var(--ink);
  padding: 14px 18px; border-radius: 14px;
  font-size: 13px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-card);
}
.about-img .badge strong { font-size: 22px; font-weight: 800; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.value-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.value-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.value-card h3 { font-size: 19px; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

.timeline-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-top: 40px;
}
.tline {
  padding: 24px 18px 28px;
  border-left: 2px solid var(--line);
  position: relative;
}
.tline:first-child { border-left-color: var(--blue); }
.tline .year {
  font-size: 28px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink);
}
.tline .lab { color: var(--muted); font-size: 14px; margin-top: 4px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card {}
.team-img { aspect-ratio: 4 / 5; border-radius: var(--r-md); overflow: hidden; background: var(--cream); }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.team-card:hover .team-img img { transform: scale(1.03); }
.team-card h3 { font-size: 17px; margin-top: 14px; }
.team-card .role { color: var(--muted); font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* =========================================================
   ADMIN (back-office)
   ========================================================= */
.admin-layout {
  display: grid;
  grid-template-columns: 248px 1fr;
  min-height: 100vh;
  background: var(--cream);
}
.admin-side {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  display: flex; flex-direction: column;
  padding: 22px 16px;
  position: sticky; top: 0; height: 100vh;
  overflow-y: auto;
}
.admin-side .logo { color: #fff; margin-bottom: 22px; padding: 0 4px; }
.admin-side .logo-wm small { color: rgba(255, 255, 255, 0.5); }
.admin-side .logo-mark { background: var(--blue); }
.admin-section-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 14px 12px 8px;
  margin-top: 8px;
}
.admin-menu {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  margin-bottom: 2px;
}
.admin-menu:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.admin-menu.active { background: var(--blue); color: #fff; }
.admin-menu.active svg { color: #fff; }
.admin-menu .badge {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 2px 7px; border-radius: var(--r-pill);
}
.admin-menu.active .badge { background: rgba(0, 0, 0, 0.2); }
.admin-side-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; gap: 10px;
}
.admin-side-foot .avatar { width: 38px; height: 38px; font-size: 14px; }
.admin-side-foot strong { color: #fff; font-size: 14px; display: block; }
.admin-side-foot small { color: rgba(255, 255, 255, 0.5); font-size: 12px; }

.admin-main { display: flex; flex-direction: column; min-width: 0; }

.admin-topbar {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 32px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 10;
}
.admin-search {
  position: relative;
  flex: 1; max-width: 480px;
}
.admin-search svg {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%); color: var(--muted-2); pointer-events: none;
}
.admin-search input {
  width: 100%; padding: 11px 14px 11px 42px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  font-size: 14.5px;
  background: var(--cream);
}
.admin-search input:focus { outline: none; border-color: var(--blue); background: #fff; }
.admin-search kbd {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 11px;
  background: #fff; border: 1px solid var(--line);
  padding: 1px 6px; border-radius: 4px; color: var(--muted);
}
.admin-topbar-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-2);
  cursor: pointer;
  position: relative;
  transition: border-color .15s ease, background .15s ease;
}
.icon-btn:hover { border-color: var(--ink-3); background: var(--cream); }
.icon-btn .dot {
  position: absolute; top: 8px; right: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid #fff;
}

.admin-content {
  padding: 32px;
  flex: 1;
}
.admin-view { display: none; }
.admin-view.active { display: block; }

.admin-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 26px; flex-wrap: wrap; gap: 14px;
}
.admin-head-row h1 { font-size: 30px; }
.admin-head-row p { color: var(--muted); font-size: 14.5px; margin: 6px 0 0; }

/* KPI cards (admin variant) */
.admin-kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }

/* Charts area */
.admin-charts {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.chart-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 24px;
}
.chart-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.chart-head h3 { font-size: 16px; }
.chart-head small { color: var(--muted); font-size: 12.5px; font-family: var(--font-mono); }
.chart-tabs { display: flex; gap: 4px; }
.chart-tabs button {
  padding: 5px 10px;
  font-size: 12.5px; font-weight: 600;
  border-radius: 6px;
  color: var(--muted);
  transition: background .15s ease, color .15s ease;
}
.chart-tabs button.active { background: var(--ink); color: #fff; }

.legend { display: flex; gap: 18px; font-size: 13px; color: var(--muted); margin-top: 14px; }
.legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend .sw { width: 10px; height: 10px; border-radius: 3px; }

/* Donut */
.donut-wrap { display: flex; align-items: center; gap: 20px; }
.donut-legend { display: flex; flex-direction: column; gap: 10px; font-size: 13px; flex: 1; }
.donut-legend > div { display: flex; align-items: center; gap: 10px; }
.donut-legend .sw { width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0; }
.donut-legend strong { margin-left: auto; }

/* Admin table */
.admin-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.admin-table .table-toolbar {
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}
.admin-table table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td {
  padding: 12px 20px;
  text-align: left;
  font-size: 13.5px;
}
.admin-table th {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.admin-table th:first-child, .admin-table td:first-child { padding-left: 24px; }
.admin-table th:last-child, .admin-table td:last-child { padding-right: 24px; text-align: right; }
.admin-table tbody tr { border-bottom: 1px solid var(--line-soft); }
.admin-table tbody tr:last-child { border-bottom: 0; }
.admin-table tbody tr:hover { background: var(--cream); }
.admin-table .row-thumb {
  display: inline-flex; align-items: center; gap: 12px;
}
.admin-table .row-thumb img {
  width: 48px; height: 32px; border-radius: 6px; object-fit: cover; flex-shrink: 0;
}
.admin-table .row-thumb strong { display: block; font-size: 14px; }
.admin-table .row-thumb small { color: var(--muted); font-family: var(--font-mono); font-size: 11px; }
.row-actions { display: inline-flex; gap: 4px; }
.row-actions .icon-btn { width: 30px; height: 30px; border-radius: 7px; }

/* Activity feed */
.feed-item {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: flex-start;
}
.feed-item:last-child { border-bottom: 0; }
.feed-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feed-icon.success { background: #DEF3E6; color: #1B6B3F; }
.feed-icon.warn { background: #FFF1D6; color: #8B5A00; }
.feed-icon.danger { background: #FBDEDE; color: #9C2A2A; }
.feed-text { flex: 1; font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.feed-text strong { color: var(--ink); }
.feed-time { color: var(--muted-2); font-size: 12px; font-family: var(--font-mono); }

/* Quick alerts strip */
.alert-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 28px;
}
.alert {
  padding: 14px 18px;
  border-radius: var(--r-md);
  display: flex; gap: 12px; align-items: center;
  background: #fff;
  border: 1px solid var(--line);
}
.alert .ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.alert.danger { border-color: #F5C2C2; background: #FFF6F6; }
.alert.danger .ico { background: #FBDEDE; color: #9C2A2A; }
.alert.warn { border-color: #FBE0AC; background: #FFFBEF; }
.alert.warn .ico { background: #FFF1D6; color: #8B5A00; }
.alert.info { border-color: var(--blue-line); background: var(--blue-soft); }
.alert.info .ico { background: #fff; color: var(--blue); }
.alert .text { flex: 1; font-size: 13.5px; line-height: 1.4; }
.alert .text strong { display: block; }
.alert .text small { color: var(--muted); }

/* Fleet grid */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fleet-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.fleet-img { position: relative; aspect-ratio: 16 / 9; background: var(--cream); }
.fleet-img img { width: 100%; height: 100%; object-fit: cover; }
.fleet-img .status {
  position: absolute; top: 12px; left: 12px;
}
.fleet-img .more {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.fleet-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.fleet-body h4 { font-size: 15px; }
.fleet-body .ref { color: var(--muted); font-family: var(--font-mono); font-size: 11px; }
.fleet-meta { display: flex; gap: 12px; font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.fleet-meta span { display: inline-flex; align-items: center; gap: 4px; }
.fleet-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line-soft); }
.fleet-foot strong { font-size: 17px; }

/* Star rating colors for review moderation */
.review-mod {
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  align-items: start;
}
.review-mod + .review-mod { margin-top: 10px; }
.review-mod .meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.review-mod p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.5; }
.review-mod .actions { display: flex; gap: 6px; }

@media (max-width: 1100px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-side { display: none; }
  .admin-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-charts { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .alert-strip { grid-template-columns: 1fr; }
}

/* --------- Reservation flow --------- */
.reserve-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  padding: 32px 0 96px;
  align-items: start;
}
.stepper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.step {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--muted);
  flex-shrink: 0;
}
.step .num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  border: 1.5px solid var(--line);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.step.active .num { background: var(--blue); color: #fff; border-color: var(--blue); }
.step.active { color: var(--ink); font-weight: 600; }
.step.done .num { background: var(--ink); color: #fff; border-color: var(--ink); }
.step.done { color: var(--ink); }
.step-bar { flex: 1; height: 2px; background: var(--line); border-radius: 1px; min-width: 24px; }
.step-bar.done { background: var(--ink); }

.reserve-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 32px;
  margin-bottom: 18px;
}
.reserve-section-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.reserve-section-head .num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.reserve-section-head h2 { font-size: 22px; }

/* Option cards (insurance levels, addons) */
.option-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.option-card {
  position: relative;
  padding: 18px 18px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  background: #fff;
}
.option-card:hover { border-color: var(--ink-3); }
.option-card.active {
  border-color: var(--blue);
  background: linear-gradient(180deg, var(--blue-soft) 0%, #fff 100%);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.option-card .ribbon {
  position: absolute; top: -10px; right: 14px;
  background: var(--ink); color: #fff;
  padding: 3px 9px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--r-pill);
}
.option-card .opt-title {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-bottom: 8px;
}
.option-card .opt-title strong { font-size: 16px; }
.option-card .opt-price { font-weight: 700; font-size: 17px; }
.option-card .opt-price small { color: var(--muted); font-weight: 500; font-size: 12.5px; }
.option-card ul {
  list-style: none; padding: 0; margin: 10px 0 0;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13.5px;
  color: var(--muted);
}
.option-card ul li { display: flex; align-items: flex-start; gap: 8px; }
.option-card ul li svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* Add-on row (with checkbox-style toggle) */
.addon {
  display: grid;
  grid-template-columns: 44px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s ease;
}
.addon:hover { border-color: var(--ink-3); }
.addon.active { border-color: var(--blue); background: var(--blue-soft); }
.addon-ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--cream); color: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
}
.addon.active .addon-ico { background: #fff; color: var(--blue); }
.addon-title strong { font-size: 15px; display: block; }
.addon-title small { color: var(--muted); font-size: 13px; }
.addon-price { font-size: 15px; font-weight: 700; }
.toggle-check {
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 2px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease, border-color .15s ease;
  flex-shrink: 0;
}
.addon.active .toggle-check { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Driver form */
.field-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }

/* Payment methods */
.pay-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 22px; }
.pay-method {
  padding: 14px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  text-align: center;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
}
.pay-method:hover { border-color: var(--ink-3); }
.pay-method.active { border-color: var(--blue); background: var(--blue-soft); color: var(--blue); }
.pay-method .ico { display: block; margin: 0 auto 6px; }

.card-input {
  position: relative;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
}
.card-input-row { display: grid; grid-template-columns: 1fr 100px 100px; }
.card-input-row > input { border: 0; padding: 16px 18px; font-size: 15px; outline: none; }
.card-input-row > input + input { border-left: 1px solid var(--line); }
.card-input-row > input:focus { background: var(--cream); }
.card-input::after {
  content: ""; position: absolute; top: 50%; right: 18px; transform: translateY(-50%);
  width: 36px; height: 24px;
  background: linear-gradient(135deg, #B8924A 0%, #7a5f2a 100%);
  border-radius: 4px;
  opacity: 0.85;
}

/* Reservation summary sticky */
.res-summary {
  position: sticky; top: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.res-summary-hero { aspect-ratio: 16 / 9; background: var(--cream); position: relative; overflow: hidden; }
.res-summary-hero img { width: 100%; height: 100%; object-fit: cover; }
.res-summary-hero .tag {
  position: absolute; top: 14px; left: 14px;
  background: #fff;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
}
.res-summary-body { padding: 20px 24px 24px; }
.res-summary-body h3 { font-size: 18px; margin-bottom: 4px; }
.res-summary-body .sub { color: var(--muted); font-size: 13px; }
.summary-divider { border-top: 1px solid var(--line); margin: 18px 0; }
.summary-line {
  display: flex; justify-content: space-between;
  font-size: 14px;
  color: var(--ink-2);
  padding: 4px 0;
}
.summary-line .lab { color: var(--muted); }
.summary-line strong { color: var(--ink); }
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 16px;
  border-top: 1.5px solid var(--ink);
  margin-top: 14px;
}
.summary-total strong { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; }
.summary-total .lab { font-size: 13px; color: var(--muted); }

/* Confirmation banner */
.trust-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: var(--r-sm);
  font-size: 12.5px;
  color: var(--muted);
}
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row svg { color: var(--success); flex-shrink: 0; }

@media (max-width: 1100px) {
  .reserve-layout { grid-template-columns: 1fr; }
  .res-summary { position: static; }
  .option-cards { grid-template-columns: 1fr; }
  .field-grid-3, .field-grid-2 { grid-template-columns: 1fr; }
  .pay-methods { grid-template-columns: repeat(2, 1fr); }
  .stepper { overflow-x: auto; padding-bottom: 8px; }
}

/* --------- Vehicle detail --------- */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  padding: 32px 0 96px;
  align-items: start;
}
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.gallery-main {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream);
}
.gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .25s ease;
}
.gallery-main img.swapping { opacity: 0; }
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.gallery-nav:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.gallery-nav.prev { left: 18px; }
.gallery-nav.next { right: 18px; }
.gallery-main .badge-row {
  position: absolute; top: 18px; left: 18px;
  display: flex; gap: 8px;
}
.gallery-main .badge-row .vehicle-tag {
  position: static;
}
.gallery-counter {
  position: absolute; right: 18px; bottom: 18px;
  background: rgba(11, 18, 32, 0.7);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.gallery-thumb {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease;
  padding: 0;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover { transform: translateY(-2px); }
.gallery-thumb.active { border-color: var(--blue); box-shadow: 0 0 0 2px var(--blue-soft); }

/* Detail title block */
.detail-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 20px;
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.detail-head h1 { margin-bottom: 8px; }
.detail-meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  color: var(--muted);
  font-size: 14.5px;
}
.detail-meta .vehicle-rating { font-size: 14px; padding: 4px 10px; }
.detail-meta .sep { color: var(--line); }

/* Tabs */
.tabs {
  display: flex; gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.tab {
  padding: 12px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  margin-bottom: -1px;
  transition: color .15s ease, border-color .15s ease;
}
.tab:hover { color: var(--ink); }
.tab.active { color: var(--ink); border-bottom-color: var(--blue); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Specs grid */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.spec-card {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 8px;
  background: #fff;
  transition: border-color .15s ease;
}
.spec-card:hover { border-color: var(--ink-3); }
.spec-card .ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.spec-card .lab { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-mono); font-weight: 500; }
.spec-card .val { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }

.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 28px;
}
.equip {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
  border-bottom: 1px dashed var(--line-soft);
}
.equip .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-soft); color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.equip.off { color: var(--muted-2); }
.equip.off .dot { background: var(--cream); color: var(--muted-2); }

/* Reviews list */
.review {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
}
.review:last-child { border-bottom: 0; }
.review .avatar { width: 44px; height: 44px; font-size: 15px; }
.review-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.review-head strong { font-size: 15px; }
.review-head small { color: var(--muted-2); font-size: 12.5px; font-family: var(--font-mono); }
.review .vehicle-rating { font-size: 12.5px; padding: 2px 8px; }
.review p { margin: 0; color: var(--ink-2); line-height: 1.55; font-size: 14.5px; }

/* Booking sidebar */
.booking-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.booking-price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 4px;
}
.booking-price-row strong { font-size: 32px; font-weight: 800; letter-spacing: -0.03em; }
.booking-price-row small { color: var(--muted); font-size: 14px; }
.booking-rating-row { color: var(--muted); font-size: 13.5px; margin-bottom: 22px; display: flex; align-items: center; gap: 8px; }

.date-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 12px;
}
.date-field {
  padding: 10px 14px;
  cursor: pointer;
  transition: background .15s ease;
}
.date-field:hover { background: var(--cream); }
.date-field + .date-field { border-left: 1px solid var(--line); }
.date-field label {
  display: block;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
  margin-bottom: 4px;
}
.date-field .val { font-size: 14.5px; font-weight: 600; }
.date-field .val small { color: var(--muted); font-size: 12.5px; font-weight: 500; }

.summary-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  font-size: 14.5px;
  color: var(--ink-2);
}
.summary-row.total {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.summary-row.total strong { font-size: 22px; }
.summary-row a { color: var(--blue); text-decoration: underline; cursor: pointer; }

.booking-incl {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 13.5px; color: var(--muted);
}
.booking-incl span {
  display: flex; align-items: center; gap: 8px;
}
.booking-incl svg { color: var(--success); flex-shrink: 0; }

/* Similar vehicles */
.section-light { background: var(--cream); }

@media (max-width: 1100px) {
  .detail-layout { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-thumbs { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 720px) {
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .gallery-thumb:nth-child(5) { display: none; }
  .specs-grid, .equip-grid { grid-template-columns: 1fr; }
}

/* --------- Responsive (basic) --------- */
@media (max-width: 1100px) {
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-list { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .list-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .search-card { grid-template-columns: 1fr 1fr; gap: 8px; }
  .search-btn { grid-column: span 2; }
  .app-layout { grid-template-columns: 1fr; }
  .app-side { display: none; }
}
@media (max-width: 720px) {
  .nav-links { display: none; /* géré par header view à 790px */ }
  .vehicle-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-strip-inner { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
  .help-cta { grid-template-columns: 1fr; padding: 36px 28px; }
  .section { padding: 64px 0; }
  .res-row, .res-head { grid-template-columns: 50px 1fr 90px; }
  .res-row .res-dates, .res-row .res-price, .res-head > :nth-child(3), .res-head > :nth-child(4) { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .list-layout .vehicle-grid { grid-template-columns: 1fr; }
  .list-layout .vehicle-foot { flex-direction: column; align-items: stretch; gap: 10px; }
  .list-layout .vehicle-price { justify-content: center; white-space: normal; }
  .list-layout .vehicle-actions { flex-direction: row; gap: 8px; }
  .list-layout .vehicle-actions .btn { flex: 1; justify-content: center; text-align: center; }
}
