/* ============================================================
   JLuxe Exotics — shared stylesheet
   Black + white + yellow (#F5C518). Alternating section theme.
   Mobile-first. Test at 390px.
   ============================================================ */

:root {
  --black: #0a0a0a;
  --ink: #000000;
  --near-black: #111111;
  --white: #ffffff;
  --paper: #fafaf8;
  --yellow: #f5c518;
  --yellow-deep: #d9ad0a;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(10, 10, 10, 0.1);
  --muted-on-dark: rgba(255, 255, 255, 0.64);
  --muted-on-light: rgba(10, 10, 10, 0.62);
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Helvetica Neue", sans-serif;
  --nav-h: 72px;
  --banner-h: 34px;
  --radius: 14px;
  --shadow-card: 0 10px 30px rgba(10, 10, 10, 0.07), 0 2px 8px rgba(10, 10, 10, 0.05);
  --shadow-card-hover: 0 22px 48px rgba(10, 10, 10, 0.14), 0 4px 12px rgba(10, 10, 10, 0.08);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--yellow); color: var(--ink); }

/* ---------- Type ---------- */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

h1.display { font-size: clamp(2.4rem, 8.5vw, 4.6rem); }
h2.display { font-size: clamp(2rem, 6.5vw, 3.6rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--yellow);
  flex: none;
}

.accent { color: var(--yellow); }

/* ---------- Section theming: ALTERNATING black & white ---------- */

/* Top padding kept tighter than bottom so headings sit near each
   section boundary — midpoint between the original and the tight pass */
.section { padding: clamp(58px, 8vw, 94px) 0 clamp(72px, 11vw, 128px); }

.section--dark { background: var(--black); color: var(--white); }
.section--dark .eyebrow { color: var(--yellow); }
.section--dark .section-sub { color: var(--muted-on-dark); }

.section--light { background: var(--paper); color: var(--black); }
.section--light .eyebrow { color: var(--black); }
.section--light .section-sub { color: var(--muted-on-light); }

.wrap {
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
}

.section-head { margin-bottom: clamp(36px, 6vw, 64px); max-width: 720px; }
.section-sub { margin-top: 16px; font-size: 1.02rem; max-width: 56ch; }

.section-head--split {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

/* Mobile: center section titles and subheadings */
@media (max-width: 767px) {
  .section-head { text-align: center; margin-left: auto; margin-right: auto; }
  .section-head--split { justify-content: center; }
  .section-sub { margin-left: auto; margin-right: auto; }
  .page-hero .wrap { text-align: center; }
  .page-hero p { margin-left: auto; margin-right: auto; }

  /* No eyebrow dash on mobile — it pushes centered titles off-axis */
  .eyebrow::before { display: none; }

  /* Rating banner is desktop-only */
  :root { --banner-h: 0px; }
  .has-banner .hero-banner { display: none; }

  /* Footer: centered logo + subheading */
  .footer-logo { text-align: center; }
  .footer-logo img { margin-left: auto; margin-right: auto; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
    background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn--yellow {
  background: var(--yellow);
  color: var(--ink);
}
.btn--yellow:hover {
  background: var(--yellow-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 197, 24, 0.35);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline-light:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }

.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border-color: rgba(10, 10, 10, 0.28);
}
.btn--outline-dark:hover { border-color: var(--black); background: var(--black); color: var(--white); transform: translateY(-2px); }

.btn--sm { padding: 11px 20px; font-size: 0.8rem; }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
}

.nav-inner {
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo img { height: 40px; width: auto; }
@media (min-width: 900px) { .nav-logo img { height: 46px; } }

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a:not(.btn) {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}
.nav-links a:not(.btn):hover { color: var(--yellow); }

.nav-phone { color: var(--white) !important; }
.nav-phone .accent { margin-right: 6px; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}
.nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
  padding: 12px 20px 28px;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.nav.is-open + .nav-mobile { display: flex; }

.nav-mobile a:not(.btn) {
  padding: 14px 4px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}
.nav-mobile .btn { margin-top: 18px; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle, .nav-mobile { display: none !important; }
}

/* ---------- Hero (BLACK — cinematic image) ---------- */

.hero {
  position: relative;
  /* Short of full viewport so the next section peeks above the fold
     and invites the scroll (don't set back to 100svh) */
  min-height: clamp(540px, 84svh, 880px);
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/images/JLuxe_hero.png") center 65% / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Car sits on the RIGHT of the image — heavy left-to-right fade keeps
     the headline / booking bar / trust line legible in the dark left side */
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.15) 38%, rgba(10, 10, 10, 0.72) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.8) 30%, rgba(10, 10, 10, 0.45) 55%, rgba(10, 10, 10, 0.05) 82%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
  padding: calc(var(--nav-h) + var(--banner-h) + 24px) 0 56px;
  max-width: none;
}

