/* ==========================================================================
   TNG MOTORS — PREMIUM WHITE · BLACK · RED DESIGN SYSTEM
   ========================================================================== */

/* 1. GOOGLE FONTS IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* 2. DESIGN TOKENS — WHITE · BLACK · RED PALETTE */
:root {
  /* ---- Backgrounds ---- */
  --bg-white:        #ffffff;
  --bg-off-white:    #f4f4f6;
  --bg-light:        #f9f9fb;
  --bg-dark:         #0d0d0f;
  --bg-dark-surface: #161619;
  --bg-dark-elevated:#1e1e22;

  /* ---- Primary Accent: Crimson Red ---- */
  --red:             #d90b14;
  --red-hover:       #f21319;
  --red-light:       rgba(217, 11, 20, 0.12);
  --red-glow:        0 0 28px rgba(217, 11, 20, 0.45);

  /* ---- Text ---- */
  --text-dark:       #0d0d0f;
  --text-mid:        #4a4a55;
  --text-muted:      #8a8a95;
  --text-white:      #ffffff;
  --text-white-dim:  rgba(255,255,255,0.75);

  /* ---- Borders ---- */
  --border-light:    rgba(0,0,0,0.10);
  --border-dark:     rgba(255,255,255,0.10);
  --border-red:      rgba(217, 11, 20, 0.45);

  /* ---- Fonts ---- */
  --font-head:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sub:     'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', 'Plus Jakarta Sans', sans-serif;

  /* ---- Layout ---- */
  --container-max: 1360px;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  /* ---- Shadows ---- */
  --shadow-sm:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:   0 12px 36px rgba(0,0,0,0.14);
  --shadow-dark: 0 20px 50px rgba(0,0,0,0.65);
  --shadow-red:  0 12px 40px rgba(217,11,20,0.28);

  /* ---- Motion ---- */
  --ease-fast:   0.2s cubic-bezier(0.16,1,0.3,1);
  --ease-normal: 0.35s cubic-bezier(0.16,1,0.3,1);

  /* ---- Legacy aliases (backward compat with blade inline styles) ---- */
  --color-bg-prime:           #0d0d0f;
  --color-bg-surface:         #161619;
  --color-bg-surface-elevated:#1e1e22;
  --color-bg-glass-dark:      rgba(13,13,15,0.92);
  --color-accent-crimson:     #d90b14;
  --color-accent-crimson-hover:#f21319;
  --color-accent-crimson-subtle: rgba(217,11,20,0.12);
  --color-accent-gold:        #f59e0b;
  --color-text-primary:       #0d0d0f;
  --color-text-secondary:     #4a4a55;
  --color-text-muted:         #8a8a95;
  --color-border-subtle:      rgba(0,0,0,0.10);
  --color-border-hover:       rgba(217,11,20,0.45);
  --font-family-heading:      'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-family-subheading:   'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-family-body:         'Inter', 'Plus Jakarta Sans', sans-serif;
  --shadow-card-rest:         0 4px 16px rgba(0,0,0,0.08);
  --shadow-card-hover:        0 12px 40px rgba(217,11,20,0.28);
  --shadow-glow-red:          0 0 28px rgba(217,11,20,0.45);
  --transition-fast:          0.2s cubic-bezier(0.16,1,0.3,1);
  --transition-normal:        0.35s cubic-bezier(0.16,1,0.3,1);
  --radius-card:              20px;
  --radius-button:            6px;
  --radius-input:             8px;
}

/* 3. RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg-white);
  color: var(--text-dark);
  font-family: var(--font-body);
}

body { overflow-x: hidden; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; background: none; border: none; outline: none; }

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

.section-padding { padding: 100px 0; }
.text-center { text-align: center; }

/* ---- Section eyebrow label ---- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0%   { transform:scale(0.95); box-shadow:0 0 0 0 rgba(217,11,20,0.7); }
  70%  { transform:scale(1);    box-shadow:0 0 0 10px rgba(217,11,20,0); }
  100% { transform:scale(0.95); box-shadow:0 0 0 0 rgba(217,11,20,0); }
}

/* ---- Section titles ---- */
.section-title {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-title.light { color: var(--text-white); }

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto 56px auto;
  line-height: 1.7;
}
.section-subtitle.light { color: var(--text-white-dim); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 30px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ease-normal);
}

