/*
Theme Name: Pura Life (Kadence Child)
Template: kadence
Description: Custom Pura Life Car Rental theme, child of Kadence. Phase 1 build (Header/Home/Fleet/About/Discounts/Locations).
Version: 1.0.1
*/

/* ===================== 0. TOKENS ===================== */
:root {
  --font-display: "Baloo 2", "Trebuchet MS", system-ui, sans-serif;
  --font-body:    "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;

  --teal-50:  #e6f6f5;  --teal-100: #c4ebe9;  --teal-200: #93dad7;
  --teal-300: #5ec6c3;  --teal-400: #2faaa8;  --teal-500: #0e8f8f;
  --teal-600: #0a7375;  --teal-700: #0b5a5d;  --teal-800: #0d4346;  --teal-900: #0a2c31;

  --sun-50: #fff4e1; --sun-100: #ffe3b5; --sun-200: #ffca77; --sun-300: #ffad3a;
  --sun-400: #f7950f; --sun-500: #e88700; --sun-600: #c46d00; --sun-700: #985400; --sun-800: #6e3d08;

  --palm-50: #eef6dd; --palm-100: #d8ebb3; --palm-200: #b9d97a; --palm-300: #97c247;
  --palm-400: #7aa42b; --palm-500: #648a1d; --palm-600: #4d6b14; --palm-700: #3a510f;

  --aqua-50: #f0fbfb; --aqua-100: #dcf4f4; --aqua-200: #c2ecec;

  --sand-50: #fdfbf4; --sand-100: #f8f2e4; --sand-200: #efe6d1; --sand-300: #e3d6ba;

  --ink-900: #0a2a30; --ink-800: #163a40; --ink-700: #2c4d52; --ink-600: #466a6f;
  --ink-500: #6a8a8e; --ink-400: #97b1b3; --ink-300: #c2d2d3; --ink-200: #e0e8e7; --ink-100: #eef3f2;

  --white: #ffffff;
  --red-500: #d64545; --red-50: #fbe7e7;

  --brand-primary: var(--teal-500); --brand-primary-hover: var(--teal-600); --brand-primary-press: var(--teal-700); --brand-primary-soft: var(--teal-50);
  --brand-accent: var(--sun-500); --brand-accent-hover: var(--sun-600); --brand-accent-press: var(--sun-700); --brand-accent-soft: var(--sun-50);
  --surface-page: var(--sand-50); --surface-card: var(--white); --surface-alt: var(--sand-100); --surface-sunk: var(--aqua-50); --surface-inverse: var(--ink-900);
  --text-strong: var(--ink-900); --text-body: var(--ink-700); --text-muted: var(--ink-500); --text-inverse: var(--white); --text-on-accent: var(--white); --text-link: var(--teal-600);
  --border: var(--sand-300); --border-strong: var(--ink-300);
  --status-success: var(--palm-500); --status-success-bg: var(--palm-50);
  --status-warning: var(--sun-500); --status-warning-bg: var(--sun-50);
  --status-danger: var(--red-500); --status-danger-bg: var(--red-50);
  --focus-ring: 0 0 0 3px rgba(14,143,143,0.35);

  --grad-sunset: linear-gradient(100deg, #ffd25e 0%, #f7950f 45%, #e8730a 100%);
  --grad-ocean:  linear-gradient(160deg, #2faaa8 0%, #0e8f8f 55%, #0b5a5d 100%);
  --grad-sky:    linear-gradient(180deg, #bfeceb 0%, #e9f7f0 100%);

  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px; --space-9: 96px;

  --radius-xs: 6px; --radius-sm: 10px; --radius-md: 16px; --radius-lg: 24px; --radius-xl: 32px;
  --radius-pill: 999px; --radius-card: 24px;

  --border-width: 1.5px;
  --border-width-strong: 2px;

  --shadow-xs: 0 1px 2px rgba(10,42,48,0.06);
  --shadow-sm: 0 2px 8px rgba(10,42,48,0.08);
  --shadow-md: 0 8px 22px rgba(10,42,48,0.10);
  --shadow-lg: 0 18px 44px rgba(10,42,48,0.14);
  --shadow-accent: 0 10px 24px rgba(232,135,0,0.30);
  --shadow-teal:   0 10px 24px rgba(14,143,143,0.28);

  --container-max: 1200px;
  --container-narrow: 760px;
  --gutter: 24px;
  --header-h: 76px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 140ms;
  --dur-base: 220ms;
  --dur-reveal: 680ms;
  --reveal-rise: 22px;
  --reveal-stagger: 90ms;

  --fs-display: 72px;
  --fs-h1: 40px; --fs-h2: 32px; --fs-h3: 24px; --fs-h4: 20px;
  --fs-lg: 18px; --fs-body: 16px; --fs-sm: 14px; --fs-xs: 12px;

  --lh-tight: 1.05; --lh-snug: 1.2; --lh-normal: 1.5; --lh-relaxed: 1.65;
  --ls-tight: -0.02em; --ls-normal: 0; --ls-wide: 0.04em; --ls-eyebrow: 0.14em;
}

/* ===================== 1. BASE ===================== */
* { box-sizing: border-box; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
h1 { font-size: 40px; font-weight: 800; }
h2 { font-size: 32px; font-weight: 700; }
h3 { font-size: 24px; font-weight: 700; }
h4 { font-size: 20px; font-weight: 600; }
p { margin: 0 0 16px; }
a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }
strong, b { font-weight: 700; color: var(--text-strong); }
img { max-width: 100%; display: block; }
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 6px; }
ul, ol { margin: 0; padding: 0; list-style: none; }
select { -webkit-appearance: none; appearance: none; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* ===================== 2. BUTTONS / BADGES / SPEC-PILL / RATING / PRICE-BLOCK ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 140ms cubic-bezier(0.22,1,0.36,1), filter 140ms cubic-bezier(0.22,1,0.36,1), box-shadow 140ms cubic-bezier(0.22,1,0.36,1);
}
.btn:active { transform: scale(0.96); }
.btn:hover { filter: brightness(1.05); }

.btn--sm { height: 38px; padding: 8px 16px; font-size: 14px; gap: 6px; }
.btn--md { height: 48px; padding: 12px 22px; font-size: 16px; gap: 8px; }
.btn--lg { height: 58px; padding: 16px 30px; font-size: 18px; gap: 10px; }

.btn--primary { background: var(--brand-accent); color: var(--text-on-accent); border: 2px solid transparent; box-shadow: var(--shadow-accent); }
.btn--secondary { background: var(--brand-primary); color: #fff; border: 2px solid transparent; box-shadow: var(--shadow-teal); }
.btn--outline { background: transparent; color: var(--brand-primary); border: 2px solid var(--brand-primary); }
.btn--outline:hover { background: var(--brand-primary-soft); }
.btn--ghost { background: transparent; color: var(--text-strong); border: 2px solid transparent; }
.btn--ghost:hover { background: var(--surface-alt); }
.btn--full { width: 100%; }
.btn[disabled] { cursor: not-allowed; opacity: 0.5; }

.badge {
  display: inline-flex; align-items: center; gap: 5px;
  border-radius: 999px;
  font-family: var(--font-body); font-weight: 800; letter-spacing: 0.01em;
  white-space: nowrap;
}
.badge--md { padding: 5px 12px; font-size: 12.5px; }
.badge--sm { padding: 3px 9px; font-size: 11px; }
.badge--teal { background: var(--teal-50); color: var(--teal-700); }
.badge--sun  { background: var(--sun-50); color: var(--sun-700); }
.badge--palm { background: var(--palm-50); color: var(--palm-700); }
.badge--neutral { background: var(--surface-alt); color: var(--ink-700); }
.badge--danger { background: var(--red-50); color: var(--red-500); }
.badge--solid.badge--teal { background: var(--teal-500); color: #fff; }
.badge--solid.badge--sun  { background: var(--sun-500); color: #fff; }
.badge--solid.badge--palm { background: var(--palm-500); color: #fff; }
.badge--solid.badge--danger { background: var(--red-500); color: #fff; }
a.badge, a.badge:hover { text-decoration: none; }

.spec-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  white-space: nowrap;
}
.spec-pill--aqua { background: var(--aqua-100); color: var(--teal-700); }
.spec-pill svg { width: 16px; height: 16px; }

.rating { display: inline-flex; align-items: center; gap: 8px; }
.rating__stars { display: inline-flex; gap: 2px; }
.rating__star--full { color: var(--sun-500); }
.rating__star--empty { color: var(--sand-300); }
.rating__value { font-family: var(--font-display); font-weight: 700; color: var(--text-strong); font-size: 15px; }
.rating__count { font-family: var(--font-body); font-weight: 600; color: var(--text-muted); font-size: 13px; }

.price-block { display: flex; gap: 24px; align-items: flex-end; }
.price-block--stack { flex-direction: column; gap: 10px; align-items: flex-start; }
.price-item { display: flex; flex-direction: column; line-height: 1; }
.price-item__amount { font-family: var(--font-display); font-weight: 800; color: var(--text-strong); letter-spacing: -0.02em; font-size: 22px; }
.price-item__amount--big { font-size: 34px; }
.price-item__dollar { color: var(--brand-primary); vertical-align: top; font-size: 15px; }
.price-item__dollar--big { font-size: 20px; }
.price-item__period { font-family: var(--font-body); font-weight: 700; font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.price-item__from { font-family: var(--font-body); font-weight: 700; font-size: 13px; color: var(--text-muted); vertical-align: middle; }
.price-block__deposit { font-family: var(--font-body); font-weight: 600; font-size: 12px; color: var(--text-muted); }

/* ===================== 3. VEHICLE CARD ===================== */
.vehicle-card {
  display: flex; flex-direction: column;
  background: var(--surface-card);
  border-radius: 24px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.22,1,0.36,1), box-shadow 220ms cubic-bezier(0.22,1,0.36,1);
}
.vehicle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vehicle-card__photo { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--aqua-100); }
.vehicle-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-card__photo-link { position: absolute; inset: 0; z-index: 1; display: block; }
.vehicle-card__photo .badge { z-index: 2; }
.vehicle-card__badge-category { position: absolute; bottom: 12px; left: 12px; }
.vehicle-card__badge-status { position: absolute; bottom: 12px; right: 12px; }
.vehicle-card__body { padding: 24px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.vehicle-card__name { margin: 0; font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--text-strong); }
.vehicle-card__year { font-family: var(--font-body); font-weight: 600; font-size: 13px; color: var(--text-muted); }
.vehicle-card__specs { display: flex; flex-wrap: wrap; gap: 8px; }
.vehicle-card__insurance-line { display: flex; align-items: center; gap: 6px; color: var(--status-success); font-weight: 700; font-size: 13px; }
.vehicle-card__insurance-line svg { width: 15px; height: 15px; }
.vehicle-card__mindays-line { display: flex; align-items: center; gap: 6px; color: var(--text-muted); font-weight: 700; font-size: 13.5px; }
.vehicle-card__mindays-line svg { width: 15px; height: 15px; }
.vehicle-card__footer {
  margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  padding-top: 12px; border-top: 1.5px solid var(--border);
}

/* ===================== 4. HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: 76px;
  display: flex; align-items: center;
  padding: 0 32px;
  background: rgba(253,251,244,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1.5px solid var(--border);
  gap: 20px;
}
.site-header__brand { display: flex; align-items: center; gap: 12px; cursor: pointer; text-decoration: none !important; }
.site-header__logo { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; box-shadow: var(--shadow-sm); }
.site-header__wordmark { line-height: 1.3; }
.site-header__wordmark-name { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--text-strong); }
.site-header__wordmark-sub { font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-primary); }

.site-header__nav { display: flex; gap: 4px; margin: 0 auto; }
.site-header__nav-link {
  border: none; background: transparent;
  color: var(--text-body) !important;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 9px 16px; border-radius: 999px; cursor: pointer;
  text-decoration: none !important;
}
.site-header__nav-link.is-active { background: var(--brand-primary-soft); color: var(--teal-700) !important; }
.site-header__burger { display: none; flex-direction: column; gap: 5px; border: none; background: transparent; cursor: pointer; padding: 8px; }

/* Language switcher (Polylang, Selin's CSS spec 2026-08-07 rev 2) */
.lang-switcher { position: relative; }

.lang-switcher__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--border);
  background: var(--surface-card);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: var(--text-body);
  cursor: pointer;
}

.lang-switcher__trigger:hover {
  border-color: var(--border-strong);
}

.lang-switcher__trigger:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.lang-switcher__flag {
  font-size: 16px;
  line-height: 1;
}

.lang-switcher__code {
  text-transform: uppercase;
}

.lang-switcher__chevron {
  font-size: 10px;
  line-height: 1;
  color: var(--text-muted);
}

.lang-switcher__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  background: var(--surface-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 6px;
  z-index: 60;
}

.lang-switcher.is-open .lang-switcher__menu {
  display: block;
}

.lang-switcher__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  padding: 9px 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-body);
  text-decoration: none !important;
  cursor: pointer;
  text-align: left;
}

.lang-switcher__item:hover {
  background: var(--surface-alt);
}

.lang-switcher__item.is-current {
  background: var(--brand-primary-soft);
  color: var(--teal-700);
}

.lang-switcher__item .lang-switcher__item-flag {
  font-size: 18px;
  line-height: 1;
  flex: none;
}

.mobile-nav__lang {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
  margin-top: 8px;
  border-top: 1.5px solid var(--border);
}

.mobile-nav__lang-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-body) !important;
  text-decoration: none !important;
}

