/* ═══════════════════════════════════════════════════
   BALA AUTOMOBILE VENTURES – LUXURY AUTOMOTIVE CSS
   Mobile-First, Dark Theme, Red Accents
═══════════════════════════════════════════════════ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #D32F2F;
  --red-dark: #B71C1C;
  --red-glow: rgba(211,47,47,0.35);
  --black:    #0A0A0A;
  --bg:       #111111;
  --bg2:      #181818;
  --bg3:      #1E1E1E;
  --card:     #161616;
  --border:   rgba(255,255,255,0.07);
  --white:    #FFFFFF;
  --grey:     #9E9E9E;
  --light:    #F0F0F0;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Montserrat', sans-serif;
  --font-serif:   'Playfair Display', serif;

  --nav-h:   68px;
  --radius:  14px;
  --radius-sm: 8px;
  --shadow:  0 8px 32px rgba(0,0,0,0.55);
  --shadow-red: 0 0 24px rgba(211,47,47,0.25);
  --trans:   0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  padding-bottom: 72px; /* mobile bottom nav space */
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.red { color: var(--red); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding: 0 20px; max-width: 1280px; margin: 0 auto;
}
.logo {
  font-family: var(--font-body); font-weight: 800; font-size: clamp(14px,4vw,18px);
  letter-spacing: 0.5px; display: flex; gap: 5px; align-items: center;
}
.logo-bala    { color: var(--white); }
.logo-red     { color: var(--red); }
.logo-ventures{ color: var(--white); }

.nav-links { display: none; gap: 36px; align-items: center; }
.nav-links.open {
  display: flex; flex-direction: column; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(20px);
  justify-content: center; align-items: center; gap: 48px; z-index: 999;
  animation: menuFadeIn 0.3s ease;
}
@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-link {
  font-size: 15px; font-weight: 500; letter-spacing: 1px;
  color: rgba(255,255,255,0.7); text-transform: uppercase;
  transition: color var(--trans); position: relative; padding-bottom: 4px;
}
.nav-link::after {
  content:''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--red); transition: width var(--trans);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { display: flex; gap: 8px; align-items: center; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); color: var(--white);
  font-size: 15px; display: flex; align-items: center; justify-content: center;
  transition: border-color var(--trans), background var(--trans);
}
.icon-btn:hover { border-color: var(--red); background: rgba(211,47,47,0.1); }

.hamburger { flex-direction: column; gap: 5px; }
.hamburger span {
  display: block; width: 20px; height: 2px; background: var(--white);
  border-radius: 1px; transition: all var(--trans);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav Search */
.nav-search {
  display: none; padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: rgba(10,10,10,0.95);
}
.nav-search.open { display: block; animation: fadeDown 0.25s ease; }
@keyframes fadeDown {
  from { opacity:0; transform:translateY(-6px); }
  to   { opacity:1; transform:translateY(0); }
}
.search-bar-wrap {
  max-width: 600px; margin: 0 auto;
  display: flex; align-items: center; gap: 10px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 50px; padding: 10px 16px;
}
.search-bar-wrap i { color: var(--grey); }
.search-bar-wrap input {
  flex:1; background: none; border: none; outline: none;
  color: var(--white); font-family: var(--font-body); font-size: 14px;
}
.search-bar-wrap input::placeholder { color: var(--grey); }
.search-bar-wrap button {
  background: var(--red); color: var(--white); border-radius: 50px;
  padding: 8px 18px; font-size: 13px; font-weight: 600;
  transition: background var(--trans);
}
.search-bar-wrap button:hover { background: var(--red-dark); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative; width: 100%; height: 100svh; min-height: 600px;
  display: flex; align-items: center; overflow: hidden;
  margin-top: 0; padding-top: var(--nav-h);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(10,0,0,0.6) 50%,
    rgba(0,0,0,0.4) 100%
  );
}

.hero-content {
  position: relative; z-index: 2; padding: 0 24px; max-width: 780px;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--red); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; width: 30px; height: 1px; background: var(--red);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 96px);
  line-height: 0.95; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: clamp(13px, 2vw, 16px); color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 36px; max-width: 360px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-size: 13px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  transition: all var(--trans); white-space: nowrap;
}
.btn-red {
  background: var(--red); color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(211,47,47,0.45); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white); color: var(--black);
}
.btn-white:hover { background: var(--light); transform: translateY(-2px); }

/* Hero dots */
.hero-dots {
  position: absolute; bottom: 32px; left: 24px;
  display: flex; gap: 8px; z-index: 2;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.35); transition: all var(--trans);
}
.dot.active { background: var(--red); width: 24px; border-radius: 4px; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 28px; right: 24px; z-index: 2;
  color: rgba(255,255,255,0.4); font-size: 18px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.25s; }
.reveal:nth-child(3) { transition-delay: 0.4s; }
.reveal:nth-child(4) { transition-delay: 0.55s; }

