/* =========================================
   NEXTCAR — Design System
   Palette: Dark Premium + Orange #E8641A
   Type: Syne (headings) + Inter (body)
   Grid: 8dp rhythm
   ========================================= */

:root {
  /* Brand */
  --orange:        #E8641A;
  --orange-dark:   #C9530F;
  --orange-light:  #F2854A;
  --orange-glow:   rgba(232, 100, 26, 0.10);
  --orange-border: rgba(232, 100, 26, 0.28);

  /* Dark surfaces */
  --bg:         #0A0A0A;
  --surface-1:  #111111;
  --surface-2:  #191919;
  --surface-3:  #232323;

  /* Light surfaces */
  --light-bg:      #F6F6F6;
  --light-surface: #FFFFFF;
  --light-border:  #E8E8E8;

  /* Text on dark */
  --text-100: #FFFFFF;
  --text-70:  rgba(255, 255, 255, 0.70);
  --text-45:  rgba(255, 255, 255, 0.45);
  --text-20:  rgba(255, 255, 255, 0.20);

  /* Text on light */
  --ink-100: #111111;
  --ink-60:  #5A5A5A;
  --ink-40:  #8A8A8A;

  /* Spacing (8dp) */
  --sp-1: 8px;   --sp-2: 16px;  --sp-3: 24px;
  --sp-4: 32px;  --sp-5: 40px;  --sp-6: 48px;
  --sp-8: 64px;  --sp-12: 96px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.10);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.14);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.20);
  --shadow-orange: 0 8px 32px rgba(232,100,26,0.30);

  /* Motion */
  --ease: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --header-h: 72px;
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-100);
  background: var(--light-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3 {
  font-family: 'Syne', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  padding: 14px var(--sp-3);
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--ease), border-color var(--ease),
              color var(--ease), transform var(--ease), box-shadow var(--ease);
  min-height: 48px; /* touch target */
  white-space: nowrap;
}

.btn--lg { padding: 16px 32px; font-size: 16px; min-height: 56px; }

/* Primary — orange fill */
.btn--primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

/* Ghost — transparent + white border */
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.40);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.70);
}

/* Outline dark — orange border */
.btn--outline-dark {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange-border);
}
.btn--outline-dark:hover, .btn--outline-dark:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

/* White — white fill, orange text */
.btn--white {
  background: #fff;
  color: var(--orange);
  border-color: #fff;
  font-weight: 700;
}
.btn--white:hover, .btn--white:focus-visible {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

/* Focus ring for keyboard users */
.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 18px 0;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}

.header.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 44px;
}
.header__logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.15) drop-shadow(0 0 10px rgba(255,255,255,0.18));
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  letter-spacing: 1px;
}
.logo-text em { font-style: normal; color: var(--orange); }

/* Nav */
.header__nav { margin-left: auto; }
.header__nav ul { display: flex; gap: var(--sp-4); }
.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-70);
  transition: color var(--ease);
  padding: var(--sp-1) 0;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--ease);
}
.header__nav a:hover { color: #fff; }
.header__nav a:hover::after,
.header__nav a[aria-current="page"]::after { width: 100%; }
.header__nav a[aria-current="page"] { color: #fff; }

.header__cta { flex-shrink: 0; }

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-1);
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
}
.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all var(--ease);
  border-radius: 2px;
}
.header__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero__bg img { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 90%, rgba(232,100,26,0.12) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.75) 60%, rgba(0,0,0,0.92) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: var(--sp-6);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.30);
  color: #FCD34D;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: var(--sp-3);
  width: fit-content;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  margin-bottom: var(--sp-3);
  max-width: 700px;
}
.hero__title span { color: var(--orange); }

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-70);
  max-width: 500px;
  margin-bottom: var(--sp-4);
  line-height: 1.65;
}