/* Solid Red — primary CTA */
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 24px rgba(217,11,20,0.38);
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: var(--red-glow);
}

/* Black — secondary CTA on white sections */
.btn-dark {
  background: var(--bg-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-dark:hover {
  background: #2a2a30;
  transform: translateY(-2px);
}

/* White ghost — on dark sections */
.btn-secondary {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: #fff;
  color: var(--bg-dark);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Red outline — on white sections */
.btn-outline {
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
  font-weight: 800;
}
.btn-outline:hover {
  background: var(--red);
  color: #fff;
}


/* ==========================================================================
   HEADER — FLOATING GLASS BAR (White bg scrolled, transparent default)
   ========================================================================== */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--ease-normal);
}

.header.scrolled {
  padding: 8px 0;
}

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

.header-glass-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--ease-normal);
}

.header.scrolled .header-glass-bar {
  background: rgba(255,255,255,0.98);
  border-color: rgba(217,11,20,0.22);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 0 0 1px rgba(217,11,20,0.12);
}

/* --- LOGO --- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-shield {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--red) 0%, #8b0000 100%);
  border-radius: 10px;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  box-shadow: var(--shadow-red);
  transition: transform var(--ease-fast);
}

.logo:hover .logo-shield { transform: scale(1.08) rotate(-4deg); }

.logo-brand-group { display: flex; flex-direction: column; }

.logo-main-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  line-height: 1;
}

.logo-sub-text {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--red);
  text-transform: uppercase;
  margin-top: 2px;
}

/* --- NAV LINKS --- */
.header-nav { display: flex; align-items: center; }
.header-nav-list { display: flex; align-items: center; gap: 4px; }

.header-nav-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  position: relative;
  transition: all var(--ease-fast);
}

.header-nav-link:hover,
.header-nav-link.active {
  color: var(--text-dark);
  background: var(--bg-off-white);
}

.header-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2.5px;
  background: var(--red);
  border-radius: 4px;
}

/* --- RIGHT ACTION PILLS --- */
.header-right { display: flex; align-items: center; gap: 10px; }

.header-call-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  background: var(--bg-off-white);
  border: 1.5px solid var(--border-light);
  padding: 8px 16px;
  border-radius: 30px;
  transition: all var(--ease-fast);
}
.header-call-pill:hover {
  background: var(--red-light);
  border-color: var(--red);
  color: var(--red);
}

.call-pulse-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
}

.offers-glow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: var(--shadow-red);
  transition: all var(--ease-fast);
}
.offers-glow-badge:hover {
  background: var(--red-hover);
  transform: translateY(-1.5px);
}

.hamburger-pill-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--bg-dark);
  border: 1.5px solid var(--bg-dark-surface);
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--ease-fast);
}
.hamburger-pill-trigger:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.menu-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  color: #fff;
}
.hamburger-icon-dots { display: flex; flex-direction: column; gap: 3.5px; }
.hamburger-icon-dots span { width: 16px; height: 2px; background: #fff; border-radius: 2px; }


/* ==========================================================================
   VIP DRAWER OVERLAY
   ========================================================================== */
.vip-drawer-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 2500;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto;
  overflow-x: hidden;
}

.vip-drawer-overlay::-webkit-scrollbar { width: 5px; }
.vip-drawer-overlay::-webkit-scrollbar-track { background: var(--bg-dark-surface); }
.vip-drawer-overlay::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

.vip-drawer-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 10% 20%, rgba(217,11,20,0.15) 0%, transparent 60%);
  z-index: 1;
}

.vip-drawer-overlay.active { opacity: 1; pointer-events: auto; }

.drawer-container {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  padding: 60px 100px;
  align-items: center;
}

.drawer-close-btn {
  position: fixed;
  top: 28px; right: 36px;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  transition: all var(--ease-normal);
  z-index: 100;
  backdrop-filter: blur(10px);
}
.drawer-close-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(90deg) scale(1.05);
  box-shadow: var(--shadow-red);
}

.drawer-left-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-right: 60px;
  max-height: 82vh;
  overflow-y: auto;
  padding-top: 10px; padding-bottom: 10px;
}

.drawer-left-col::-webkit-scrollbar { width: 4px; }
.drawer-left-col::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

