@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=DM+Sans:wght@300;400;500;600&family=Oswald:wght@400;500;600;700&display=swap');

/* ── ROOT VARIABLES ── */
:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2e45;
  --navy-light: #243b55;
  --silver: #c0c0c0;
  --chrome: #8a9bb0;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --accent: #b8960c;
  --accent-lt: #e8c547;
  --red: #dc2626;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.10), 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Montserrat', sans-serif;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--gray-800);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 2px solid rgba(192, 192, 192, 0.18);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-logo {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--silver);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links li a {
  display: block;
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-links li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links li a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(192, 192, 192, 0.25);
}

.nav-cta {
  background: var(--silver) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  padding: 0.55rem 1.3rem !important;
  box-shadow: none !important;
}

.nav-cta:hover {
  background: #d8d8d8 !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  border-radius: 6px;
  transition: background var(--transition);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.75rem 1.5rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.7rem 0;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--transition);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: #fff;
}

.mobile-bottom-nav {
  display: none;
  background: #000;
  border-top: none;
  position: relative;
}

.mobile-bottom-nav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -2px;
  height: 2px;
  background: #000;
}

/* Remove any stray line/gap above the mobile bottom nav */
@media (max-width: 768px) {
  .mobile-bottom-nav {
    margin-top: 0 !important;
  }

  .mobile-bottom-nav::before {
    top: -6px;
    height: 6px;
  }

  .site-footer .footer-bottom {
    border-top: none !important;
    box-shadow: none !important;
  }

  body {
    padding-bottom: 0 !important;
  }

  .site-footer {
    padding-bottom: 78px !important;
  }
}

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  min-height: 42px;
  color: #fff;
}

.mobile-bottom-nav .mbn-icon {
  font-size: 1.05rem;
  line-height: 1;
  color: #fff !important;
}

.mobile-bottom-nav .mbn-label {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
  line-height: 1;
  color: #fff !important;
}

.mobile-bottom-nav a.active {
  color: #fff;
}

/* Navbar desktop look (matches reference) */
.navbar {
  overflow: visible;
}

.navbar .nav-inner {
  height: 72px;
  padding: 0 1.75rem;
}

.navbar .brand {
  gap: 0.5rem;
  align-items: center;
}

.navbar .logo-img {
  height: 112px;
  width: auto;
  margin-top: 0;
  transform: translateY(24px);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.navbar .brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #fff;
  line-height: 1;
}

.navbar .brand-sub {
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  color: #b8c0cb;
  line-height: 1.1;
}

.navbar .nav-links {
  gap: 0.35rem;
}

.navbar .nav-links li a {
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78);
}

.navbar .nav-links li a.active {
  background: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 0 0 1px rgba(192, 192, 192, 0.33);
}

.navbar .nav-cta {
  border-radius: 10px;
  padding: 0.66rem 1.5rem !important;
}

/* Footer logo uses the same badge style and stays clearly visible */
.site-footer .brand {
  align-items: center;
  gap: 0.55rem;
}

.site-footer .logo-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-top: 2px;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
}

.site-footer .brand-name {
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.site-footer .brand-sub {
  letter-spacing: 0.06em;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url('https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?w=1600');
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  text-align: center;
  color: white;

  background:
    linear-gradient(rgba(10, 31, 68, 0.65), rgba(10, 31, 68, 0.65)),
    url('https://static.vecteezy.com/system/resources/thumbnails/055/947/041/small/a-black-sports-car-is-parked-in-a-showroom-photo.jpeg') center/cover no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(192, 192, 192, 0.08) 0%, transparent 65%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid rgba(192, 192, 192, 0.3);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.hero-divider {
  width: 48px;
  height: 3px;
  margin: 1.1rem auto;
  background: linear-gradient(90deg, var(--silver), rgba(192, 192, 192, 0.2));
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

/* Page Hero Mobile Adjustments */
@media (max-width: 768px) {
  .page-hero {
    padding: 100px 15px;
  }
  .page-hero h1 {
    font-size: 2.22rem;
    margin-bottom: 0.5rem;
  }
  .page-hero-eyebrow {
    margin-bottom: 0.8rem;
    padding: 0.25rem 0.8rem;
    font-size: 0.6rem;
  }
  .hero-divider {
    margin: 0.8rem auto;
  }
}


/* ── SECTIONS ── */
.section {
  max-width: 1260px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--gray-600);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--silver);
  color: var(--navy);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), transform var(--transition);
}

