/* Chilu Transport — Modern Redesign */

:root {
  --red: #E11D2A;
  --red-dark: #B5161F;
  --red-deep: #8B0F17;
  --ink: #0E0F12;
  --ink-2: #1A1C20;
  --char: #2E3138;
  --slate: #5B6068;
  --line: #E6E4DE;
  --cream: #F6F3EC;
  --paper: #FBFAF6;
  --bone: #EFEBE2;
  --gold: #C8A35A;
  --green: #1F6F4A;
  --shadow-card: 0 1px 0 rgba(14,15,18,.04), 0 12px 32px -16px rgba(14,15,18,.18);
  --radius: 18px;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

.display, .h1, .h2, .eyebrow {
  font-family: 'Bricolage Grotesque', 'Manrope', sans-serif;
  letter-spacing: -0.02em;
}
.display { font-weight: 700; line-height: .98; letter-spacing: -0.035em; }
.eyebrow {
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 600;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
svg { flex-shrink: 0; }
button svg, a svg, label svg, .summary-row svg { width: 16px; height: 16px; }
.bk-submit svg, .btn svg, .nav-cta svg, .fleet-book svg, .cta-buttons svg, .section-head .link svg { width: 16px; height: 16px; }
.footer-contact svg, .footer p svg { width: 16px; height: 16px; }
.value .ic svg { width: 22px; height: 22px; }
.feature-points .check svg { width: 14px; height: 14px; }
.modal-close svg { width: 14px; height: 14px; }
.faq-q .ic svg { width: 14px; height: 14px; }
.tour-card .arrow svg { width: 16px; height: 16px; }
.fleet-quick svg { width: 14px; height: 14px; }
.footer-social svg { width: 14px; height: 14px; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  transition: background .35s ease, border-color .35s ease, padding .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(251,250,246,.92);
  backdrop-filter: blur(14px);
  border-color: var(--line);
  padding: 12px 40px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 38px; width: auto; filter: drop-shadow(0 1px 0 rgba(0,0,0,.05)); }
.nav.dark .nav-logo img { filter: brightness(0) invert(1) drop-shadow(0 1px 0 rgba(0,0,0,.2)); }
.nav.scrolled .nav-logo img { filter: none; }

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  color: rgba(255,255,255,.85);
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(255,255,255,.08); color: #fff; }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ""; display: block;
  margin: 4px auto 0;
  width: 14px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.nav.scrolled .nav-links a.active { color: var(--ink-2); }
.nav.scrolled .nav-links a { color: var(--ink-2); }
.nav.scrolled .nav-links a:hover { background: rgba(14,15,18,.06); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px 11px 20px;
  background: var(--red); color: #fff;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--red-dark); }
.nav-cta:active { transform: scale(.97); }
.nav-cta svg { width: 14px; height: 14px; }

.nav-burger {
  display: none; width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
}
.nav.scrolled .nav-burger { border-color: var(--line); color: var(--ink); }

/* Mobile slide-down menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(14,15,18,.8); backdrop-filter: blur(10px);
  display: flex; align-items: flex-start; justify-content: stretch;
}
.mobile-menu .mm-inner {
  width: 100%; max-width: 420px; margin-left: auto;
  height: 100vh;
  background: var(--paper);
  padding: 28px 28px 40px;
  display: flex; flex-direction: column; gap: 4px;
  position: relative;
}
.mobile-menu .mm-close {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu .mm-inner a {
  padding: 16px 8px;
  border-bottom: 1px solid var(--line);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px; letter-spacing: -.01em; font-weight: 500;
  color: var(--ink);
}
.mobile-menu .mm-inner a:first-child { margin-top: 48px; }
.mobile-menu .mm-inner a.active { color: var(--red); }
.mobile-menu .mm-inner .bk-submit { margin-top: 24px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 120px 40px 60px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-image: url('assets/fleet-three-evening.jpg');
  transform: scale(1.02);
  transition: opacity .8s ease;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,15,18,.55) 0%, rgba(14,15,18,.25) 40%, rgba(14,15,18,.65) 80%, rgba(14,15,18,.95) 100%),
    linear-gradient(90deg, rgba(14,15,18,.7) 0%, rgba(14,15,18,.15) 60%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 60px auto 0; width: 100%;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: end;
}
.hero-copy { max-width: 640px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74,222,128,.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(74,222,128,.2); }
  50% { box-shadow: 0 0 0 7px rgba(74,222,128,.05); }
}
.hero h1 {
  font-size: clamp(54px, 7.5vw, 108px);
  margin: 24px 0 22px;
}
.hero h1 .accent {
  color: var(--red);
  font-style: italic;
  font-family: 'Instrument Serif', 'Bricolage Grotesque', serif;
  font-weight: 400;
  letter-spacing: -.02em;
}
.hero-sub {
  font-size: 18px; line-height: 1.55;
  max-width: 480px; color: rgba(255,255,255,.78);
  margin-bottom: 36px;
}
.hero-stats {
  display: flex; gap: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  max-width: 480px;
}
.hero-stat .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 36px; font-weight: 600; letter-spacing: -.03em;
  line-height: 1;
}
.hero-stat .num sup { font-size: 16px; color: var(--red); margin-left: 2px; }
.hero-stat .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.6); margin-top: 8px; }

/* Booking widget */
.booking-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 22px;
  padding: 26px 26px 22px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.5);
  width: 100%;
  max-width: 460px;
  justify-self: end;
}
.booking-card h3 {
  margin: 0 0 4px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px; letter-spacing: -.02em;
}
.booking-card .sub { color: var(--slate); font-size: 13px; margin-bottom: 18px; }
.bk-tabs {
  display: flex; gap: 4px;
  background: var(--bone);
  padding: 4px; border-radius: 12px;
  margin-bottom: 18px;
}
.bk-tab {
  flex: 1; padding: 9px 10px;
  border-radius: 9px;
  font-size: 13px; font-weight: 600;
  color: var(--slate);
  transition: all .2s;
}
.bk-tab.active { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.bk-field {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
  margin-bottom: 10px;
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
}
.bk-field:focus-within { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(14,15,18,.05); }
.bk-field label {
  display: block;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--slate); font-weight: 600; margin-bottom: 4px;
}
.bk-field input, .bk-field select {
  border: none; outline: none; background: transparent;
  width: 100%; font-family: inherit; font-size: 15px;
  font-weight: 500; color: var(--ink);
  padding: 0;
}
.bk-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bk-grid2 .bk-field { margin-bottom: 10px; }
.bk-submit {
  width: 100%;
  margin-top: 6px;
  padding: 15px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s, transform .15s;
}
.bk-submit:hover { background: var(--red); }
.bk-submit:active { transform: scale(.98); }

.hero-foot {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 80px auto 0; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .18em;
}
.hero-foot .marquee {
  display: flex; gap: 36px;
  overflow: hidden;
  flex: 1;
  max-width: 600px;
  margin: 0 24px;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.hero-foot .marquee-inner {
  display: flex; gap: 36px;
  animation: marq 30s linear infinite;
  white-space: nowrap;
}
@keyframes marq { to { transform: translateX(-50%); } }

/* ============ SECTION COMMON ============ */
section { padding: 110px 40px; position: relative; }
.container { max-width: 1280px; margin: 0 auto; }
.section-head {
  display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 40px;
  margin-bottom: 60px; padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.section-head .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--red);
  font-feature-settings: "tnum";
}
.section-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  margin: 0;
  letter-spacing: -.03em;
  line-height: 1;
  font-weight: 700;
}
.section-head h2 .it {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--char);
}
.section-head .link {
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
}