/* ══════════════════════════════════════
   SEARCH SECTION
══════════════════════════════════════ */
.search-section {
  padding: 0 20px;
  margin-top: -36px; position: relative; z-index: 10;
}
.search-card {
  max-width: 900px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius);
  padding: 24px; box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}
.search-card h2 {
  font-size: 16px; font-weight: 700; color: #111; margin-bottom: 16px;
}
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.select-wrap {
  flex: 1; min-width: 130px; position: relative;
}
.select-wrap select {
  width: 100%; appearance: none; border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm); padding: 12px 36px 12px 14px;
  font-family: var(--font-body); font-size: 13px; color: #333;
  background: #fafafa; cursor: pointer;
  transition: border-color var(--trans);
}
.select-wrap select:focus { outline: none; border-color: var(--red); }
.select-wrap i {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: #999; font-size: 11px; pointer-events: none;
}
.btn-search-red {
  width: 50px; height: 50px; border-radius: var(--radius-sm);
  background: var(--red); color: var(--white); font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--trans), transform var(--trans);
  box-shadow: var(--shadow-red);
}
.btn-search-red:hover { background: var(--red-dark); transform: scale(1.05); }

/* ══════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════ */
.section-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.section-title {
  font-size: clamp(20px,5vw,28px); font-weight: 800; letter-spacing: -0.3px;
}
.view-all {
  font-size: 13px; font-weight: 600; color: var(--red);
  display: flex; align-items: center; gap: 6px;
  transition: gap var(--trans);
}
.view-all:hover { gap: 10px; }

/* ══════════════════════════════════════
   FEATURED CARS
══════════════════════════════════════ */
.featured-section { padding: 64px 0 40px; }
.featured-section .container { overflow: hidden; }

.cars-slider {
  display: flex; gap: 18px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 20px; scrollbar-width: none;
}
.cars-slider::-webkit-scrollbar { display: none; }

/* Car Card */
.car-card {
  min-width: 260px; max-width: 280px; flex-shrink: 0;
  background: var(--card); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  scroll-snap-align: start; transition: transform var(--trans), box-shadow var(--trans);
  position: relative;
}
.car-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.5); }

.car-img-wrap {
  position: relative; height: 180px; overflow: hidden; background: #0d0d0d;
}
.car-img-wrap img { transition: transform 0.5s ease; }
.car-card:hover .car-img-wrap img { transform: scale(1.05); }

.wishlist-btn {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  color: var(--white); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans), color var(--trans);
  border: 1px solid rgba(255,255,255,0.2);
}
.wishlist-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.wishlist-btn.liked i { font-weight: 900; color: var(--red); }

.car-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--red); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}
.car-badge.new { background: #2E7D32; }

.car-info { padding: 16px; }
.car-info h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--light); }
.car-info h3 .year { color: var(--grey); font-weight: 400; font-size: 13px; }
.price {
  font-size: 18px; font-weight: 800; color: var(--red); margin-bottom: 10px;
  font-family: var(--font-display); letter-spacing: 0.5px;
}
.car-meta {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px;
}
.car-meta span {
  font-size: 11px; color: var(--grey);
  display: flex; align-items: center; gap: 4px;
}
.car-meta i { color: var(--red); font-size: 10px; }

.btn-card {
  display: block; text-align: center; padding: 10px;
  background: transparent; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); transition: all var(--trans);
}
.btn-card:hover { background: var(--red); border-color: var(--red); }

/* Reveal cards */
.reveal-card {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-card.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   TRUST SECTION
══════════════════════════════════════ */
.trust-section {
  background: var(--black); padding: 48px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px; padding: 20px;
  background: var(--bg3); border-radius: var(--radius);
  border: 1px solid var(--border); transition: border-color var(--trans);
}
.trust-item:hover { border-color: rgba(211,47,47,0.3); }
.trust-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%;
  background: rgba(211,47,47,0.12); border: 1px solid rgba(211,47,47,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 18px;
}
.trust-item h4 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.trust-item p  { font-size: 11px; color: var(--grey); line-height: 1.5; }

/* ══════════════════════════════════════
   CATEGORIES
══════════════════════════════════════ */
.categories-section { padding: 60px 0 40px; }
.categories-row {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding: 8px 0 16px; scrollbar-width: none;
}
.categories-row::-webkit-scrollbar { display: none; }

.category-card {
  min-width: 120px; flex-shrink: 0; scroll-snap-align: start;
  background: var(--card); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden; text-align: center;
  cursor: pointer; transition: transform var(--trans), border-color var(--trans);
}
.category-card:hover { transform: translateY(-4px); border-color: var(--red); }
.cat-img-wrap { height: 80px; overflow: hidden; }
.category-card span {
  display: block; padding: 10px 8px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  position: relative; overflow: hidden; min-height: 240px;
  display: flex; align-items: center; margin: 16px 20px;
  border-radius: 20px;
}
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center 60%; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(180,0,0,0.92) 0%, rgba(100,0,0,0.7) 60%, rgba(0,0,0,0.1) 100%);
}
.cta-content {
  position: relative; z-index: 1; padding: 40px 32px;
}
.cta-content h2 {
  font-size: clamp(22px, 5vw, 36px); font-weight: 800; line-height: 1.2; margin-bottom: 10px;
}
.cta-content p { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 24px; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section { padding: 60px 0 40px; }

.testimonials-track {
  display: flex; gap: 18px; overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-card {
  min-width: 100%; background: var(--card); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--border); position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
}
.stars { color: #F9A825; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.85);
  margin-bottom: 20px; font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--red);
}
.reviewer strong { display: block; font-size: 14px; font-weight: 700; }
.reviewer span   { font-size: 12px; color: var(--grey); }
.quote-mark {
  position: absolute; top: 16px; right: 20px; font-family: var(--font-serif);
  font-size: 72px; color: rgba(211,47,47,0.12); line-height: 1;
}

