:root {
  --bg: #0c1220;
  --bg-soft: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #111827;
  --line: #e7edf5;
  --line-dark: rgba(255,255,255,.12);
  --text: #0f172a;
  --muted: #64748b;
  --white: #ffffff;
  --primary: #d8a54d;
  --primary-2: #f2d092;
  --dark: #101726;
  --success: #11b981;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --radius: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-soft);
  color: var(--text);
  line-height: 1.55;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 18, 32, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  color: #1d160b;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  box-shadow: 0 12px 28px rgba(216,165,77,.22);
}
.brand-text strong {
  display: block;
  color: var(--white);
  line-height: 1.1;
  font-size: 18px;
}
.brand-text small {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  margin-top: 2px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  color: rgba(255,255,255,.78);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  transition: .2s ease;
}
.nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mini-contact {
  color: rgba(255,255,255,.76);
  font-size: 14px;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
  border-radius: 999px;
}

.hero {
  background:
    radial-gradient(circle at 10% 10%, rgba(216,165,77,.14), transparent 28%),
    linear-gradient(180deg, #0c1220 0%, #141d31 100%);
  color: #fff;
  padding: 54px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 36px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary-2);
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}
.eyebrow.dark { color: #7c5a1f; }
.hero-copy h1,
.section-head h2,
.booking-head h2,
.process-copy h2,
.contact-info h2,
.modal-card h2,
.corporate-card h2 {
  margin: 16px 0;
  letter-spacing: -0.045em;
  line-height: 1.02;
}
.hero-copy h1 { font-size: clamp(36px, 5vw, 64px); max-width: 720px; }
.hero-copy p { color: rgba(255,255,255,.78); font-size: 18px; max-width: 620px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 34px;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 640px;
}
.hero-metrics div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
}
.hero-metrics strong {
  display: block;
  font-size: 28px;
  color: #fff;
}
.hero-metrics span { color: rgba(255,255,255,.72); font-size: 13px; }
.hero-panel { position: relative; }
.hero-visual {
  position: relative;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}
.hero-visual img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.floating-card {
  position: absolute;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(10, 16, 28, .86);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.2);
}
.floating-card strong { display: block; color: #fff; font-size: 14px; }
.floating-card span { display: block; color: rgba(255,255,255,.65); font-size: 12px; margin-top: 4px; }
.card-one { left: -10px; bottom: 28px; }
.card-two { right: -10px; top: 28px; }

.booking-shell { margin-top: -38px; position: relative; z-index: 2; }
.booking-card {
  background: var(--surface);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid #eef2f7;
}
.booking-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.booking-head h2 { font-size: clamp(28px, 3vw, 40px); color: var(--text); }
.booking-head p { margin: 0; max-width: 420px; color: var(--muted); }
.booking-form {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr) 0.9fr;
  gap: 12px;
}
.booking-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.booking-form input,
.booking-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 16px;
  color: var(--text);
  outline: none;
}
.contact-form textarea { min-height: 132px; padding: 15px 16px; resize: vertical; }
.booking-form button { align-self: end; }

