html {
  background: #000000;
}

body {
  animation: pageReveal 400ms ease forwards;
}

@keyframes pageReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   J.Badal & Co. — Main Stylesheet
   Design: Clean, white, premium automotive (carwow-inspired)
   ============================================================ */

/* ----------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------- */
:root {
  --white:          #FFFFFF;
  --bg-primary:     #F5F5F5;
  --bg-card:        #FFFFFF;
  --border:         #E8E8E8;
  --text-primary:   #1A1A1A;
  --text-secondary: #6B6B6B;
  --text-muted:     #9E9E9E;
  --accent:         #1A1A1A;
  --accent-gold:    #B8860B;
  --dark-section:   #111111;
  --nav-height:     64px;
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;
  --shadow-card:    0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-hover:   0 4px 8px rgba(0,0,0,0.10), 0 12px 32px rgba(0,0,0,0.10);
  --transition:     all 0.2s ease;
  --ease-out:       cubic-bezier(0.25, 0, 0.25, 1);
  --dur-fast:       150ms;
  --dur-normal:     250ms;
  --dur-slow:       400ms;
}

/* ----------------------------------------------------------
   2. 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', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

button {
  cursor: pointer;
  font-family: inherit;
}

ul, ol { list-style: none; }

/* ----------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------- */
.t-hero {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.t-h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.t-h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.t-h3 {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.2px;
}

.t-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.text-gold { color: var(--accent-gold); }
.text-muted { color: var(--text-muted); }

/* ----------------------------------------------------------
   4. LAYOUT UTILITIES
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  background: var(--white);
  padding: 72px 0;
}

.section-header {
  margin-bottom: 32px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.section-label::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: #B8860B;
  margin-bottom: 10px;
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-sm { gap: 8px; }
.gap-md { gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ----------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}

/* Dark fill — primary action */
.btn-dark {
  background: var(--text-primary);
  color: #fff;
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-1px);
}

/* White fill — for dark sections */
.btn-white {
  background: #FFFFFF;
  color: var(--text-primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: #F0F0F0;
  transform: translateY(-1px);
}

/* Gold accent — for "View All", outline actions */
.btn-gold {
  background: transparent;
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
}
.btn-gold:hover {
  background: rgba(184,134,11,0.08);
  transform: translateY(-1px);
}

/* Gold outline */
.btn-outline-gold {
  background: transparent;
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
}
.btn-outline-gold:hover {
  background: rgba(184,134,11,0.08);
  transform: translateY(-1px);
}

/* WhatsApp — green */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-1px);
}

/* Outline dark */
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--text-primary);
  transform: translateY(-1px);
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

/* ----------------------------------------------------------
   5b. LOGO COMPONENTS
   ---------------------------------------------------------- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 17px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: -0.3px;
  line-height: 1;
}

.nav-logo-co {
  font-weight: 400;
  color: #6B6B6B;
}

.nav-logo-full {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-brand-name {
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
}

/* Parts page header with full logo */

/* ----------------------------------------------------------
   6. NAVIGATION
   ---------------------------------------------------------- */