.drawer-nav-header {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.drawer-nav-list { display: flex; flex-direction: column; gap: 8px; }

.drawer-nav-link {
  font-family: var(--font-sub);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: all var(--ease-normal);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 6px 14px;
  border-radius: var(--radius-md);
}

.drawer-nav-link .nav-num {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.10em;
  background: rgba(217,11,20,0.12);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(217,11,20,0.25);
  transition: all var(--ease-fast);
}

.drawer-nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
  transform: translateX(14px);
}
.drawer-nav-link:hover .nav-num {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.drawer-right-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 80px;
}

.drawer-info-card-box {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-dark);
  position: relative;
}
.drawer-info-card-box::before {
  content: '';
  position: absolute;
  top: 0; left: 30px; right: 30px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.drawer-info-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.drawer-info-desc {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.drawer-contact-grid { display: flex; flex-direction: column; gap: 18px; }

.drawer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  transition: all var(--ease-fast);
}
.drawer-contact-item:hover {
  background: rgba(217,11,20,0.08);
  border-color: rgba(217,11,20,0.35);
  transform: translateY(-2px);
}

.drawer-contact-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(217,11,20,0.12);
  border: 1px solid rgba(217,11,20,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 18px;
  flex-shrink: 0;
}

.drawer-contact-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.drawer-contact-text span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.50);
}


/* ==========================================================================
   STATS BAR — Dark stripe section
   ========================================================================== */
.stats-bar-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-dark);
  position: relative;
  overflow: hidden;
}
.stats-bar-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.stat-card:hover {
  background: rgba(217,11,20,0.09);
  border-color: rgba(217,11,20,0.38);
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-red);
}

.stat-icon-wrapper {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(217,11,20,0.15);
  border: 1px solid rgba(217,11,20,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 18px;
  transition: all 0.3s ease;
}
.stat-card:hover .stat-icon-wrapper {
  background: var(--red);
  color: #fff;
  transform: rotate(6deg) scale(1.1);
  box-shadow: var(--shadow-red);
}

.counter-value {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.counter-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}


/* ==========================================================================
   HERO SECTION — Dark background, dramatic
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 70% 50%, rgba(217,11,20,0.18) 0%, var(--bg-dark) 65%),
    url('assets/images/hero_bg.png') no-repeat center right / cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13,13,15,0.97) 0%,
    rgba(13,13,15,0.84) 48%,
    rgba(13,13,15,0.20) 100%
  );
  z-index: 1;
}

.hero-content { position: relative; z-index: 2;  }

.hero-title {
  font-family: var(--font-head);
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: #fff;
  text-transform: uppercase;
}
.hero-title span { color: var(--red); }

.hero-description {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 42px;
  line-height: 1.7;
  max-width: 560px;
}

.hero-actions { display: flex; align-items: center; gap: 18px; margin-bottom: 60px; }

/* FILTER BAR */
.search-filter-bar { position: relative; z-index: 3; margin-top: -60px; }

.filter-card {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  box-shadow: var(--shadow-md);
}

.filter-form {
  display: grid;
  grid-template-columns: repeat(4,1fr) auto;
  gap: 20px;
  align-items: center;
}

.filter-group { display: flex; flex-direction: column; gap: 8px; }

.filter-group label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.filter-select {
  height: 48px;
  padding: 0 14px;
  background: var(--bg-off-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease-fast);
}
.filter-select:hover,
.filter-select:focus {
  border-color: var(--red);
  background: #fff;
}
.filter-select option { background: #fff; color: var(--text-dark); }


/* ==========================================================================
   WHY CHOOSE US — White Background
   ========================================================================== */
.features-section { background: var(--bg-white); }

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

.feature-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--ease-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: var(--red);
  opacity: 0;
  transition: opacity var(--ease-normal);
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217,11,20,0.30);
  box-shadow: var(--shadow-red);
  background: #fff;
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 60px; height: 60px;
  background: var(--red-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 24px;
  transition: all var(--ease-normal);
}
.feature-card:hover .feature-icon { background: var(--red); color: #fff; transform: scale(1.06); }

.feature-title {
  font-family: var(--font-sub);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.feature-desc { font-size: 14px; color: var(--text-mid); line-height: 1.65; }


/* ==========================================================================
   SERVICES — Dark Background
   ========================================================================== */
.services-section { background: var(--bg-dark); }

.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

.service-card {
  background: var(--bg-dark-surface);
  border: 1.5px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 280px;
  transition: all var(--ease-normal);
  cursor: pointer;
  box-shadow: var(--shadow-dark);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  background: var(--bg-dark-elevated);
  box-shadow: var(--shadow-red);
}

.service-icon {
  width: 52px; height: 52px;
  background: rgba(217,11,20,0.14);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  transition: all var(--ease-fast);
}
.service-card:hover .service-icon { background: var(--red); color: #fff; }

.service-title {
  font-family: var(--font-sub);
  font-size: 1.2rem; font-weight: 700;
  color: #fff; margin-bottom: 8px;
}
.service-desc { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.6; margin-bottom: 20px; }

.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800;
  color: var(--red); text-transform: uppercase; letter-spacing: 0.05em;
  transition: gap var(--ease-fast);
}
.service-card:hover .service-link { gap: 14px; color: #fff; }


/* ==========================================================================
   FEATURED VEHICLES — White Background
   ========================================================================== */
.vehicles-section { background: var(--bg-white); }

.filter-tabs {
  display: flex; justify-content: center; gap: 10px;
  margin-bottom: 48px; flex-wrap: wrap;
}

.tab-btn {
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  background: var(--bg-off-white);
  border: 1.5px solid var(--border-light);
  color: var(--text-mid);
  font-size: 12.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--ease-fast);
}
.tab-btn:hover,
.tab-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}

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

.vehicle-card {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--ease-normal);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.vehicle-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217,11,20,0.30);
  box-shadow: var(--shadow-red);
}