/* ============ VALUE PROPS ============ */
.values { background: var(--paper); padding: 100px 40px 60px; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value {
  padding: 44px 40px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .25s;
}
.value:last-child { border-right: none; }
.value:hover { background: var(--cream); }
.value .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.value .ic svg { width: 22px; height: 22px; }
.value h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; letter-spacing: -.02em;
  margin: 0 0 8px; font-weight: 600;
}
.value p { color: var(--slate); font-size: 14.5px; line-height: 1.55; margin: 0; }
.value .num { position: absolute; top: 24px; right: 32px; color: var(--slate); font-size: 12px; }

/* ============ FLEET ============ */
.fleet { background: var(--cream); }
.fleet-filters {
  display: flex; gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.fleet-filter {
  padding: 9px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  font-size: 13px; font-weight: 500;
  color: var(--char);
  transition: all .2s;
}
.fleet-filter:hover { border-color: var(--ink); }
.fleet-filter.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.fleet-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.fleet-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
  position: relative;
  display: flex; flex-direction: column;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -20px rgba(0,0,0,.18); }
.fleet-img {
  aspect-ratio: 4/3;
  background: var(--bone);
  background-size: cover; background-position: center;
  position: relative;
}
.fleet-img::after {
  content: ""; position: absolute; inset: auto 0 0; height: 30%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.25));
}
.fleet-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink);
}
.fleet-badge.popular { background: var(--red); color: #fff; }
.fleet-quick {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.fleet-info {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; flex: 1;
}
.fleet-info h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; letter-spacing: -.02em;
  margin: 0 0 4px; font-weight: 600;
}
.fleet-cat { font-size: 12px; color: var(--slate); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.fleet-specs {
  display: flex; gap: 14px;
  margin-bottom: 18px;
  font-size: 12.5px; color: var(--char);
}
.fleet-specs .spec { display: inline-flex; align-items: center; gap: 5px; }
.fleet-specs svg { width: 14px; height: 14px; color: var(--slate); }
.fleet-bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.fleet-price .from { font-size: 11px; color: var(--slate); text-transform: uppercase; letter-spacing: .12em; }
.fleet-price .val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; font-weight: 600;
  letter-spacing: -.02em;
}
.fleet-price .per { font-size: 12px; color: var(--slate); }
.fleet-book {
  padding: 9px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .2s;
}
.fleet-book:hover { background: var(--red); }

/* ============ FEATURE BANNER ============ */
.feature {
  background: var(--ink);
  color: #fff;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
  max-width: 1280px; margin: 0 auto;
}
.feature-img {
  aspect-ratio: 4/3;
  border-radius: 20px;
  background-size: cover; background-position: center;
  background-image: url('assets/prado-front.jpg');
  position: relative;
}
.feature-img-tag {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(14,15,18,.7); backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff;
}
.feature-img-tag .live { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; }
.feature h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -.03em;
  line-height: .98;
  font-weight: 700;
  margin: 16px 0 24px;
}
.feature h2 .it { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--red); }
.feature p { color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.55; max-width: 480px; }
.feature-points {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}
.feature-points li {
  display: grid; grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  align-items: start;
}
.feature-points li:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.feature-points .check {
  width: 28px; height: 28px;
  background: var(--red);
  border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.feature-points strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600; font-size: 16px;
  margin-bottom: 2px;
}
.feature-points span { color: rgba(255,255,255,.6); font-size: 14px; }

