/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0a1628;
  --navy-light: #111d33;
  --navy-mid: #162340;
  --red: #c8102e;
  --red-hover: #a00d24;
  --red-glow: rgba(200, 16, 46, 0.25);
  --red-soft: rgba(200, 16, 46, 0.08);
  --blue: #1e3a5f;
  --blue-light: #2a4d7a;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-600);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: var(--font-body);
  border: none;
  outline: none;
  background: none;
}

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

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px var(--red-glow);
}
.btn-red:hover {
  background: var(--red-hover);
  box-shadow: 0 8px 30px var(--red-glow);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 62px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gray-600);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}
.nav-phone svg { color: var(--red); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 9998;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--red); }

/* ===== SECTION COMMON ===== */
.section-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.section-desc {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 550px;
  margin-top: 16px;
  line-height: 1.7;
}

/* ===== PAGE BANNER (Inner Pages) ===== */
.page-banner {
  background: var(--navy);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,0.12), transparent 70%);
  border-radius: 50%;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-banner h1 span { color: var(--red); }
.page-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  max-width: 550px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.breadcrumb a {
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: rgba(255,255,255,0.7); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/2199293/pexels-photo-2199293.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.75) 40%, rgba(10,22,40,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 16, 46, 0.15);
  border: 1px solid rgba(200, 16, 46, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.hero-badge svg { color: var(--red); }
.hero-logo {
  height: 120px;
  width: auto;
  margin-bottom: 32px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  text-transform: uppercase;
  max-width: 750px;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--red); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-number span { color: var(--red); }
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: float 2.5s ease infinite;
}
.hero-scroll-indicator svg {
  color: rgba(255,255,255,0.3);
}

/* ===== INVENTORY ===== */
.inventory {
  padding: 100px 0;
  background: var(--gray-50);
}
.inventory-header {
  text-align: center;
  margin-bottom: 60px;
}
.inventory-header .section-desc { margin: 16px auto 0; }
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.truck-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.truck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: var(--red);
}

/* Image Gallery */
.truck-gallery {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.truck-gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}
.truck-gallery-slide {
  min-width: 100%;
  height: 100%;
}
.truck-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 3;
  border: none;
  color: var(--navy);
}
.gallery-btn:hover { background: var(--white); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.gallery-btn.prev { left: 12px; }
.gallery-btn.next { right: 12px; }
.gallery-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.gallery-dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}
.truck-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  z-index: 3;
}
.truck-card-price-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: var(--radius-xs);
  z-index: 3;
}

.truck-card-body { padding: 28px; }
.truck-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.truck-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--gray-50);
  border-radius: var(--radius-xs);
}
.spec-item svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
}
.spec-item .spec-detail {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.3;
}
.spec-item .spec-detail strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
}
.truck-card-actions {
  display: flex;
  gap: 12px;
}
.truck-card-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 13px 20px;
  font-size: 0.82rem;
}

/* ===== INVENTORY FILTER BAR ===== */
.filter-bar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 40px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-bar .search-input {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xs);
  padding: 12px 16px;
}
.filter-bar .search-input svg { color: var(--gray-400); flex-shrink: 0; }
.filter-bar .search-input input {
  width: 100%;
  background: none;
  border: none;
  font-size: 0.9rem;
  color: var(--navy);
}
.filter-bar .search-input input::placeholder { color: var(--gray-400); }
.filter-bar select {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xs);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--navy);
  cursor: pointer;
  min-width: 160px;
}
.filter-bar .results-count {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ===== WHAT WE CARRY ===== */
.wwc-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 48px auto 40px;
}
.wwc-tab {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 2rem;
  border-radius: 8px;
  border: 2px solid var(--gray-200);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.wwc-tab:hover {
  border-color: var(--navy);
}
.wwc-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.wwc-panel {
  display: none;
}
.wwc-panel.active {
  display: block;
}
.wwc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.wwc-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
}
.wwc-card:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.wwc-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--navy);
}
.wwc-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
}
.wwc-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.wwc-pill {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  transition: var(--transition);
}
.wwc-pill:hover {
  background: var(--red);
}
.wwc-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.wwc-cta-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.wwc-cta-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