/* Service tags */
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  margin-bottom: var(--sp-5);
}
.hero__tags span {
  padding: 6px 14px;
  border: 1px solid var(--orange-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--orange-light);
  background: var(--orange-glow);
}

.hero__actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

/* Stats strip */
.hero__stats {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--text-20);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: var(--sp-4) 0;
}

.hero__stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  text-align: center;
}

.hero__stat-value {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero__stat-label {
  font-size: 12px;
  color: var(--text-45);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--text-20);
  flex-shrink: 0;
}

/* ==========================================
   SECTIONS — Common
   ========================================== */
.section { padding: var(--sp-12) 0; }
.section.services { background: var(--light-bg); }
.section.vehicles { background: #fff; }
.section.reviews  { background: var(--bg); }
.section.contact  { background: var(--surface-1); padding: 0; overflow: hidden; }

.section__header { margin-bottom: var(--sp-8); }
.section__header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-4);
}

.section__tag {
  display: inline-block;
  background: var(--orange-glow);
  color: var(--orange);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
  border: 1px solid var(--orange-border);
}

.section__tag--light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.80);
  border-color: rgba(255,255,255,0.25);
}

.section__title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--ink-100);
  margin-bottom: var(--sp-1);
}

.section__subtitle {
  font-size: 16px;
  color: var(--ink-60);
  max-width: 480px;
  margin-top: var(--sp-1);
}

/* Dark section overrides */
.reviews .section__title,
.contact .contact__title { color: #fff; }
.reviews .section__subtitle { color: var(--text-70); }

/* ==========================================
   SERVICES
   ========================================== */
.services__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--light-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr 64px;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-5);
  border-bottom: 1px solid var(--light-border);
  transition: background var(--ease);
  cursor: default;
  outline-offset: -3px;
}
.service-item:last-child { border-bottom: none; }

.service-item:hover,
.service-item:focus-visible {
  background: #FAFAFA;
}
.service-item:focus-visible { outline: 3px solid var(--orange); }

.service-item__num {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange-border);
  line-height: 1;
  transition: color var(--ease), -webkit-text-stroke var(--ease);
}
.service-item:hover .service-item__num,
.service-item:focus-visible .service-item__num {
  color: var(--orange);
  -webkit-text-stroke: 2px var(--orange);
}

.service-item__body h3 {
  font-size: 1.3rem;
  color: var(--ink-100);
  margin-bottom: 6px;
}
.service-item__body p {
  font-size: 14px;
  color: var(--ink-60);
  line-height: 1.6;
  max-width: 560px;
}

.service-item__icon {
  width: 48px;
  height: 48px;
  background: var(--orange-glow);
  border: 1px solid var(--orange-border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: background var(--ease), transform var(--ease-spring);
  justify-self: end;
}
.service-item__icon svg { width: 22px; height: 22px; }
.service-item:hover .service-item__icon {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: rotate(-6deg) scale(1.1);
}

/* ==========================================
   VEHICLES
   ========================================== */
.vehicles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.vehicle-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-border);
}

/* Image area */
.vehicle-card__media {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #f0f0f0;
}
.vehicle-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vehicle-card:hover .vehicle-card__media img { transform: scale(1.04); }

.vehicle-card__media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F0F0F0, #E0E0E0);
  color: #BDBDBD;
}
.vehicle-card__media-placeholder svg { width: 48px; height: 48px; }

/* Price badge on image */
.vehicle-card__price-badge {
  position: absolute;
  bottom: var(--sp-2);
  right: var(--sp-2);
  background: var(--orange);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  line-height: 1;
  box-shadow: 0 4px 12px rgba(232,100,26,0.40);
}

/* Tag badge on image */
.vehicle-card__badge {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
  background: rgba(10,10,10,0.75);
  color: rgba(255,255,255,0.90);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  letter-spacing: 0.3px;
}

/* Card body */
.vehicle-card__body {
  padding: var(--sp-3);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vehicle-card__name {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink-100);
  margin-bottom: var(--sp-1);
}