/* ── Navbar base (transparent over dark heroes) ── */
/* ==========================================================
   NAV — transparent by default, frosted glass on scroll
   Body classes: dark-hero (white text) | light-hero (dark text)
   ========================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: transparent;
  box-shadow: none;
  border-bottom: none;
  z-index: 1000;
  transition: background 250ms ease, box-shadow 250ms ease, backdrop-filter 250ms ease;
}

/* Frosted glass once scrolled past 80px */
.navbar.nav-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  gap: 32px;
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.nav-logo-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  white-space: nowrap;
  transition: color 250ms ease;
  /* dark-hero: white; light-hero: dark */
  color: #1A1A1A;
}
.dark-hero .nav-logo-text { color: #FFFFFF; }
.nav-logo-co {
  font-weight: 400;
  transition: color 250ms ease;
  color: #6B6B6B;
}
.dark-hero .nav-logo-co { color: rgba(255,255,255,0.7); }
/* Once scrolled, always dark regardless of hero type */
.navbar.nav-scrolled .nav-logo-text { color: #1A1A1A; }
.navbar.nav-scrolled .nav-logo-co  { color: #6B6B6B; }

/* ── Nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 250ms ease;
  white-space: nowrap;
  color: #6B6B6B;
}
.dark-hero .nav-links a { color: rgba(255,255,255,0.85); }
.nav-links a:hover { color: #1A1A1A; }
.dark-hero .nav-links a:hover { color: #FFFFFF; }
.nav-links a.active { color: #1A1A1A; font-weight: 600; }
.dark-hero .nav-links a.active { color: #FFFFFF; }
.nav-links a.active::after { display: none; }
/* Once scrolled — always dark */
.navbar.nav-scrolled .nav-links a       { color: #6B6B6B; }
.navbar.nav-scrolled .nav-links a:hover { color: #1A1A1A; }
.navbar.nav-scrolled .nav-links a.active { color: #1A1A1A; font-weight: 600; }

/* ── Nav right ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ── WhatsApp CTA ── */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 250ms ease, color 250ms ease, border-color 250ms ease, transform 250ms ease;
  white-space: nowrap;
  /* light-hero transparent default */
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  color: #1A1A1A;
}
/* dark-hero: white ghost button */
.dark-hero .nav-cta {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.30);
  color: #FFFFFF;
}
.dark-hero .nav-cta:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}
/* Once scrolled — solid green on all pages */
.navbar.nav-scrolled .nav-cta {
  background: #25D366;
  border-color: transparent;
  color: #FFFFFF;
  backdrop-filter: none;
}
.navbar.nav-scrolled .nav-cta:hover {
  background: #20BD5A;
  transform: translateY(-1px);
}

/* ── Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: all 250ms ease;
  background: #1A1A1A;
}
.dark-hero .nav-hamburger span { background: #FFFFFF; }
.navbar.nav-scrolled .nav-hamburger span { background: #1A1A1A; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-inner { padding: 0 16px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E8E8E8;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  /* Mobile dropdown always dark text */
  .nav-links a,
  .dark-hero .nav-links a,
  .navbar.nav-scrolled .nav-links a {
    display: block;
    padding: 13px 20px;
    font-size: 15px;
    border-bottom: 1px solid #F5F5F5;
    color: #6B6B6B;
  }
  .nav-links a:hover,
  .dark-hero .nav-links a:hover,
  .navbar.nav-scrolled .nav-links a:hover { color: #1A1A1A; }
  .nav-links a.active,
  .dark-hero .nav-links a.active,
  .navbar.nav-scrolled .nav-links a.active { color: #1A1A1A; font-weight: 600; }
  .nav-hamburger { display: flex; }
}

/* ----------------------------------------------------------
   7. HERO SECTION  (stays dark — the one dark section)
   ---------------------------------------------------------- */
/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Video layer */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

/* Content layer */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 80px 120px 10%;
  width: 100%;
}

/* Location tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.50);
  font-size: 10px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
}

/* Headline */
.hero-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 40px;
  max-width: 620px;
}
.hero-title-accent {
  color: #FFFFFF;
  opacity: 0.55;
}

/* Subtext */
.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

/* CTA buttons */
.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-block;
  background: #FFFFFF;
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  transition: all 0.2s ease;
  letter-spacing: -0.2px;
  text-decoration: none;
}
.btn-hero-primary:hover {
  background: #F0F0F0;
  transform: translateY(-1px);
}
.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-hero-whatsapp:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Search bar */
.hero-search {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  max-width: 640px;
  width: 100%;
}
.hero-select {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: #1A1A1A;
  padding: 16px 18px;
  cursor: pointer;
  font-family: inherit;
  appearance: none;
  -webkit-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='%236B6B6B' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}
.hero-search-divider {
  width: 1px;
  height: 28px;
  background: #E0E0E0;
  flex-shrink: 0;
}
.hero-search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1A1A1A;
  color: #FFFFFF;
  border: none;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.hero-search-btn:hover { background: #333333; }

/* Search + CTA wrapper */
.hero-search-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 640px;
}

/* Browse Inventory outlined button below search */
.btn-hero-browse {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.30);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
  letter-spacing: 0.1px;
}
.btn-hero-browse:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.55);
  color: #FFFFFF;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-overlay { background: rgba(0, 0, 0, 0.85); }
}

