/* ==========================================================
   Day Drive Service – main stylesheet
   ========================================================== */
:root {
  --gold: #d9ae5f;
  --gold-strong: #c99a45;
  --gold-soft: #e9c77f;
  --ink: #0e1116;          /* header / dark sections */
  --ink-2: #151a21;
  --text: #1c1d20;
  --muted: #55585e;
  --light: #f6f7f9;        /* light sections */
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
  --radius: 4px;
  --header-h: 88px;
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --script: "Allura", "Brush Script MT", cursive;
  --shadow: 0 10px 30px rgba(10, 14, 20, 0.08);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; cursor: pointer; }

/* sections land below the fixed header when jumping from the menu */
section[id], footer[id] { scroll-margin-top: calc(var(--header-h) - 1px); }

.container { width: min(1240px, 100% - 48px); margin-inline: auto; }

.icon { width: 1em; height: 1em; flex: none; }
.icon-sm { width: 16px; height: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 26px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s;
}
.btn .icon { width: 22px; height: 22px; transition: transform .2s; }
.btn:hover .icon { transform: translateX(4px); }
.btn-lg { padding: 15px 30px; font-size: 17px; }
.btn-gold { background: var(--gold); color: #121212; }
.btn-gold:hover { background: var(--gold-soft); }
.btn-outline { border-color: var(--gold); color: var(--white); background: rgba(0, 0, 0, .25); }
.btn-outline:hover { background: var(--gold); color: #121212; }
.btn-outline-gold { border-color: var(--gold); color: var(--text); background: var(--white); }
.btn-outline-gold:hover { background: var(--gold); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-strong);
}
.eyebrow-lg { font-size: 19px; color: var(--gold); letter-spacing: 0.12em; }

/* ==========================================================
   Header
   ========================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  background: var(--ink);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(0, 0, 0, .35); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 32px; }
.brand img { height: 74px; width: auto; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { display: flex; gap: clamp(18px, 3vw, 48px); }
.nav-link {
  position: relative;
  display: block;
  padding: 10px 2px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: #e9e9ea;
  transition: color .2s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: -8px; right: -8px; bottom: -8px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.active::after { transform: scaleX(1); }
.nav-book-mobile { display: none; }

.header-actions { display: flex; align-items: center; gap: 28px; }

/* language switch */
.lang { position: relative; }
.lang-toggle {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 4px;
  background: none; border: 0;
  color: var(--white);
  font-weight: 500; font-size: 17px; letter-spacing: .04em;
}
.lang.open .lang-toggle .icon { transform: rotate(180deg); }
.lang-toggle .icon { transition: transform .2s; }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 10px);
  min-width: 160px;
  padding: 6px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu button {
  display: flex; gap: 10px; width: 100%;
  padding: 9px 12px;
  background: none; border: 0; border-radius: 3px;
  color: #e9e9ea; text-align: left; font-size: 16px;
}
.lang-menu button span { color: var(--gold); font-weight: 600; width: 24px; }
.lang-menu button:hover, .lang-menu button[aria-selected="true"] { background: rgba(217, 174, 95, .14); }