.btn-secondary:hover {
  background: #d0d0d0;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy);
  padding: 0.8rem 1.9rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--navy);
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  padding: 0.8rem 1.9rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ── CAR CARDS ── */
.car-grid {
  display: grid;
  gap: 1.5rem;
}

.car-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.car-grid-2 {
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
}

/* ── MOBILE SLIDER (Unified) ── */
@media (max-width: 768px) {
  .mobile-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 2rem;
  }
  .mobile-slider-grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 1rem !important;
    padding: 0 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: stretch;
  }
  .mobile-slider-grid::-webkit-scrollbar {
    display: none;
  }
  .mobile-slider-grid .car-card {
    flex: 0 0 85% !important;
    scroll-snap-align: center;
    margin-bottom: 0 !important;
    height: auto;
  }
  .slider-arrow {
    position: absolute;
    top: 115px; /* Aligns with the vertical center of the 230px image height */
    transform: translateY(-50%);
    background: var(--navy);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    color: #ffffff;
    cursor: pointer;
    border: 1.5px solid rgba(192, 192, 192, 0.4);
    transition: transform 0.2s, background 0.2s;
  }
  .slider-arrow:active { transform: translateY(-50%) scale(0.9); }
  .slider-arrow.arrow-left { left: 8px; }
  .slider-arrow.arrow-right { right: 8px; }

  /* Inner Image Arrows (Switching between pics of the SAME car) */
  .img-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    font-size: 1rem;
    transition: all 0.2s;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.3);
  }
  .img-nav-arrow:hover { background: rgba(0, 0, 0, 0.85); }
  .img-nav-arrow:active { scale: 0.95; }
  .img-nav-prev { left: 10px; }
  .img-nav-next { right: 10px; }
}

/* ── PAGINATION ── */
.pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
  padding-bottom: 2rem;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  padding: 0.6rem;
  border-radius: 50px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.pag-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all 0.25s ease;
  border: 1.5px solid transparent;
}

.pag-link:hover {
  background: var(--gray-100);
  color: var(--navy);
}

.pag-link.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(13, 27, 42, 0.3);
}

.pag-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.2rem;
  height: 42px;
  background: var(--gray-50);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.25s ease;
  border: 1.5px solid var(--gray-200);
}

.pag-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.pag-btn i {
  font-size: 0.65rem;
}

@media (max-width: 768px) {
  .pagination-wrap {
    display: none;
  }
}

@media (min-width: 769px) {
  .slider-arrow, .img-nav-arrow { display: none !important; }
}

.car-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition), transform var(--transition);
}

.car-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.car-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.car-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.car-card:hover .car-card-img {
  transform: scale(1.06);
}

.car-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.car-badge.new,
.car-badge.available {
  background: #6b7280;
  /* Professional UI Blue */
  color: #ffffff;
  border: none;
}

.car-badge.sale {
  background: #f59e0b;
  /* UI Amber */
  color: #ffffff;
}

.car-badge.used,
.car-badge.sold {
  background: #6b7280;
  /* Neutral UI Gray (Standard for Sold/Inactive) */
  color: #ffffff;
  border: none;
}

.car-card-body {
  padding: 1.4rem 1.5rem 1.5rem;
}

.car-make {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.car-name-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.car-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 0;
}

.car-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: #caa14a;
  white-space: nowrap;
  flex-shrink: 0;
}

.car-year {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin: 0.5rem 0 1rem;
}