/* ============ TOURS ============ */
.tours { background: var(--paper); }
.tours-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.tour-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition: transform .3s;
}
.tour-card:hover { transform: translateY(-4px); }
.tour-card.tall { aspect-ratio: 4/5; }
.tour-card.wide { grid-row: span 2; aspect-ratio: auto; min-height: 480px; }
.tour-card .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.tour-card:hover .bg { transform: scale(1.05); }
.tour-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.0) 40%, rgba(0,0,0,.75) 100%);
}
.tour-card .content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
}
.tour-card .duration {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  padding: 5px 11px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  margin-bottom: 14px;
  font-weight: 600;
}
.tour-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  letter-spacing: -.02em;
  margin: 0 0 6px;
  font-weight: 600;
  line-height: 1.05;
}
.tour-card .meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
.tour-card .price { font-weight: 600; color: #fff; }
.tour-card .arrow {
  position: absolute; top: 24px; right: 24px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background .2s, transform .2s;
}
.tour-card:hover .arrow { background: var(--red); border-color: var(--red); transform: rotate(-45deg); }

/* ============ HOW IT WORKS ============ */
.how { background: var(--cream); }
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.how-step {
  padding: 28px 28px 28px 0;
  position: relative;
}
.how-step:not(:last-child)::after {
  content: ""; position: absolute; top: 56px; right: 14px; bottom: 28px;
  width: 1px; background: var(--line);
}
.how-step .n {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 64px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 400;
}
.how-step h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; letter-spacing: -.02em;
  margin: 0 0 8px; font-weight: 600;
}
.how-step p { color: var(--slate); font-size: 14.5px; margin: 0; }

