/* ---------- Tokens ---------- */
:root {
  --bg: #0b1020;
  --bg-2: #111733;
  --surface: #ffffff;
  --surface-2: #f6f7fb;
  --text: #0e1330;
  --muted: #5b6388;
  --line: #e6e8f1;
  --primary: #ff5a1f;
  --primary-700: #e24a10;
  --accent: #1d4ed8;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(14,19,48,.06), 0 4px 14px rgba(14,19,48,.06);
  --shadow-md: 0 10px 30px rgba(14,19,48,.10);
  --container: 1180px;
  --space: clamp(1rem, 2vw, 2rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-family: 'Poppins', 'Inter', sans-serif; line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -.01em; }
h3 { font-size: 1.15rem; }
p  { margin: 0 0 1em; color: var(--muted); }
.muted { color: var(--muted); }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .75rem 1.15rem;
  border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn-lg { padding: .95rem 1.5rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 0; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #ff8a3d);
  color: #fff; font-family: 'Poppins'; font-weight: 800; font-size: .95rem;
  box-shadow: var(--shadow-sm);
}
.brand-name { font-family: 'Poppins'; font-weight: 700; font-size: 1.05rem; line-height: 1; }
.brand-name small { display: block; font-size: .68rem; color: var(--muted); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }

.primary-nav ul { display: flex; gap: 1.5rem; }
.primary-nav a { font-weight: 500; color: var(--text); padding: .25rem 0; position: relative; }
.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
  background: var(--primary); transition: width .2s;
}
.primary-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none; background: none; border: 0; padding: .5rem;
  flex-direction: column; gap: 4px; cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 600px at 80% -20%, rgba(255,90,31,.25), transparent 60%),
    radial-gradient(800px 400px at -10% 110%, rgba(29,78,216,.30), transparent 60%),
    linear-gradient(180deg, #0b1020 0%, #111733 100%);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.hero-copy .eyebrow { color: #ffd0b9; }
.hero p.lead { color: rgba(255,255,255,.78); font-size: 1.1rem; max-width: 52ch; }
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; margin: 1.25rem 0 1.75rem; }

.eyebrow {
  display: inline-block; font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--primary);
  margin-bottom: .75rem;
}

.hero-stats {
  display: flex; gap: clamp(1rem, 3vw, 2.5rem); padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stats li { display: grid; }
.hero-stats strong { font-family: 'Poppins'; font-size: 1.5rem; }
.hero-stats span { color: rgba(255,255,255,.65); font-size: .85rem; }

/* Booking card */
.booking-card {
  background: #fff; color: var(--text);
  padding: 1.6rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid; gap: .9rem;
}
.booking-card h2 { font-size: 1.2rem; margin-bottom: .25rem; }
.field { display: grid; gap: .35rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; padding: .7rem .85rem; border-radius: 10px;
  border: 1px solid var(--line); background: #fff; color: var(--text);
  font: inherit; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,90,31,.15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.field.check label { display: flex; gap: .5rem; align-items: center; font-weight: 500; color: var(--muted); }
.form-status { font-size: .9rem; margin: 0; min-height: 1.2em; color: var(--accent); }

/* ---------- Trust strip ---------- */
.trust-strip { padding: 1.5rem 0; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.trust-strip .container {
  display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; justify-content: center;
  color: var(--muted);
}
.trust-strip ul { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; font-weight: 600; color: #2b3160; opacity: .8; }

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: var(--surface-2); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.25rem; }
.section-head p { font-size: 1.05rem; }

/* ---------- Filter chips ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 1.75rem; }
.chip {
  border: 1px solid var(--line); background: #fff; color: var(--text);
  padding: .5rem 1rem; border-radius: 999px; font-weight: 600; cursor: pointer;
  transition: all .15s;
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.is-active { background: var(--text); color: #fff; border-color: var(--text); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cars { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }

/* Car card */
.car-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.car-media {
  aspect-ratio: 16 / 10; background: linear-gradient(135deg, #eef1ff, #f9eee8);
  display: grid; place-items: center; overflow: hidden; position: relative;
}
.car-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.car-card:hover .car-media img { transform: scale(1.04); }
.car-media .car-emoji { font-size: 4rem; }
.car-media.is-fallback { background: linear-gradient(135deg, #eef1ff, #f9eee8); }
.car-body { padding: 1.1rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.car-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.car-name { font-family: 'Poppins'; font-weight: 700; font-size: 1.05rem; }
.car-cat { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.car-specs { display: flex; flex-wrap: wrap; gap: .75rem; color: var(--muted); font-size: .88rem; }
.car-specs span { display: inline-flex; gap: .3rem; align-items: center; }
.car-foot { display: flex; justify-content: space-between; align-items: center; margin-top: .5rem; padding-top: .9rem; border-top: 1px solid var(--line); }
.car-price { font-family: 'Poppins'; font-weight: 700; font-size: 1.1rem; }
.car-price small { font-weight: 500; color: var(--muted); font-size: .8rem; }

/* Service card */
.service .icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.4rem;
  background: rgba(255,90,31,.1); margin-bottom: .9rem;
}
.service h3 { margin-bottom: .25rem; }

/* Steps */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  counter-reset: step;
}
.steps li { background: #fff; padding: 1.5rem; border-radius: var(--radius); border: 1px solid var(--line); position: relative; }
.step-no { font-family: 'Poppins'; font-weight: 800; font-size: 2rem; color: var(--primary); display: block; margin-bottom: .5rem; }

/* Quotes */
.quote { display: flex; flex-direction: column; gap: 1rem; }
.quote blockquote { margin: 0; font-size: 1rem; color: var(--text); }
.quote figcaption { display: grid; gap: 2px; }
.quote figcaption strong { font-family: 'Poppins'; }
.quote figcaption span { color: var(--muted); font-size: .85rem; }
.quote .stars { color: #f5b400; letter-spacing: 2px; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, #0b1020, #111733);
  color: #fff;
}
.cta-band h2 { color: #fff; }
.cta-band p, .cta-band .contact-list a { color: rgba(255,255,255,.78); }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.contact-list { display: grid; gap: .5rem; margin-top: 1rem; }
.contact-list a:hover { color: #fff; }
.contact-form {
  background: #fff; color: var(--text);
  padding: 1.5rem; border-radius: var(--radius-lg);
  display: grid; gap: .9rem;
  box-shadow: var(--shadow-md);
}

/* ---------- Footer ---------- */
.site-footer { background: #0b1020; color: rgba(255,255,255,.75); padding: 3rem 0 1.25rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: .75rem; }
.site-footer ul { display: grid; gap: .4rem; }
.site-footer a:hover { color: #fff; }
.site-footer .brand-name, .site-footer .brand-name small { color: #fff; }
.newsletter { display: flex; gap: .5rem; }
.newsletter input {
  flex: 1; padding: .6rem .75rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08);
  color: #fff;
}
.newsletter input::placeholder { color: rgba(255,255,255,.5); }
.foot-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner, .cta-inner { grid-template-columns: 1fr; }
  .grid-3, .grid-cars, .steps, .footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .primary-nav, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .primary-nav.is-open {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 1rem; border-bottom: 1px solid var(--line);
  }
  .primary-nav.is-open ul { flex-direction: column; gap: .75rem; }
  .grid-3, .grid-cars, .steps, .footer-inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
}