.car-specs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid var(--gray-100);
  margin-top: 0.75rem;
  padding-top: 0.85rem;
}

.car-spec {
  flex: 1;
  min-width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem 0.3rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-600);
  border-right: 1px solid var(--gray-100);
}

.car-spec:last-child {
  border-right: none;
}

.car-spec-icon {
  font-size: 0.9rem;
  color: var(--navy);
}

.car-btn {
  display: block;
  width: 100%;
  margin-top: 1.1rem;
  padding: 0.7rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  transition: all var(--transition);
}

.car-btn:hover {
  background: var(--navy);
  color: #fff;
}

.car-card-btns {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.car-card-btns .car-btn {
  flex: 1;
  margin-top: 0;
  padding: 0.65rem 0.4rem;
  font-size: 0.75rem;
}

.car-card-btns .car-btn-images {
  background: var(--gray-100);
  border-color: var(--gray-200);
  color: var(--gray-800);
}

.car-card-btns .car-btn-images:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  max-width: 220px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
  display: block;
}

.stat-num span {
  color: var(--silver);
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  display: block;
  margin-top: 0.35rem;
}

/* ── FILTER TABS ── */
.filter-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 2.5rem;
}

.filter-tab {
  padding: 0.6rem 1.4rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}

.filter-tab.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.filter-tab:hover:not(.active) {
  color: var(--gray-800);
}

/* ── TYPE CARDS ── */
.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.type-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.type-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.type-icon {
  width: 52px;
  height: 52px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.4rem;
  transition: background var(--transition);
}

.type-card:hover .type-icon {
  background: var(--navy);
}

.type-card:hover .type-icon span {
  filter: invert(1);
}

.type-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ── TRUST POINTS ── */
.trust-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-dot {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.trust-item h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.trust-item p {
  font-size: 0.84rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(192, 192, 192, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.cta-band p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 1;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  border-top: 3px solid rgba(192, 192, 192, 0.15);
  padding: 4rem 1.5rem 1.5rem;
}

.footer-grid {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
}

.footer-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--chrome);
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-social {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 700;
  transition: all var(--transition);
}

.footer-social:hover {
  background: var(--silver);
  color: var(--navy);
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.1rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.55rem;
  transition: color var(--transition);
  line-height: 1.5;
}

.footer-col a:hover {
  color: #fff;
}

.footer-email-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  outline: none;
  margin-bottom: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color var(--transition);
}

.footer-email-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-email-input:focus {
  border-color: rgba(192, 192, 192, 0.4);
}

.footer-sub-btn {
  width: 100%;
  background: var(--silver);
  color: var(--navy);
  padding: 0.65rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--transition);
}

.footer-sub-btn:hover {
  background: #d8d8d8;
}

.footer-bottom {
  max-width: 1260px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}

/* ── SECTION BG ALTERNATES ── */
.bg-light {
  background: var(--gray-50);
}

.bg-white {
  background: var(--white);
}

.bg-navy {
  background: var(--navy);
}

/* ── SIDEBAR FILTER (Our Vehicles) ── */
.inv-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.filter-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 86px;
}

.filter-panel-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--gray-100);
}

.filter-group {
  margin-bottom: 1.4rem;
}

.filter-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.45rem;
}

.filter-select,
.filter-input {
  width: 100%;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-800);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  transition: border-color var(--transition);
}

.filter-select:focus,
.filter-input:focus {
  border-color: var(--navy);
}

.check-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  cursor: pointer;
}

.check-label input {
  accent-color: var(--navy);
  width: 15px;
  height: 15px;
}

.filter-apply-btn {
  width: 100%;
  margin-top: 0.5rem;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background var(--transition);
}

.filter-apply-btn:hover {
  background: var(--navy-mid);
}