/* ============ TESTIMONIAL ============ */
.testimonial {
  background: var(--paper);
  padding: 120px 40px;
}
.test-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
  max-width: 1280px; margin: 0 auto;
}
.test-quote {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -.01em;
  font-weight: 400;
  margin: 24px 0;
}
.test-quote::before { content: "\201C"; color: var(--red); margin-right: 4px; }
.test-quote::after { content: "\201D"; color: var(--red); }
.test-author {
  display: flex; align-items: center; gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.test-author .av {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
}
.test-author strong { display: block; font-size: 14px; }
.test-author span { font-size: 13px; color: var(--slate); }

.test-img {
  aspect-ratio: 4/5;
  border-radius: 24px;
  background-size: cover; background-position: center;
  background-image: url('assets/prado-side.jpg');
}

.dot-row { display: flex; gap: 8px; margin-top: 28px; }
.dot-row .dot { width: 36px; height: 4px; border-radius: 4px; background: var(--line); transition: background .2s; cursor: pointer; }
.dot-row .dot.active { background: var(--red); }

/* ============ CLIENTS ============ */
.clients { background: var(--ink); color: #fff; padding: 80px 40px; }
.clients-head {
  text-align: center; margin-bottom: 50px;
}
.clients-head .eyebrow { color: rgba(255,255,255,.6); }
.clients-head p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px; letter-spacing: -.02em;
  margin: 12px 0 0;
}
.clients-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  align-items: center;
}
.client-logo {
  display: flex; align-items: center; justify-content: center;
  height: 130px;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.client-logo img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  object-position: center;
}
.client-logo span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--slate);
  letter-spacing: -.01em;
  text-align: center;
}
.client-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

/* ============ FAQ ============ */
.faq { background: var(--cream); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
}
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; gap: 24px;
  text-align: left;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px; font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
}
.faq-q .ic {
  width: 32px; height: 32px;
  border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .25s;
}
.faq-item.open .faq-q .ic { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--slate);
  font-size: 15px;
  padding: 0 0;
}
.faq-item.open .faq-a { max-height: 280px; padding: 0 0 22px; }

/* ============ CTA STRIP ============ */
.cta {
  background: var(--red);
  color: #fff;
  padding: 90px 40px;
  text-align: center;
}
.cta h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -.02em;
  font-weight: 400;
  font-style: italic;
  max-width: 900px; margin: 0 auto 24px;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.cta-buttons a {
  padding: 14px 26px;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .15s;
}
.cta-buttons a:hover { transform: translateY(-2px); }
.cta-buttons a.outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: #fff; padding: 80px 40px 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 11px; text-transform: uppercase; letter-spacing: .18em;
  color: rgba(255,255,255,.5);
  margin: 0 0 22px; font-weight: 600;
}
.footer-brand img { height: 44px; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,.7); font-size: 14.5px; line-height: 1.6; max-width: 320px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { font-size: 14.5px; color: rgba(255,255,255,.85); transition: color .2s; }
.footer ul a:hover { color: var(--red); }
.footer-contact p { color: rgba(255,255,255,.85); font-size: 14.5px; margin: 0 0 12px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.footer-social a:hover { background: var(--red); }
.credit-link { color: inherit; text-decoration: none; border-bottom: 1px dotted rgba(255,255,255,.35); transition: color .2s, border-color .2s; }
.credit-link:hover { color: #fff; border-bottom-color: rgba(255,255,255,.7); }

/* ============ BOOKING MODAL ============ */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(14,15,18,.75);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.modal-bg.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--paper);
  border-radius: 24px;
  width: 100%; max-width: 920px;
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  transform: scale(.95) translateY(20px);
  transition: transform .3s ease;
  position: relative;
}
.modal-bg.open .modal { transform: scale(1) translateY(0); }
.modal-side {
  background: var(--ink) url('assets/prado-front.jpg') center / cover;
  position: relative;
  color: #fff;
  padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 540px;
}
.modal-side::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,15,18,.2), rgba(14,15,18,.85));
}
.modal-side > * { position: relative; z-index: 1; }
.modal-side .ms-head h4 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; margin: 0 0 6px; font-size: 22px; letter-spacing: -.02em; }
.modal-side .ms-head p { font-size: 13px; color: rgba(255,255,255,.7); margin: 0; }
.modal-steps {
  display: flex; flex-direction: column; gap: 18px;
}
.modal-step {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.modal-step .ms-n {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  background: rgba(14,15,18,.4);
}
.modal-step.active { color: #fff; }
.modal-step.active .ms-n { background: var(--red); border-color: var(--red); color: #fff; }
.modal-step.done { color: rgba(255,255,255,.85); }
.modal-step.done .ms-n { background: rgba(74,222,128,.2); border-color: #4ade80; color: #4ade80; }
.modal-body {
  padding: 36px;
  overflow-y: auto;
  max-height: 90vh;
  scrollbar-width: none;
}
.modal-body::-webkit-scrollbar { display: none; width: 0; }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(14,15,18,.06);
  display: flex; align-items: center; justify-content: center;
  z-index: 4;
  color: var(--ink);
}
.modal-close:hover { background: rgba(14,15,18,.12); }
.modal-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px; letter-spacing: -.02em;
  margin: 0 0 6px; font-weight: 600;
}
.modal-body .sub { color: var(--slate); font-size: 14px; margin: 0 0 28px; }
.modal-actions { display: flex; gap: 10px; margin-top: 28px; }
.submit-error {
  margin-top: 20px;
  padding: 12px 14px;
  background: rgba(225,29,42,.08);
  border: 1px solid rgba(225,29,42,.35);
  color: #b1131e;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.4;
}
.btn {
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
  transition: all .15s;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--red); }
.btn-primary:disabled { opacity: .4; pointer-events: none; }
.btn-ghost { background: transparent; color: var(--char); border: 1px solid var(--line); }
.btn-ghost:hover { background: rgba(14,15,18,.04); }

.vehicle-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 8px;
}
.vehicle-pick {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 16px; align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: all .2s;
}
.vehicle-pick:hover { border-color: var(--ink); }
.vehicle-pick.selected { border-color: var(--red); background: rgba(225,29,42,.04); }
.vehicle-pick img { width: 80px; height: 60px; border-radius: 8px; object-fit: cover; }
.vehicle-pick h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; margin: 0 0 2px; font-weight: 600; }
.vehicle-pick .meta { font-size: 12px; color: var(--slate); }
.vehicle-pick .price { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 16px; }
.vehicle-pick .price small { display: block; font-weight: 400; font-size: 11px; color: var(--slate); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
  margin-bottom: 12px;
  background: #fff;
}
.form-field:focus-within { border-color: var(--ink); }
.form-field label { display: block; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--slate); font-weight: 600; margin-bottom: 4px; }
.form-field input, .form-field select, .form-field textarea {
  border: none; outline: none; background: transparent;
  width: 100%; font-family: inherit; font-size: 15px;
  font-weight: 500; color: var(--ink); resize: none;
  padding: 0;
}