.mobile-nav__lang-item.is-current {
  background: var(--brand-primary-soft);
  border-color: var(--brand-primary-soft);
  color: var(--teal-700) !important;
}
.site-header__burger span { width: 22px; height: 2px; background: var(--text-strong); border-radius: 2px; }
.site-header__mobile-nav { display: none; flex-direction: column; gap: 2px; padding: 12px 20px 20px; background: var(--surface-page); border-bottom: 1.5px solid var(--border); }
.site-header__mobile-nav a { padding: 10px 4px; font-weight: 700; color: var(--text-body); }
.site-header__mobile-nav.is-open { display: flex; }

/* ===================== 5. HOME ===================== */
.home-hero { position: relative; z-index: 20; background: var(--grad-sky); overflow: hidden; }
.home-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(1100px 500px at 78% -10%, rgba(255,210,94,0.45), transparent 60%);
}
.home-hero__inner {
  position: relative; max-width: 1200px; margin: 0 auto;
  padding: 72px 32px 60px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
}
.home-hero__title { font-size: clamp(2.8rem, 2rem + 3.5vw, 4.2rem); line-height: 1.02; margin: 14px 0 16px; color: var(--ink-900); }
.home-hero__lead { font-size: 19px; line-height: 1.5; color: var(--text-body); max-width: 520px; margin-bottom: 28px; font-weight: 600; }
.home-hero__trust-row { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; align-items: center; }
.home-hero__trust-row .insurance-line { font-size: 13.5px; font-weight: 700; color: var(--text-muted); display: inline-flex; align-items: center; gap: 6px; }
.home-hero__trust-row .insurance-line svg { color: var(--status-success); width: 16px; height: 16px; }
.home-hero__image { position: relative; justify-self: center; max-width: 420px; width: 100%; }
.home-hero__image img { width: 100%; display: block; border-radius: 32px; box-shadow: var(--shadow-lg); border: 4px solid #fff; }
.home-hero__badge {
  position: absolute; bottom: -18px; left: -18px;
  background: #fff; border-radius: 24px; box-shadow: var(--shadow-md);
  padding: 12px 18px; display: flex; align-items: center; gap: 10px;
}
.home-hero__badge-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--brand-primary-soft); color: var(--brand-primary);
  display: grid; place-items: center; flex: none;
}
.home-hero__badge-text { font-size: 12.5px; font-weight: 700; color: var(--text-body); line-height: 1.2; }