/* ----------------------------------------------------------
   8. BODY TYPE NAVIGATOR
   ---------------------------------------------------------- */
.body-type-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.body-type-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

.body-type-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.body-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: inherit;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

.body-pill:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

.body-pill.active {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #1A1A1A;
  font-weight: 600;
}

/* Light-background variant (used in featured section) */
.body-type-nav--light {
  margin-top: 0;
  margin-bottom: 32px;
}

.body-type-nav--light .body-pill {
  background: #F5F5F5;
  border: 1px solid #E0E0E0;
  color: #4A4A4A;
}

.body-type-nav--light .body-pill:hover {
  background: #EBEBEB;
  border-color: #C8C8C8;
  color: #1A1A1A;
}

.body-type-nav--light .body-pill.active {
  background: #1A1A1A;
  border-color: #1A1A1A;
  color: #FFFFFF;
  font-weight: 600;
}

@media (max-width: 768px) {
  .body-type-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .body-type-pills {
    gap: 6px;
  }
  .body-pill {
    font-size: 12px;
    padding: 7px 14px;
  }
}

/* ----------------------------------------------------------
   9. VEHICLE CARDS
   ---------------------------------------------------------- */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vehicle-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out),
              transform 0.5s var(--ease-out),
              box-shadow 0.2s ease,
              border-color 0.2s ease;
}

.vehicle-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.vehicle-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-hover);
  border-color: #B8860B;
}

/* Stretched link makes the whole card clickable */
.vehicle-card {
  position: relative;
}
.vehicle-card__stretched-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* Action buttons sit above the stretched link */
.vcard-action {
  position: relative;
  z-index: 2;
}

.vehicle-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bg-primary);
}

.vehicle-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vehicle-card:hover .vehicle-card__img {
  transform: scale(1.03);
}

.vehicle-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  background: linear-gradient(135deg, var(--bg-primary) 0%, #EBEBEB 100%);
}

.vehicle-card__img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.vehicle-card__img-placeholder span {
  font-size: 12px;
  opacity: 0.6;
}

.vehicle-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}

.badge {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.badge-new {
  background: #111111;
  color: #FFFFFF;
}

.badge-sold {
  background: rgba(0,0,0,0.5);
  color: #FFFFFF;
  backdrop-filter: blur(4px);
}

.badge-featured {
  background: var(--accent-gold);
  color: #fff;
}

.badge-coming-soon {
  background: rgba(30, 30, 30, 0.75);
  color: #fff;
  backdrop-filter: blur(4px);
}

.vehicle-card__coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 2;
  padding: 10px;
}

.vehicle-card__coming-soon-overlay span {
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
}

.is-coming-soon .vehicle-card__image-wrap {
  position: relative;
}

.vehicle-card__body {
  padding: 16px 18px 18px;
}

.vehicle-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.vehicle-card__year {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.vehicle-card__meta {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}

.vehicle-card__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-secondary);
}

.vehicle-card__meta-item svg {
  width: 13px;
  height: 13px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.vehicle-card__price {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  border-left: 3px solid #B8860B;
  padding-left: 10px;
}

.vehicle-card__price small {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  margin-right: 4px;
}

.vehicle-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.vehicle-card.is-sold .vehicle-card__image-wrap {
  filter: grayscale(0.6);
}

/* ----------------------------------------------------------
   10. TRUST STATS  (white section, clean dividers)
   ---------------------------------------------------------- */
.trust-section {
  background: #1A1A1A;
  border-top: none;
  border-bottom: none;
  padding: 56px 0;
  text-align: center;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 800px;
  margin: 0 auto;
}

.trust-stat {
  padding: 24px 32px;
  position: relative;
}

.trust-stat:nth-child(2),
.trust-stat:nth-child(3) {
  border-left: 1px solid rgba(255,255,255,0.12);
}

.trust-stat__number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.trust-stat__label {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}

.trust-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ----------------------------------------------------------
   11. BRAND MARQUEE
   ---------------------------------------------------------- */
.marquee-section {
  padding: 20px 0;
  overflow: hidden;
  background: #1A1A1A;
}

.marquee-track {
  display: flex;
  animation: marquee-scroll 50s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 40px;
  white-space: nowrap;
}

.marquee-brand {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.30);
  transition: opacity 0.2s;
}