.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; }
.summary-row.total { border-top: 1px solid var(--line); padding-top: 14px; margin-top: 6px; font-weight: 600; font-size: 18px; font-family: 'Bricolage Grotesque', sans-serif; }
.summary-row .lbl { color: var(--slate); }

.success-box {
  text-align: center;
  padding: 30px 0;
}
.success-box .ic-ok {
  width: 80px; height: 80px;
  background: rgba(34,197,94,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  color: #16a34a;
}
.success-box .ic-ok svg { width: 38px; height: 38px; }
.success-box h3 { margin: 0 0 8px; }
.success-box .ref {
  display: inline-block;
  margin: 18px 0;
  padding: 10px 18px;
  background: var(--cream);
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}

/* ============ INNER PAGE HEADER ============ */
.page-hero {
  position: relative;
  min-height: 460px;
  padding: 160px 40px 80px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.page-hero .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,15,18,.55) 0%, rgba(14,15,18,.5) 50%, rgba(14,15,18,.95) 100%);
}
.page-hero .container { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; }
.page-hero .crumb {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  display: flex; gap: 10px; align-items: center;
}
.page-hero .crumb a:hover { color: #fff; }
.page-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  margin: 28px 0 18px;
  letter-spacing: -.035em;
  line-height: 1;
  font-weight: 700;
  max-width: 900px;
}
.page-hero h1 .it { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--red); }
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  max-width: 640px;
  line-height: 1.55;
  margin: 0;
}

/* Page content sections */
.page-section { padding: 100px 40px; }
.page-section.alt { background: var(--cream); }