.search-bar {
  display: flex; align-items: stretch;
  background: var(--surface-card);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
  max-width: 760px;
  flex-wrap: wrap;
  position: relative;
  z-index: 30;
}
.search-bar__field { display: flex; flex-direction: column; gap: 4px; padding: 10px 16px; flex: 1; min-width: 140px; }
.search-bar__divider { width: 1px; background: var(--border); }
.search-bar__label { font-family: var(--font-body); font-weight: 800; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); display: inline-flex; align-items: center; gap: 5px; }
.search-bar__value { border: none; background: transparent; font-family: var(--font-body); font-weight: 700; font-size: 15px; color: var(--text-strong); width: 100%; padding: 0; }
.search-bar__value--placeholder, .search-bar select { color: var(--text-muted); font-weight: 600; }
.search-bar select, .search-bar input[type="date"] { border: none; background: transparent; font-family: var(--font-body); font-size: 15px; width: 100%; padding: 0; }
.search-bar__submit { display: flex; align-items: center; padding: 8px; }
.search-bar__submit-row { margin-top: 16px; }
.search-bar__field.is-invalid { border-radius: var(--radius-sm); box-shadow: 0 0 0 2px var(--status-danger) inset; }
.search-bar__field.is-invalid .search-bar__label { color: var(--status-danger); }
.search-bar__error {
  display: flex; align-items: center; gap: 8px;
  max-width: 760px; margin-top: 12px; padding: 10px 16px;
  background: var(--status-danger-bg); border: var(--border-width) solid var(--status-danger);
  border-radius: var(--radius-sm); color: var(--status-danger);
  font-family: var(--font-body); font-weight: 700; font-size: 13.5px;
}
.search-bar__error[hidden] { display: none; }

.trust-strip {
  max-width: 1200px; margin: 0 auto; padding: 44px 32px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-item__icon {
  flex: none; width: 44px; height: 44px; border-radius: 14px;
  background: var(--brand-primary-soft); color: var(--brand-primary);
  display: grid; place-items: center;
}
.trust-item__title { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--text-strong); }
.trust-item__sub { font-size: 13.5px; color: var(--text-muted); font-weight: 600; }