.header-book { padding: 13px 34px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--white);
}
.menu-toggle .icon { width: 24px; height: 24px; }
.menu-toggle .icon-close { display: none; }
.nav-open .menu-toggle .icon-open { display: none; }
.nav-open .menu-toggle .icon-close { display: block; }

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  position: relative;
  margin-top: var(--header-h);
  min-height: clamp(560px, 48vw, 820px);
  display: flex;
  align-items: center;
  color: var(--white);
  background: #050608;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("../assets/images/hero.jpg") right center / cover no-repeat;
}
.hero-bg::after {             /* keeps the left side dark for the text */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.55) 38%, rgba(0,0,0,0) 62%);
}
.hero-inner { position: relative; display: flex; justify-content: space-between; gap: 40px; padding-block: 56px 64px; }
.hero-content { max-width: 720px; }
.hero .eyebrow { margin-bottom: 14px; line-height: 1.55; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 4.6vw, 74px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.hero h1 span { display: block; }
@media (min-width: 981px) { .hero h1 span { white-space: nowrap; } }
.line-gold { color: var(--gold); margin-top: 8px; }
.hero-lead {
  margin-top: 24px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.35;
  color: #f1f1f1;
}
.hero-services { display: flex; flex-wrap: wrap; gap: 14px 38px; margin-top: 40px; }
.hero-services a {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  width: 104px; text-align: center;
  font-size: 17px; font-weight: 500; line-height: 1.25; color: #f3f3f3;
  transition: color .2s;
}
.hero-services .icon { width: 50px; height: 50px; color: var(--gold); stroke-width: 1.5; transition: transform .2s; }
.hero-services a:hover { color: var(--gold); }
.hero-services a:hover .icon { transform: translateY(-3px); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 48px; }
.hero-buttons .btn { min-width: 280px; }

.hero-quote {
  margin: 0;
  align-self: flex-start;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.35;
  color: #f4f0e8;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.hero-quote::after { content: ""; display: block; width: 90px; height: 2px; margin: 20px auto 0; background: var(--gold); }

/* ==========================================================
   Sections
   ========================================================== */
.section { padding-block: 34px 60px; background: var(--light); }
.section-head { text-align: center; margin-bottom: 30px; }
.section-head h2 {
  margin-top: 8px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.1;
  color: var(--text);
}
.services .section-head h2::after {
  content: ""; display: block; width: 90px; height: 2px; margin: 14px auto 0; background: var(--gold);
}

/* Services */
.swipe-hint { display: none; align-items: center; justify-content: center; gap: 6px; margin-top: 4px; font-size: 14px; color: var(--muted); }
.swipe-hint .icon { width: 16px; height: 16px; color: var(--gold-strong); }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.service-card {
  display: flex; flex-direction: column;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 2px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(10, 14, 20, .14); }
.service-card img { width: 100%; height: auto; aspect-ratio: 16 / 9.6; object-fit: cover; }
.service-body { padding: 20px 18px 24px; text-align: center; }
.service-icon { width: 40px; height: 40px; color: #2a1d18; margin: 0 auto 10px; stroke-width: 1.8; }
.service-body h3 { font-family: var(--serif); font-weight: 700; font-size: 26px; line-height: 1.15; margin-bottom: 8px; }
.service-body p { color: #3c3e43; font-size: 16.5px; line-height: 1.45; }

/* Why choose us */
.why { background: var(--ink); color: var(--white); padding-block: 28px 30px; }
.why-title { text-align: center; margin-bottom: 18px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.why-grid li { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 8px 18px; }
.why-grid li + li { border-left: 1px solid var(--line); }
.why-grid .icon { width: 52px; height: 52px; color: var(--gold); stroke-width: 1.4; }
.why-grid h3 { font-family: var(--serif); font-weight: 700; font-size: 24px; margin-bottom: 4px; white-space: nowrap; }
.why-grid p { color: #d8d9db; font-size: 16px; line-height: 1.4; }

/* Fleet */
.fleet { padding-bottom: 36px; }
.fleet .section-head { margin-bottom: 0; }
.fleet-slider { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.fleet-track { position: relative; padding-bottom: 36px; }
.fleet-slide { display: none; grid-template-columns: 58% 1fr; align-items: center; gap: 30px; }
.fleet-slide.is-active { display: grid; animation: fade .45s ease; }
@keyframes fade { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }
.fleet-image { padding: 0 64px; margin-top: -20px; }
.fleet-image img { width: 100%; height: auto; }
.fleet-info h3 { font-family: var(--serif); font-weight: 600; font-size: 32px; margin-bottom: 14px; }
.feature-list li {
  position: relative;
  padding: 4px 0 4px 40px;
  font-size: 19px;
  color: #33363b;
}
.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 22px; height: 22px; margin-top: -11px;
  border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23231a10' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4 8-9'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.slider-arrow {
  position: absolute; top: calc(50% - 18px); z-index: 2;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border: 0; border-radius: 50%;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
  transform: translateY(-50%);
  transition: background .2s, color .2s;
}
.slider-arrow:hover { background: var(--gold); }
.slider-arrow .icon { width: 26px; height: 26px; stroke-width: 2; }
.slider-prev { left: 0; }
.slider-next { left: calc(58% - 64px); }
.slider-dots { position: absolute; bottom: 0; left: 29%; transform: translateX(-50%); display: flex; gap: 14px; }
.slider-dots button {
  width: 13px; height: 13px; padding: 0;
  border-radius: 50%; border: 0;
  background: #9a9ca1;
}
.slider-dots button.is-active { background: var(--gold); box-shadow: 0 0 0 2px var(--light), 0 0 0 3.5px var(--gold); }
.fleet-cta { padding-inline: 50px; margin-bottom: 36px; }

/* Call to action */
.cta {
  position: relative;
  color: var(--white);
  background: #0b0c0e url("../assets/images/cta-background.jpg") left center / cover no-repeat;
  padding-block: 34px;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-left: clamp(0px, 24vw, 320px); }
.cta .eyebrow { color: var(--gold); font-size: 18px; }
.cta h2 { margin-top: 4px; font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 3.6vw, 52px); line-height: 1.1; }
.cta-action { text-align: center; }
.cta-action .btn { min-width: 380px; }
.cta-action p { margin-top: 12px; font-size: 18px; color: #eaeaea; }

/* ==========================================================
   Footer (Contact)
   ========================================================== */
.site-footer { background: var(--ink); color: #e3e4e6; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr .75fr .95fr .9fr;
  padding-block: 34px 30px;
}
.footer-grid > * { padding-inline: 28px; }
.footer-grid > * + * { border-left: 1px solid var(--line); }
.footer-grid > :first-child { padding-left: 0; }
.footer-brand { text-align: left; }
.footer-brand .brand img { height: 92px; margin: 0 0 10px 18px; }
.footer-brand p { font-size: 15px; line-height: 1.45; color: #cfd0d3; }
.site-footer h3 {
  font-family: var(--sans); font-weight: 500; font-size: 16px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--white); margin: 4px 0 16px;
}
.contact-list li { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; font-size: 16px; }
.contact-list .icon { width: 20px; height: 20px; color: var(--gold); }
.contact-list a:hover, .link-list a:hover { color: var(--gold); }
.link-list li { margin-bottom: 4px; font-size: 16px; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.55); border-radius: 50%;
  color: var(--white);
  transition: border-color .2s, color .2s, background .2s;
}
.social a:hover { border-color: var(--gold); color: var(--gold); }
.social .icon { width: 18px; height: 18px; }
.social-lg { margin-top: 0; gap: 14px; }
.social-lg a { width: 46px; height: 46px; }
.social-lg .icon { width: 20px; height: 20px; }
.footer-slogan {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--script);
  font-size: 44px; line-height: 1.05;
  color: var(--gold);
  text-align: center;
  transform: rotate(-8deg);
}
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-block: 18px; font-size: 15px; color: #cfd0d3; }
.footer-bottom ul { display: flex; }
.footer-bottom li + li { border-left: 1px solid var(--line); }
.footer-bottom li a { padding: 0 20px; }
.footer-bottom li:last-child a { padding-right: 0; }
.footer-bottom a:hover { color: var(--gold); }

/* ==========================================================
   Sub-pages (About / Prices / Booking – placeholders)
   ========================================================== */
.page-hero {
  margin-top: var(--header-h);
  min-height: calc(100vh - var(--header-h) - 300px);
  display: flex; align-items: center;
  padding-block: 90px;
  color: var(--white);
  background: linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.35)), url("../assets/images/hero.jpg") center / cover no-repeat;
}
.page-hero h1 { font-family: var(--serif); font-weight: 700; font-size: clamp(42px, 6vw, 76px); line-height: 1.05; margin: 10px 0 18px; }
.page-hero p { max-width: 620px; font-size: 19px; color: #e7e7e7; }
.page-hero .btn { margin-top: 32px; }
.page-contact { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.page-contact .btn { margin-top: 0; }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1180px) {
  .header-book { display: none; }
  .nav-book-mobile { display: inline-flex; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .why-grid li:nth-child(3) { border-left: 0; }
  .fleet-slider { grid-template-columns: 1fr; justify-items: center; gap: 10px; }
  .fleet-track { width: 100%; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .footer-grid > :nth-child(4) { border-left: 0; padding-left: 0; }
  .footer-slogan { transform: rotate(-6deg); }
  .cta-inner { padding-left: clamp(0px, 20vw, 240px); }
  .cta-action .btn { min-width: 300px; }
}

@media (max-width: 980px) {
  :root { --header-h: 76px; }
  .brand img { height: 62px; }
  .menu-toggle { display: flex; }
  .header-actions { margin-left: auto; gap: 14px; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 18px;
    padding: 18px 24px 28px;
    background: var(--ink);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(0,0,0,.4);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity .25s, transform .25s, visibility .25s;
  }
  .nav-open .main-nav { transform: none; opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .nav-link { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 21px; }
  .nav-link::after { display: none; }
  .nav-book-mobile { align-self: stretch; }

  .hero { min-height: 0; }
  .hero-bg { background-position: 70% center; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.7) 55%, rgba(0,0,0,.85)); }
  .hero-inner { flex-direction: column-reverse; padding-block: 40px 56px; }
  .hero-quote { align-self: flex-end; font-size: 20px; }

  .fleet-slide, .fleet-slide.is-active { grid-template-columns: 1fr; }
  .fleet-image { padding: 0 56px; margin-top: 10px; }
  .slider-arrow { width: 48px; height: 48px; top: 28%; }
  .slider-next { left: auto; right: 0; }
  .slider-dots { position: static; transform: none; justify-content: center; margin-top: 20px; }
  .fleet-info { width: fit-content; margin-inline: auto; }
  .fleet-cta { margin-bottom: 10px; }

  .cta { background-position: 20% center; }
  .cta::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.45); }
  .cta-inner { position: relative; flex-direction: column; text-align: center; padding-left: 0; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 32px); }
  .service-body h3 { font-size: 22px; }
  .service-body p { font-size: 15px; }
  .hero-lead br, .cta br { display: none; }
  .lang-toggle { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > * { border-left: 0 !important; padding-inline: 0; }
  .footer-brand, .footer-slogan { grid-column: 1 / -1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom li a { padding: 0 12px; }
}

@media (max-width: 460px) {
  .feature-list li { font-size: 17px; }
  .footer-grid { grid-template-columns: 1fr 1fr; column-gap: 16px; }
  .footer-grid > :nth-child(2) { grid-column: 1 / -1; }
}

/* ==========================================================
   Phones (≤ 700px) – touch-friendly layout
   ========================================================== */
.mobile-bar { display: none; }

@media (max-width: 700px) {
  :root { --header-h: 68px; }
  .brand img { height: 54px; }
  .header-actions { gap: 8px; }
  .lang-toggle { padding: 10px 8px; }
  .menu-toggle { width: 46px; height: 46px; }
  .nav-open { overflow: hidden; }            /* page doesn't scroll behind the open menu */
  .main-nav { bottom: 0; justify-content: flex-start; overflow-y: auto; }

  /* Hero: text first, car visible underneath */
  .hero-bg { background-position: 68% bottom; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.72) 45%, rgba(0,0,0,.55) 80%, rgba(0,0,0,.35) 100%); }
  .hero-inner { flex-direction: column; gap: 0; padding-block: 34px 44px; }
  .hero-quote { display: none; }
  .hero .eyebrow { font-size: 14px; margin-bottom: 10px; }
  .hero h1 { font-size: clamp(34px, 10.4vw, 46px); }
  .line-gold { margin-top: 4px; }
  .hero-lead { font-size: 19px; margin-top: 16px; }
  .hero-services { display: flex; justify-content: space-between; gap: 4px; margin-top: 28px; }
  .hero-services li { flex: 1; min-width: 0; }
  .hero-services a { width: auto; gap: 8px; font-size: 13px; }
  .hero-services .icon { width: 34px; height: 34px; }
  .hero-buttons { flex-direction: column; gap: 12px; margin-top: 30px; }
  .hero-buttons .btn { width: 100%; min-width: 0; }

  /* Services: swipe sideways through the cards */
  .section { padding-block: 30px 44px; }
  .section-head h2 { font-size: clamp(28px, 8vw, 36px); }
  .service-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    margin-inline: -16px;
    padding: 4px 16px 18px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .service-grid::-webkit-scrollbar { display: none; }
  .service-card { flex: 0 0 80%; scroll-snap-align: start; }
  .service-card:hover { transform: none; }
  .swipe-hint { display: flex; }

  /* Why us: compact 2 × 2 */
  .why { padding-block: 26px; }
  .why-title { font-size: 16px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 22px 14px; }
  .why-grid li, .why-grid li + li { flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 0; border: 0 !important; }
  .why-grid .icon { width: 42px; height: 42px; }
  .why-grid h3 { font-size: 20px; white-space: normal; }
  .why-grid p { font-size: 14.5px; }
  .why-grid p br { display: none; }

  /* Fleet */
  .fleet-image { padding: 0 44px; margin-top: 6px; }
  .slider-arrow { width: 42px; height: 42px; top: calc((100vw - 32px - 88px) / 4.94 + 6px); }
  .slider-arrow .icon { width: 20px; height: 20px; }
  .fleet-info h3 { font-size: 26px; text-align: center; }
  .feature-list li { font-size: 16.5px; padding-block: 3px; }
  .fleet-cta { width: 100%; }

  /* Booking banner */
  .cta { padding-block: 30px; }
  .cta .eyebrow { font-size: 14px; }
  .cta h2 { font-size: 30px; }
  .cta-action { width: 100%; }
  .cta-action .btn { width: 100%; min-width: 0; }

  /* Footer */
  .footer-brand { text-align: center; }
  .footer-brand .brand img { margin: 0 auto 10px; }
  .footer-brand .social { justify-content: center; }
  .contact-list li { padding-block: 4px; }
  .contact-list a, .link-list a { display: inline-block; padding-block: 4px; }
  .footer-slogan { font-size: 38px; padding-top: 6px; }
  .footer-bottom-inner { padding-bottom: 24px; }

  /* Sticky call / book bar at the bottom of the screen */
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .mobile-bar {
    position: fixed; inset: auto 0 0 0; z-index: 40;
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    background: rgba(14, 17, 22, .97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(0,0,0,.25);
  }
  .mobile-bar .btn { padding: 12px 10px; font-size: 15px; gap: 8px; }
  .mobile-bar .icon { width: 18px; height: 18px; }
  .nav-open .mobile-bar { display: none; }

  /* Sub-pages */
  .page-hero { min-height: calc(100dvh - var(--header-h) - 64px); padding-block: 50px; }
  .page-hero .btn { width: 100%; }
  .page-contact { flex-direction: column; }
}

@media (max-width: 360px) {
  .hero-services a { font-size: 12px; }
  .hero-services .icon { width: 30px; height: 30px; }
  .why-grid { grid-template-columns: 1fr; }
  .service-card { flex-basis: 86%; }
}

/* Phone turned sideways: keep the hero short */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: 0; }
  .hero-quote { display: none; }
}

/* No hover effects on touch screens */
@media (hover: none) {
  .service-card:hover { transform: none; box-shadow: var(--shadow); }
  .btn:hover .icon { transform: none; }
}

/* ==========================================================
   About Us page
   ========================================================== */
.about-hero { min-height: 0; padding-block: 90px 80px; }
.about-hero p:last-child { font-family: var(--serif); font-size: clamp(20px, 2vw, 26px); line-height: 1.4; max-width: 720px; }

.about-intro { padding-block: 60px; }
.about-intro-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 60px; align-items: center; }
.about-text p { font-size: 18px; line-height: 1.7; color: #3a3c41; }
.about-text p + p { margin-top: 16px; }
.about-text .about-first { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 28px); line-height: 1.45; color: var(--text); padding-left: 22px; border-left: 3px solid var(--gold); }
.about-stats { display: grid; gap: 16px; }
.about-stats li {
  display: flex; align-items: baseline; gap: 18px;
  padding: 20px 26px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
}
.about-stats strong { font-family: var(--serif); font-size: 42px; line-height: 1; color: var(--gold-strong); min-width: 96px; }
.about-stats span { font-size: 16px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }

.about-vehicles { background: var(--white); padding-block: 56px 64px; }
.vehicles-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.vehicles-image img { width: 100%; height: auto; }
.vehicle-list { display: grid; gap: 12px; }
.vehicle-list li {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 20px;
  background: var(--light);
  border: 1px solid #eceef1;
  border-radius: var(--radius);
  transition: border-color .2s, transform .2s;
}
.vehicle-list li:hover { border-color: var(--gold); }
.vehicle-list li.is-featured { background: var(--ink); border-color: var(--ink); color: var(--white); }
.vehicle-list li.is-featured p { color: var(--gold-soft); }
.vehicle-list .icon { width: 34px; height: 34px; color: var(--gold-strong); stroke-width: 1.5; }
.vehicle-list li.is-featured .icon { color: var(--gold); }
.vehicle-list h3 { font-family: var(--serif); font-weight: 700; font-size: 23px; line-height: 1.15; }
.vehicle-list p { font-size: 16px; color: var(--muted); }

.about-service { padding-block: 56px 60px; text-align: center; }
.about-service h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(32px, 3.6vw, 48px); margin-top: 6px; }
.about-service-text { max-width: 820px; margin: 16px auto 0; font-size: 19px; line-height: 1.6; color: #d8d9db; }
.values-title { margin-top: 34px; font-size: 16px; letter-spacing: .06em; text-transform: uppercase; color: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 20px; }
.values-grid li {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--serif); font-weight: 700; font-size: 21px;
}
.values-grid .icon { width: 40px; height: 40px; color: var(--gold); stroke-width: 1.4; }