.marquee-item:hover .marquee-brand {
  opacity: 0.7;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--border);
  border-radius: 50%;
  margin-left: 40px;
}

/* ----------------------------------------------------------
   13. INVENTORY PAGE
   ---------------------------------------------------------- */
.inventory-page {
  background: var(--bg-primary);
  min-height: 100vh;
}

.inventory-header {
  padding: calc(var(--nav-height) + 32px) 0 28px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
}

.inventory-header .t-h1 {
  color: var(--text-primary);
  margin-bottom: 4px;
}

.inventory-header .t-label {
  color: var(--accent-gold);
}

.filter-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.filter-bar__inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-select {
  padding: 9px 32px 9px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: inherit;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-primary);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1A1A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.filter-select:focus {
  outline: none;
  border-color: var(--text-primary);
}

.filter-reset {
  margin-left: auto;
  padding: 9px 18px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

.filter-reset:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.inventory-count {
  font-size: 13px;
  color: var(--text-muted);
  padding: 20px 0 8px;
}

.inventory-count span {
  font-weight: 700;
  color: var(--text-primary);
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px 0 48px;
}

.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 32px;
  color: var(--text-muted);
}

.no-results svg {
  width: 56px;
  height: 56px;
  opacity: 0.25;
  margin: 0 auto 16px;
}

/* ----------------------------------------------------------
   14. VEHICLE DETAIL PAGE
   ---------------------------------------------------------- */
/* ----------------------------------------------------------
   14. VEHICLE DETAIL PAGE  (premium light layout)
   ---------------------------------------------------------- */
.detail-page {
  background: #F0F0F0;
  padding-top: var(--nav-height);
  min-height: 100vh;
}

/* Page wrapper */
.vd-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

/* Two-column grid: 60 / 40 */
.vd-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: start;
}

/* ── LEFT COLUMN ── */
.vd-left {
  min-width: 0;
}

.vd-breadcrumb {
  font-size: 12px;
  color: #9E9E9E;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.vd-breadcrumb a {
  color: #9E9E9E;
  text-decoration: none;
}
.vd-breadcrumb a:hover { color: var(--text-primary); }
.vd-breadcrumb-sep { color: #CCCCCC; }
.vd-breadcrumb-current { color: var(--text-primary); font-weight: 500; }

.vd-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
  line-height: 1.15;
}

/* Gallery */
.vd-gallery { margin-bottom: 20px; }

.vd-gallery__main {
  aspect-ratio: 4/3;
  max-height: 480px;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  background: #E8E8E8;
  position: relative;
}

.vd-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.vd-gallery__main:hover img { transform: scale(1.03); }

.vd-gallery__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #9E9E9E;
  font-size: 13px;
}

.vd-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: #DDDDDD transparent;
}

.vd-gallery__thumb {
  flex-shrink: 0;
  width: 88px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: border-color 0.15s, opacity 0.15s;
}

.vd-gallery__thumb.active,
.vd-gallery__thumb:hover {
  border-color: #1A1A1A;
  opacity: 1;
}

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

/* Description card */
.vd-desc-card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 28px;
  margin-top: 4px;
}

.vd-desc-heading {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.vd-desc-text {
  font-size: 14px;
  line-height: 1.8;
  color: #6B6B6B;
}

/* ── RIGHT COLUMN ── */
.vd-right {
  position: sticky;
  top: calc(var(--nav-height) + 16px);
}

.vd-info-card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 28px;
}

.vd-price {
  font-size: 28px;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}

.vd-price small {
  font-size: 16px;
  font-weight: 600;
  margin-right: 2px;
  letter-spacing: 0;
}

.vd-price-label {
  font-size: 12px;
  color: #9E9E9E;
  margin-bottom: 20px;
}

.vd-divider {
  border: none;
  border-top: 1px solid #EEEEEE;
  margin: 20px 0;
}

/* Specs — 2-column CSS grid inside card */
.vd-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 12px;
}