/* Vehicle detail / specs */
.vehicle-detail {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px;
  max-width: 1280px; margin: 0 auto;
}
.vehicle-gallery .main {
  aspect-ratio: 4/3;
  border-radius: 18px;
  background-size: cover; background-position: center;
  margin-bottom: 12px;
}
.vehicle-gallery .thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.vehicle-gallery .thumbs .t { aspect-ratio: 4/3; border-radius: 10px; background-size: cover; background-position: center; cursor: pointer; transition: opacity .2s; opacity:.6; }
.vehicle-gallery .thumbs .t.active, .vehicle-gallery .thumbs .t:hover { opacity: 1; }

/* Contact grid */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
  max-width: 1280px; margin: 0 auto;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.contact-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; margin: 0 0 4px; font-weight: 600; letter-spacing: -.02em;
}
.contact-row { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.contact-row:first-of-type { border-top: none; padding-top: 0; }
.contact-row .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row .ic svg { width: 18px; height: 18px; color: var(--red); }
.contact-row strong { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; margin-bottom: 2px; font-weight: 600; }
.contact-row span { font-size: 14px; color: var(--slate); line-height: 1.5; }

.map-wrap {
  border-radius: 18px; overflow: hidden;
  min-height: 460px;
  background: var(--ink);
  position: relative;
}

/* Service tiles */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 1280px; margin: 0 auto;
}
.service-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  display: grid; grid-template-columns: 64px 1fr; gap: 22px;
  align-items: start;
  transition: all .2s;
}
.service-tile:hover { border-color: var(--ink); transform: translateY(-3px); }
.service-tile .ic {
  width: 56px; height: 56px;
  background: var(--ink); color: #fff;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.service-tile .ic svg { width: 26px; height: 26px; }
.service-tile h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; margin: 0 0 8px; font-weight: 600; letter-spacing: -.02em; }
.service-tile p { color: var(--slate); margin: 0 0 12px; font-size: 14.5px; }
.service-tile ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.service-tile li {
  font-size: 12px; padding: 5px 11px;
  background: var(--cream); border-radius: 999px; color: var(--char);
}

/* About story */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  max-width: 1280px; margin: 0 auto;
  align-items: center;
}
.about-grid h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -.03em;
  line-height: 1.02;
  margin: 16px 0 24px;
}
.about-grid h2 .it { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--red); font-weight: 400; }
.about-grid p { font-size: 16px; color: var(--char); line-height: 1.65; margin: 0 0 16px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.about-stat { padding-top: 20px; border-top: 1px solid var(--line); }
.about-stat .n { font-family: 'Bricolage Grotesque', sans-serif; font-size: 36px; font-weight: 600; letter-spacing: -.02em; line-height: 1; }
.about-stat .n sup { font-size: 16px; color: var(--red); }
.about-stat .l { font-size: 12px; text-transform: uppercase; letter-spacing: .15em; color: var(--slate); margin-top: 8px; }
.about-img {
  aspect-ratio: 4/5;
  border-radius: 22px;
  background-size: cover; background-position: center;
}

/* Tour detail card */
.tour-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 1280px; margin: 0 auto;
}
.tour-row {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1.2fr;
  cursor: pointer;
  transition: all .2s;
}
.tour-row:hover { transform: translateY(-3px); border-color: var(--ink); }
.tour-row .img { background-size: cover; background-position: center; min-height: 260px; }
.tour-row .body { padding: 28px; }
.tour-row .duration { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: var(--red); font-weight: 600; }
.tour-row h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; margin: 8px 0 10px; letter-spacing: -.02em; font-weight: 600; }
.tour-row p { font-size: 14px; color: var(--slate); margin: 0 0 16px; line-height: 1.55; }
.tour-row .meta { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--line); }
.tour-row .meta .price { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 18px; }
.tour-row .meta .price small { display: block; font-size: 11px; color: var(--slate); font-weight: 400; }