.vehicle-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--sp-3);
}
.vehicle-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--light-bg);
  border: 1px solid var(--light-border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-60);
}
.vehicle-card__chip svg { width: 12px; height: 12px; flex-shrink: 0; }

.vehicle-card__price-inline {
  display: none; /* shown only on mobile */
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--orange);
  margin-top: auto;
  padding-top: var(--sp-1);
}

.vehicle-card__cta {
  display: flex;
  margin: 0 var(--sp-3) var(--sp-3);
}

/* ---- Mobile list-style cards ---- */
@media (max-width: 767px) {
  .vehicle-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: 1fr auto;
  }

  .vehicle-card__media {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: auto;
    min-height: 130px;
    border-radius: var(--r-lg) 0 0 0;
  }

  .vehicle-card__badge {
    font-size: 10px;
    padding: 3px 8px;
  }

  .vehicle-card__price-badge {
    display: none;
  }

  .vehicle-card__body {
    grid-column: 2;
    grid-row: 1;
    padding: 12px 14px 10px;
  }

  .vehicle-card__name {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .vehicle-card__chips {
    gap: 4px;
    margin-bottom: 4px;
  }

  .vehicle-card__chip {
    font-size: 10.5px;
    padding: 3px 8px;
  }

  .vehicle-card__price-inline {
    display: block;
    font-size: 1rem;
  }

  .vehicle-card__cta {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    border-top: 1px solid rgba(232,100,26,0.18);
    min-height: 48px;
    font-size: 0.9rem;
  }
}

/* Vehicles CTA block */
.vehicles__cta {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  border: 1.5px dashed var(--light-border);
  border-radius: var(--r-xl);
  background: var(--light-bg);
}
.vehicles__cta p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink-60);
  margin-bottom: var(--sp-3);
}

/* ==========================================
   REVIEWS
   ========================================== */
.reviews__score-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}

.reviews__score-num {
  font-family: 'Syne', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.reviews__score-info .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 6px;
}

.reviews__score-info p {
  font-size: 13px;
  color: var(--text-45);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

/* Review card */
.review-card {
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: border-color var(--ease), transform var(--ease);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(232,100,26,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.review-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-4px);
}

.review-card__quote {
  width: 28px;
  height: 20px;
  color: var(--orange);
  opacity: 0.5;
  flex-shrink: 0;
}

.review-card > p {
  font-size: 14px;
  color: var(--text-70);
  line-height: 1.75;
  flex: 1;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  border-top: 1px solid var(--text-20);
  padding-top: var(--sp-2);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card__footer strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 3px;
}

.review-card__footer .stars {
  display: flex;
  gap: 2px;
}

.review-card__date {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-45);
  flex-shrink: 0;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact__panel-orange {
  display: none; /* shown on desktop via grid */
}

.contact__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 640px;
}

.contact__info {
  background: var(--orange);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.contact__info .section__title {
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.contact__whatsapp-btn {
  margin-top: auto;
}

.contact__details {
  background: var(--surface-2);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.contact__item {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
}

.contact__icon {
  width: 44px;
  height: 44px;
  background: rgba(232,100,26,0.12);
  border: 1px solid var(--orange-border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact__icon svg { width: 18px; height: 18px; }

.contact__item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-70);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact__item p {
  font-size: 14px;
  color: var(--text-70);
  line-height: 1.65;
}
.contact__item a {
  color: var(--text-70);
  transition: color var(--ease);
}
.contact__item a:hover { color: var(--orange); }

/* Map */
.contact__map {
  flex: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  min-height: 220px;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: none;
  display: block;
}
.contact__map-btn {
  position: absolute;
  bottom: var(--sp-2);
  right: var(--sp-2);
  background: rgba(10,10,10,0.85);
  color: #fff;
  border-color: rgba(255,255,255,0.20);
  font-size: 13px;
  padding: 10px 16px;
  min-height: 44px;
  backdrop-filter: blur(8px);
}
.contact__map-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--bg);
  color: var(--text-70);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-6);
  padding: var(--sp-8) var(--sp-3) var(--sp-8);
  max-width: 1200px;
  margin: 0 auto;
}

.footer__brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--sp-2);
}
.footer__brand .logo-text { margin-bottom: var(--sp-2); }
.footer__brand > p {
  font-size: 14px;
  color: var(--text-45);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--sp-3);
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-45);
  transition: color var(--ease);
}
.footer__social svg { width: 18px; height: 18px; }
.footer__social:hover { color: var(--orange); }