.featured-fleet { background: var(--surface-alt); padding: 64px 0; }
.featured-fleet__inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.featured-fleet__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 16px; }
.featured-fleet__title { margin: 8px 0 0; font-size: 36px; }
.featured-fleet__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.locations-section { max-width: 1200px; margin: 0 auto; padding: 64px 32px; }
.locations-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.locations-section__lead { font-size: 16.5px; color: var(--text-body); margin-bottom: 22px; }
.locations-section__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.locations-section__map-wrap {
  border-radius: 32px; height: 300px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-md); border: 1.5px solid var(--border);
}
.locations-section__map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.locations-section__map-card {
  position: absolute; left: 14px; bottom: 14px;
  background: var(--surface-card); border-radius: 16px; box-shadow: var(--shadow-md);
  padding: 12px 16px; display: flex; align-items: center; gap: 12px;
}
.locations-section__map-card svg { color: var(--brand-primary); width: 24px; height: 24px; }
.locations-section__map-title { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--text-strong); }
.locations-section__map-phone { font-weight: 700; font-size: 13px; color: var(--text-muted); }

.reviews-section { background: var(--surface-alt); padding: 64px 0; }
.reviews-section__head { text-align: center; margin-bottom: 36px; }
.reviews-section__title { margin: 8px 0 6px; font-size: 36px; }
.reviews-section__google-link { display: inline-block; margin-top: 10px; font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--text-link); text-decoration: underline; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.review-card {
  background: var(--surface-card); border-radius: 24px; padding: 24px;
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
}
.review-card__text { font-size: 15px; line-height: 1.6; color: var(--text-body); margin: 12px 0 16px; font-weight: 600; }
.review-card__author-row { display: flex; align-items: center; gap: 10px; }
.review-card__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--grad-sunset); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800;
}
.review-card__name { font-weight: 800; font-size: 14px; color: var(--text-strong); }
.review-card__loc { font-size: 12.5px; font-weight: 600; color: var(--text-muted); }

.reviews-hero { background: var(--grad-sky); padding: 56px 32px 52px; text-align: center; }
.reviews-hero__inner { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.reviews-hero h1 { font-family: var(--font-display); font-size: 40px; line-height: 1.1; }
.reviews-hero p { margin: 0; font-size: 16px; font-weight: 600; }

.reviews-closing { text-align: center; padding: 56px 32px 64px; }
.reviews-closing p { max-width: 520px; margin: 0 auto 24px; font-size: 17px; font-weight: 600; }
.reviews-closing__buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
@media (max-width: 620px) {
  .reviews-hero h1 { font-size: 30px; }
}

/* ===================== 6. FOOTER ===================== */
.site-footer { background: var(--ink-900); color: rgba(255,255,255,0.8); padding: 52px 32px 32px; }
.site-footer__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer__brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.site-footer__brand-name { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #fff; }
.site-footer__blurb { font-size: 14.5px; line-height: 1.6; max-width: 320px; color: rgba(255,255,255,0.7); }
.site-footer__col-title { font-family: var(--font-display); font-weight: 700; color: #fff; margin-bottom: 12px; }
.site-footer__link { display: inline-block; font-size: 14.5px; padding: 5px 0; cursor: pointer; font-weight: 600; color: inherit !important; }
.site-footer__contact-link { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 14.5px; font-weight: 600; color: inherit !important; text-decoration: none !important; }
.site-footer__legal {
  max-width: 1200px; margin: 32px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12.5px; color: rgba(255,255,255,0.5);
}

/* ===================== 7. FLEET (grid + detail) ===================== */
.fleet-hero { background: var(--grad-sky); padding: 48px 32px 36px; position: relative; overflow: hidden; }
.fleet-hero__inner { max-width: 1200px; margin: 0 auto; position: relative; }
.fleet-hero__title { margin: 8px 0 8px; font-size: 44px; }
.fleet-hero__lead { font-size: 17px; color: var(--text-body); font-weight: 600; max-width: 560px; }

.fleet-search-summary {
  max-width: 1200px; margin: 0 auto; padding: 20px 32px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.fleet-search-summary span { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--text-body); }
.fleet-search-summary__clear { font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--text-link); text-decoration: underline; }
.fleet-empty-state { grid-column: 1 / -1; text-align: center; padding: 48px 16px; font-family: var(--font-body); font-size: 16px; color: var(--text-muted); }
.fleet-empty-state a { color: var(--text-link); font-weight: 700; }

.fleet-filters { max-width: 1200px; margin: 0 auto; padding: 28px 32px 0; display: flex; align-items: center; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.fleet-filter-chip {
  border: 1.5px solid var(--border); background: var(--surface-card);
  color: var(--text-body); font-family: var(--font-body); font-weight: 700; font-size: 14px;
  padding: 8px 16px; border-radius: 999px; cursor: pointer;
}
.fleet-filter-chip.is-active { border-color: var(--brand-primary); background: var(--brand-primary-soft); color: var(--teal-700); }
.fleet-sort-btn {
  margin-left: auto; border: 1.5px solid var(--border); background: var(--surface-card);
  border-radius: 999px; padding: 8px 14px; font-family: var(--font-body); font-weight: 700; font-size: 14px;
  color: var(--text-body); cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}

.fleet-grid { max-width: 1200px; margin: 0 auto; padding: 0 32px 72px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.vehicle-detail { max-width: 1200px; margin: 0 auto; padding: 28px 32px 72px; }
.vehicle-detail__back {
  border: none; background: transparent; color: var(--text-link);
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 18px;
}
.vehicle-detail__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px; align-items: start; }

.vehicle-gallery__main { border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-md); border: 4px solid #fff; aspect-ratio: 16/11; background: var(--aqua-100); }
.vehicle-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 12px; }
.vehicle-gallery__thumb {
  padding: 0; cursor: pointer; aspect-ratio: 4/3; border-radius: 10px; overflow: hidden;
  border: 2.5px solid transparent; background: var(--aqua-100); outline: none;
}
.vehicle-gallery__thumb.is-active { border-color: var(--brand-primary); }
.vehicle-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; }
.vehicle-gallery__thumb.is-active img { opacity: 1; }

.vehicle-detail__specs-row { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.vehicle-detail__included-title { margin-top: 28px; }
.vehicle-detail__included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vehicle-detail__included-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--text-body); }
.vehicle-detail__included-item svg { width: 18px; height: 18px; color: var(--status-success); }