.vd-spec {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vd-spec__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9E9E9E;
}

.vd-spec__value {
  font-size: 14px;
  font-weight: 500;
  color: #1A1A1A;
}

/* Actions */
.vd-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vd-btn-wa {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 14px;
}

.vd-btn-call {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 13px;
  background: transparent;
  border: 1.5px solid #E0E0E0;
  color: #1A1A1A;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.vd-btn-call:hover {
  border-color: #1A1A1A;
  background: #F5F5F5;
}

.vd-back-link {
  font-size: 13px;
  color: #9E9E9E;
  text-decoration: none;
  text-align: center;
  display: block;
  padding-top: 4px;
  transition: color 0.15s;
}

.vd-back-link:hover { color: #1A1A1A; }

/* Trust note */
.vd-trust {
  margin-top: 20px;
  background: rgba(184,134,11,0.05);
  border: 1px solid rgba(184,134,11,0.18);
  border-radius: 10px;
  padding: 16px;
  font-size: 12px;
  color: #888;
  line-height: 1.6;
}

.vd-trust__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

/* Related section */
.vd-related {
  background: #F0F0F0;
  padding: 4rem 0;
  border-top: 1px solid #E0E0E0;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox__img {
  width: 90vw;
  height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.lightbox__close:hover { background: rgba(255,255,255,0.2); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 10;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Mobile sticky bar */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 12px 16px;
  gap: 8px;
}

/* ----------------------------------------------------------
   15. SPARE PARTS PAGE
   ---------------------------------------------------------- */
.parts-page {
  background: var(--bg-primary);
  min-height: 100vh;
}

.parts-hero {
  padding: 40px 0 56px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.parts-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184,134,11,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.parts-intro {
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.75;
}

.parts-categories {
  padding: 56px 0 72px;
  background: var(--bg-primary);
}

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

.parts-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.parts-card:hover {
  border-color: var(--text-primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.parts-card__icon {
  width: 64px;
  height: 64px;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.parts-card:hover .parts-card__icon {
  background: #EBEBEB;
}

.parts-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent-gold);
}

.parts-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.parts-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ----------------------------------------------------------
   16. CONTACT PAGE
   ---------------------------------------------------------- */
.contact-page {
  background: var(--bg-primary);
  min-height: 100vh;
}

.contact-header {
  padding: calc(var(--nav-height) + 56px) 0 48px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184,134,11,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.contact-header .t-hero {
  color: var(--text-primary);
}

.contact-header .text-gold {
  color: var(--accent-gold);
}

.contact-header .section-label {
  color: var(--accent-gold);
}

.contact-header p {
  color: var(--text-secondary);
}

.contact-body {
  padding-bottom: 80px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
}

.contact-info-item__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-item__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-info-item__value {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.hours-row .day {
  color: var(--text-primary);
  font-weight: 500;
}

.map-embed {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 280px;
  margin-top: 20px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.contact-form__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  padding: 11px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(26,26,26,0.08);
  background: #FFFFFF;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  color: #25D366;
  font-weight: 600;
}

/* ----------------------------------------------------------
   17. ENERGY PAGE  (stays dark green brand)
   ---------------------------------------------------------- */
.energy-page {
  background: #F5F5F5;
  min-height: 100vh;
  color: var(--text-primary);
}

/* energy-page nav uses shared transparent default — no overrides needed */

.energy-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--nav-height) 32px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0a0f0a;
}

/* Video background */
.energy-hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.energy-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.energy-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.28) 100%
  );
}

/* Reduced-motion: hide video, show solid bg */
@media (prefers-reduced-motion: reduce) {
  .energy-hero-video { display: none; }
  .energy-hero-overlay { background: rgba(0,0,0,0.75); }
}

.energy-hero__grid { display: none; }

.energy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #2ecc71;
  position: relative;
  z-index: 1;
}

.energy-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.energy-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.energy-headline {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  color: #fff;
}