.footer__links h4,
.footer__contact h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: var(--sp-3);
}

.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: var(--text-70);
  transition: color var(--ease);
}
.footer__links a:hover { color: var(--orange); }

.footer__contact p {
  font-size: 14px;
  color: var(--text-70);
  line-height: 1.65;
  margin-bottom: var(--sp-2);
}
.footer__contact a { transition: color var(--ease); }
.footer__contact a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--sp-3) 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 12px;
  color: var(--text-20);
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: var(--sp-4);
  right: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  background: #25D366;
  color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
  z-index: 150;
  font-size: 14px;
  font-weight: 600;
  transition: transform var(--ease-spring), box-shadow var(--ease);
  min-height: 52px;
}
.whatsapp-float svg { width: 24px; height: 24px; flex-shrink: 0; }
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.whatsapp-float__label { white-space: nowrap; }

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero__bg img { transition: none; animation: none; }
  .whatsapp-float, .btn, .service-item__icon { transition: none; }
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
  .contact__inner { grid-template-columns: 280px 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Header */
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: var(--sp-3) var(--sp-3) var(--sp-4);
    border-top: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  }
  .header__nav.open { display: block; }
  .header__nav ul { flex-direction: column; gap: 0; }
  .header__nav a {
    padding: var(--sp-2) 0;
    color: var(--text-70);
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    min-height: 52px;
  }
  .header__nav a:last-child { border-bottom: none; }
  .header__cta { display: none; }
  .header__burger { display: flex; }
  .header { background: rgba(10,10,10,0.65); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

  /* Hero */
  .hero__stats-inner { flex-wrap: wrap; justify-content: center; gap: var(--sp-3); }
  .hero__stat-divider { display: none; }

  /* Sections */
  .section { padding: var(--sp-8) 0; }
  .section__header--split { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }

  /* Services */
  .service-item { grid-template-columns: 48px 1fr; gap: var(--sp-2); padding: var(--sp-4) var(--sp-3); }
  .service-item__icon { display: none; }
  .service-item__num { font-size: 1.8rem; }

  /* Reviews */
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__score-row { flex-direction: column; gap: var(--sp-2); text-align: center; }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; }
  .contact__info { padding: var(--sp-6) var(--sp-3); }
  .contact__details { padding: var(--sp-6) var(--sp-3); }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: var(--sp-5); }
  .footer__brand { grid-column: auto; }

  /* WhatsApp float */
  .whatsapp-float__label { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .vehicles__grid { grid-template-columns: 1fr; }
  .reviews__score-num { font-size: 3rem; }
}

/* ==========================================
   ESTOQUE PAGE — Page Banner
   ========================================== */
.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;
}

.page-banner {
  background: var(--surface-1);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: calc(var(--header-h, 72px) + var(--sp-6)) 0 var(--sp-6);
}

.page-banner__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.page-banner__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.page-banner__back {
  position: fixed;
  top: calc(var(--header-h) + 12px);
  left: 20px;
  z-index: 300;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text-70);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color var(--ease), background var(--ease), border-color var(--ease);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.30);
}
.page-banner__back:hover {
  color: var(--text-100);
  background: var(--surface-3);
  border-color: rgba(255,255,255,0.20);
}