.inv-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.inv-count {
  font-size: 0.85rem;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

/* ── SERVICES ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.svc-icon {
  font-size: 1.8rem;
  margin-bottom: 0.85rem;
}

.svc-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.svc-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1.3rem;
}

.svc-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1.5px solid var(--navy);
  transition: gap var(--transition), color var(--transition);
}

.svc-link:hover {
  gap: 0.7rem;
  color: var(--navy-mid);
}

/* ── PROCESS STEPS ── */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 2rem;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--gray-200));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 0 0 6px var(--white), 0 0 0 8px var(--gray-200);
}

.step-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── ABOUT ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.milestones {
  display: flex;
  gap: 2.5rem;
  margin: 1.5rem 0 2rem;
  flex-wrap: wrap;
}

.milestone-item {
  display: flex;
  flex-direction: column;
}

.milestone-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
}

.milestone-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 0.2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.value-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.value-desc {
  font-size: 0.83rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.team-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.team-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.78rem;
  color: var(--gray-400);
  letter-spacing: 0.06em;
}

.cert-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cert-badge {
  padding: 0.65rem 1.5rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-600);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.cert-badge:hover {
  border-color: var(--navy);
  color: var(--navy);
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-800);
  padding: 0.72rem 0.95rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  transition: border-color var(--transition), background var(--transition);
}

.form-control:focus {
  border-color: var(--navy);
  background: var(--white);
}

.form-control::placeholder {
  color: var(--gray-400);
}

.form-textarea {
  height: 130px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  border: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  box-shadow: var(--shadow);
}

.form-submit:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.info-icon-wrap {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}

.info-label-sm {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.2rem;
}

.info-val {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}