.testimonial-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 24px;
}
.t-prev, .t-next {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--border); color: var(--white); font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--trans);
}
.t-prev:hover, .t-next:hover { border-color: var(--red); background: rgba(211,47,47,0.1); }
.t-dots { display: flex; gap: 6px; }
.t-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: none; cursor: pointer;
  transition: all var(--trans);
}
.t-dot.active { background: var(--red); width: 20px; border-radius: 4px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--black); border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 20px 48px;
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
.footer-brand p {
  font-size: 13px; color: var(--grey); margin: 14px 0 20px; max-width: 280px; line-height: 1.7;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border); color: var(--grey);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all var(--trans);
}
.social-links a:hover { border-color: var(--red); color: var(--white); background: rgba(211,47,47,0.1); }

.footer-col h5 {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 18px; color: var(--white);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a, .footer-col ul li {
  font-size: 13px; color: var(--grey); transition: color var(--trans);
  line-height: 1.5;
}
.footer-col ul li a:hover { color: var(--red); }

.contact-list li { display: flex; align-items: flex-start; gap: 10px; }
.contact-list i { color: var(--red); margin-top: 2px; font-size: 13px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 20px; max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center;
}
.footer-bottom p { font-size: 12px; color: var(--grey); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 12px; color: var(--grey); transition: color var(--trans); }
.footer-legal a:hover { color: var(--red); }

/* ══════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════ */
.whatsapp-fab {
  position: fixed; bottom: 88px; right: 20px; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--trans), box-shadow var(--trans);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.fab-tooltip {
  position: absolute; right: 62px; white-space: nowrap;
  background: rgba(0,0,0,0.85); color: var(--white); font-size: 12px;
  padding: 6px 12px; border-radius: 6px; opacity: 0; pointer-events: none;
  transition: opacity var(--trans);
}
.whatsapp-fab:hover .fab-tooltip { opacity: 1; }

/* ══════════════════════════════════════
   MOBILE BOTTOM NAV
══════════════════════════════════════ */
.mobile-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(14,14,14,0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  display: flex; align-items: stretch;
  height: 68px; padding-bottom: env(safe-area-inset-bottom);
}
.mob-nav-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  color: var(--grey); font-size: 9px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: color var(--trans); padding: 8px 0;
}
.mob-nav-item i { font-size: 19px; transition: transform var(--trans); }
.mob-nav-item.active { color: var(--red); }
.mob-nav-item.active i { transform: scale(1.15); }
.mob-nav-item:hover { color: var(--white); }

/* ══════════════════════════════════════
   DESKTOP (≥768px)
══════════════════════════════════════ */
@media (min-width: 768px) {
  body { padding-bottom: 0; }

  .nav-links { display: flex; }
  .hamburger { display: none; }
  .mobile-bottom-nav { display: none; }
  .whatsapp-fab { bottom: 28px; }

  .trust-grid { grid-template-columns: repeat(4,1fr); }

  .cars-slider { overflow-x: visible; flex-wrap: wrap; }
  .car-card { min-width: calc(33.333% - 14px); max-width: none; flex: 1 1 calc(33.333% - 14px); }

  .categories-row { overflow-x: visible; flex-wrap: nowrap; justify-content: center; }
  .category-card { min-width: 150px; flex: 1; }

  .cta-banner { margin: 16px 40px; min-height: 280px; }

  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }

  .testimonials-track { flex-wrap: nowrap; }
  .testimonial-card { min-width: calc(50% - 9px); }

  .search-section { margin-top: -44px; }
}

@media (min-width: 1024px) {
  .hero-content { padding: 0 64px; }
  .car-card { flex: 1 1 calc(25% - 14px); }
  .cta-banner { margin: 16px 64px; min-height: 300px; }
  .testimonial-card { min-width: calc(33.333% - 12px); }
}

@media (min-width: 1280px) {
  .hero-content { padding: 0 80px; }
}

/* ── SMALL PHONE tweaks ── */
@media (max-width: 380px) {
  .hero-title { font-size: 44px; }
  .btn { padding: 12px 20px; font-size: 11px; }
  .car-card { min-width: 230px; }
}