@media (max-width: 767px) {
  .page-banner__back {
    position: relative;
    top: auto;
    left: auto;
    z-index: auto;
    box-shadow: none;
    align-self: flex-start;
  }
}

.page-banner__text {
  flex: 1;
  min-width: 200px;
}

.page-banner__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-100);
  margin-top: var(--sp-1);
  line-height: 1.1;
}

.page-banner__subtitle {
  color: var(--text-45);
  font-size: 0.9375rem;
  margin-top: var(--sp-1);
}

.page-banner__count {
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  margin-bottom: 4px;
}

/* ==========================================
   ESTOQUE PAGE — Grid Section
   ========================================== */
/* ==========================================
   ESTOQUE PAGE — Filters
   ========================================== */
.estoque-filters {
  background: var(--surface-2);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: var(--sp-3) 0;
  position: sticky;
  top: var(--header-h);
  z-index: 150;
}

/* ---- Toggle bar (mobile only) ---- */
.filters__toggle {
  display: none;
  width: 100%;
  background: transparent;
  border: none;
  padding: 6px 0 10px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  color: var(--text-100);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.filters__toggle-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-45);
}

.filters__toggle-chevron {
  color: var(--text-45);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filters__toggle--collapsed .filters__toggle-chevron {
  transform: rotate(-90deg);
}

/* ---- Collapsible body ---- */
.filters__body {
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease;
}

.filters__row {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-2);
  flex-wrap: wrap;
  padding-bottom: 4px;
}

@media (max-width: 767px) {
  .filters__toggle {
    display: flex;
  }

  .filters__body {
    max-height: 0;
    opacity: 0;
  }
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 140px;
}

.filter-group label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.filter-select,
.filter-input {
  background: var(--surface-3);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--text-100);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  padding: 0 14px;
  height: 44px;
  border-radius: var(--r-sm);
  outline: none;
  width: 100%;
  transition: border-color var(--ease);
}

.filter-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}

.filter-select:focus,
.filter-input:focus {
  border-color: var(--orange);
}

.filter-input::placeholder {
  color: var(--text-45);
}

.filter-input::-webkit-inner-spin-button,
.filter-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.filter-input[type=number] { -moz-appearance: textfield; }

.filters__clear {
  flex-shrink: 0;
  align-self: flex-end;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.13);
  color: var(--text-45);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0 18px;
  height: 44px;
  border-radius: var(--r-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--ease), border-color var(--ease);
}

.filters__clear:hover {
  color: var(--text-100);
  border-color: rgba(255,255,255,0.28);
}

.vehicles-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--sp-8) 0;
  color: var(--ink-60);
  font-size: 0.9375rem;
}

/* ==========================================
   ESTOQUE PAGE — Grid Section
   ========================================== */
.estoque-section {
  padding-top: var(--sp-3);
  padding-bottom: var(--sp-12);
  background: var(--light-bg);
}

.vehicles__grid--full {
  grid-template-columns: repeat(3, 1fr);
}

/* ==========================================
   ESTOQUE PAGE — WhatsApp CTA
   ========================================== */
.estoque-cta {
  background: var(--light-surface);
  border-top: 1px solid var(--light-border);
  padding: var(--sp-12) 0;
  margin-top: var(--sp-8);
}

.estoque-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.estoque-cta__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--ink-100);
}

.estoque-cta__subtitle {
  color: var(--ink-60);
  margin-top: var(--sp-1);
  font-size: 0.9375rem;
}

.estoque-cta__btn {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .page-banner__row { flex-direction: column; align-items: flex-start; }
  .vehicles__grid--full { grid-template-columns: 1fr; }
  .estoque-cta__inner { flex-direction: column; text-align: center; }
  .estoque-cta__btn { width: 100%; justify-content: center; }
}

@media (min-width: 641px) and (max-width: 960px) {
  .vehicles__grid--full { grid-template-columns: repeat(2, 1fr); }
}