.map-box {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.map-box:hover {
  border-color: var(--navy);
}

.map-box-icon {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.map-box-txt {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
}

.map-embed {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  height: 260px;
  overflow: hidden;
  margin-top: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .inv-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-track::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
  }

  .navbar .nav-inner {
    height: 62px;
    padding: 0 0.75rem;
    justify-content: flex-start;
  }

  /* Navbar Brand */
  .navbar .brand {
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }

  .navbar .brand-text {
    margin-left: -4px;
  }

  /* Logo */
  .navbar .logo-img {
    height: 80px;
    /* logo bigger */
    margin-top: -15px;
    /* half outside navbar */
    transform: none;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.4)) contrast(1.1);
  }

  /* Brand Name */
  .navbar .brand-name {
    font-size: 1.4rem;
    /* bigger text */
    letter-spacing: 0.08em;
    line-height: 1;
    font-weight: 700;
  }

  /* Brand Sub Text */
  .navbar .brand-sub {
    font-size: 0.65rem;
    letter-spacing: 0.07em;
    line-height: 1.2;
  }

  @media (max-width:768px) {

    .navbar .logo-img {
      height: 120px;
      margin-top: 40px;
      transform: translateY(px);
    }

    .navbar .brand-name {
      font-size: 1.5rem;
    }

    .navbar .brand-sub {
      font-size: 0.7rem;
    }

  }

  .hamburger {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1400;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #000;
    border-top: none;
    box-shadow: 0 -8px 22px rgba(0, 0, 0, 0.35);
    padding: 0.5rem 0.2rem 0.6rem;
  }

  body {
    padding-bottom: 78px;
  }

  .nav-links {
    display: none;
  }

  .mobile-bottom-nav a {
    color: #fff;
  }

  .mobile-bottom-nav .mbn-icon i {
    color: #fff !important;
  }

  .whatsapp-btn {
    bottom: 96px;
    right: 14px;
    width: 58px;
    height: 58px;
    font-size: 26px;
    border-width: 3px;
  }

  .sold-section .car-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 0 0 0.8rem;
  }

  .sold-section .car-grid::-webkit-scrollbar {
    display: none;
  }

  .sold-section .car-card.sold {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .car-grid-3,
  .car-grid-2 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    padding-bottom: 0.9rem;
  }

  .footer-grid> :first-child {
    grid-column: 1 / -1;
  }

  .footer-grid>.footer-desc {
    grid-column: 1 / -1;
    margin-top: 0.2rem;
  }

  .site-footer {
    padding: 1rem 0.85rem 0.85rem;
  }

  .site-footer .brand {
    gap: 0.55rem;
    align-items: center;
  }

  .site-footer .logo-img {
    width: 58px;
    height: 58px;
    margin-top: 0;
    object-fit: contain;
    flex: 0 0 auto;
  }

  .site-footer .brand-name {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .site-footer .brand-sub {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    margin-top: 1px;
  }

  .footer-col h4 {
    margin-bottom: 0.55rem;
    font-size: 0.66rem;
  }

  .footer-col a,
  .footer-col p {
    font-size: 0.74rem;
    margin-bottom: 0.3rem;
    line-height: 1.3;
  }

  .footer-desc {
    font-size: 0.74rem;
    line-height: 1.4;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .stat-item {
    min-width: 50%;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .site-footer .logo-img {
    width: 54px;
    height: 54px;
  }

  .site-footer .brand-name {
    font-size: 0.92rem;
    letter-spacing: 0.08em;
  }

  .site-footer .brand-sub {
    font-size: 0.54rem;
    letter-spacing: 0.06em;
  }

  .site-footer {
    padding: 0.95rem 0.8rem 0.78rem;
  }

  .footer-col h4 {
    font-size: 0.62rem;
    margin-bottom: 0.45rem;
  }

  .footer-col a,
  .footer-col p {
    font-size: 0.7rem;
    margin-bottom: 0.25rem;
    line-height: 1.25;
  }

  .footer-bottom {
    font-size: 0.66rem;
    margin-top: 0.75rem;
  }

  .sold-section .car-card.sold {
    flex-basis: 88%;
    min-width: 245px;
  }

  .type-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .milestones {
    gap: 1.5rem;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  /* logo & text space */
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
}

.brand-sub {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #aaa;
}

.logo-container {
  display: flex;
  align-items: center;

}

.logo-container .logo-img {
  height: 140px;
  width: auto;
  margin-top: 50px;
}

.logo-text h1 {
  font-size: 2px;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
  /* White */
  letter-spacing: 2px;
}

.logo-text p {
  font-size: 14px;
  margin: 0;
  color: #b0b0b0;
  /* Light grey */
  letter-spacing: 3px;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  border: 4px solid #ffffff;
  /* 👈 white border like screenshot */
  z-index: 1501;
  transition: all 0.3s ease;
  animation: whatsapp-bounce 1.8s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  animation-play-state: paused;
}

@keyframes whatsapp-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.car-card {
  transition: 0.3s ease;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.car-btn {
  transition: 0.3s;
}

.car-btn:hover {
  background: black;
  color: white;
}

.car-card-img-wrap {
  overflow: hidden;
}

.car-card-img {
  transition: 0.4s ease;
}

.car-card:hover .car-card-img {
  transform: scale(1.05);
}

.car-card {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Sold Section */
.sold-section {
  background: #f8f8f8;
  padding: 60px 0;
}

.car-card.sold {
  opacity: 0.85;
  position: relative;
}

.sold-badge {
  background: #c0392b;
  color: #fff;
}

.car-card.sold .car-btn {
  display: block;
  opacity: 0.75;
}

.car-card.sold .sold-view-btn {
  display: none !important;
}

.sold-img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  cursor: pointer;
}

.sold-img-prev {
  left: 10px;
}

.sold-img-next {
  right: 10px;
}

.sold-img-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* ═══════════════════════════════════════════════════════
   Bro Cars UK — Car Details Modal + Image Gallery CSS
   Paste this into your styles.css file
   ═══════════════════════════════════════════════════════ */

/* ── Overlay ────────────────────────────────────────── */
.bcm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  /* drawer slides from bottom */
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.bcm-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Drawer ─────────────────────────────────────────── */
.bcm-drawer {
  background: #fff;
  width: 100%;
  max-width: 1060px;
  max-height: 92vh;
  border-radius: 20px 20px 0 0;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(60px);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  scroll-behavior: smooth;
}

.bcm-overlay.open .bcm-drawer {
  transform: translateY(0);
}

/* ── Close button ───────────────────────────────────── */
.bcm-close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  transition: background 0.2s, transform 0.2s;
}

.bcm-close:hover {
  background: #1a1a2e;
  color: #fff;
  transform: rotate(90deg) scale(1.1);
}

/* ── Gallery side ───────────────────────────────────── */
.bcm-gallery {
  background: #0d0d14;
  border-radius: 20px 0 0 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 0;
  align-self: start;
}

.bcm-main-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1a1a2e;
}

.bcm-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.18s ease;
  display: block;
}

/* Nav arrows */
.bcm-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.bcm-nav:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-50%) scale(1.1);
}