.energy-headline span { color: #2ecc71; }

.energy-subheadline {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── ENERGY PRODUCT SHOWCASE ── */
.energy-product {
  background: #FFFFFF;
  padding: 96px 48px;
}
.energy-product__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.energy-product__image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}
.energy-product__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #B8860B;
  margin-bottom: 16px;
}
.energy-product__heading {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 24px;
}
.energy-product__body {
  font-size: 15px;
  color: #6B6B6B;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}
.energy-product__features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.energy-product__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #1A1A1A;
}
.energy-product__features li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
}
.energy-product__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.energy-product__cta:hover {
  background: #20BD5A;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .energy-product {
    padding: 56px 20px;
  }
  .energy-product__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.btn-energy {
  background: #2ecc71;
  color: #0a0f0a;
  box-shadow: 0 4px 24px rgba(46,204,113,0.35);
}
.btn-energy:hover {
  background: #27b560;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(46,204,113,0.5);
}

.btn-outline-energy {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-energy:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* Form submit button — dark charcoal, not green */
.btn-energy-submit {
  background: #1A1A1A;
  color: #FFFFFF;
  box-shadow: none;
}
.btn-energy-submit:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.energy-contact {
  padding: 80px 32px;
  background: #FFFFFF;
  border-top: 1px solid #E8E8E8;
}

.energy-form {
  max-width: 520px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.energy-form .form-input,
.energy-form .form-textarea {
  background: #F5F5F5;
  border-color: #E8E8E8;
  color: #1A1A1A;
}

.energy-form .form-input:focus,
.energy-form .form-textarea:focus {
  border-color: #1A1A1A;
  box-shadow: 0 0 0 3px rgba(26,26,26,0.08);
  background: #FFFFFF;
}

.energy-form .form-input::placeholder,
.energy-form .form-textarea::placeholder { color: #AAAAAA; }
.energy-form .form-label { color: #6B6B6B; }

/* ----------------------------------------------------------
   18. FOOTER  (white, clean)
   ---------------------------------------------------------- */
.footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.footer__tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.footer__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 240px;
}

.footer__col-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__link:hover { color: var(--text-primary); }

.footer__bottom {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__copyright {
  font-size: 12px;
  color: var(--text-muted);
}

/* ----------------------------------------------------------
   19. SCROLL ANIMATIONS
   ---------------------------------------------------------- */
.js-animate .fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out),
              transform 0.6s var(--ease-out);
}

.js-animate .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ----------------------------------------------------------
   20. REDUCED MOTION
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js-animate .fade-up,
  .vehicle-card {
    opacity: 1;
    transform: none;
  }

  .marquee-track { animation: none; }
}

/* ----------------------------------------------------------
   21. RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .vehicles-grid,
  .inventory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .vd-inner {
    grid-template-columns: 1fr;
  }

  .vd-right {
    position: static;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  .parts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .container {
    padding: 0 16px;
  }

  .nav__inner {
    padding: 0 16px;
  }

  .nav__links,
  .nav__cta .btn:not(.btn-sm) {
    display: none;
  }

  .nav__cta .btn-sm {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .vehicles-grid,
  .inventory-grid {
    grid-template-columns: 1fr;
  }

  .trust-stats {
    grid-template-columns: 1fr;
  }

  .trust-stat:nth-child(2),
  .trust-stat:nth-child(3) {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer__bottom {
    padding: 16px;
  }

  .filter-bar__inner {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .filter-bar__inner::-webkit-scrollbar { display: none; }

  .filter-reset { flex-shrink: 0; }

  .hero-content {
    padding: 72px 20px 80px;
  }
  .hero-title {
    font-size: 34px;
    letter-spacing: -1px;
  }
  .hero-search {
    flex-direction: column;
    border-radius: 10px;
    width: 100%;
  }
  .hero-select {
    width: 100%;
    border-bottom: 1px solid #E8E8E8;
    padding: 14px 16px;
  }
  .hero-search-divider { display: none; }
  .hero-search-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    border-radius: 0 0 10px 10px;
  }
  .btn-hero-browse {
    width: 100%;
    text-align: center;
    display: block;
  }

  .section {
    padding: 48px 0;
  }
}

@media (max-width: 480px) {
  .parts-grid { grid-template-columns: 1fr; }
  .vehicle-card__actions { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .energy-headline { font-size: 2.8rem; }
}