.hero-content > * { max-width: 640px; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(245, 197, 24, 0.4);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 26px;
}

/* Hero social proof — slim banner strip ABOVE the nav */
.hero-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--ink);
  text-align: center;
  padding: 0 16px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Pages with the banner push the fixed nav (and its dropdown) down */
.has-banner .nav { top: var(--banner-h); }
.has-banner .nav-mobile { top: calc(var(--banner-h) + var(--nav-h)); }
html:has(.has-banner) { scroll-padding-top: calc(var(--nav-h) + var(--banner-h) + 12px); }
.hero-banner .stars { letter-spacing: 2px; margin-right: 8px; }

@media (max-width: 480px) {
  .hero-banner { font-size: 0.67rem; letter-spacing: 0.03em; padding: 0 10px; }
  .hero-banner .stars { letter-spacing: 1px; margin-right: 6px; }
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 9vw, 5.2rem);
}
.hero h1 .accent { display: block; }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 52ch;
  margin-bottom: 34px;
}

/* Hero booking bar — slim inline row, no card chrome */
.quote-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: end;
  max-width: 560px;
}

.quote-bar .field { display: grid; gap: 6px; min-width: 0; }

.quote-bar .field label {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.quote-bar .field input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(17, 17, 17, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 12px 11px;
  width: 100%;
  min-width: 0;
  transition: border-color 0.2s ease;
  color-scheme: dark;
}
.quote-bar .field input:focus { outline: none; border-color: var(--yellow); }

.quote-bar .btn { grid-column: 1 / -1; }

.hero-fleet-link {
  grid-column: 1 / -1;
  justify-self: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}
.hero-fleet-link:hover { color: var(--yellow); }

@media (min-width: 760px) {
  .quote-bar { display: flex; align-items: flex-end; gap: 14px; max-width: none; }
  .quote-bar .field { width: 176px; flex: none; }
  .quote-bar .btn { flex: none; }
  .hero-fleet-link { margin: 0 0 14px 10px; justify-self: auto; }
}

.hero-trust {
  margin-top: 28px;
  font-size: clamp(0.68rem, 1.85vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}
.hero-trust .accent { margin: 0 6px; }

@media (max-width: 767px) {
  .hero-trust { text-align: center; }
}

@media (max-width: 480px) {
  .hero-trust { font-size: 0.59rem; letter-spacing: 0.01em; }
  .hero-trust .accent { margin: 0 4px; }
}

/* Marquee strip at hero base */
.marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 72s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 0 28px;
  white-space: nowrap;
}
.marquee span::after { content: "•"; color: var(--yellow); margin-left: 56px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Fleet cards (LIGHT sections only — renders have white bg) ---------- */

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

/* Phones: featured grid shows only the first 3 picks (Urus, McLaren,
   G63) — six stacked cards is a fatiguing scroll on mobile */
@media (max-width: 639px) {
  #featured-grid .car-card:nth-child(n + 4) { display: none; }
}

@media (min-width: 640px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .fleet-grid { grid-template-columns: repeat(3, 1fr); } }

.car-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.25s ease;
}

.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(245, 197, 24, 0.55);
}