.vehicle-detail__rail {
  position: sticky; top: 96px;
  background: var(--surface-card); border-radius: 24px; border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md); padding: 32px;
}
.vehicle-detail__rail-badges { display: flex; gap: 8px; margin-bottom: 12px; }
.vehicle-detail__rail-title { margin: 0 0 4px; font-size: 30px; }
.vehicle-detail__rail-meta { font-weight: 700; color: var(--text-muted); margin-bottom: 16px; }
.vehicle-detail__rail-price-block {
  padding: 18px 0; border-top: 1.5px solid var(--border); border-bottom: 1.5px solid var(--border); margin-bottom: 18px;
}
.vehicle-detail__rail-mindays { display: flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--text-muted); font-weight: 700; font-size: 13.5px; }
.vehicle-detail__rail-mindays svg { width: 15px; height: 15px; }
.vehicle-detail__rail-availability { margin-top: 10px; }

/* ===================== 8. ABOUT ===================== */
.about-hero { background: var(--grad-sky); padding: 64px 32px 60px; }
.about-hero__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-hero__title { margin: 12px 0 16px; font-size: 46px; color: var(--text-strong); line-height: 1.08; }
.about-hero__lead { font-size: 18px; color: var(--text-body); font-weight: 600; line-height: 1.6; max-width: 540px; }
.about-hero__figure { margin: 0; }
.about-hero__figure-frame { border-radius: 32px; overflow: hidden; border: 5px solid #fff; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.about-hero__figure-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-hero__figcaption { margin-top: 12px; font-size: 14px; font-weight: 700; color: var(--text-body); display: flex; align-items: center; gap: 7px; }

.about-narrow { max-width: 760px; margin: 0 auto; padding: 56px 32px 8px; }
.about-narrow h2 { margin: 10px 0 16px; font-size: 32px; }
.about-narrow p { font-size: 17px; line-height: 1.7; color: var(--text-body); font-weight: 500; }
.about-story { max-width: 760px; margin: 0 auto; padding: 14px 32px 32px; display: flex; flex-direction: column; gap: 22px; }
.about-story p { font-size: 17px; line-height: 1.7; color: var(--text-body); font-weight: 500; margin: 0; }

.about-quote-wrap { padding: 20px 32px 48px; }
.about-quote {
  max-width: 760px; margin: 0 auto; background: var(--brand-primary-soft); border-radius: 32px;
  padding: 38px 40px;
}
.about-quote svg { color: var(--brand-primary); margin-bottom: 8px; width: 30px; height: 30px; }
.about-quote p { font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1.45; color: var(--text-strong); margin: 0; }

.about-values { background: var(--surface-alt); padding: 56px 32px; }
.about-values__inner { max-width: 1200px; margin: 0 auto; }
.about-values__head { text-align: center; margin-bottom: 32px; }
.about-values__head h2 { margin: 10px 0 0; font-size: 32px; }
.about-values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.about-value-card {
  background: var(--surface-card); border-radius: var(--radius-xl); border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm); padding: 26px 24px;
}
.about-value-card__icon {
  width: 44px; height: 44px; border-radius: 14px; background: var(--brand-primary-soft);
  display: grid; place-items: center; color: var(--brand-primary); margin-bottom: 14px;
}
.about-value-card__title { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--text-strong); margin-bottom: 7px; }
.about-value-card__body { font-size: 14.5px; line-height: 1.6; color: var(--text-body); font-weight: 500; margin: 0; }

.about-closing { max-width: 760px; margin: 0 auto; padding: 60px 32px; text-align: center; }
.about-closing p { font-size: 18.5px; line-height: 1.65; color: var(--text-body); font-weight: 600; margin-bottom: 26px; }
.about-closing__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===================== 9. DISCOUNTS ===================== */
.discounts-hero { background: var(--grad-sky); padding: 64px 32px 56px; }
.discounts-hero__inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.discounts-hero h1 { margin: 12px 0 14px; font-size: 46px; color: var(--text-strong); line-height: 1.08; }
.discounts-hero p { font-size: 18px; color: var(--text-body); font-weight: 600; line-height: 1.6; max-width: 640px; margin: 0 auto; }

.discounts-cards { max-width: 1200px; margin: 0 auto; padding: 52px 32px 8px; }
.discounts-cards__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.discount-card {
  background: var(--surface-card); border-radius: var(--radius-xl); border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm); padding: 28px 26px; display: flex; flex-direction: column; gap: 12px; height: 100%;
}
.discount-card__head { display: flex; align-items: center; gap: 14px; }
.discount-card__icon { flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--brand-primary-soft); display: grid; place-items: center; color: var(--brand-primary); }
.discount-card__title { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--text-strong); margin: 0; line-height: 1.15; }
.discount-card__lead { font-size: 15px; line-height: 1.5; color: var(--brand-primary); font-weight: 700; margin: 0; }
.discount-card__body { font-size: 14.5px; line-height: 1.65; color: var(--text-body); font-weight: 500; margin: 0; }
.discount-card__fine { display: flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 6px; color: var(--text-muted); font-size: 13px; font-weight: 700; }
.discount-card__fine svg { width: 14px; height: 14px; flex-shrink: 0; }

.discounts-claim { max-width: 760px; margin: 0 auto; padding: 44px 32px 8px; }
.discounts-claim__panel { background: var(--brand-primary-soft); border-radius: var(--radius-xl); padding: 34px 36px; }
.discounts-claim__panel h2 { margin: 0 0 12px; font-size: 26px; }
.discounts-claim__panel p { font-size: 16px; line-height: 1.65; color: var(--text-body); font-weight: 500; margin: 0 0 14px; }
.discounts-claim__buttons { display: flex; flex-wrap: wrap; gap: 10px; }

.discounts-closing { max-width: 760px; margin: 0 auto; padding: 32px 32px 60px; text-align: center; }
.discounts-closing p { font-size: 17px; line-height: 1.6; color: var(--text-body); font-weight: 600; margin: 0; }

/* ===================== 10. LOCATIONS ===================== */
.locations-hero { background: var(--grad-sky); padding: 64px 32px 52px; }
.locations-hero__inner { max-width: 1200px; margin: 0 auto; }
.locations-hero h1 { margin: 10px 0 12px; font-size: 46px; }
.locations-hero p { font-size: 18px; font-weight: 600; max-width: 620px; color: var(--text-body); }
.locations-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