.bcm-prev {
  left: 10px;
}

.bcm-next {
  right: 10px;
}

/* Counter */
.bcm-img-counter {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 20px;
}

/* Thumbnails */
.bcm-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.bcm-thumbs::-webkit-scrollbar {
  display: none;
}

.bcm-thumb {
  width: 72px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}

.bcm-thumb:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

.bcm-thumb.active {
  border-color: #c9a84c;
  opacity: 1;
}

/* ── Details side ───────────────────────────────────── */
.bcm-details {
  padding: 32px 30px 32px 26px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bcm-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.bcm-make {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a84c;
}

.bcm-name {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0d0d14;
  line-height: 1.15;
  font-family: 'Montserrat', sans-serif;
}

.bcm-price-wrap {
  text-align: right;
  flex-shrink: 0;
}

.bcm-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1a1a2e;
  font-family: 'Montserrat', sans-serif;
}

.bcm-badge-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.badge-new {
  background: #1a1a2e;
  color: #fff;
}

.badge-sale {
  background: #c9a84c;
  color: #fff;
}

.badge-used {
  background: #666;
  color: #fff;
}

/* Quick specs grid */
.bcm-quick-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #f5f5f8;
  border-radius: 14px;
  padding: 16px;
}

.bcm-spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bcm-spec-icon {
  font-size: 1.1rem;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.bcm-spec-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.bcm-spec-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
}

.bcm-spec-val {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a2e;
}

/* Section title */
.bcm-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a84c;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
}

.bcm-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Features list */
.bcm-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.bcm-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  color: #333;
  font-weight: 500;
}

.bcm-check {
  color: #c9a84c;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Action buttons */
.bcm-actions {
  display: flex;
  gap: 12px;
  padding-top: 4px;
}

.bcm-btn-primary {
  flex: 1;
  background: #1a1a2e;
  color: #fff;
  text-align: center;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}

.bcm-btn-primary:hover {
  background: #c9a84c;
  transform: translateY(-2px);
}

.bcm-btn-secondary {
  flex: 1;
  background: transparent;
  color: #1a1a2e;
  text-align: center;
  padding: 13px 20px;
  border-radius: 10px;
  border: 2px solid #1a1a2e;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.bcm-btn-secondary:hover {
  border-color: #c9a84c;
  color: #c9a84c;
  transform: translateY(-2px);
}

/* ── Mobile ─────────────────────────────────────────── */
@media (max-width: 720px) {
  .bcm-drawer {
    grid-template-columns: 1fr;
    border-radius: 18px 18px 0 0;
    max-height: 96vh;
  }

  .bcm-gallery {
    border-radius: 18px 18px 0 0;
    position: static;
    padding: 16px;
  }

  .bcm-details {
    padding: 20px 18px 24px;
  }

  .bcm-features {
    grid-template-columns: 1fr;
  }

  .bcm-actions {
    flex-direction: column;
  }

  .bcm-name {
    font-size: 1.35rem;
  }

  .bcm-price {
    font-size: 1.2rem;
  }
}

.car-card-img-wrap {
  position: relative;
}

.car-card-img {
  width: 100%;
  filter: brightness(0.5) grayscale(40%);
}

.sold-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  font-size: 55px;
  font-weight: 800;
  color: red;
  border: 4px solid red;
  padding: 8px 25px;
}