/* ============ Responsive ============ */
@media (max-width: 1080px) {
  .vehicle-detail, .contact-grid, .about-grid, .services-grid { grid-template-columns: 1fr; gap: 40px; }
  .tour-list { grid-template-columns: 1fr; }
  .tour-row { grid-template-columns: 1fr; }
  .tour-row .img { min-height: 240px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .booking-card { justify-self: stretch; max-width: none; }
  .values-grid { grid-template-columns: 1fr; }
  .value { border-right: none; border-bottom: 1px solid var(--line); }
  .value:last-child { border-bottom: none; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .test-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-step:not(:last-child)::after { display: none; }
  .clients-row { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tours-grid { grid-template-columns: 1fr 1fr; }
  .tour-card.wide { grid-row: span 1; min-height: 0; aspect-ratio: 4/5; }
  .modal { grid-template-columns: 1fr; }
  .modal-side { display: none; }
}
@media (max-width: 720px) {
  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  section { padding: 70px 20px; }
  .hero { padding: 90px 20px 40px; min-height: auto; }
  .hero-content { margin-top: 30px; }
  .hero h1 { font-size: 44px !important; line-height: 1.02; }
  .hero-sub { font-size: 15px; margin-bottom: 24px; }
  .hero-stats { flex-wrap: wrap; gap: 18px; }
  .hero-stat .num { font-size: 28px; }
  .hero-foot { margin-top: 50px; flex-direction: column; gap: 16px; align-items: stretch; text-align: center; padding-top: 18px; }
  .hero-foot .marquee { margin: 0; }
  .booking-card { padding: 20px 18px; }
  .page-hero { padding: 110px 20px 60px; min-height: 360px; }
  .page-hero h1 { font-size: 40px; }
  .page-hero p { font-size: 15px; }
  .page-section { padding: 60px 20px; }
  .values { padding: 60px 20px 40px; }
  .feature, .testimonial, .clients, .cta { padding: 60px 20px; }
  .clients { padding: 50px 20px; }
  .footer { padding: 50px 20px 30px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; gap: 18px; text-align: center; }
  .clients-row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .section-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 36px; }
  .section-head .num { order: -1; }
  .section-head h2 { font-size: 36px !important; }
  .section-head .link { justify-self: start; }
  .modal-bg { padding: 0; align-items: stretch; }
  .modal {
    border-radius: 0;
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    height: 100dvh;
    grid-template-rows: 1fr;
  }
  .modal-body {
    padding: 64px 20px 24px;
    max-height: none;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal-body h3 { font-size: 24px; }
  .modal-body .sub { margin: 0 0 22px; }
  .modal-close {
    top: 14px; right: 14px;
    width: 40px; height: 40px;
    background: rgba(14,15,18,.08);
  }
  .modal-actions {
    position: sticky;
    bottom: 0;
    margin: 28px -20px 0;
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
    background: var(--paper);
    border-top: 1px solid var(--line);
    z-index: 2;
  }
  .modal-actions .btn { min-height: 48px; padding: 12px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .feature-img { aspect-ratio: 16/12; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 18px; }
  .about-stat .n { font-size: 28px; }
  .about-grid h2 { font-size: 32px; }
  .feature h2 { font-size: 36px; }
  .test-quote { font-size: 22px !important; }
  .test-img { aspect-ratio: 4/3; }
  .faq-q { font-size: 16px; padding: 18px 0; gap: 14px; }
  .faq-q .ic { width: 26px; height: 26px; }
  .service-tile { padding: 24px; grid-template-columns: 44px 1fr; gap: 14px; }
  .service-tile .ic { width: 44px; height: 44px; border-radius: 12px; }
  .service-tile .ic svg { width: 20px; height: 20px; }
  .vehicle-pick { grid-template-columns: 60px 1fr; gap: 12px; }
  .vehicle-pick .price { grid-column: 2; text-align: left !important; padding-top: 2px; }
  .vehicle-pick img { width: 60px; height: 48px; }
  .tour-card .content { padding: 20px; }
  .tour-card h3 { font-size: 22px; }
  .three-col-grid { grid-template-columns: 1fr !important; }
  .fleet-filters { gap: 6px; }
  .fleet-filter { padding: 7px 14px; font-size: 12px; }
  .map-wrap iframe { height: 360px !important; }
  .contact-card { padding: 22px; }
  .footer-brand img { height: 36px; }
  .nav-cta { display: none; }
  .hero-eyebrow { font-size: 10px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 38px !important; }
  .page-hero h1 { font-size: 32px; }
  .section-head h2 { font-size: 28px !important; }
  .about-grid h2 { font-size: 26px; }
  .feature h2 { font-size: 28px; }
  .cta h2 { font-size: 36px !important; }
  .hero-stat .num { font-size: 24px; }
  .modal-body { padding: 60px 16px 20px; }
  .modal-body h3 { font-size: 22px; }
  .modal-actions { margin: 24px -16px 0; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); }
  .success-box .ref { word-break: break-all; }
  .vehicle-pick { padding: 12px; }
}
