/* ═══════════════════════════════════════════════════════════
   CAR DEALERSHIP — MAIN STYLESHEET
   Matching lapuenteautos.com design exactly
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Arial Narrow', Arial, sans-serif;
  background: #000;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: inherit; }

:root {
  --black:   #000;
  --dark:    #111;
  --mid:     #1a1a1a;
  --grey:    #333;
  --lgrey:   #888;
  --white:   #fff;
  --red:     #c0392b;
  --red-btn: #a93226;
  --topbar-h: 0px;
  --nav-h:    120px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 40px;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--red-btn);
  color: #fff;
  border-color: var(--red-btn);
}
.btn-primary:hover { background: #9a2020; border-color: #9a2020; }
.btn-outline {
  background: transparent;
  color: #111;
  border-color: #111;
}
.btn-outline:hover { background: #111; color: #fff; }
/* On dark backgrounds override */
.hero .btn-outline,
.find-car .btn-outline,
.location-banner .btn-outline {
  color: #fff;
  border-color: #fff;
}
.hero .btn-outline:hover,
.find-car .btn-outline:hover,
.location-banner .btn-outline:hover { background: #fff; color: #000; }
.btn-dark {
  background: rgba(0,0,0,0.5);
  color: #fff;
  border-color: #fff;
}
.btn-dark:hover { background: #fff; color: #000; }

/* Sticky wrapper — holds topbar + nav together */
.header-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
}

/* ══════════════════════════════════
   UNIFIED HEADER
   Two rows inside one sticky element:
   Row 1 (thin): ask-a-question | phone + badge
   Row 2 (nav):  left-nav | logo | right-nav
   ══════════════════════════════════ */

.topbar {
  background: #0a0a0a;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  border-bottom: 1px solid #1c1c1c;
}
.topbar-ask {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.topbar-ask svg { width: 15px; height: 15px; fill: var(--red); flex-shrink: 0; }
.topbar-ask:hover { opacity: 0.75; }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-call-label {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.topbar-call-label svg { width: 12px; height: 12px; fill: var(--red); }
.topbar-phone {
  color: var(--red);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  transition: opacity 0.2s;
}
.topbar-phone:hover { opacity: 0.8; }

/* 24h badge — pill shape */
.topbar-24h {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
}
.topbar-24h svg { width: 12px; height: 12px; fill: #fff; }

/* ══════════════════════════════════
   HEADER / NAV — centered logo
   ══════════════════════════════════ */
.site-header {
  position: relative;
  z-index: 2;
  background: #000;
  height: var(--nav-h);
  box-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Centered logo */
.logo-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-img {
  max-height: 110px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(192,57,43,0.4));
  transition: filter 0.3s;
}
.logo-img:hover { filter: drop-shadow(0 0 18px rgba(192,57,43,0.7)); }
.logo-text {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

/* Nav sides */
.main-nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.main-nav-left  { justify-content: flex-end; }
.main-nav-right { justify-content: flex-start; }
.main-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  height: 100%;
}
.main-nav > ul > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 20px;
  height: 100%;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}
.main-nav > ul > li > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.main-nav > ul > li > a:hover { color: #fff; }
.main-nav > ul > li > a:hover::before { transform: scaleX(1); }
.main-nav > ul > li > a.active { color: #fff; }
.main-nav > ul > li > a.active::before { transform: scaleX(1); }

/* Dropdown arrow */
.has-dropdown > a::after {
  content: '▾';
  font-size: 10px;
  margin-left: 1px;
  color: #555;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0d0d0d;
  min-width: 200px;
  border-top: 2px solid var(--red);
  border: 1px solid #222;
  border-top: 2px solid var(--red);
  z-index: 300;
  box-shadow: 0 8px 30px rgba(0,0,0,0.7);
}
.has-dropdown:hover > .dropdown { display: block; }
.dropdown li { list-style: none; }
.dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  white-space: nowrap;
  transition: all 0.15s;
  border-bottom: 1px solid #1a1a1a;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { color: #fff; background: #151515; padding-left: 26px; }

/* Hamburger — hidden on desktop */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
  width: 40px;
  height: 40px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile full-screen nav — ALWAYS hidden until JS shows it */
.mobile-nav {
  display: none !important;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  overflow-y: auto;
  z-index: 99;
  border-top: 1px solid #1a1a1a;
}
.mobile-nav.open { display: block !important; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li a {
  display: block;
  padding: 18px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #888;
  border-bottom: 1px solid #111;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}
.mobile-nav ul li a:hover { color: #fff; background: #0a0a0a; padding-left: 40px; }
.mobile-nav ul li a.mobile-sub {
  padding-left: 52px;
  font-size: 11px;
  color: #555;
  border-left: 2px solid var(--red);
  background: #050505;
}

/* Flash */
.flash-messages { padding: 0 24px; }
.flash {
  background: #1a3a1a;
  border: 1px solid #2a5c2a;
  color: #6fcf6f;
  padding: 10px 16px;
  margin-bottom: 8px;
  font-size: 13px;
}

/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h) - var(--topbar-h));
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-h1 {
  font-size: clamp(16px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.3;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.8);
  color: #fff;
  margin-bottom: 6px;
}
.hero-h1.accent {
  font-size: clamp(32px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.0;
  margin-bottom: 0;
}
.hero-content .btn {
  margin-top: 44px;
  padding: 18px 56px;
  font-size: 14px;
  letter-spacing: 3px;
  border-radius: 50px;
}

.scroll-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
  cursor: pointer;
  border: none;
  background: none;
}
.scroll-down svg { width: 20px; fill: rgba(255,255,255,0.6); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════
   FIND YOUR DREAM CAR SECTION
   ══════════════════════════════════ */
.find-car {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.find-car-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.find-car-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 35%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}
.find-car-inner {
  position: relative;
  z-index: 2;
  padding: 0 72px 64px;
  max-width: 500px;
}
.find-car-inner .find-title-big {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.0;
  color: #fff;
  display: block;
}
.find-car-inner .find-title-small {
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  display: block;
  margin-bottom: 32px;
}

/* ══════════════════════════════════
   SECTION TYPOGRAPHY
   ══════════════════════════════════ */
.section-title {
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
}
.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}
.section-sub { color: #777; margin-bottom: 32px; font-size: 15px; }

/* ══════════════════════════════════
   CAR GRID (home + inventory)
   ══════════════════════════════════ */
.recent-cars {
  background: #f5f5f5;
  padding: 60px 0 80px;
}
.recent-cars .container { text-align: center; }

/* Red banner heading */
.recent-cars-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}
.recent-cars-heading::before,
.recent-cars-heading::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--red);
}
.recent-cars-heading span {
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 10px 32px;
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.car-grid-large { grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); }

.car-card {
  display: block;
  background: #fff;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  color: #111;
}
.car-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.car-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eee;
  position: relative;
}
.car-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s;
}
.car-card:hover .car-card-img img { transform: scale(1.04); }
.car-card-no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #bbb; font-size: 13px;
}
.car-card-info { padding: 18px 20px 0; }
.car-card-make {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #111;
  line-height: 1.2;
}
.car-card-model {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.car-stock-specs {
  font-size: 12px;
  color: #777;
  margin-bottom: 0;
  padding-bottom: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.car-stock-specs span { margin: 0 6px; color: #ccc; }
.car-price {
  font-size: 20px;
  font-weight: 900;
  color: #111;
  padding: 14px 20px;
  border-top: 1px solid #eee;
  display: block;
}
.badge-featured {
  position: absolute; top: 10px; left: 10px;
  background: var(--red-btn); color: #fff;
  font-size: 9px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 2px;
}
.no-cars { color: #999; padding: 60px 0; font-size: 15px; }

/* ══════════════════════════════════
   SHIPPING BANNER
   ══════════════════════════════════ */
.shipping-banner {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.shipping-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: grayscale(100%);
}
.shipping-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.05) 100%);
  z-index: 1;
}
.shipping-banner-inner {
  position: relative;
  z-index: 2;
  padding: 0 48px 48px;
  text-align: right;
  max-width: 480px;
  min-width: 0;
  overflow: hidden;
}
.shipping-banner-inner .ship-title-big {
  display: block;
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.0;
  color: #fff;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.6);
  word-break: keep-all;
  white-space: nowrap;
}
.shipping-banner-inner .ship-title-small {
  display: block;
  font-size: clamp(14px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.8);
}
.shipping-banner-inner .btn {
  padding: 16px 48px;
  font-size: 13px;
  letter-spacing: 3px;
  border-radius: 50px;
}

/* ══════════════════════════════════
   TESTIMONIALS PREVIEW
   ══════════════════════════════════ */
.testimonials-preview {
  position: relative;
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.testi-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px 64px;
  z-index: 2;
}
.testi-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.testi-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(160, 20, 20, 0.72);
  z-index: 1;
}
.testi-left h3 {
  position: relative;
  z-index: 2;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 10px;
}
.testi-left p {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-bottom: 28px;
}
.testi-left .btn {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  background: #111;
  border-color: #111;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
}
.testi-left .btn:hover { background: #333; border-color: #333; }
.testi-right {
  position: relative;
  overflow: hidden;
}
.testi-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 760px) {
  .testimonials-preview { grid-template-columns: 1fr; }
  .testi-right { min-height: 280px; }
  .testi-left { padding: 40px 32px; }
}

/* ══════════════════════════════════
   LOCATION BANNER
   ══════════════════════════════════ */
.location-banner {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
}
.location-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.location-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 1;
}
.location-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
.location-banner-inner .loc-hello {
  display: block;
  font-size: clamp(14px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.location-banner-inner .loc-name {
  display: block;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 28px;
}
.location-banner-inner p {
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.8;
  font-size: 15px;
  font-weight: 500;
}
.location-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.location-actions .btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  transition: all 0.2s;
}
.location-actions .btn-phone svg { width: 18px; height: 18px; fill: #fff; }
.location-actions .btn-phone:hover { background: #a93226; border-color: #a93226; }
.location-actions .btn-contact {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.location-actions .btn-contact:hover { background: #a93226; border-color: #a93226; }

/* ══════════════════════════════════
   PAGE BANNER
   ══════════════════════════════════ */
.page-banner {
  background: #000;
  padding: 64px 24px 48px;
  text-align: center;
  border-bottom: 1px solid #111;
}
.page-banner h1 {
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: 8px;
  text-transform: uppercase;
}

/* ══════════════════════════════════
   INVENTORY
   ══════════════════════════════════ */

/* Hero banner with car photo */
.inventory-hero {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.inventory-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 340px;
  width: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}
.inventory-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 340px;
  background: rgba(0,0,0,0.68);
  z-index: 1;
}
.inventory-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 80px;
}
.inventory-hero-content h1 {
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fff;
}

/* Search bar sits below hero text, overlapping the bottom edge */
.inventory-search-wrap {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: -28px;
  padding-bottom: 40px;
}
.inventory-search-form {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--red);
  background: #fff;
  height: 56px;
}
.inventory-search-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 20px;
  font-size: 15px;
  color: #111;
  background: transparent;
}
.inventory-search-form input::placeholder { color: #999; }
.inv-search-btn {
  background: var(--red);
  border: none;
  cursor: pointer;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.inv-search-btn svg { width: 22px; height: 22px; fill: #fff; }
.inv-search-btn:hover { background: #a93226; }
.inv-reset-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--red);
  border-top: none;
  border-bottom: none;
  background: #fff;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 24px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.inv-reset-btn svg { width: 16px; height: 16px; fill: var(--red); }
.inv-reset-btn:hover { background: var(--red); color: #fff; }
.inv-reset-btn:hover svg { fill: #fff; }

/* White car grid below */
.inventory-grid {
  background: #f5f5f5;
  padding: 20px 0 80px;
}
.no-results {
  text-align: center;
  padding: 80px 0;
  color: #999;
  font-size: 15px;
}

/* ══════════════════════════════════
   CAR DETAIL
   ══════════════════════════════════ */
/* ══════════════════════════════════
   CAR DETAIL PAGE
   ══════════════════════════════════ */
.car-detail { background: #fff; color: #111; }

/* Title */
.cdet-title-row {
  background: #fff;
  padding: 24px 48px 16px;
  border-bottom: 1px solid #eee;
}
.cdet-title-row h1 {
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
}

/* Main 2-column grid */
.cdet-main {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Gallery column */
.cdet-gallery-col { min-width: 0; }
.cdet-gallery {}
.cdet-gallery-main {
  position: relative;
  background: #111;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.cdet-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cdet-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(180,20,20,0.85); color: #fff;
  border: none; font-size: 32px;
  width: 44px; height: 64px;
  cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
}
.cdet-nav:hover { background: rgba(180,20,20,1); }
.cdet-nav.prev { left: 8px; }
.cdet-nav.next { right: 8px; }
.btn-view-hd {
  position: absolute; top: 12px; right: 12px;
  background: rgba(180,20,20,0.9); color: #fff;
  border: none; font-size: 11px; font-weight: 800;
  letter-spacing: 1.5px; padding: 8px 16px;
  cursor: pointer; border-radius: 2px;
  transition: background 0.2s;
}
.btn-view-hd:hover { background: var(--red); }

/* Thumbnails — grid of 2 rows, then hidden */
.cdet-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 3px;
  background: #111;
  padding: 3px;
  overflow: hidden;
  max-height: 122px; /* ~2 rows of 58px + gaps */
  transition: max-height 0.4s ease;
}
.cdet-thumbs.expanded {
  max-height: 9999px;
}
.cdet-thumb {
  width: 100%; height: 58px;
  object-fit: cover; cursor: pointer;
  opacity: 0.55; border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
  display: block;
}
.cdet-thumb.active, .cdet-thumb:hover { opacity: 1; border-color: var(--red); }
.cdet-more-photos {
  display: block; width: 100%;
  background: var(--red); color: #fff;
  border: none; padding: 10px;
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer; text-align: center;
  transition: background 0.2s;
}
.cdet-more-photos:hover { background: #a93226; }
/* Video */
.cdet-video-wrap {
  position: relative; padding-bottom: 56.25%;
  height: 0; overflow: hidden; background: #000; margin-top: 4px;
}
.cdet-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* No image */
.cdet-no-image {
  background: #eee; height: 380px;
  display: flex; align-items: center; justify-content: center;
  color: #aaa; font-size: 14px;
}

/* Specs column */
.cdet-specs-col {
  border-left: 1px solid #ddd;
  background: #fff;
  position: sticky;
  top: 0;
}

/* Price box */
.cdet-price-box {
  background: #fff;
  border: 1px solid #ddd;
  margin: 16px;
  padding: 18px 24px;
  font-size: 28px;
  font-weight: 900;
  color: #111;
  text-align: center;
}

/* CTA buttons */
.cdet-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 16px 16px;
}
.cdet-btn-call, .cdet-btn-email {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  font-size: 12px; font-weight: 900; letter-spacing: 1.5px;
  text-transform: uppercase; border-radius: 50px;
  transition: all 0.2s; cursor: pointer; border: none;
}
.cdet-btn-call svg, .cdet-btn-email svg { width: 16px; height: 16px; }
.cdet-btn-call {
  background: var(--red); color: #fff;
}
.cdet-btn-call svg { fill: #fff; }
.cdet-btn-call:hover { background: #a93226; }
.cdet-btn-email {
  background: #222; color: #fff;
}
.cdet-btn-email svg { fill: #fff; }
.cdet-btn-email:hover { background: #333; }

/* Spec cards */
.cdet-spec-cards { display: flex; flex-direction: column; }
.cdet-spec-card {
  display: flex; align-items: center; gap: 14px;
  background: #1a1a1a; color: #fff;
  padding: 14px 20px;
  border-bottom: 1px solid #2a2a2a;
}
.cdet-spec-card svg { width: 22px; height: 22px; fill: #888; flex-shrink: 0; }
.cdet-spec-card span {
  display: block; font-size: 10px; color: #888;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px;
}
.cdet-spec-card strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }

.cdet-more-details {
  display: block; text-align: center;
  padding: 14px; color: var(--red);
  font-size: 12px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: opacity 0.2s; border-top: 1px solid #eee;
}
.cdet-more-details:hover { opacity: 0.7; }

/* Tab bar */
.cdet-tabs {
  display: flex;
  background: #1a1a1a;
  border-top: 2px solid var(--red);
}
.cdet-tab {
  flex: 1; text-align: center;
  padding: 16px 8px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: #aaa; transition: all 0.2s;
  border-right: 1px solid #2a2a2a;
}
.cdet-tab:last-child { border-right: none; }
.cdet-tab:hover, .cdet-tab.active {
  background: var(--red); color: #fff;
}

/* Description */
.cdet-description {
  background: #fff;
  padding: 56px 24px;
}
.cdet-description-inner {
  max-width: 800px; margin: 0 auto;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 40px 48px;
  text-align: center;
}
.cdet-description-inner h2 {
  font-size: 18px; font-weight: 700; color: #111;
  margin-bottom: 20px; letter-spacing: 0.5px;
}
.cdet-description-inner p {
  font-size: 14px; color: #444; line-height: 1.9;
  margin-bottom: 16px; text-align: justify;
}

/* Message Us section */
.cdet-message-us {
  background: var(--red);
  padding: 64px 24px;
  text-align: center;
}
.cdet-msg-sub {
  font-size: 13px; font-weight: 700;
  letter-spacing: 3px; color: rgba(255,255,255,0.8);
  text-transform: uppercase; margin-bottom: 8px;
}
.cdet-msg-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900; letter-spacing: 2px;
  text-transform: uppercase; color: #fff;
  line-height: 1; margin-bottom: 16px;
}
.cdet-msg-desc {
  color: rgba(255,255,255,0.8);
  font-size: 14px; font-weight: 600;
  max-width: 560px; margin: 0 auto 36px;
  line-height: 1.6;
}
.cdet-msg-form {
  max-width: 640px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.cdet-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cdet-msg-form input,
.cdet-msg-form textarea {
  background: transparent;
  border: none; border-bottom: 1px solid rgba(255,255,255,0.6);
  color: #fff; padding: 12px 4px;
  font-size: 14px; width: 100%; outline: none;
  transition: border-color 0.2s;
}
.cdet-msg-form input::placeholder,
.cdet-msg-form textarea::placeholder { color: rgba(255,255,255,0.7); }
.cdet-msg-form input:focus,
.cdet-msg-form textarea:focus { border-bottom-color: #fff; }
.cdet-msg-form textarea { resize: none; margin-top: 8px; }
.cdet-send-btn {
  margin: 24px auto 0;
  background: transparent; color: #fff;
  border: 2px solid #fff; padding: 16px 56px;
  font-size: 13px; font-weight: 900; letter-spacing: 3px;
  text-transform: uppercase; border-radius: 50px;
  cursor: pointer; transition: all 0.2s;
}
.cdet-send-btn:hover { background: #fff; color: var(--red); }
.cdet-msg-success {
  color: #fff; font-size: 16px; font-weight: 700;
  padding: 24px; border: 2px solid rgba(255,255,255,0.4);
  border-radius: 4px; max-width: 480px; margin: 0 auto;
}

/* Related cars section */
.cdet-related {
  background: #f5f5f5;
  padding: 56px 0 72px;
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9999; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 94vw; max-height: 88vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  background: none; border: none; color: #fff;
  font-size: 44px; cursor: pointer; opacity: 0.7; line-height: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  font-size: 40px; width: 56px; height: 80px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(180,20,20,0.6); }
.lightbox-nav.prev { left: 0; }
.lightbox-nav.next { right: 0; }
.lightbox-counter {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%); color: #888; font-size: 13px;
}

@media (max-width: 860px) {
  .cdet-main { grid-template-columns: 1fr; }
  .cdet-specs-col { position: static; border-left: none; border-top: 1px solid #eee; }
  .cdet-title-row { padding: 16px 20px 12px; }
  .cdet-description-inner { padding: 24px 20px; }
  .cdet-form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   CONTACT FORMS (shared)
   ══════════════════════════════════ */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: #0d0d0d; border: 1px solid #222;
  color: #fff; padding: 12px 16px;
  font-size: 14px; width: 100%;
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: #fff;
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { align-self: flex-start; }
.form-success, .form-success-msg {
  background: #0d1f0d; border: 1px solid #1a3a1a;
  padding: 20px 24px; margin-top: 16px;
}
.form-success h4, .form-success-msg h4 { color: #4caf50; margin-bottom: 4px; }

/* ══════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════ */
/* ══════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════ */
.contact-page-wrap {
  background: #fff;
  min-height: 80vh;
  padding: 48px 24px 80px;
}
.contact-page-title {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 28px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
/* Left card */
.contact-left-card {
  background: #fff;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  border-radius: 4px;
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 340px;
  border: none;
  display: block;
}
.contact-map-placeholder {
  height: 200px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  padding: 24px;
  text-align: center;
}
.contact-location-info {
  padding: 24px 28px 28px;
}
.contact-location-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #111;
  margin-bottom: 6px;
}
.contact-address {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 4px;
  transition: opacity 0.2s;
}
.contact-address:hover { opacity: 0.8; }
.contact-phone {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 20px;
  transition: opacity 0.2s;
}
.contact-phone:hover { opacity: 0.8; }
.contact-hours-table {
  width: 100%;
  border-collapse: collapse;
}
.contact-hours-table tr {
  border-top: 1px solid #eee;
}
.contact-hours-table td {
  padding: 10px 0;
  font-size: 13px;
  color: #555;
}
.contact-hours-table td:last-child {
  text-align: right;
  color: #111;
  font-weight: 600;
}

/* Right red panel */
.contact-right-panel {
  background: var(--red);
  border-radius: 4px;
  padding: 32px 28px 36px;
}
.contact-form-title {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}
.contact-red-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-red-form input,
.contact-red-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 12px 4px;
  font-size: 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  margin-bottom: 8px;
}
.contact-red-form input::placeholder,
.contact-red-form textarea::placeholder { color: rgba(255,255,255,0.75); }
.contact-red-form input:focus,
.contact-red-form textarea:focus { border-bottom-color: #fff; }
.contact-red-form textarea { resize: none; }
.contact-send-btn {
  align-self: flex-start;
  margin-top: 16px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 48px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}
.contact-send-btn:hover { background: #fff; color: var(--red); }
.contact-success {
  color: #fff;
  font-size: 15px;
  padding: 20px 0;
  font-weight: 600;
}

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════
   SHIPPING PAGE
   ══════════════════════════════════ */

/* Hero */
.ship-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ship-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 60%;
  z-index: 0;
}
.ship-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.62); z-index: 1;
}
.ship-hero-content {
  position: relative; z-index: 2; text-align: center;
}
.ship-hero-content h1 {
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 900; letter-spacing: 3px;
  text-transform: uppercase; line-height: 1.1;
  color: #fff;
}
.ship-yellow { color: #f0a500; }
.ship-hero-content p {
  font-size: 15px; font-weight: 600;
  letter-spacing: 2px; color: #ddd;
  text-transform: uppercase; margin-top: 8px;
}

/* Services */
.ship-services {
  background: #fff;
  padding: 52px 0 40px;
  text-align: center;
}
.ship-services h2 {
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: #111;
  margin-bottom: 32px;
}
.ship-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.ship-services-grid ul {
  list-style: none;
  padding: 0 24px;
}
.ship-services-grid ul li {
  font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: #333; padding: 5px 0;
}

/* Referral banner */
.ship-referral {
  background: #1a1a1a;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.ship-referral-q {
  color: var(--red);
  font-size: 13px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.ship-referral-a {
  display: flex; align-items: center; gap: 8px;
  color: #f0a500;
  font-size: 13px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.ship-referral-a svg { width: 20px; height: 20px; fill: #f0a500; }

/* Steps */
.ship-steps {
  background: #1c1c1c;
  padding: 60px 0;
}
.ship-steps h2 {
  text-align: center;
  font-size: 14px; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  color: #fff; margin-bottom: 48px;
}
.ship-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}
.ship-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.ship-step-icon svg {
  width: 44px; height: 44px;
  fill: none; stroke: #fff;
  stroke-width: 1.2;
}
.ship-step-icon { margin-bottom: 4px; }
.ship-step-icon svg { fill: #fff; stroke: none; opacity: 0.7; }
.ship-step-num {
  font-size: 36px; font-weight: 900;
  color: #f0a500; line-height: 1;
}
.ship-step-text {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: #ccc; line-height: 1.5;
}

/* Contact section */
.ship-contact-section {
  background: #fff;
  padding: 56px 0 0;
  text-align: center;
}
.ship-contact-section h2 {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 900; letter-spacing: 3px;
  text-transform: uppercase; color: #111;
  margin-bottom: 28px;
}
.ship-contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ship-contact-left { overflow: hidden; }
.ship-contact-left img {
  width: 100%; height: 220px;
  object-fit: cover; display: block;
}
.ship-contact-right {
  background: #f0a500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 48px;
  text-align: left;
}
.ship-contact-call {
  display: flex; align-items: center; gap: 12px;
  font-size: 22px; font-weight: 900; color: #111;
  margin-bottom: 12px;
}
.ship-contact-call svg { width: 22px; height: 22px; fill: #111; flex-shrink: 0; }
.ship-contact-call a { color: #111; }
.ship-contact-email {
  font-size: 15px; color: #333;
}
.ship-contact-email a { color: #111; }

/* Form */
.ship-form-section {
  background: #fff;
  padding: 56px 0;
  text-align: center;
}
.ship-form-section h2 {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 900; letter-spacing: 3px;
  text-transform: uppercase; color: #111;
  margin-bottom: 28px;
}
.ship-form {
  background: var(--red);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 56px;
  text-align: left;
}
.ship-form-col { display: flex; flex-direction: column; gap: 0; padding: 0 24px; }
.ship-form-col:first-child { border-right: 1px solid rgba(255,255,255,0.2); }
.ship-form-label {
  font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: #fff; margin-bottom: 20px;
}
.ship-form input,
.ship-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 12px 0;
  font-size: 14px;
  width: 100%;
  outline: none;
  margin-bottom: 8px;
  transition: border-color 0.2s;
}
.ship-form input::placeholder,
.ship-form textarea::placeholder { color: rgba(255,255,255,0.7); }
.ship-form input:focus,
.ship-form textarea:focus { border-bottom-color: #fff; }
.ship-form textarea { resize: none; }
.ship-submit-btn {
  margin-top: 24px;
  align-self: flex-start;
  background: #111;
  color: #fff;
  border: none;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s;
}
.ship-submit-btn:hover { background: #333; }
.ship-form-success {
  background: var(--red);
  color: #fff;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 4px;
}
.ship-form-success h4 { font-size: 18px; margin-bottom: 8px; }

/* Video section */
.ship-video-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}
.ship-video-left {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ship-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.ship-video-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.72); z-index: 1;
}
.ship-video-text {
  position: relative; z-index: 2;
  padding: 48px;
}
.ship-video-text h3 {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 900; letter-spacing: 1px;
  text-transform: uppercase; color: #fff;
  line-height: 1.4;
}
.ship-video-right video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

@media (max-width: 760px) {
  .ship-services-grid { grid-template-columns: 1fr; }
  .ship-steps-grid { grid-template-columns: 1fr 1fr; }
  .ship-contact-panel { grid-template-columns: 1fr; }
  .ship-form { grid-template-columns: 1fr; padding: 32px 24px; }
  .ship-form-col:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 24px; margin-bottom: 24px; }
  .ship-video-section { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   TRACK SHIPMENT
   ══════════════════════════════════ */
.track-page-wrap {
  background: #fff;
  min-height: 60vh;
  padding: 56px 24px 80px;
}
.track-page-title {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.track-card {
  background: #fff;
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
  border-radius: 4px;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
.track-inner {
  background: var(--red);
  padding: 40px 48px 48px;
}
.track-subtitle {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
}
.track-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.track-inner form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.track-input {
  width: 100%;
  background: #fff;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: 15px;
  color: #111;
  border-radius: 2px;
}
.track-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 16px 56px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s;
}
.track-btn:hover { background: #333; }
.track-error-msg {
  padding: 20px 32px;
  background: #fff0f0;
  color: #c0392b;
  font-size: 14px;
  font-weight: 600;
  border-top: 3px solid #c0392b;
}
.track-result-box {
  padding: 32px 48px;
  background: #fff;
}
.track-result-box h3 {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 20px;
}
.track-result-table {
  width: 100%;
  border-collapse: collapse;
}
.track-result-table th,
.track-result-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  text-align: left;
}
.track-result-table th {
  color: #888;
  font-weight: 500;
  width: 180px;
}
.track-result-table td { font-weight: 600; color: #111; }
.track-status-badge {
  background: var(--red);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ══════════════════════════════════
   FINANCING
   ══════════════════════════════════ */
.fin-page {
  background: #fff;
  min-height: 80vh;
  padding: 48px 24px 80px;
}
.fin-title {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.fin-card {
  background: #fff;
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
  max-width: 900px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
}
.fin-calculator {
  background: var(--red);
  padding: 40px 48px 48px;
}
.fin-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  margin-bottom: 32px;
}
.fin-group { display: flex; flex-direction: column; gap: 6px; }
.fin-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.9);
}
.fin-group input {
  background: #fff;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 14px;
  color: #111;
  border-radius: 2px;
  width: 100%;
}
.fin-btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.fin-calc-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 18px 64px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s;
}
.fin-calc-btn:hover { background: #333; }
.fin-results-label {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 16px;
}
.fin-results { display: flex; flex-direction: column; gap: 8px; }
.fin-result-row {
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding: 18px 24px;
  border-radius: 2px;
  text-align: center;
}
.fin-result-row span { font-weight: 800; color: #111; }

/* ══════════════════════════════════
   ABOUT
   ══════════════════════════════════ */
/* ══════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════ */
.about-page-wrap {
  background: #fff;
  min-height: 80vh;
  padding: 48px 24px 80px;
}
.about-page-title {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 28px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.about-card {
  background: #fff;
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
  max-width: 960px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  padding: 40px 48px 56px;
}
.about-video-wrap {
  margin-bottom: 32px;
}
.about-video-wrap video {
  width: 100%;
  max-height: 400px;
  background: #000;
  display: block;
}
.about-body {}
.about-lead-text {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 28px;
}
.about-h2 {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #111;
  margin: 28px 0 12px;
}
.about-h3 {
  font-size: 17px;
  font-weight: 600;
  color: #222;
  margin: 24px 0 8px;
  font-style: italic;
}
.about-p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .about-card { padding: 24px 20px 36px; }
}

/* ══════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════ */
/* ══════════════════════════════════
   TESTIMONIALS PAGE
   ══════════════════════════════════ */
.testi-hero {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.testi-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.testi-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(100,10,10,0.72);
  z-index: 1;
}
.testi-hero-title {
  position: relative; z-index: 2;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fff;
}
.testi-page-wrap {
  background: #fff;
  padding: 48px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Full-width white background behind the cards */
.testi-page-bg {
  background: #fff;
}
.testi-full-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 32px 36px;
  border-radius: 2px;
}
.testi-full-name {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 8px;
}
.testi-red-line {
  width: 36px;
  height: 3px;
  background: var(--red);
  margin-bottom: 10px;
}
.testi-full-location {
  font-size: 13px;
  color: #888;
  font-style: italic;
  margin-bottom: 14px;
}
.testi-full-content {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
}

/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */

/* White nav bar above footer */
.footer-nav-bar {
  background: #fff;
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-nav-bar a {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #111;
  transition: color 0.2s;
}
.footer-nav-bar a:hover { color: var(--red); }

/* Black footer body */
.site-footer {
  background: #000;
  padding: 36px 24px 24px;
  text-align: center;
}
.footer-logo { margin-bottom: 20px; }
.footer-logo-img { max-height: 64px; margin: 0 auto; }
.footer-logo-text { font-size: 16px; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; color: #555; }
.footer-contact {
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-contact a { color: #555; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-contact .bull { color: #333; }
.footer-copy { font-size: 11px; color: #2a2a2a; letter-spacing: 1px; }
.footer-badge { margin-bottom: 16px; }
.footer-badge-img { max-height: 48px; margin: 0 auto; opacity: 0.7; }
.footer-badge-img:hover { opacity: 1; }


/* ══════════════════════════════════
   RESPONSIVE — TABLET (max 900px)
   ══════════════════════════════════ */
@media (max-width: 900px) {
  :root { --nav-h: 64px; }

  /* Header */
  .topbar { display: none; }
  .header-inner {
    grid-template-columns: 48px 1fr 48px;
    padding: 0 16px;
  }
  .main-nav-left, .main-nav-right { display: none; }
  .menu-toggle { display: flex; }
  .logo-center { grid-column: 2; }
  .logo-img { max-height: 52px; }

  /* Grids */
  .car-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .specs-and-cta { grid-template-columns: 1fr; }

  /* Home hero */
  .hero { min-height: 60vw; }

  /* Find car section */
  .find-car { height: 380px; }
  .find-car-inner { padding: 0 32px 48px; }

  /* Shipping banner */
  .shipping-banner { height: 320px; }
  .shipping-banner-inner { padding: 0 32px 40px; }

  /* Testimonials split */
  .testimonials-preview { grid-template-columns: 1fr; }
  .testi-right { min-height: 260px; }
  .testi-left { padding: 40px 32px; }

  /* Car detail */
  .cdet-main { grid-template-columns: 1fr; }
  .cdet-specs-col { position: static; border-left: none; border-top: 1px solid #eee; }
  .cdet-cta-row { grid-template-columns: 1fr 1fr; }
  .cdet-tabs { flex-wrap: wrap; }
  .cdet-tab { flex: none; width: 50%; }

  /* Contact page */
  .contact-layout { grid-template-columns: 1fr; }

  /* Inventory */
  .inventory-search-wrap { width: 95%; }

  /* Shipping page */
  .ship-steps-grid { grid-template-columns: 1fr 1fr; }
  .ship-contact-panel { grid-template-columns: 1fr; }
  .ship-form { grid-template-columns: 1fr; padding: 28px 20px; }
  .ship-form-col:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 24px; margin-bottom: 24px; }
  .ship-video-section { grid-template-columns: 1fr; }

  /* Footer */
  .footer-nav-bar { gap: 24px; flex-wrap: wrap; justify-content: center; }
}

/* ══════════════════════════════════
   RESPONSIVE — MOBILE (max 600px)
   ══════════════════════════════════ */
@media (max-width: 600px) {
  :root { --nav-h: 56px; }

  /* Header */
  .logo-img { max-height: 44px; }
  .header-inner { grid-template-columns: 40px 1fr 40px; padding: 0 12px; }

  /* Grids → single column */
  .car-grid { grid-template-columns: 1fr; }

  /* Hero */
  .hero { min-height: 72vw; }
  .hero-h1 { font-size: 14px; letter-spacing: 2px; }
  .hero-h1.accent { font-size: clamp(28px, 8vw, 48px); }
  .hero-content .btn { padding: 14px 40px; font-size: 12px; }

  /* Find car */
  .find-car { height: 300px; }
  .find-car-inner { padding: 0 24px 40px; }
  .find-title-big { font-size: clamp(40px, 12vw, 60px); }
  .find-title-small { font-size: 14px; }

  /* Shipping banner */
  .shipping-banner { height: 240px; }
  .ship-title-big { font-size: clamp(28px, 8vw, 48px); }
  .ship-title-small { font-size: 12px; letter-spacing: 1px; }
  .shipping-banner-inner { padding: 0 24px 32px; max-width: 100%; }

  /* Location banner */
  .location-banner { padding: 64px 20px; }
  .loc-name { font-size: clamp(28px, 8vw, 48px); }
  .location-actions { flex-direction: column; align-items: center; gap: 12px; }
  .location-actions .btn-phone,
  .location-actions .btn-contact { width: 100%; max-width: 300px; justify-content: center; }

  /* Testimonials */
  .testi-left { padding: 32px 20px; }
  .testi-left h3 { font-size: 32px; }

  /* Recent cars heading */
  .recent-cars { padding: 40px 0 56px; }
  .recent-cars-heading span { font-size: 12px; padding: 8px 20px; letter-spacing: 3px; }

  /* Car detail */
  .cdet-title-row { padding: 14px 16px 10px; }
  .cdet-title-row h1 { font-size: 16px; letter-spacing: 0.5px; }
  .cdet-cta-row { grid-template-columns: 1fr 1fr; gap: 6px; padding: 0 12px 12px; }
  .cdet-btn-call, .cdet-btn-email { font-size: 11px; padding: 10px 6px; }
  .cdet-price-box { font-size: 24px; margin: 12px; padding: 14px 16px; }
  .cdet-spec-card { padding: 12px 16px; }
  .cdet-tab { font-size: 10px; letter-spacing: 1px; padding: 12px 4px; }
  .cdet-description-inner { padding: 20px 16px; }
  .cdet-description-inner p { font-size: 13px; }
  .cdet-msg-title { font-size: clamp(28px, 10vw, 52px); }
  .cdet-form-row { grid-template-columns: 1fr; }
  .cdet-message-us { padding: 44px 16px; }

  /* Inventory page */
  .inventory-hero-content h1 { font-size: 36px; letter-spacing: 3px; }
  .inventory-search-form { height: 48px; }
  .inv-reset-btn { padding: 0 14px; font-size: 11px; letter-spacing: 1px; }

  /* Track page */
  .track-card { margin: 0 8px; }
  .track-inner { padding: 28px 20px 32px; }
  .track-result-box { padding: 20px 16px; }
  .track-result-table th { width: 120px; font-size: 12px; }

  /* Contact page */
  .contact-page-wrap { padding: 32px 16px 60px; }
  .contact-right-panel { padding: 24px 16px; }
  .contact-hours-table td { font-size: 12px; }

  /* About page */
  .about-card { padding: 20px 16px 32px; }

  /* Testimonials page */
  .testi-page-wrap { padding: 32px 12px 60px; }
  .testi-full-card { padding: 24px 20px; }

  /* Financing */
  .fin-card { margin: 0 8px; }
  .fin-calculator { padding: 28px 20px 36px; }
  .fin-inputs { grid-template-columns: 1fr; gap: 12px; }

  /* Shipping page */
  .ship-steps-grid { grid-template-columns: 1fr; }
  .ship-services-grid { grid-template-columns: 1fr; }
  .ship-hero { height: 200px; }

  /* Footer */
  .footer-nav-bar { gap: 12px; padding: 16px 12px; }
  .footer-nav-bar a { font-size: 11px; letter-spacing: 1.5px; }
  .footer-contact { flex-direction: column; gap: 4px; }
  .footer-contact .bull { display: none; }

  /* Containers */
  .container { padding: 0 16px; }
}

/* ── Hamburger → X animation ── */
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }



/* ══════════════════════════════════
   FOOTER BADGE
   ══════════════════════════════════ */
.footer-badge { margin-bottom: 20px; }
.footer-badge-img { max-height: 56px; margin: 0 auto; opacity: 0.8; }
.footer-badge-img:hover { opacity: 1; }

/* ══════════════════════════════════
   FINANCING — inline placeholder style
   ══════════════════════════════════ */
.calc-form .calc-group { margin-bottom: 0; }
.calc-form .calc-group input {
  background: #111;
  border: 1px solid #2a2a2a;
  color: #fff;
  padding: 14px 16px;
  font-size: 14px;
  width: 100%;
  display: block;
}
.calc-form .calc-group input::placeholder { color: #666; }
.calc-form .calc-group input:focus { outline: none; border-color: #fff; }
.calc-result-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 14px;
  color: #ccc;
}
.calc-result-row span:last-child { font-weight: 700; color: #fff; }

/* ══════════════════════════════════