.car-card-media {
  position: relative;
  background: var(--white);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.car-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out);
}
.car-card:hover .car-card-media img { transform: scale(1.05); }

.tier-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.tier-badge--exotic { background: var(--ink); color: var(--yellow); }
.tier-badge--luxury { background: var(--yellow); color: var(--ink); }
.tier-badge--standard { background: rgba(10, 10, 10, 0.08); color: var(--black); }

.car-card-body {
  padding: 20px 22px 24px;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.car-card-name {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.car-card-price {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted-on-light);
  margin-bottom: 12px;
}
.car-card-price strong { color: var(--black); font-size: 1.05rem; font-weight: 800; }

.car-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Featured section extras ---------- */

.featured-cta { margin-top: 44px; text-align: center; }

/* ---------- How it works (DARK) ---------- */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: step;
}
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  position: relative;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  transition: border-color 0.25s ease, transform 0.35s var(--ease-out);
}
.step:hover { border-color: rgba(245, 197, 24, 0.5); transform: translateY(-4px); }

/* Light-section variant of the step cards */
.section--light .step {
  background: var(--white);
  border-color: var(--line-light);
  box-shadow: var(--shadow-card);
}
.section--light .step:hover { border-color: rgba(217, 173, 10, 0.55); }
.section--light .step p { color: var(--muted-on-light); }
.section--light .step-num { color: var(--yellow-deep); }

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step p { font-size: 0.92rem; color: var(--muted-on-dark); }

/* ---------- Use cases (DARK — editorial numbered rows) ---------- */

#occasions h2 {
  white-space: nowrap;
  font-size: clamp(1.3rem, 5vw, 3.3rem);
}

.usecases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .usecases { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .usecases { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

.usecase {
  position: relative;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  overflow: hidden;
  background: var(--near-black);
  transition: border-color 0.25s ease, transform 0.35s var(--ease-out);
}
.usecase::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.usecase:hover { border-color: rgba(245, 197, 24, 0.45); transform: translateY(-4px); }
.usecase:hover::after { transform: scaleX(1); }

.usecase-index {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--yellow);
  margin-bottom: 14px;
}

.usecase h3 {
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.usecase p { font-size: 0.9rem; color: var(--muted-on-dark); }

/* ---------- Service area (DARK — map) ---------- */

.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }
.section-head--center .eyebrow::before,
#faq .eyebrow::before { display: none; }

#service-area h2 {
  white-space: nowrap;
  font-size: clamp(1.3rem, 5vw, 3.3rem);
}

.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 760px) { .area-list { grid-template-columns: repeat(4, 1fr); gap: 14px; } }

.area-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 15px 12px;
  box-shadow: var(--shadow-card);
}
.area-list li::before { content: "◆"; color: var(--yellow); font-size: 0.7rem; }

/* ---------- Testimonials (DARK) ---------- */

.testimonials {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* no scroll-behavior:smooth here — arrows animate scrollLeft via rAF */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonials::-webkit-scrollbar { display: none; }

.testimonial {
  flex: 0 0 100%;
  scroll-snap-align: start;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 700px) { .testimonial { flex-basis: calc((100% - 18px) / 2); } }
@media (min-width: 980px) { .testimonial { flex-basis: calc((100% - 36px) / 3); } }

/* Carousel controls — arrows overlay the sides of the track */
.carousel-wrap { position: relative; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(10, 10, 10, 0.7);
  color: var(--white);
  font-size: 1.05rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.carousel-btn:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-50%) scale(1.08); }
.carousel-btn:active { transform: translateY(-50%) scale(0.95); }

#testimonial-prev { left: 10px; }
#testimonial-next { right: 10px; }

/* Wide screens: arrows sit outside the cards */
@media (min-width: 1320px) {
  #testimonial-prev { left: -62px; }
  #testimonial-next { right: -62px; }
  .carousel-btn { background: transparent; }
}

/* Mobile: swipe + dots do the work */
@media (max-width: 699px) {
  .carousel-btn { display: none; }
}