.loc-row {
  max-width: 1200px; margin: 0 auto; padding: 40px 32px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 44px; align-items: center; border-bottom: 1.5px solid var(--border); scroll-margin-top: 90px;
}
.loc-row--flip .loc-row__text { order: 2; }
.loc-row--flip .loc-row__photo { order: 1; }
.loc-row__text h2 { font-size: 34px; margin: 10px 0 12px; }
.loc-row__blurb { font-size: 16.5px; line-height: 1.65; font-weight: 500; margin-bottom: 18px; }
.loc-row__checklist { display: flex; flex-direction: column; gap: 10px; }
.loc-row__check-item { display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 600; color: var(--text-body); }
.loc-row__check-badge { flex: none; width: 30px; height: 30px; border-radius: 8px; background: var(--brand-primary-soft); display: grid; place-items: center; color: var(--brand-primary); }
.loc-row__check-badge svg { width: 16px; height: 16px; }

.loc-photo {
  aspect-ratio: 4/3; border-radius: 32px; box-shadow: var(--shadow-md); border: 4px solid #fff;
  overflow: hidden; position: relative; background-size: cover; background-position: center;
}
.loc-photo--sunset { background-image: var(--grad-sunset); }
.loc-photo--ocean  { background-image: var(--grad-ocean); }
.loc-photo--sky    { background-image: var(--grad-sky); }
.loc-photo img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.loc-photo__badge { position: absolute; left: 14px; bottom: 14px; z-index: 2; }

.loc-back-to-top {
  position: fixed; bottom: 24px; right: 24px; width: 50px; height: 50px; border-radius: 999px;
  background: var(--brand-primary); color: #fff; box-shadow: var(--shadow-lg); display: grid; place-items: center;
  opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .25s ease, transform .25s ease;
  z-index: 60; border: none; cursor: pointer;
}
.loc-back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.locations-closing { background: var(--surface-alt); padding: 56px 32px; }
.locations-closing__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.locations-closing h2 { font-size: 34px; margin-bottom: 12px; }
.locations-closing p { font-size: 17px; font-weight: 600; margin-bottom: 24px; }
.locations-closing__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===================== 11. BOOKING (Phase 3 real flow) ===================== */
.booking-hero { background: var(--grad-sky); padding: 56px 32px 44px; }
.booking-hero__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.booking-hero__inner h1 { font-size: 42px; margin-bottom: 12px; }
.booking-hero__inner p { font-size: 17px; color: var(--text-body); font-weight: 600; max-width: 620px; margin: 0 auto; }

.booking-wrap { max-width: 900px; margin: 0 auto; padding: 40px 32px 88px; }

.booking-steps { display: flex; align-items: center; gap: 8px; margin-bottom: 26px; }
.booking-steps__step { display: flex; align-items: center; gap: 7px; }
.booking-steps__circle {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  background: var(--surface-alt); color: var(--text-muted);
}
.booking-steps__step.is-current .booking-steps__circle,
.booking-steps__step.is-done .booking-steps__circle { background: var(--brand-primary); color: #fff; }
.booking-steps__label { font-family: var(--font-body); font-weight: 700; font-size: 13px; color: var(--text-muted); }
.booking-steps__step.is-current .booking-steps__label,
.booking-steps__step.is-done .booking-steps__label { color: var(--text-strong); }
.booking-steps__line { flex: 1; height: 2px; background: var(--border); }
.booking-steps__line.is-done { background: var(--brand-primary); }

.booking-panel {
  background: var(--surface-card); border-radius: var(--radius-xl); border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md); padding: 32px;
}
.booking-stage__title { display: flex; align-items: center; gap: 9px; font-size: 20px; margin-bottom: 18px; }
.booking-stage__actions { margin-top: 22px; }
.booking-stage__actions--row { display: flex; gap: 10px; }

.booking-vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.booking-vehicle-option {
  position: relative; display: flex; flex-direction: column; cursor: pointer;
  border-radius: var(--radius-lg); border: 2px solid var(--border); overflow: hidden;
  background: var(--surface-card); box-shadow: var(--shadow-sm);
  transition: border-color 140ms var(--ease-out), transform 140ms var(--ease-out);
}
.booking-vehicle-option:hover { transform: translateY(-2px); }
.booking-vehicle-option__radio { position: absolute; opacity: 0; width: 1px; height: 1px; }
.booking-vehicle-option__radio:checked ~ .booking-vehicle-option__photo,
.booking-vehicle-option__radio:checked ~ .booking-vehicle-option__body { }
.booking-vehicle-option:has(.booking-vehicle-option__radio:checked) { border-color: var(--brand-primary); box-shadow: 0 0 0 3px rgba(14,143,143,0.18); }
.booking-vehicle-option.is-disabled { cursor: not-allowed; opacity: 0.55; }
.booking-vehicle-option__photo { position: relative; aspect-ratio: 16/10; background: var(--aqua-100); }
.booking-vehicle-option__photo img { width: 100%; height: 100%; object-fit: cover; }
.booking-vehicle-option__badge { position: absolute; bottom: 8px; right: 8px; }
.booking-vehicle-option__body { padding: 14px 14px 16px; }
.booking-vehicle-option__name { font-family: var(--font-display); font-weight: 800; font-size: 15.5px; color: var(--text-strong); }
.booking-vehicle-option__meta { font-size: 12px; font-weight: 600; color: var(--text-muted); margin: 3px 0 6px; }
.booking-vehicle-option__price { font-size: 13.5px; font-weight: 700; color: var(--brand-primary); }

.booking-vehicle-summary {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px; margin-bottom: 20px;
  background: var(--surface-alt); border: 1.5px solid var(--border); border-radius: var(--radius-md);
}
.booking-vehicle-summary img { width: 64px; height: 48px; border-radius: 10px; object-fit: cover; flex: none; }
.booking-vehicle-summary__name { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--text-strong); }
.booking-vehicle-summary__price { font-size: 13px; font-weight: 700; color: var(--brand-primary); }