.section { padding: 84px 0; }
.section-soft { background: #eef3f9; }
.section-head { max-width: 780px; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(30px, 4vw, 48px); color: var(--text); }
.section-head p { color: var(--muted); font-size: 17px; }
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
}
.filter.active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.car-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(15,23,42,.06);
}
.car-card.hidden { display: none; }
.car-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
}
.car-body { min-width: 0; }
.car-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.badge,
.rating {
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.badge { background: rgba(216,165,77,.12); color: #7b571a; }
.rating { background: #f8fafc; color: #334155; }
.car-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}
.car-title-row h3 { margin: 0; font-size: 28px; letter-spacing: -.03em; }
.car-title-row p { margin: 8px 0 0; color: var(--muted); max-width: 540px; }
.price-box {
  text-align: right;
  min-width: 130px;
}
.price-box small { display: block; color: var(--muted); margin-bottom: 6px; }
.price-box strong { font-size: 30px; letter-spacing: -.04em; }
.car-specs {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.car-specs li {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  display: inline-flex;
  align-items: center;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
}
.car-actions { margin-top: 18px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card,
.corporate-card,
.contact-form,
.contact-info,
.timeline,
.process-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
}
.service-card {
  padding: 24px;
  box-shadow: 0 10px 28px rgba(15,23,42,.04);
}
.service-card h3 { margin: 0 0 10px; font-size: 20px; }
.service-card p { margin: 0; color: var(--muted); }
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 22px;
}
.process-copy { padding: 28px; }
.process-copy p { color: var(--muted); }
.timeline { padding: 14px; }
.step {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
}
.step + .step { margin-top: 10px; }
.step span {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #111827;
  color: #fff;
  font-weight: 800;
}
.step h3 { margin: 0 0 6px; font-size: 18px; }
.step p { margin: 0; color: var(--muted); }
.corporate-card {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow);
}
.corporate-card p { color: var(--muted); max-width: 720px; }
.contact-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
}
.contact-info,
.contact-form { padding: 28px; }
.contact-info p { color: var(--muted); }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.contact-list li {
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  padding: 14px 16px;
}
.footer {
  background: #0c1220;
  color: rgba(255,255,255,.78);
  padding: 28px 0 44px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer p { max-width: 540px; color: rgba(255,255,255,.6); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 16px 38px rgba(37,211,102,.28);
}
.btn {
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  color: #1c160b;
  box-shadow: 0 16px 32px rgba(216,165,77,.22);
}
.btn-light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
}
.btn-dark { background: #fff; color: #111827; }
.btn-line {
  background: #111827;
  color: #fff;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}
.modal.open { display: block; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.58);
}
.modal-card {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 24px), 520px);
  margin: 8vh auto 0;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 32px 80px rgba(15,23,42,.24);
}
.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #eff3f8;
  font-size: 22px;
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-form { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .booking-form button { grid-column: span 3; }
  .hero-grid,
  .process-grid,
  .contact-wrap { grid-template-columns: 1fr; }
  .hero-panel { order: -1; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(12,18,32,.98);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0,0,0,.24);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 16px; }
  .mini-contact,
  .top-actions .btn-dark { display: none; }
  .menu-toggle { display: inline-block; }
  .hero { padding: 28px 0 60px; }
  .hero-metrics { grid-template-columns: 1fr; max-width: none; }
  .booking-shell { margin-top: -22px; }
  .booking-card,
  .contact-form,
  .contact-info,
  .process-copy,
  .corporate-card,
  .service-card,
  .timeline { border-radius: 22px; }
  .corporate-card,
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .topbar-inner { min-height: 72px; }
  .brand-mark { width: 40px; height: 40px; border-radius: 12px; font-size: 20px; }
  .brand-text strong { font-size: 16px; }
  .hero-copy h1 { font-size: 34px; }
  .hero-copy p,
  .section-head p,
  .booking-head p { font-size: 15px; }
  .hero-visual { padding: 12px; border-radius: 22px; }
  .hero-visual img { border-radius: 16px; aspect-ratio: 4 / 3; }
  .floating-card {
    position: static;
    margin-top: 10px;
  }
  .booking-card { padding: 18px; }
  .booking-head { display: block; margin-bottom: 18px; }
  .booking-head h2 { font-size: 28px; }
  .booking-form { grid-template-columns: 1fr; }
  .booking-form button { grid-column: auto; }
  .section { padding: 58px 0; }
  .section-head { margin-bottom: 20px; }
  .section-head h2,
  .contact-info h2,
  .process-copy h2,
  .corporate-card h2 { font-size: 28px; }
  .filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }
  .filters::-webkit-scrollbar { display: none; }
  .car-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
    align-items: start;
  }
  .car-media img {
    aspect-ratio: 1 / 1;
    height: 112px;
    border-radius: 14px;
  }
  .car-topline { margin-bottom: 8px; }
  .badge,
  .rating { min-height: 28px; padding: 0 10px; font-size: 11px; }
  .car-title-row {
    display: block;
  }
  .car-title-row h3 { font-size: 19px; }
  .car-title-row p {
    margin-top: 5px;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .price-box {
    text-align: left;
    margin-top: 10px;
  }
  .price-box small { font-size: 12px; margin-bottom: 2px; }
  .price-box strong { font-size: 24px; }
  .car-specs {
    margin-top: 12px;
    gap: 6px;
  }
  .car-specs li {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }
  .car-actions { margin-top: 12px; }
  .car-actions .btn { width: 100%; min-height: 42px; font-size: 13px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { padding: 18px; }
  .process-copy,
  .timeline,
  .contact-info,
  .contact-form,
  .corporate-card { padding: 18px; }
  .step { padding: 12px; gap: 12px; }
  .step span {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .step h3 { font-size: 16px; }
  .footer { padding-bottom: 92px; }
  .whatsapp { right: 12px; bottom: 12px; min-height: 46px; padding: 0 14px; font-size: 14px; }
}