/* CAR DETAILS MODAL */
.bcm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  z-index: 9999;
}

/* MAIN MODAL */
.bcm-drawer {
  width: 100%;
  max-width: 1100px;
  height: 90vh;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* LEFT IMAGE AREA */
.bcm-gallery {
  background: #000;
  display: flex;
  flex-direction: column;
}

.bcm-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* THUMBNAILS */
.bcm-thumbs {
  display: flex;
  gap: 6px;
  padding: 8px;
  overflow-x: auto;
  background: #111;
}

.bcm-thumb {
  width: 70px;
  height: 55px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.7;
}

.bcm-thumb.active {
  opacity: 1;
  border: 2px solid white;
}

/* RIGHT DETAILS */
.bcm-details {
  padding: 28px;
  overflow-y: auto;
}

/* CLOSE BUTTON */
.bcm-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* MOBILE RESPONSIVE */
@media (max-width:768px) {

  .bcm-overlay {
    padding: 0;
  }

  .bcm-drawer {
    grid-template-columns: 1fr;
    height: 100vh;
    border-radius: 0;
  }

  .bcm-gallery {
    height: 28vh;
    min-height: 180px;
    max-height: 210px;
  }

  .bcm-main-img-wrap {
    aspect-ratio: 16/9;
    max-height: 180px;
  }

  .bcm-main-img {
    height: 180px;
    object-fit: cover;
  }

  .bcm-thumbs {
    padding: 6px;
    gap: 5px;
  }

  .bcm-thumb {
    width: 52px;
    height: 38px;
  }

  .bcm-details {
    padding: 14px 14px 18px;
  }

}

/* Final navbar overrides */
@media (min-width: 769px) {
  .navbar .brand {
    gap: 0.25rem;
  }

  .navbar .logo-img {
    height: 124px;
  }
}

@media (max-width: 768px) {
  .navbar .nav-inner {
    justify-content: space-between;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .mobile-bottom-nav {
    display: grid !important;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.open {
    display: block !important;
  }
}

.navbar .brand-name {
  letter-spacing: 0.02em !important;
}

@media (max-width: 768px) {

  #homeGrid,
  #invGrid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 0 0 0.8rem !important;
  }

  #homeGrid::-webkit-scrollbar,
  #invGrid::-webkit-scrollbar {
    display: none;
  }

  #homeGrid .car-card,
  #invGrid .car-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

.inv-layout.inv-layout-full {
  grid-template-columns: 1fr;
}

@media (max-width: 768px) {
  .bcm-overlay {
    align-items: center !important;
    padding: 12px !important;
    background: rgba(8, 12, 18, 0.78) !important;
    backdrop-filter: blur(7px) !important;
    -webkit-backdrop-filter: blur(7px) !important;
  }

  .bcm-drawer {
    width: min(96vw, 560px) !important;
    max-height: 92vh !important;
    height: auto !important;
    grid-template-columns: 1fr !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  .bcm-gallery {
    border-radius: 20px 20px 0 0 !important;
    background: linear-gradient(180deg, #0f1724 0%, #060b13 100%) !important;
    padding: 14px !important;
    gap: 12px !important;
  }

  .bcm-main-img-wrap {
    aspect-ratio: 4 / 3 !important;
    max-height: none !important;
    border-radius: 12px !important;
    background: #0b1220 !important;
  }

  .bcm-main-img {
    object-fit: cover !important;
  }

  .bcm-nav {
    width: 38px !important;
    height: 38px !important;
    background: rgba(255, 255, 255, 0.18) !important;
    border: 1px solid rgba(255, 255, 255, 0.32) !important;
  }

  .bcm-close {
    top: 12px !important;
    right: 12px !important;
    width: 38px !important;
    height: 38px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background: rgba(8, 14, 24, 0.75) !important;
    color: #fff !important;
  }

  .bcm-thumbs {
    gap: 8px !important;
    padding: 2px 0 4px !important;
  }

  .bcm-thumb {
    width: 72px !important;
    height: 52px !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
  }

  .bcm-details {
    padding: 18px 16px 20px !important;
    max-height: 42vh !important;
  }
}

/* Mobile modal refinement */
@media (max-width: 768px) {
  .bcm-overlay {
    padding: 8px !important;
  }

  .bcm-drawer {
    width: 92vw !important;
    max-height: 96vh !important;
    border-radius: 16px !important;
    overflow-y: auto !important;
  }

  .bcm-gallery {
    padding: 10px !important;
    gap: 8px !important;
  }

  .bcm-main-img-wrap {
    aspect-ratio: 16 / 10 !important;
    border-radius: 10px !important;
    width: 92% !important;
    margin: 0 auto !important;
  }

  .bcm-thumb {
    width: 64px !important;
    height: 44px !important;
  }

  .bcm-details {
    padding: 14px 12px 16px !important;
    max-height: none !important;
    overflow: visible !important;
    gap: 12px !important;
  }

  .bcm-name {
    font-size: 1.15rem !important;
    line-height: 1.2 !important;
  }

  .bcm-price {
    font-size: 1.05rem !important;
  }

  .bcm-features {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  .bcm-feature-item {
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
  }

  .bcm-quick-specs:empty {
    display: none !important;
  }
}

/* Mobile image clarity boost */
@media (max-width: 768px) {
  .bcm-main-img-wrap {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
  }

  .bcm-main-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    image-rendering: auto;
  }
}

/* Popup look to match reference (mobile) */
@media (max-width: 768px) {
  .bcm-overlay {
    background: rgba(8, 8, 10, 0.88) !important;
    backdrop-filter: blur(6px) !important;
  }

  .bcm-drawer {
    width: 88vw !important;
    max-height: 92vh !important;
    border-radius: 18px !important;
    background: #101113 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55) !important;
  }

  .bcm-gallery {
    padding: 12px 12px 6px !important;
    background: transparent !important;
  }

  .bcm-main-img-wrap {
    aspect-ratio: 4 / 3 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  .bcm-close {
    width: 34px !important;
    height: 34px !important;
    top: 10px !important;
    right: 10px !important;
    background: rgba(30, 30, 30, 0.9) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45) !important;
  }

  .bcm-details {
    background: #101113 !important;
    color: #f2f2f2 !important;
    padding: 14px 14px 18px !important;
    gap: 10px !important;
  }

  .bcm-make {
    color: #a5a7ad !important;
    letter-spacing: 0.08em !important;
    font-size: 0.6rem !important;
  }

  .bcm-name {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
  }

  .bcm-price {
    color: #ffffff !important;
    font-weight: 700 !important;
  }

  .bcm-badge-tag {
    background: #1aa872 !important;
    color: #ffffff !important;
    font-size: 0.55rem !important;
  }

  .bcm-quick-specs {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .bcm-spec-item {
    background: #17181b !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    padding: 10px 12px !important;
  }

  .bcm-spec-label {
    color: #9aa0a6 !important;
    font-size: 0.58rem !important;
  }

  .bcm-spec-val {
    color: #f2f2f2 !important;
    font-size: 0.78rem !important;
  }

  .bcm-section-title {
    color: #d7d7d7 !important;
  }

  .bcm-desc {
    color: #c6c6c6 !important;
  }

  .bcm-features {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .bcm-feature-item {
    background: #17181b !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    padding: 8px 10px !important;
    color: #e8e8e8 !important;
  }

  .bcm-check {
    color: #1aa872 !important;
  }

  .bcm-thumbs {
    display: none !important;
  }
}

/* ── SEO Section ── */
.seo-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.seo-section .seo-inner {
  max-width: 860px;
  margin: 0 auto;
}
.seo-section .seo-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.seo-section .seo-text {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.seo-section .seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.seo-section .seo-tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-transform: uppercase;
}