#pl-book-form { display: flex; flex-direction: column; gap: 14px; }
.pl-field { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.pl-field__label { font-family: var(--font-body); font-weight: 700; font-size: 13px; color: var(--text-strong); }
.pl-field__input, .pl-field__select {
  width: 100%; height: 48px; padding: 0 14px; font-family: var(--font-body); font-size: 16px; font-weight: 500;
  color: var(--text-strong); background: var(--surface-card); border: var(--border-width) solid var(--border);
  border-radius: var(--radius-md); outline: none;
}
.pl-field__input:focus, .pl-field__select:focus { border-color: var(--brand-primary); box-shadow: var(--focus-ring); }
.pl-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pl-select-wrap { position: relative; display: flex; align-items: center; }
.pl-select-wrap svg { position: absolute; left: 14px; color: var(--text-muted); pointer-events: none; }
.pl-select-wrap .pl-field__select { padding-left: 40px; appearance: none; cursor: pointer; }
.pl-helper-line { display: flex; align-items: flex-start; gap: 6px; margin-top: -4px; color: var(--text-muted); font-family: var(--font-body); font-weight: 700; font-size: 12.5px; }
.pl-helper-line a { font-weight: 800; }
.pl-helper-line svg { flex: none; margin-top: 1px; }

.pl-booking-warning {
  display: flex; align-items: flex-start; gap: 8px; padding: 12px 14px; border-radius: var(--radius-md);
  background: var(--status-danger-bg); color: var(--status-danger); font-weight: 700; font-size: 13px;
}
.pl-booking-warning svg { flex: none; margin-top: 1px; }

.booking-savings-callout {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; margin-bottom: 16px;
  background: var(--sun-50); border: 1.5px solid var(--sun-300); border-radius: var(--radius-md);
}
.booking-savings-callout svg { color: var(--sun-600); flex: none; margin-top: 1px; }
.booking-savings-callout__title { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--text-strong); margin-bottom: 3px; }
.booking-savings-callout__body { margin: 0 0 10px; font-size: 13px; line-height: 1.5; color: var(--text-body); font-weight: 600; }

.booking-summary-list { display: flex; flex-direction: column; }
.booking-summary-row {
  display: flex; justify-content: space-between; gap: 16px; padding: 11px 0;
  border-bottom: 1px solid var(--ink-100); font-size: 14.5px;
}
.booking-summary-row__label { color: var(--text-muted); font-weight: 600; }
.booking-summary-row__value { color: var(--text-strong); font-weight: 700; text-align: right; }
.booking-summary-row__value--discount { color: var(--status-success); }

.booking-discount-notice {
  display: flex; gap: 8px; align-items: flex-start; padding: 10px 12px; margin: 12px 0 0;
  background: var(--palm-50); border: 1.5px solid var(--border); border-radius: var(--radius-md);
  color: var(--text-body); font-size: 12.5px; font-weight: 600; line-height: 1.5;
}
.booking-discount-notice svg { color: var(--status-success); flex: none; margin-top: 1px; }

.booking-total-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0 4px; font-family: var(--font-display); }
.booking-total-row span { font-weight: 700; font-size: 17px; }
.booking-total-row small { font-family: var(--font-body); font-weight: 600; font-size: 13px; color: var(--text-muted); }
.booking-total-row strong { font-weight: 800; font-size: 22px; color: var(--brand-primary); }
.booking-total-row:not(.booking-total-row--brand) { padding: 0 0 4px; }
.booking-total-row:not(.booking-total-row--brand) span { font-weight: 700; font-size: 14.5px; color: var(--text-muted); }
.booking-total-row:not(.booking-total-row--brand) strong { font-weight: 800; font-size: 16px; color: var(--text-strong); }

.booking-fineprint { margin: 6px 0 4px; font-size: 12.5px; line-height: 1.5; color: var(--text-muted); font-weight: 600; }

.booking-stage--done { text-align: center; padding: 12px 0 8px; }
.booking-done__icon {
  width: 72px; height: 72px; border-radius: 50%; background: var(--palm-50); color: var(--status-success);
  display: grid; place-items: center; margin: 0 auto 16px;
}
.booking-stage--done h2 { font-size: 28px; margin-bottom: 8px; }
.booking-stage--done p { font-size: 15.5px; color: var(--text-body); font-weight: 600; max-width: 400px; margin: 0 auto 20px; }

/* ===================== Rental Agreement step (added 2026-07-13) ===================== */
.pl-agreement-head h2 { margin: 0 0 4px; font-size: 21px; }
.pl-agreement-head p { margin: 0; font-size: 13.5px; color: var(--text-muted); font-weight: 600; line-height: 1.5; }

.pl-agreement-panel {
  height: 260px; overflow-y: scroll; margin-top: 14px; padding: 16px 18px;
  background: var(--surface-alt); border: var(--border-width) solid var(--border); border-radius: var(--radius-md);
  font-size: 13.5px; line-height: 1.6; color: var(--text-body);
  scrollbar-width: thin; scrollbar-color: var(--brand-primary) var(--surface-alt);
}
.pl-agreement-panel::-webkit-scrollbar { width: 10px; }
.pl-agreement-panel::-webkit-scrollbar-track { background: var(--surface-alt); border-radius: var(--radius-md); }
.pl-agreement-panel::-webkit-scrollbar-thumb {
  background-color: var(--brand-primary); border-radius: var(--radius-md);
  border: 2px solid var(--surface-alt);
}
.pl-agreement-panel::-webkit-scrollbar-thumb:hover { background-color: var(--brand-primary-hover); }
.pl-agreement-panel__loading { color: var(--text-muted); font-weight: 600; }
.pl-agreement-doc__title { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--text-strong); margin-bottom: 10px; }
.pl-agreement-doc__meta {
  display: grid; grid-template-columns: auto 1fr; gap: 4px 14px; margin-bottom: 16px; padding-bottom: 14px;
  border-bottom: 1px solid var(--ink-100);
}
.pl-agreement-doc__meta-k { color: var(--text-muted); font-weight: 700; font-size: 12.5px; }
.pl-agreement-doc__meta-v { color: var(--text-strong); font-weight: 700; font-size: 12.5px; }
.pl-agreement-doc__section { margin-bottom: 12px; }
.pl-agreement-doc__heading { font-weight: 800; color: var(--text-strong); font-size: 13.5px; margin-bottom: 3px; }
.pl-agreement-doc__section p { margin: 0 0 7px; }
.pl-agreement-doc__footnote { margin: 10px 0 0; font-size: 12px; font-style: italic; color: var(--text-muted); }
.pl-agreement-doc__sig { display: flex; gap: 48px; margin-top: 24px; }
.pl-agreement-doc__sig-line { font-size: 15px; font-weight: 700; border-bottom: 1.5px solid var(--text-strong); padding: 0 4px 6px; min-height: 26px; }
.pl-agreement-doc__sig-cap { font-size: 11px; color: var(--text-muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.08em; }

.pl-agreement-scroll-hint { display: flex; align-items: center; gap: 6px; margin: 8px 0 0; color: var(--text-muted); font-weight: 700; font-size: 12.5px; }
.pl-agreement-scroll-hint svg { flex: none; }

.pl-agreement-accept { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0 0; cursor: pointer; }
.pl-agreement-accept.is-disabled { cursor: not-allowed; opacity: 0.55; }
.pl-agreement-accept input[type="checkbox"] { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--brand-primary); flex: none; }
.pl-agreement-accept span { font-size: 13.5px; font-weight: 600; color: var(--text-body); line-height: 1.45; }