.about-philosophy { padding-block: 64px; text-align: center; }
.about-philosophy blockquote {
  margin: 14px auto 0; max-width: 900px;
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(30px, 3.6vw, 48px); line-height: 1.2; color: var(--text);
}
.about-philosophy blockquote::after { content: ""; display: block; width: 90px; height: 2px; margin: 22px auto; background: var(--gold); }
.about-philosophy p:last-child { max-width: 720px; margin: 0 auto; font-size: 18px; line-height: 1.7; color: #3a3c41; }

.about-contact { padding-block: 50px; background-position: left center; }
.about-contact::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.2), rgba(0,0,0,.75) 45%); }
.about-contact-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-left: clamp(0px, 22vw, 300px); }
.about-closing { margin-top: 10px; font-family: var(--serif); font-size: 21px; color: #eaeaea; max-width: 460px; }
.about-contact-list { display: grid; gap: 12px; }
.about-contact-list a:not(.btn) { display: flex; align-items: center; gap: 14px; font-size: 19px; }
.about-contact-list a:not(.btn):hover { color: var(--gold); }
.about-contact-list .icon { width: 22px; height: 22px; color: var(--gold); }
.about-contact-list .btn .icon { color: inherit; }
.about-contact-list li:last-child { margin-top: 8px; }

@media (max-width: 1180px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .about-intro-grid, .vehicles-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .about-stats li { flex-direction: column; align-items: flex-start; gap: 6px; padding: 16px; }
  .about-stats strong { min-width: 0; font-size: 34px; }
  .about-contact::after { background: rgba(0,0,0,.6); }
  .about-contact-inner { flex-direction: column; align-items: flex-start; padding-left: 0; }
}
@media (max-width: 700px) {
  .about-hero { min-height: 0; padding-block: 44px 40px; }
  .about-intro { padding-block: 36px; }
  .about-text p { font-size: 16.5px; }
  .about-stats { gap: 8px; }
  .about-stats li { padding: 12px 10px; align-items: center; text-align: center; }
  .about-stats strong { font-size: 28px; }
  .about-stats span { font-size: 12px; letter-spacing: .03em; }
  .about-vehicles, .about-service, .about-philosophy { padding-block: 38px 44px; }
  .vehicle-list li { padding: 14px; gap: 14px; }
  .vehicle-list h3 { font-size: 20px; }
  .vehicle-list p { font-size: 15px; }
  .about-service-text { font-size: 16.5px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .values-grid li { padding: 16px 8px; font-size: 19px; }
  .about-philosophy p:last-child { font-size: 16.5px; }
  .about-contact-list { width: 100%; }
  .about-contact-list a:not(.btn) { font-size: 17px; padding-block: 4px; }
  .about-contact-list .btn { width: 100%; }
}

/* ==========================================================
   Services pop-up
   ========================================================== */
/* "Learn more" on each service card – the whole card is clickable */
.service-card { position: relative; cursor: pointer; }
.service-body { display: flex; flex-direction: column; flex: 1; }
.card-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  margin: auto auto 0; padding: 14px 0 0;
  background: none; border: 0;
  font-weight: 500; font-size: 15px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-strong);
}
.card-link::after { content: ""; position: absolute; inset: 0; }   /* stretches the click area over the card */
.card-link .icon { width: 18px; height: 18px; transition: transform .2s; }
.service-card:hover .card-link .icon { transform: translateX(4px); }
.card-link:focus-visible { outline: none; }
.service-card:has(.card-link:focus-visible) { outline: 2px solid var(--gold); outline-offset: 3px; }
.service-body p { margin-bottom: 4px; }