.carousel-dots { display: flex; gap: 8px; }

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s var(--ease-out);
}
.carousel-dot.is-active { background: var(--yellow); width: 22px; }

.testimonial-stars { color: var(--yellow); letter-spacing: 4px; font-size: 0.9rem; }

.testimonial blockquote { font-size: 0.98rem; line-height: 1.65; color: rgba(255, 255, 255, 0.86); }

.testimonial figcaption {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}
.testimonial figcaption strong { color: var(--white); display: block; letter-spacing: 0.04em; }

/* Platform review badges under the testimonials (Blue Car Rental style) */
.review-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 120px;
  margin-top: 48px;
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 18px;
}

.review-badge svg { flex: none; width: 52px; height: 52px; }

.rb-text { display: grid; justify-items: center; line-height: 1.2; }
.rb-line { display: flex; align-items: center; gap: 12px; }
.rb-line .rb-stars { color: var(--yellow); letter-spacing: 4px; font-size: 1.35rem; }
.rb-line strong { font-size: 1.7rem; font-weight: 800; color: var(--white); letter-spacing: 0.01em; }
.rb-text em { font-style: normal; font-size: 0.85rem; font-weight: 600; color: var(--muted-on-dark); margin-top: 4px; }


/* ---------- FAQ (LIGHT accordion) ---------- */

/* FAQ head is centered at every size to match the centered accordion */
#faq .section-head { text-align: center; margin-left: auto; margin-right: auto; }
#faq .section-sub { margin-left: auto; margin-right: auto; }

.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item[open] { border-color: rgba(245, 197, 24, 0.6); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-weight: 800;
  font-size: 0.98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--yellow);
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 0.3s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 0 22px 22px;
  font-size: 0.93rem;
  color: var(--muted-on-light);
}

/* ---------- Final CTA (DARK) ---------- */

.final-cta { text-align: center; position: relative; overflow: hidden; }

.final-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40%;
  width: 640px;
  height: 640px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(245, 197, 24, 0.16), transparent 65%);
  pointer-events: none;
}

.final-cta .wrap { position: relative; z-index: 1; }
.final-cta h2 {
  max-width: none;
  margin: 0 auto 18px;
  white-space: nowrap;
  font-size: clamp(1.42rem, 5.4vw, 3.6rem);
}
.final-cta p { color: inherit; opacity: 0.66; max-width: 48ch; margin: 0 auto 34px; }
.final-cta .btn-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer (DARK) ---------- */

.footer {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
  padding: 64px 0 36px;
}

.footer-grid { display: grid; gap: 36px; margin-bottom: 44px; }
@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer-logo img { height: 60px; width: auto; margin-bottom: 18px; }

.footer p, .footer li, .footer a { font-size: 0.88rem; color: rgba(255, 255, 255, 0.62); }
.footer a:hover { color: var(--yellow); }

.footer h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.footer ul { list-style: none; display: grid; gap: 10px; }

.footer-sms {
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  font-size: 0.76rem !important;
  color: rgba(255, 255, 255, 0.42) !important;
  max-width: 70ch;
}

.footer-bottom {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Page hero (interior pages, dark strip) ---------- */

.page-hero {
  background: var(--black);
  color: var(--white);
  padding: calc(var(--nav-h) + clamp(56px, 9vw, 96px)) 0 clamp(48px, 7vw, 80px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.14), transparent 68%);
  pointer-events: none;
}
.page-hero .eyebrow { color: var(--yellow); }
.page-hero p { color: var(--muted-on-dark); max-width: 60ch; margin-top: 14px; }

/* ---------- Fleet page (WHITE — renders blend) ---------- */

.filter-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: rgba(250, 250, 248, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-light);
  padding: 14px 0;
}

.filter-bar-inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-bar-inner::-webkit-scrollbar { display: none; }

.filter-btn {
  flex: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(10, 10, 10, 0.22);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--black); }
.filter-btn.is-active { background: var(--ink); color: var(--yellow); border-color: var(--ink); }