.pl-agreement-sig { margin-top: 14px; }
.pl-agreement-sig__row { display: flex; justify-content: space-between; margin-top: 6px; font-size: 12px; font-weight: 700; color: var(--text-muted); }

.pl-agreement-error {
  margin-top: 12px; padding: 10px 12px; background: var(--status-danger-bg); border: 1.5px solid var(--status-danger);
  border-radius: var(--radius-md); color: var(--status-danger); font-size: 12.5px; font-weight: 700;
}

/* ===================== Reservation confirmation page (Change 3, added 2026-07-15) ===================== */
.booking-confirmation-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 18px 0 16px;
  padding: 12px 16px; background: var(--surface-alt); border: var(--border-width) solid var(--border); border-radius: var(--radius-md);
}
.booking-confirmation-row__label { font-size: 12.5px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.booking-confirmation-row__value { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--text-strong); letter-spacing: 0.02em; }

.booking-summary-list--done { padding: 2px 2px 14px; margin-bottom: 4px; border-bottom: 1px solid var(--ink-100); }
.booking-summary-list--done .booking-summary-row { border-bottom: none; padding: 7px 0; }

.booking-next-steps { margin: 16px 0; }
.booking-next-steps__heading { font-weight: 800; font-size: 14.5px; color: var(--text-strong); margin-bottom: 10px; }
.booking-next-steps__item {
  display: flex; align-items: flex-start; gap: 10px; padding: 6px 0;
  font-size: 13.5px; font-weight: 600; color: var(--text-body); line-height: 1.45;
}
.booking-next-steps__item svg { color: var(--status-success); flex: none; margin-top: 1px; }
.booking-next-steps__item strong { color: var(--text-strong); }

.booking-done__footer {
  text-align: center; margin: 16px 0 0; font-size: 12.5px; font-weight: 600; color: var(--text-muted);
}
.booking-done__footer a { color: var(--brand-primary); font-weight: 700; text-decoration: none; }

@media (max-width: 900px) {
  .booking-vehicle-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .booking-vehicle-grid { grid-template-columns: 1fr; }
  .pl-field-row { grid-template-columns: 1fr; }
  .booking-panel { padding: 22px 18px; }
  .booking-stage__actions--row { flex-direction: column; }
}

/* ===================== 12. RESPONSIVE ===================== */
@media (max-width: 900px) {
  .home-hero__inner, .about-hero__inner, .locations-section__grid { grid-template-columns: 1fr; }
  .home-hero__image { justify-self: start; max-width: 340px; margin-top: 24px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .featured-fleet__grid, .fleet-grid, .reviews-grid, .about-values__grid, .discounts-cards__grid { grid-template-columns: repeat(2, 1fr); }
  .vehicle-detail__grid { grid-template-columns: 1fr; }
  .vehicle-detail__rail { position: static; }
  .loc-row, .loc-row--flip { grid-template-columns: 1fr; }
  .loc-row__text, .loc-row--flip .loc-row__text { order: 2; }
  .loc-row__photo, .loc-row--flip .loc-row__photo { order: 1; }
}

@media (max-width: 1024px) {
  .site-header__nav { display: none; }
  .site-header__cta { display: none; }
  .lang-switcher { display: none; }
  .site-header__burger { display: flex; }
}

@media (max-width: 620px) {
  .trust-strip, .featured-fleet__grid, .fleet-grid, .reviews-grid, .about-values__grid, .discounts-cards__grid {
    grid-template-columns: 1fr;
  }
  .about-hero__title, .discounts-hero h1, .locations-hero h1, .fleet-hero__title { font-size: 32px; }
  .home-hero__inner { padding: 48px 20px 40px; }
  .site-header { padding: 0 16px; }
  .search-bar { flex-direction: column; }
  .search-bar__divider { display: none; }
  .vehicle-detail__included-grid { grid-template-columns: 1fr; }
}

/* ===========================================================================
 * Discounts modal (Booking form "See all discounts" -- fix 2026-07-25,
 * see-all-discounts-open-modal task). Reuses .discount-card styling from
 * the Discounts page so the two surfaces stay visually consistent.
 * =========================================================================== */
.pl-link-btn {
  background: none; border: none; padding: 0; margin: 0;
  font: inherit; color: var(--text-link); text-decoration: underline;
  cursor: pointer;
}
.pl-link-btn:hover { color: var(--brand-primary-hover); }

.pl-modal[hidden] { display: none; }
.pl-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.pl-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 42, 48, 0.55);
}
.pl-modal__dialog {
  position: relative;
  background: var(--surface-card);
  border-radius: 16px;
  max-width: 720px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(10, 42, 48, 0.35);
}
.pl-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: var(--surface-alt); color: var(--text-strong);
  font-size: 22px; line-height: 1; cursor: pointer;
}
.pl-modal__close:hover { background: var(--surface-sunk); }
.pl-modal__title {
  display: flex; align-items: center; gap: 8px;
  margin: 0 0 8px; padding-right: 40px;
}
.pl-modal__lead { color: var(--text-muted); margin: 0 0 20px; }
.pl-modal__cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 640px) {
  .pl-modal__cards { grid-template-columns: 1fr; }
  .pl-modal__dialog { padding: 24px; }
}