/* ===== EXPANDED TYPE CARDS (Trucks & Trailers Page) ===== */
.type-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.type-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.type-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.type-card-icon {
  width: 64px;
  height: 64px;
  background: var(--red-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
}
.type-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.type-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ===== BRAND LOGO GRID ===== */
.brands-section { padding: 80px 0; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.brand-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.brand-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.brand-logo {
  width: 120px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
}
.brand-card:hover .brand-logo { color: var(--red); }
.brand-logo svg {
  width: 100%;
  height: 100%;
}
.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.brand-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.brand-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}
/* Brand logo strip for homepage */
.brand-strip {
  padding: 60px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.brand-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.brand-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  transition: var(--transition);
}
.brand-strip-item:hover { opacity: 1; }
.brand-strip-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: var(--transition);
}
.brand-strip-item:hover img { filter: grayscale(0%); }
.brand-strip-item span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
}

/* ===== WHY US ===== */
.why-us { padding: 100px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.why-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.why-card-icon {
  width: 52px;
  height: 52px;
  background: var(--red-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-card-icon svg { width: 24px; height: 24px; color: var(--red); }
.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ===== STATS BANNER ===== */
.stats-banner {
  background: var(--navy);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(200,16,46,0.1));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-number span { color: var(--red); }
.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}
.stat-divider {
  width: 30px;
  height: 2px;
  background: var(--red);
  margin: 12px auto 0;
  opacity: 0.5;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--gray-50);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 480px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue-light));
}
.about-content .section-desc { max-width: none; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}
.about-feature svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }

/* ===== REVIEWS ===== */
.reviews { padding: 100px 0; }
.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}
.reviews-header .section-desc { margin: 16px auto 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.review-card .review-text {
  flex: 1;
}
.review-card:hover {
  border-color: rgba(200,16,46,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-stars svg { width: 16px; height: 16px; color: #f59e0b; fill: #f59e0b; }
.review-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
}
.review-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.review-role {
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: var(--navy);
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,0.15), transparent 70%);
  border-radius: 50%;
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-content h2 span { color: var(--red); }
.cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto 36px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--gray-50); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xs);
  padding: 14px 18px;
  color: var(--navy);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--red); }
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--red-soft);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--red); }
.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.contact-info-card a {
  color: var(--red);
  font-weight: 500;
  transition: var(--transition);
}
.contact-info-card a:hover { color: var(--red-hover); }
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 20px;
  font-size: 0.88rem;
}
.hours-grid .day { color: var(--gray-500); }
.hours-grid .time { color: var(--navy); font-weight: 500; }