body.modal-open { overflow: hidden; }

.svc-modal {
  width: min(860px, calc(100% - 32px));
  max-height: min(88vh, 900px);
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: var(--light);
  color: var(--text);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
  overflow: hidden;
}
.svc-modal[open] { display: flex; flex-direction: column; animation: modalIn .28s ease; }
.svc-modal::backdrop { background: rgba(6, 8, 11, .72); backdrop-filter: blur(3px); }
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }

.svc-modal-head {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 30px;
  background: var(--ink); color: var(--white);
  border-bottom: 2px solid var(--gold);
}
.svc-modal-head h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 3vw, 38px); line-height: 1.1; margin-top: 2px; }
.svc-modal-head .eyebrow { color: var(--gold); }
.svc-close {
  width: 46px; height: 46px; flex: none;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: none; color: var(--white);
  transition: background .2s, color .2s, border-color .2s;
}
.svc-close:hover { background: var(--gold); border-color: var(--gold); color: #121212; }
.svc-close .icon { width: 22px; height: 22px; }

.svc-modal-body { overflow-y: auto; padding: 18px 30px; scroll-behavior: smooth; overscroll-behavior: contain; }
.svc-items { counter-reset: svc; list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.svc-item {
  counter-increment: svc;
  display: flex; gap: 18px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid #e8eaee;
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  scroll-margin-top: 12px;
  transition: border-color .3s, box-shadow .3s;
}
.svc-item.is-highlighted { border-color: var(--gold); border-left-color: var(--gold); box-shadow: 0 8px 24px rgba(201, 154, 69, .18); }
.svc-icon { width: 38px; height: 38px; color: var(--gold-strong); stroke-width: 1.5; margin-top: 2px; }
.svc-item h3 { font-family: var(--serif); font-weight: 700; font-size: 24px; line-height: 1.15; margin-bottom: 6px; }
.svc-num::before { content: counter(svc) ". "; color: var(--gold-strong); }
.svc-item p { font-size: 16.5px; line-height: 1.55; color: #3a3c41; }
.svc-item p + p { margin-top: 8px; }
.svc-item .svc-q { font-weight: 600; color: var(--text); }
.svc-item .svc-sub { font-weight: 600; color: var(--text); margin-top: 12px; }
.svc-list { margin: 6px 0 10px; display: grid; gap: 4px; }
.svc-list li { position: relative; padding-left: 22px; font-size: 16px; color: #3a3c41; }
.svc-list li::before { content: ""; position: absolute; left: 4px; top: .6em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.svc-modal-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 30px;
  background: var(--white);
  border-top: 1px solid #e8eaee;
}
.svc-modal-foot p { font-family: var(--serif); font-size: 19px; }
.svc-modal-actions { display: flex; gap: 10px; flex: none; }
.svc-modal-actions .btn { padding: 12px 20px; font-size: 15px; gap: 10px; }
.svc-modal-actions .icon { width: 18px; height: 18px; }

@media (max-width: 700px) {
  /* full-screen sheet on phones */
  .svc-modal { width: 100%; max-width: 100%; height: 100%; max-height: 100%; margin: 0; border-radius: 0; }
  .svc-modal[open] { animation: sheetIn .3s ease; }
  @keyframes sheetIn { from { transform: translateY(40px); opacity: 0; } to { transform: none; opacity: 1; } }
  .svc-modal-head { padding: 14px 16px; padding-top: calc(14px + env(safe-area-inset-top)); }
  .svc-modal-body { padding: 14px 16px; flex: 1; }
  .svc-item { padding: 16px 14px; gap: 12px; }
  .svc-icon { width: 30px; height: 30px; }
  .svc-item h3 { font-size: 21px; }
  .svc-item p { font-size: 15.5px; }
  .svc-modal-foot { flex-direction: column; align-items: stretch; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); }
  .svc-modal-foot p { display: none; }
  .svc-modal-actions { display: grid; grid-template-columns: 1fr 1.4fr; }
  .card-link { font-size: 14px; }
}

/* ==========================================================
   Fleet pop-up (uses the same window as the services pop-up)
   ========================================================== */
.fm-modal { width: min(1040px, calc(100% - 32px)); }
.fm-intro { font-size: 17px; line-height: 1.6; color: #3a3c41; max-width: 820px; margin-bottom: 18px; }
.fm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.fm-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid #e8eaee;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.fm-card:hover { border-color: var(--gold); box-shadow: 0 8px 22px rgba(10,14,20,.08); }
.fm-media {
  height: 118px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f1f2f4, #e9ebee);
  color: var(--gold-strong);
}
.fm-media .icon { width: 58px; height: 58px; stroke-width: 1.2; }
.fm-photo { background: linear-gradient(180deg, #fff, #f1f2f4); padding: 6px 12px 0; }
.fm-photo img { width: 100%; height: 100%; object-fit: contain; }
.fm-body { padding: 16px 18px 20px; }
.fm-body h3 { font-family: var(--serif); font-weight: 700; font-size: 24px; line-height: 1.15; }
.fm-tag { margin: 4px 0 10px; font-size: 13.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-strong); }
.fm-body p:last-child { font-size: 15.5px; line-height: 1.55; color: #3a3c41; }
.fm-card.is-featured { border-color: var(--gold); }
.fm-card.is-more .fm-media { background: var(--ink); color: var(--gold); }

.fm-wish {
  display: flex; gap: 18px; align-items: flex-start;
  margin-top: 18px; padding: 20px 22px;
  background: var(--ink); color: var(--white);
  border-radius: var(--radius);
}
.fm-wish > .icon { width: 44px; height: 44px; color: var(--gold); stroke-width: 1.4; flex: none; }
.fm-wish h3 { font-family: var(--serif); font-weight: 700; font-size: 26px; margin-bottom: 4px; }
.fm-wish p { font-size: 16.5px; color: #d8d9db; line-height: 1.5; }

.fm-brand { text-align: center; padding: 26px 10px 8px; }
.fm-brand-name { font-family: var(--serif); font-weight: 700; font-size: 26px; letter-spacing: .14em; text-transform: uppercase; }
.fm-brand-values { margin: 6px 0; font-size: 15px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-strong); }
.fm-brand p:last-child { font-family: var(--serif); font-size: 19px; color: #3a3c41; }

@media (max-width: 900px) {
  .fm-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .fm-modal { width: 100%; }
  .fm-intro { font-size: 15.5px; }
  .fm-grid { grid-template-columns: 1fr; gap: 12px; }
  .fm-card { flex-direction: row; }
  .fm-media { width: 96px; height: auto; flex: none; }
  .fm-media .icon { width: 42px; height: 42px; }
  .fm-card.is-featured { flex-direction: column; }
  .fm-card.is-featured .fm-media { width: 100%; height: 130px; }
  .fm-body { padding: 14px; }
  .fm-body h3 { font-size: 21px; }
  .fm-tag { font-size: 12px; margin-bottom: 6px; }
  .fm-body p:last-child { font-size: 15px; }
  .fm-wish { padding: 16px; gap: 12px; }
  .fm-wish > .icon { width: 34px; height: 34px; }
  .fm-wish h3 { font-size: 22px; }
  .fm-wish p { font-size: 15px; }
  .fm-brand-name { font-size: 21px; }
}

/* ==========================================================
   Prices page
   ========================================================== */
.price-factors { padding-block: 30px 34px; }
.factor-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 14px; }
.factor-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 17px; color: #eaeaea;
}
.factor-list .icon { width: 22px; height: 22px; color: var(--gold); }

.prices { padding-block: 48px 64px; }
.price-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.price-grid > li { flex: 0 0 calc((100% - 48px) / 4); }
.price-card {
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 28px 18px 22px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  border-radius: 2px;
  transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(10, 14, 20, .14); }
.price-icon { width: 44px; height: 44px; color: var(--gold-strong); stroke-width: 1.5; margin-bottom: 12px; }
.price-card h3 { font-family: var(--serif); font-weight: 700; font-size: 24px; line-height: 1.15; }
.price-value {
  margin: 12px 0 4px; padding: 6px 14px;
  background: var(--light); border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text);
}
.price-link { margin-top: auto; padding-top: 16px; }

.price-quote { padding-block: 56px; }
.quote-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: center; padding-left: clamp(0px, 20vw, 260px); }
.quote-text h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 3.2vw, 44px); line-height: 1.15; }
.quote-text > p { margin-top: 12px; font-size: 18px; line-height: 1.6; color: #e3e3e3; }
.quote-list { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 18px; }
.quote-list li { display: flex; align-items: center; gap: 8px; font-size: 16px; }
.quote-list .icon { width: 20px; height: 20px; color: var(--gold); }
.quote-actions { display: grid; gap: 12px; }
.quote-actions .btn .icon { width: 20px; height: 20px; }
.quote-call { text-align: center; font-size: 16px; color: #e3e3e3; }
.quote-call a { color: var(--gold); font-weight: 600; }

@media (max-width: 1180px) {
  .price-grid > li { flex-basis: calc((100% - 32px) / 3); }
}
@media (max-width: 980px) {
  .quote-inner { grid-template-columns: 1fr; gap: 26px; padding-left: 0; }
}
@media (max-width: 700px) {
  .factor-list { gap: 8px; }
  .factor-list li { padding: 8px 14px; font-size: 15px; }
  .factor-list .icon { width: 18px; height: 18px; }
  .prices { padding-block: 34px 44px; }
  /* phones: one compact row per service */
  .price-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .price-card { display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: auto auto; column-gap: 14px; align-items: center; text-align: left; padding: 14px 16px; border-top: 0; border-left: 3px solid var(--gold); }
  .price-card:hover { transform: none; }
  .price-icon { grid-row: 1 / 3; width: 34px; height: 34px; margin: 0; }
  .price-card h3 { font-size: 20px; }
  .price-value { justify-self: start; margin: 6px 0 0; font-size: 11.5px; padding: 4px 10px; letter-spacing: .04em; }
  .price-link { grid-column: 3; grid-row: 1 / 3; margin: 0; padding: 0; }
  .price-link > span:first-child { display: none; }
  .price-link .icon { width: 22px; height: 22px; }
  .price-quote { padding-block: 40px; }
  .quote-text > p { font-size: 16.5px; }
  .quote-actions .btn { width: 100%; }
}

/* ---------- My Day Drive link in the header ---------- */
.header-account {
  width: 44px; height: 44px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%; color: #e9e9ea;
  transition: background .2s, color .2s, border-color .2s;
}
.header-account:hover, body[data-page="account"] .header-account { background: var(--gold); border-color: var(--gold); color: #121212; }
.header-account .icon { width: 21px; height: 21px; }
.nav-account-mobile { display: none; }
.nav-account-mobile .icon { vertical-align: -2px; }
@media (max-width: 1320px) { .main-nav ul { gap: clamp(14px, 2vw, 30px); } }
@media (max-width: 980px) {
  .header-account { display: none; }
  .nav-account-mobile { display: block; }
}