.vehicle-media {
  position: relative;
  width: 100%; height: 240px;
  background: var(--bg-off-white);
  overflow: hidden;
}
.vehicle-image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vehicle-card:hover .vehicle-image { transform: scale(1.06); }

.badge-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--red);
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  box-shadow: var(--shadow-red);
}

.wishlist-btn {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--ease-fast);
  box-shadow: var(--shadow-sm);
}
.wishlist-btn:hover { background: var(--red); color: #fff; }

.vehicle-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }

.vehicle-title {
  font-family: var(--font-sub);
  font-size: 1.25rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 6px;
}

.vehicle-price {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 900;
  color: var(--red); margin-bottom: 20px;
}

.vehicle-specs {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1.5px solid var(--border-light);
  border-bottom: 1.5px solid var(--border-light);
  margin-bottom: 20px;
}

.spec-item { display: flex; flex-direction: column; gap: 2px; }
.spec-label { font-size: 10.5px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.spec-value { font-size: 13px; font-weight: 700; color: var(--text-dark); }


/* ==========================================================================
   PROCESS — Off-White Background
   ========================================================================== */
.process-section { background: var(--bg-off-white); }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 20px;
  position: relative;
  margin-top: 40px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%; right: 10%;
  height: 2px;
  background: var(--border-light);
  z-index: 1;
}

.process-step {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}

.step-number {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 900;
  color: var(--red);
  margin-bottom: 24px;
  transition: all var(--ease-normal);
  box-shadow: var(--shadow-sm);
}
.process-step:hover .step-number {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
  transform: scale(1.1);
}

.step-title {
  font-family: var(--font-sub);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px;
}
.step-desc { font-size: 13px; color: var(--text-mid); line-height: 1.5; }


/* ==========================================================================
   TESTIMONIALS — Dark Background
   ========================================================================== */
.testimonials-section { background: var(--bg-dark); }

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

.testimonial-card {
  background: var(--bg-dark-surface);
  border: 1.5px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: all var(--ease-normal);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,11,20,0.35);
  box-shadow: var(--shadow-red);
}

.rating-stars { color: #f59e0b; display: flex; gap: 4px; margin-bottom: 20px; font-size: 16px; }

.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 28px;
}

.author-info { display: flex; align-items: center; gap: 16px; }

.author-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid var(--red);
  object-fit: cover;
}

.author-details { display: flex; flex-direction: column; }

.author-name {
  font-family: var(--font-sub);
  font-weight: 700; font-size: 15px;
  color: #fff;
}
.author-car { font-size: 12px; color: rgba(255,255,255,0.40); }


/* ==========================================================================
   BLOGS — White Background
   ========================================================================== */