/* ===== FAQ ACCORDION ===== */
.faq-section { padding: 80px 0; }
.faq-grid {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--red); }
.faq-item.active { border-color: var(--red); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.faq-question svg {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: var(--transition);
}
.faq-item.active .faq-question svg { transform: rotate(180deg); color: var(--red); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== GOOGLE MAPS EMBED ===== */
.map-section {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  margin-top: 60px;
}
.map-section iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo {
  background: var(--white);
  display: inline-flex;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
}
.footer-brand .nav-logo img { height: 70px; }
.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  padding: 4px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-socials a:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(200,16,46,0.1);
}

/* ===== MOBILE CTA BAR ===== */
.mobile-cta-bar { display: none; }

/* ===== RESPONSIVE — TABLET (1024px) ===== */
@media (max-width: 1024px) {
  .inventory-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { height: 350px; }
  .contact-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .type-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== RESPONSIVE — MOBILE (768px) ===== */
@media (max-width: 768px) {
  .container { padding: 0 28px; }
  .nav-links, .nav-phone { display: none; }
  .nav-cta .btn-red { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 68px; }
  .navbar .container { padding: 0 20px; }
  .nav-logo img { height: 50px; }

  .hero { min-height: 100vh; display: flex; align-items: center; }
  .hero-content {
    padding: 110px 0 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero .container { padding: 0 32px; }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    text-align: center;
    line-height: 1;
    margin-bottom: 18px;
  }
  .hero-desc {
    font-size: 0.92rem;
    margin-bottom: 32px;
    text-align: center;
    max-width: 400px;
    line-height: 1.7;
  }
  .hero-badge {
    display: inline-flex;
    font-size: 0.68rem;
    padding: 6px 14px;
    margin-bottom: 20px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 320px;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 0.88rem;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    max-width: 360px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    padding: 22px 20px;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .hero-stat { text-align: center; }
  .hero-stat-number { font-size: 1.8rem; }
  .hero-stat-label { font-size: 0.65rem; letter-spacing: 1.5px; }
  .hero-scroll-indicator { display: none; }

  .inventory { padding: 60px 0; }
  .inventory-header { margin-bottom: 36px; }
  .truck-gallery { height: 260px; }
  .truck-card-body { padding: 22px; }
  .truck-card-title { font-size: 1.15rem; }
  .truck-specs-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .truck-card-actions { flex-direction: column; gap: 8px; }

  .why-us { padding: 60px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .why-card { padding: 28px 24px; }

  .stats-banner { padding: 48px 0; }
  .stats-grid { gap: 24px 20px; }
  .stat-number { font-size: 2.2rem; }
  .stat-label { font-size: 0.72rem; }

  .about { padding: 60px 0; }
  .about-image { height: 280px; }
  .about-features { grid-template-columns: 1fr; gap: 12px; }

  .reviews { padding: 60px 0; }
  .reviews-header { margin-bottom: 36px; }
  .review-card { padding: 24px 20px; }

  .cta-banner { padding: 60px 0; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }

  .contact { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }

  .footer { padding: 48px 0 90px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-brand p { margin: 16px auto 0; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    padding: 12px 20px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    gap: 10px;
  }
  .mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 13px 8px;
    border-radius: var(--radius-xs);
  }
  .mobile-cta-bar .cta-call {
    background: var(--navy);
    color: var(--white);
  }
  .mobile-cta-bar .cta-quote {
    background: var(--red);
    color: var(--white);
  }

  #what-we-carry { padding: 60px 0; }
  .wwc-tabs { margin: 32px auto 28px; }
  .wwc-tab { padding: 0.5rem 1.5rem; font-size: 0.85rem; }
  .wwc-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .wwc-card { padding: 1.25rem 0.75rem; }
  .wwc-label { font-size: 0.85rem; }
  .wwc-icon { width: 44px; height: 44px; }
  .wwc-icon svg { width: 26px; height: 26px; }
  .wwc-cta { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .wwc-cta-text h3 { font-size: 1.3rem; }
  .wwc-cta-text p { font-size: 0.85rem; }
  .wwc-pill { font-size: 0.78rem; padding: 0.4rem 1rem; }

  .page-banner { padding: 110px 0 48px; }
  .page-banner h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); text-align: center; }
  .page-banner p { text-align: center; margin: 0 auto; }
  .breadcrumb { justify-content: center; }
  .filter-bar { flex-direction: column; }
  .filter-bar select { width: 100%; }
  .filter-bar .search-input { width: 100%; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .brand-card { padding: 24px 16px; }
  .type-cards-grid { grid-template-columns: 1fr; }
  .brand-strip-inner { gap: 24px; }
  .brand-strip-item img { height: 30px; }
  .faq-question { font-size: 0.9rem; padding: 16px 20px; }
  .map-section iframe { height: 300px; min-height: 300px; }
  .location-grid { grid-template-columns: 1fr !important; }
}

/* ===== RESPONSIVE — SMALL MOBILE (380px) ===== */
@media (max-width: 380px) {
  .container { padding: 0 22px; }
  .hero .container { padding: 0 24px; }
  .hero h1 { font-size: 1.85rem; }
  .nav-logo img { height: 40px; }
  .hero-buttons { max-width: 280px; }
  .hero-stats { max-width: 300px; }
  .hero-stat-number { font-size: 1.6rem; }
  .section-title { font-size: 1.5rem; }
  .stat-number { font-size: 1.9rem; }
  .truck-specs-grid { grid-template-columns: 1fr; }
  .wwc-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
}
