/* Fallback colors (from original screenshot design) */
:root {
  --primary: #6b3df4;
  /* main brand */
  --secondary: #ffb545;
  --button-text-color: #201f1d;
  --button-background-color: #ffb545;
  /* accent */
  --background: #f9f9fb;
  --navbar-links: #1f2937;
  --navbar-links-hover: #ffb545;
  --price_badge_bg_color: #ffb545;
  --title_prefix: #ffb545;
  --title_suffix: #ffffff;
  --light: #f5f6f8;

  --text: #0f0f14;
  --muted: #c9cdd2;
  --ring: color-mix(in oklab, var(--primary, #6b3df4) 45%, transparent);
  --shadow-1: 0 10px 30px rgba(16, 24, 40, .08);
  --shadow-2: 0 20px 50px rgba(16, 24, 40, .14);
  --radius-2xl: 28px;
  --maxw: 1120px;
}


/* Base */
* {
  box-sizing: border-box;
  transition: 0.3s !important;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--background, #ffffff);
  line-height: 1.6
}

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

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

button,
select,
input {
  font: inherit
}

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px
}

.grid {
  display: grid;
  gap: 10px
}

.section {
  padding: 56px 0
}

.center {
  text-align: center
}

.light-invert {
  color: #e7e7ff
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--button-background-color, #ffb545);
  color: var(--button-text-color, #201f1d);
  border: 0;
  padding: .9rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-1)
}

.btn:hover {
  filter: brightness(.95)
}

.btn.ghost {
  background: #fff;
  color: var(--primary, #6b3df4);
  border: 1px solid color-mix(in oklab, var(--primary, #6b3df4) 18%, #ffffff)
}

.btn.pill {
  border-radius: 999px;
  padding: .7rem 1rem;
  color: var(--dark, #6b3df4);
  background: var(--secondary, #ffb545);
}

.ring:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px
}

.center-text {
  justify-content: center
}

.muted {
  color: var(--muted)
}

.title-xl {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -.02em
}

.title-lg {
  font-weight: 800;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2
}

.small-title {
  font-size: 18px
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

.shadow-1 {
  box-shadow: var(--shadow-1)
}

.shadow-2 {
  box-shadow: var(--shadow-2)
}

/* Sticky header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: color-mix(in oklab, #ffffff 85%, transparent);
  border-bottom: 1px solid #eef0f4;
  transition: box-shadow .2s ease
}

.site-header.is-scrolled {
  box-shadow: 0 6px 18px rgba(16, 24, 40, .08)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800
}

nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center
}

nav a {
  color: var(--navbar-links, #1f2937);
  font-weight: 600;
}

nav a:hover {
  color: var(--navbar-links-hover, var(--secondary, #ffb545))
}

.help {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary, #ffb545);
  font-weight: 600;
  white-space: nowrap;
}

.help-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 600;
}

.help-block .top {
  color: #4b5563;
}

.help-block .bottom {
  color: var(--primary);
  font-size: 1.1rem;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  border-radius: 10px
}

.menu-btn:hover {
  background: #f3f4f6
}

.lang-links {
  display: flex;
  align-items: center;
  gap: 6px
}

.lang-links a {
  padding: .25rem .4rem;
  border-radius: 6px
}

.lang-links a.active {
  color: var(--secondary, #ffb545);
  font-weight: 800
}

/* Lang dropdown */
.lang-dropdown {
  position: relative
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer
}

.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 110%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  list-style: none;
  padding: 6px 0;
}

.lang-menu li a {
  display: block;
  padding: 6px 12px;
  color: #111;
}

.lang-dropdown.open .lang-menu {
  display: block
}

@media (max-width:900px) {
  .menu-btn {
    display: inline-flex
  }

  nav ul {
    position: fixed;
    inset-inline: 16px;
    top: 72px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    flex-direction: column;
    gap: 12px;
    display: none;
    box-shadow: var(--shadow-2);
  }

  nav ul.open {
    display: flex
  }
}

/* Hero */
.hero {
  margin-top: 16px;
  background:
    radial-gradient(1200px 350px at -20% -30%, rgba(255, 255, 255, .5) 0 40%, transparent 60%),
    radial-gradient(800px 400px at 120% 80%, rgba(255, 255, 255, .1), transparent 60%),
    linear-gradient(135deg, var(--primary, #6b3df4) 0%, color-mix(in oklab, var(--primary, #6b3df4) 70%, #7a5cff) 100%);
  color: #fff;
  border-radius: var(--radius-2xl);
  position: relative;
  overflow: hidden;
}

.center-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;

  /* background-position: top;
    background-size: contain;
    background-repeat: no-repeat; */
}

.hero-image {
  width: 60%;
  height: auto;
  border-radius: var(--radius-2xl);
  object-fit: cover;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.tread {
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 260px;
  background: repeating-linear-gradient(75deg, rgba(255, 255, 255, .12) 0 18px, transparent 18px 36px);
  filter: blur(2px);
  opacity: .5;
  transform: rotate(-6deg)
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .75fr;
  gap: 24px;
  padding: 28px
}

.hero-copy {
  padding: 24px 10px 28px 10px
}

.hero .lead {
  max-width: 50ch;
  color: #f3f4f6
}

.hero .cta {
  margin-top: 18px
}

.blur-car {
  position: absolute;
  right: 50%;
  top: 42%;
  translate: 50% -42%;
  width: min(560px, 70%);
  height: 220px;
  filter: blur(14px) saturate(120%);
  opacity: .8;
  border-radius: 40px;
  overflow: hidden
}

.blur-car img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.booking {
  background: #fff;
  color: #111827;
  border-radius: 16px;
  padding: 18px;
  align-self: center;
  box-shadow: var(--shadow-2);
  width: 100%;
  max-width: 380px;
  justify-self: end
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.field+.field {
  margin-top: 12px
}

.control {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px
}

.control:focus-within {
  border-color: color-mix(in oklab, var(--primary, #6b3df4) 40%, #fff);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--primary, #6b3df4) 20%, transparent)
}

.control select,
.control input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: 0
}

.booking .btn {
  width: 100%;
  margin-top: 10px
}

.error-zone {
  color: #b91c1c;
  margin: .5rem 0 0;
  min-height: 1.4rem
}

@media (max-width:900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 22px
  }

  .booking {
    justify-self: stretch;
    max-width: none
  }

  .blur-car {
    top: 22%;
    right: 50%;
    translate: 50% -22%;
    height: 160px
  }

  .hero-image {
    width: 95%;
    /* height: auto;
    border-radius: var(--radius-2xl);
    object-fit: cover;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; */
  }
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center
}

.feature {
  padding: 18px
}

.feature .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px auto;
  background: #fff;
  border-radius: 12px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
  color: var(--primary, #6b3df4)
}

.feature .icon i {
  font-size: 30px;
}

@media (max-width:800px) {
  .features {
    grid-template-columns: 1fr
  }
}

/* Cars */
.cars-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f6f8;
  padding: .25rem .6rem;
  border-radius: 999px;
  font-size: .8rem;
  color: #111827
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

@media (max-width:1000px) {
  .cars-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:680px) {
  .cars-grid {
    grid-template-columns: 1fr
  }
  .hero-title{
        margin-top: 12vh !important;
  }
  .hero-image{
      top:20px !important;
  }
}

.car {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eef0f4;
  position: relative;
  padding-bottom: 60px;
}

.car .media {
  height: 200px;
  background: #f3f4f6;
  display: grid;
  place-items: center
}

/* .car .media img {
  height: 100%;
  width: 100%;
  object-fit: cover
} */

.car .body {
  padding: 14px
}

.car .row {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.car .price {
  color: var(--primary, #6b3df4);
  font-weight: 800
}

.specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0
}

.spec {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4b5563;
  font-size: .9rem
}

.car .footer {
  padding: 12px 14px 16px;
  background: #fafafa;
  border-top: 1px solid #eef0f4
}

/* Vehicle card fixes */
.car .media img {
  object-fit: cover;
  height: 200px;
  width: 100%
}

.car .body.padded {
  padding: 16px
}

.car .footer {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  padding: .6rem 1rem;
  border: 0;
  cursor: pointer;
}

.whatsapp-btn:hover {
  filter: brightness(0.95)
}

/* Band (stats) */
.band {
  color: #fff;
  background: linear-gradient(135deg, var(--primary, #6b3df4) 0%, color-mix(in oklab, var(--primary, #6b3df4) 70%, #7a5cff) 100%);
  border-radius: 22px;
  position: relative;
  overflow: hidden
}

.band .tread {
  inset: auto -30% -45% -30%;
  height: 240px;
  opacity: .35
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 16px
}

.stat {
  background: #fff;
  color: #111827;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px
}

.stat .k {
  font-size: 1.35rem;
  font-weight: 800
}

.stat .dot {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f3f4f6;
  display: grid;
  place-items: center
}

@media (max-width:900px) {
  .stats {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

@media (max-width:1000px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:650px) {
  .testi-grid {
    grid-template-columns: 1fr
  }
}

.testi {
  border: 1px solid #eef0f4;
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  position: relative
}

.testi .quote {
  color: var(--primary, #6b3df4)
}

.t-meta {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  align-items: center
}

.avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover
}

.avatar span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3f4f6
}

/* CTA + Footer */
.cta-band {
  color: #fff;
  background: linear-gradient(135deg, var(--primary, #6b3df4) 0%, color-mix(in oklab, var(--primary, #6b3df4) 70%, #7a5cff) 100%);
  border-radius: 22px;
  position: relative;
  overflow: hidden
}

.cta-form {
  display: flex;
  gap: 10px;
  margin-top: 10px
}

.cta-form input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 12px;
  border: 0;
  outline: 0
}

@media (max-width:600px) {
  .cta-form {
    flex-direction: column
  }
}

footer {
  border-top: 1px solid #eef0f4;
  padding: 24px 0 56px
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 22px
}

.foot-col h4 {
  margin: .2rem 0 .6rem
}

.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 10px
}

.socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f3f4f6;
  color: #111827
}

.copyright {
  margin-top: 22px;
  color: #6b7280;
  text-align: center
}

/* Toast + Modal */
.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  translate: -50% 20px;
  opacity: 0;
  background: #111827;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-2);
  z-index: 70;
  transition: opacity .35s ease, translate .35s ease
}

.toast.show {
  opacity: 1;
  translate: -50% 0
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, .4);
  padding: 18px;
  z-index: 80
}

.modal.open {
  display: grid
}

.panel {
  background: #fff;
  border-radius: 16px;
  width: min(680px, 100%);
  box-shadow: var(--shadow-2);
  overflow-y: scroll;
  height:auto;
  max-height: 100%;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px
}

.close-x {
  border: 0;
  background: #f3f4f6;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center
}

/* Appear on scroll */
@media (prefers-reduced-motion:no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .5s ease, transform .6s ease
  }

  .fade-up.aos-in {
    opacity: 1;
    transform: none
  }
}

.wa-preview {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

.wa-img-wrap {
  width: 160px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid #eef0f4;
}

.wa-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wa-meta h4 {
  margin: 0 0 6px 0;
  font-weight: 800;
}

.wa-price {
  font-weight: 800;
  color: var(--primary, #6b3df4);
  font-size: 1.05rem;
}

@media (max-width:520px) {
  .wa-preview {
    grid-template-columns: 1fr;
  }

  .wa-img-wrap {
    width: 100%;
    height: 160px;
  }
}




/* Mini hero + inline booking */
.mini-hero{ border-radius:16px; background:linear-gradient(135deg,var(--primary,#6b3df4), color-mix(in oklab,var(--primary,#6b3df4) 70%, #7a5cff)); color:#fff; position:relative; overflow:hidden; }
.mini-hero .tread{ display:none }
.mini-hero-inner{ display:grid; grid-template-columns: .8fr 1.2fr; gap:18px; align-items:center; padding:18px; }
.mini-hero-copy .muted{ color:#e9e9ff }
.inline-booking{ display:grid; grid-template-columns: repeat(5,1fr); gap:10px; align-items:center; }
.ib-field{ display:flex; align-items:center; gap:8px; background:#fff; border:1px solid #e5e7eb; border-radius:10px; padding:8px 10px; color:#111; }
.ib-field input,.ib-field select{ border:0; outline:0; background:transparent; flex:1; min-width:0 }
@media (max-width:900px){ .mini-hero-inner{ grid-template-columns:1fr } .inline-booking{ grid-template-columns:1fr 1fr; } }

/* Filters */
.filters .filter-block{ margin-bottom:14px }
.filter-list{ display:grid; gap:6px; margin-top:6px }
.f-check{ display:flex; gap:8px; align-items:center }
.price-range{ display:flex; align-items:center; gap:8px }
.price-range input{ max-width:120px }

/* Reservation summary */
.res-summary{ display:grid; grid-template-columns: 160px 1fr; gap:14px; align-items:center; margin-bottom:10px }
.res-summary .img-wrap{ width:160px; height:110px; border-radius:12px; overflow:hidden; background:#f3f4f6; border:1px solid #eef0f4 }
.res-summary img{ width:100%; height:100%; object-fit:cover }
.sum-dates{ display:flex; gap:8px; align-items:center; flex-wrap:wrap; margin-top:6px }
.sum-total{ margin-top:6px; font-weight:800; color:var(--primary,#6b3df4) }

/* Extras */
.extra{ display:flex; gap:10px; border:1px solid #eef0f4; border-radius:10px; padding:10px; align-items:flex-start; background:#fff }
.extra input{ margin-top:4px }
.extra-body small{ font-size:.85rem }

/* Car cards tweaks already present */
/* .car .media img{ object-fit:cover; height:160px; width:100% } */
.car .body.padded{ padding:16px }
.car .footer{ display:flex; justify-content:space-between; gap:8px;
position: absolute;
    bottom: 0;
    width: 100%;
  }

/* Small helpers */
.p-3{ padding:1rem }
.mt-3{ margin-top:1rem }