.blogs-section { background: var(--bg-white); }

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

.blog-card {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--ease-normal);
  box-shadow: var(--shadow-sm);
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217,11,20,0.28);
  box-shadow: var(--shadow-red);
}

.blog-media {
  position: relative; height: 200px;
  overflow: hidden;
  background: var(--bg-off-white);
}
.blog-image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-image { transform: scale(1.08); }

.blog-content { padding: 28px; }

.blog-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-tag { color: var(--red); font-weight: 700; text-transform: uppercase; }

.blog-title {
  font-family: var(--font-sub);
  font-size: 1.2rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 12px; line-height: 1.4;
}

.blog-desc {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.65; margin-bottom: 20px;
}


/* ==========================================================================
   CTA BANNER — Bold Red + Black
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #6b0007 55%, var(--bg-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(217,11,20,0.35);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-head);
  font-size: 3rem; font-weight: 900;
  color: #fff;
  margin-bottom: 18px; text-transform: uppercase;
  letter-spacing: -0.01em;
  position: relative; z-index: 1;
}
.cta-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 600px; margin: 0 auto 36px auto;
  position: relative; z-index: 1;
}
.cta-actions { display: flex; justify-content: center; gap: 18px; position: relative; z-index: 1; }


/* ==========================================================================
   FOOTER — Black
   ========================================================================== */
.footer {
  background: #050507;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: rgba(255,255,255,0.48);
  font-size: 14px; margin: 20px 0; max-width: 320px; line-height: 1.7;
}

.footer-column h4 {
  font-family: var(--font-sub);
  font-size: 1rem; font-weight: 700;
  color: #fff; margin-bottom: 22px;
}

.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a { color: rgba(255,255,255,0.48); font-size: 14px; transition: color var(--ease-fast); }
.footer-links a:hover { color: var(--red); }

.newsletter-form { display: flex; gap: 8px; margin-top: 16px; }

.newsletter-input {
  height: 48px; padding: 0 14px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: #fff; width: 100%;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.30); }
.newsletter-input:focus { border-color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.38);
  font-size: 13px;
}

.social-links { display: flex; gap: 14px; }

.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 12px; font-weight: 800;
  transition: all var(--ease-fast);
  border: 1px solid rgba(255,255,255,0.06);
}
.social-icon:hover { background: var(--red); color: #fff; border-color: var(--red); }


/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(14px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--ease-normal);
}
.modal-backdrop.active { opacity: 1; pointer-events: auto; }

.modal-card {
  background: #fff;
  border: 2px solid var(--red);
  border-radius: var(--radius-xl);
  width: 90%; max-width: 680px;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-red);
  color: var(--text-dark);
}

.modal-close {
  position: absolute; top: 18px; right: 20px;
  font-size: 24px; color: var(--text-muted);
  cursor: pointer;
}
.modal-close:hover { color: var(--red); }


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .header-nav { display: none; }
  .drawer-container { grid-template-columns: 1fr; padding: 90px 24px 40px 24px; }
  .drawer-right-col { display: none; }
  .drawer-left-col { border-right: none; padding-right: 0; max-height: none; overflow-y: visible; }
  .drawer-nav-link { font-size: 1.4rem; gap: 14px; padding: 10px 12px; }
  .drawer-close-btn { top: 20px; right: 20px; width: 44px; height: 44px; font-size: 22px; }
  .stats-bar-container { grid-template-columns: repeat(2,1fr); gap: 16px; padding: 28px 20px; }
}

@media (max-width: 1024px) {
  .hero-title { font-size: 3.2rem; }
  .filter-form { grid-template-columns: repeat(2,1fr); }
  .features-grid,
  .services-grid,
  .vehicles-grid,
  .testimonials-grid,
  .blogs-grid { grid-template-columns: repeat(2,1fr); }
  .process-timeline { grid-template-columns: repeat(3,1fr); gap: 32px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .header-call-pill { display: none; }
  .hero-title { font-size: 2.4rem; }
  .features-grid,
  .services-grid,
  .vehicles-grid,
  .testimonials-grid,
  .blogs-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .process-timeline::before { display: none; }
  .filter-form { grid-template-columns: 1fr; }
  .cta-title { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar-container { grid-template-columns: 1fr; }
  .cta-banner { padding: 50px 24px; }
}