.tier-section { padding: clamp(48px, 7vw, 72px) 0 0; }
.tier-section:last-of-type { padding-bottom: clamp(64px, 9vw, 96px); }

.tier-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}
.tier-title h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.5vw, 2.3rem);
  text-transform: uppercase;
}
.tier-title .tier-count { font-size: 0.85rem; font-weight: 700; color: var(--muted-on-light); }
.tier-title::after { content: ""; flex: 1; height: 2px; background: var(--yellow); align-self: center; }

.fleet-status { padding: 60px 0; text-align: center; color: var(--muted-on-light); font-weight: 600; }

/* ---------- Booking page (WHITE) ---------- */

.book-layout { display: grid; gap: 36px; padding: clamp(48px, 7vw, 80px) 0 clamp(72px, 10vw, 110px); }
@media (min-width: 960px) { .book-layout { grid-template-columns: 1fr 1.15fr; align-items: start; } }

.book-preview {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

/* Sticky preview only on the two-column desktop layout — on mobile it
   must scroll away so the form below stays reachable */
@media (min-width: 960px) {
  .book-preview {
    position: sticky;
    top: calc(var(--nav-h) + 20px);
  }
}

.book-preview-media { aspect-ratio: 4 / 3; background: var(--white); }
.book-preview-media img { width: 100%; height: 100%; object-fit: contain; }
/* Default (no car chosen) shows the cinematic hero shot edge-to-edge;
   selected-car renders switch back to contain so they aren't cropped */
.book-preview-media img.is-cover { object-fit: cover; }

.book-preview-body { padding: 22px 24px 26px; border-top: 1px solid var(--line-light); }
.book-preview-body h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.book-preview-body p { font-size: 0.9rem; color: var(--muted-on-light); margin-top: 4px; }

.book-form-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(26px, 4.5vw, 40px);
}

.book-form { display: grid; gap: 20px; }

.form-row { display: grid; gap: 20px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 8px; }

.field label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-on-light);
}
.field label .req { color: var(--yellow-deep); }

.field input,
.field select {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  background: var(--paper);
  border: 1.5px solid rgba(10, 10, 10, 0.16);
  border-radius: 10px;
  padding: 14px 15px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230a0a0a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--yellow-deep);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.25);
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 16px;
}

.consent input {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--yellow-deep);
  cursor: pointer;
}

.consent label { font-size: 0.82rem; color: var(--muted-on-light); cursor: pointer; }

.book-form .btn { width: 100%; }

.form-fineprint { font-size: 0.76rem; color: var(--muted-on-light); text-align: center; }

/* Confirmation state */
.book-confirm {
  display: none;
  text-align: center;
  padding: clamp(30px, 5vw, 50px) clamp(20px, 4vw, 40px);
}
.book-confirm.is-visible { display: block; }

.book-confirm-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  font-size: 2rem;
  animation: popIn 0.5s var(--ease-out) both;
}

@keyframes popIn {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.book-confirm h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.book-confirm p { color: var(--muted-on-light); max-width: 44ch; margin: 0 auto 8px; }
.book-confirm .btn { margin-top: 24px; width: auto; }

/* ---------- Legal pages (LIGHT article) ---------- */

.legal-body { background: var(--paper); color: var(--black); padding: clamp(56px, 8vw, 90px) 0; }

.legal-article { max-width: 760px; margin: 0 auto; }

.legal-article h2 {
  font-family: var(--font-body);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 44px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}
.legal-article h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }

.legal-article p, .legal-article li { font-size: 0.97rem; color: rgba(10, 10, 10, 0.78); margin-bottom: 12px; }
.legal-article ul { padding-left: 22px; margin-bottom: 16px; }
.legal-article strong { color: var(--black); }
.legal-article a { color: var(--yellow-deep); font-weight: 700; text-decoration: underline; }

.legal-meta {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-left: 4px solid var(--yellow);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 40px;
}
.legal-meta p { margin-bottom: 4px; font-size: 0.9rem; }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}
