/* ==========================================================================
   SLV AUTO CONSULTANT - LUXURY BLACK & GOLD THEME
   Inspired by Image 2 Color Palette + Image 3 Structure & Layout
   ========================================================================== */

:root {
  /* Dark Luxury Obsidian & Charcoal Palette */
  --bg-darkest: #07080a;
  --bg-primary: #0b0d12;
  --bg-secondary: #10131a;
  --bg-card: #151821;
  --bg-card-hover: #1b202c;
  --bg-card-alt: #1a1e27;
  --bg-glass: rgba(16, 19, 26, 0.82);
  --bg-glass-card: rgba(22, 26, 36, 0.88);
  
  /* Gold Metallic Accents */
  --gold-primary: #d4af37;
  --gold-light: #f5d77f;
  --gold-dark: #9b781e;
  --gold-bright: #ffd700;
  --gold-gradient: linear-gradient(135deg, #f7df8f 0%, #d4af37 50%, #9c781e 100%);
  --gold-gradient-hover: linear-gradient(135deg, #fff0b3 0%, #e6be44 50%, #b88d22 100%);
  --gold-text-gradient: linear-gradient(135deg, #fff2bd 0%, #d4af37 40%, #ffdf79 70%, #9e791c 100%);
  --gold-border: rgba(212, 175, 55, 0.28);
  --gold-border-bright: rgba(212, 175, 55, 0.7);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.35);
  --gold-glow-subtle: 0 0 15px rgba(212, 175, 55, 0.18);

  /* Typography Colors */
  --text-pure: #ffffff;
  --text-main: #f0f3f8;
  --text-muted: #949db0;
  --text-subtle: #6c7689;
  --text-gold: #e5c365;

  /* Status / Accents */
  --success: #22c55e;
  --success-glow: rgba(34, 197, 94, 0.3);
  --danger: #ef4444;

  /* Layout & Geometry */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-dark: 0 12px 36px rgba(0, 0, 0, 0.6);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(212, 175, 55, 0.15);
  --shadow-card-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.85), 0 0 20px rgba(212, 175, 55, 0.3), 0 0 0 1px rgba(212, 175, 55, 0.45);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0c0d11;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: #252a36;
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-darkest);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-pure);
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.gold-gradient-text {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-glow {
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0c0e14;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  border: 1px solid rgba(255, 230, 150, 0.5);
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.55);
}

.btn-outline-gold {
  background: rgba(16, 19, 26, 0.6);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  backdrop-filter: blur(10px);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.15);
  color: #ffffff;
  border-color: var(--gold-light);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--text-pure);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.play-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0c0e14;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  transition: transform var(--transition-fast);
}

.btn-video:hover .play-circle {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */

.top-bar {
  background: #08090d;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 7px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.top-bar-item svg {
  color: var(--gold-primary);
  width: 14px;
  height: 14px;
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 13, 18, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(8, 9, 13, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
  border-bottom-color: rgba(212, 175, 55, 0.35);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 2px;
  background: var(--gold-gradient);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
  flex-shrink: 0;
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.brand-title span {
  color: var(--gold-primary);
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.brand-tagline strong {
  color: var(--gold-light);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
  display: inline-block;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
  border-radius: var(--radius-full);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  text-decoration: none;
}

.nav-phone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.nav-phone:hover .nav-phone-icon {
  background: var(--gold-primary);
  color: #0c0e14;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.nav-phone-text {
  display: flex;
  flex-direction: column;
}

.nav-phone-text .label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-phone-text .number {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--gold-light);
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================================
   HERO SECTION (DARK LUXURY WITH SHOWROOM BACKDROP)
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 75% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 10% 20%, rgba(20, 24, 34, 0.9) 0%, transparent 70%),
              #0a0c10;
  overflow: hidden;
  padding: 30px 0 60px;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero-tagline {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 470px;
  line-height: 1.6;
}

.hero-title {
  font-size: 2.3rem;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-title .title-accent {
  display: block;
  font-size: 2.5rem;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 14px rgba(212, 175, 55, 0.35));
}

.hero-subtitle {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: -2px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-subtitle::after {
  content: '';
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

/* Hero Showcase Car Area */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showroom-glow-backdrop {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle at 60% 45%, rgba(212, 175, 55, 0.22) 0%, rgba(20, 24, 34, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-car-card {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), 0 0 50px rgba(10, 12, 16, 0.9);
  transition: transform var(--transition-slow);
}

.hero-car-card:hover {
  box-shadow: 0 35px 90px rgba(0, 0, 0, 1), 0 0 70px rgba(0, 0, 0, 0.95);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 430px;
  overflow: hidden;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(10, 12, 16, 0.35) 75%, rgba(10, 12, 16, 0.85) 100%),
              linear-gradient(to bottom, rgba(10, 12, 16, 0.25) 0%, transparent 15%, transparent 85%, rgba(10, 12, 16, 0.8) 100%);
  pointer-events: none;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-car-card:hover .hero-image-wrapper img {
  transform: scale(1.03);
}

/* Neon Sign Overlay on Showroom Glass */
.showroom-neon-sign {
  position: absolute;
  top: 24px;
  right: 28px;
  background: rgba(10, 12, 17, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  text-align: right;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(212, 175, 55, 0.12);
}

.showroom-neon-sign .neon-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

.showroom-neon-sign .neon-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Slide Indicators 01, 02, 03 */
.hero-slide-nav {
  position: absolute;
  bottom: 24px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.slide-num-btn {
  background: rgba(13, 16, 23, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}

.slide-num-btn.active, .slide-num-btn:hover {
  background: var(--gold-gradient);
  color: #0c0e14;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.hero-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 28px;
  background: rgba(13, 16, 23, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-floating-badge span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
}

/* ==========================================================================
   FLOATING TRUST PILLARS BAR (From Image 3 with Image 2 Gold & Dark styling)
   ========================================================================== */

.trust-bar-wrapper {
  position: relative;
  margin-top: -60px;
  z-index: 20;
}

.trust-bar {
  background: linear-gradient(135deg, rgba(22, 26, 36, 0.95) 0%, rgba(14, 17, 24, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  transition: transform var(--transition-fast);
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.25), transparent);
}

.trust-item:hover {
  transform: translateY(-2px);
}

.trust-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.18);
  transition: all var(--transition-fast);
}

.trust-item:hover .trust-icon-box {
  background: var(--gold-gradient);
  color: #0c0e14;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
  transform: rotate(6deg) scale(1.05);
}

.trust-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 4px;
}

.trust-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   INVENTORY / TOP CATEGORIES SECTION
   ========================================================================== */

.inventory-section {
  padding: 100px 0 80px;
  position: relative;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-title-wrap .sub-badge {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 6px;
  display: block;
}

.section-title-wrap h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-light);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all var(--transition-fast);
}

.section-action-link:hover {
  background: var(--gold-primary);
  color: #0c0e14;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: translateX(4px);
}

/* Filter Tabs matching Image 3 */
.category-filter-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 36px;
  scrollbar-width: none;
}

.category-filter-nav::-webkit-scrollbar {
  display: none;
}

.cat-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(20, 24, 34, 0.7);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.cat-btn:hover {
  color: #ffffff;
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(30, 35, 48, 0.9);
}

.cat-btn.active {
  background: var(--gold-gradient);
  color: #0c0e14;
  border-color: transparent;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.4);
}

/* Car Cards Grid */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.car-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  position: relative;
  box-shadow: var(--shadow-card);
}

.car-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: var(--shadow-card-hover);
}

.car-thumb-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  background: #0d0f15;
  overflow: hidden;
}

.car-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.car-card:hover .car-thumb-wrap img {
  transform: scale(1.08);
}

.car-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(11, 13, 18, 0.85);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(8px);
}

.car-category-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.15);
  color: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(8px);
}

.car-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.car-name-row {
  margin-bottom: 8px;
}

.car-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
}

.car-specs-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.car-specs-row span:not(:last-child)::after {
  content: '|';
  margin-left: 6px;
  color: rgba(212, 175, 55, 0.4);
}

.car-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.price-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-value {
  font-size: 1.35rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--gold-light);
  letter-spacing: -0.01em;
}

.car-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.btn-card-details {
  padding: 9px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-card-details:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.btn-card-testdrive {
  padding: 9px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  background: var(--gold-gradient);
  color: #0c0e14;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-card-testdrive:hover {
  background: var(--gold-gradient-hover);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   OUR SERVICES - COMPLETE SOLUTIONS UNDER ONE ROOF (IMAGE 3 LAYOUT)
   ========================================================================== */

.services-section {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(180deg, #090b0f 0%, #11141d 50%, #090b0f 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.services-container-grid {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 32px;
  align-items: stretch;
}

/* Left Hero Banner Card */
.services-banner-card {
  background: linear-gradient(145deg, #171b26 0%, #0e1118 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

.services-banner-card::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  filter: blur(25px);
}

.services-banner-card .services-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

.services-banner-card h3 {
  font-size: 2.2rem;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.services-banner-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Right 4-column Services Grid with Gold Circle Icons */
.services-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(21, 25, 35, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(26, 31, 44, 0.95);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
}

.service-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 22px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.18);
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-circle {
  background: var(--gold-gradient);
  color: #0c0e14;
  transform: scale(1.1);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.6);
}

.service-title {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   METRICS / STATS COUNTER & SHOWROOM SHOWCASE
   ========================================================================== */

.stats-showroom-section {
  padding: 80px 0;
  position: relative;
}

.stats-showroom-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: center;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: linear-gradient(145deg, #151923 0%, #0d0f15 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(212, 175, 55, 0.18);
}

.stat-icon {
  width: 42px;
  height: 42px;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.stat-number {
  font-size: 2.3rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number span {
  color: var(--gold-primary);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* Showroom Card Preview */
.showroom-feature-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
  height: 250px;
}

.showroom-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: transform 0.6s ease;
}

.showroom-feature-card:hover img {
  transform: scale(1.05);
}

.showroom-overlay-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 17, 0.95) 0%, rgba(10, 12, 17, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.showroom-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.showroom-overlay-info h4 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.showroom-overlay-info p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ==========================================================================
   INTERACTIVE CAR EMI CALCULATOR (BONUS LUXURY VALUE)
   ========================================================================== */

.calculator-section {
  padding: 80px 0;
  background: #0d0f15;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.calc-box {
  background: linear-gradient(145deg, #141822 0%, #0e1118 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.7);
}

.calc-control-group {
  margin-bottom: 24px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calc-label-row label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calc-val-display {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-light);
  font-family: 'Outfit', sans-serif;
}

.custom-range {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: #252a38;
  outline: none;
  -webkit-appearance: none;
  accent-color: var(--gold-primary);
  cursor: pointer;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: 2px solid #ffffff;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  transition: transform 0.15s ease;
}

.custom-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-result-card {
  background: linear-gradient(135deg, rgba(22, 26, 36, 0.95) 0%, rgba(13, 16, 23, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(212, 175, 55, 0.08);
}

.emi-figure-wrap {
  margin-bottom: 24px;
}

.emi-figure-wrap .emi-sub {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.emi-figure-wrap .emi-val {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold-light);
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.emi-breakdown {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  color: var(--text-muted);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.breakdown-row strong {
  color: #ffffff;
}

/* ==========================================================================
   SELL YOUR CAR CTA BANNER
   ========================================================================== */

.sell-car-section {
  padding: 60px 0;
}

.sell-car-banner {
  background: radial-gradient(circle at 90% 50%, rgba(212, 175, 55, 0.18) 0%, transparent 60%),
              linear-gradient(135deg, #191e2b 0%, #0e1118 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-xl);
  padding: 48px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.sell-car-content h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.sell-car-content p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
}

/* ==========================================================================
   CUSTOMER TESTIMONIALS
   ========================================================================== */

.testimonials-section {
  padding: 80px 0;
  background: #090b0f;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.stars-row {
  color: var(--gold-light);
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0c0e14;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.reviewer-info h5 {
  font-size: 0.95rem;
  color: #ffffff;
}

.reviewer-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: #06070a;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  padding: 80px 0 30px;
  color: var(--text-muted);
  position: relative;
}

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

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 18px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.88rem;
}

.footer-contact-item svg {
  color: var(--gold-primary);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}

/* ==========================================================================
   FLOATING WHATSAPP CTA
   ========================================================================== */

.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  transition: all var(--transition-base);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Tooltip on WhatsApp */
.floating-whatsapp::before {
  content: 'Chat with Consultant';
  position: absolute;
  right: 72px;
  background: #111319;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.4);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.floating-whatsapp:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   MODALS
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-card {
  background: linear-gradient(145deg, #151923 0%, #0d1017 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 580px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.25);
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--gold-primary);
  color: #0c0e14;
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: #10131c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.92rem;
  color: #ffffff;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Toast alert notification */
.toast-msg {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #141822;
  border: 1px solid var(--gold-primary);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.4);
  font-weight: 600;
  font-size: 0.92rem;
  z-index: 3000;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */

@media (max-width: 1200px) {
  .cars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-container-grid {
    grid-template-columns: 1fr;
  }
  .services-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-title .title-accent {
    font-size: 3rem;
  }
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .trust-item:not(:last-child)::after {
    display: none;
  }
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-showroom-grid {
    grid-template-columns: 1fr;
  }
  .calc-box {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .nav-menu {
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    background: #0d0f17;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    flex-direction: column;
    padding: 28px 20px;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform var(--transition-base);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
  }
  .nav-menu.open {
    transform: translateY(0);
  }
  .mobile-toggle {
    display: block;
  }
  .nav-phone-direct {
    display: none;
  }
}

@media (max-width: 640px) {
  .top-bar {
    display: none;
  }
  .navbar .container {
    height: 70px;
  }
  .brand-logo-img {
    height: 40px;
    max-width: 155px;
  }
  .btn-showroom-nav {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-title .title-accent {
    font-size: 2.35rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .trust-bar {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
  .cars-grid {
    grid-template-columns: 1fr;
  }
  .services-items-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 16px;
    gap: 24px;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .sell-car-banner {
    padding: 32px 20px;
  }
}

/* Animations */
@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==========================================================================
   TOP SECTION (MATTE BLACK BACKGROUND - PURE TYPOGRAPHY & CTAs)
   ========================================================================== */

.hero-showcase-section {
  position: relative;
  background-color: #0e1014;
  background-image: none;
  overflow: hidden;
  padding: 80px 0 95px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-matte-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.hero-welcome-tag {
  color: #d89f38;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}

.hero-title-main {
  font-family: 'Outfit', sans-serif;
  font-size: 4.2rem;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.hero-title-main .txt-white {
  color: #ffffff;
  display: inline;
}

.hero-title-main .txt-gold {
  color: #d89f38;
  display: inline;
  letter-spacing: -0.01em;
}

.hero-subhead-title {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-tagline-desc {
  color: #c5cbd6;
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 32px;
}

.hero-buttons-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn-hero-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #d89f38;
  color: #0b0c10;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(216, 159, 56, 0.35);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-hero-solid:hover {
  background: #e6ab42;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(216, 159, 56, 0.55);
  color: #000000;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #14161d;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 30px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-hero-ghost:hover {
  background: #1e222c;
  border-color: #d89f38;
  color: #d89f38;
  transform: translateY(-2px);
}

.hero-highlights-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 10px 24px;
  background: #13161e;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50px;
}

.hl-badge {
  color: #aeb5c3;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hl-sep {
  color: #d89f38;
  font-size: 0.75rem;
}

@media (max-width: 992px) {
  .hero-title-main {
    font-size: 3.2rem;
  }
}

@media (max-width: 640px) {
  .hero-showcase-section {
    padding: 55px 0 60px;
  }
  .hero-title-main {
    font-size: 2.3rem;
  }
  .hero-subhead-title {
    font-size: 1.3rem;
  }
  .hero-buttons-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-hero-solid, .btn-hero-ghost {
    width: 100%;
    justify-content: center;
  }
  .hero-highlights-strip {
    border-radius: 12px;
    gap: 8px;
    padding: 10px 14px;
  }
}

/* Exact Trust Bar matching screenshot */
.trust-bar-exact-wrap {
  position: relative;
  margin-top: -36px;
  z-index: 25;
}

.trust-bar-exact {
  background: rgba(12, 15, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 22px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.trust-pill-item {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.trust-pill-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.trust-pill-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-pill-text .t-title {
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-pill-text .t-sub {
  color: #c4c9d4;
  font-size: 0.78rem;
  line-height: 1.35;
  margin-top: 3px;
}

/* Explore Our Cars Bar matching screenshot */
.explore-cars-bar {
  background: #000000;
  padding: 34px 0 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.explore-bar-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
}

.explore-bar-title h3 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.exp-line {
  width: 40px;
  height: 2px;
  background: #d89f38;
}

.explore-categories-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.exp-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #8c95a6;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  padding-bottom: 8px;
  text-decoration: none;
}

.exp-cat-item:hover, .exp-cat-item.active {
  color: #d89f38;
}

.exp-cat-item span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exp-cat-item.active .active-underline {
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  height: 2px;
  background: #d89f38;
  border-radius: 1px;
}

@media (max-width: 992px) {
  .trust-bar-exact {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .trust-pill-item:not(:last-child)::after {
    display: none;
  }
  .explore-categories-row {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .trust-bar-exact-wrap {
    margin-top: -10px;
  }
  .trust-bar-exact {
    grid-template-columns: 1fr;
    padding: 18px 16px;
  }
  .explore-categories-row {
    gap: 16px;
  }
}

/* ==========================================================================
   COMMERCIAL VEHICLE STYLES & CATEGORY GRIDS
   ========================================================================== */

.page-header-banner {
  background: radial-gradient(circle at 80% 20%, rgba(216, 159, 56, 0.15) 0%, transparent 60%),
              linear-gradient(180deg, #06080d 0%, #0d1017 100%);
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(216, 159, 56, 0.2);
  text-align: center;
  position: relative;
}

.page-header-banner h1 {
  font-size: 2.8rem;
  margin-top: 10px;
  margin-bottom: 12px;
}

.page-header-banner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Category Grid (12 Commercial Vehicle Categories) */
.comm-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.comm-cat-card {
  background: var(--bg-card);
  border: 1px solid rgba(216, 159, 56, 0.2);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.comm-cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold-gradient);
  transition: height var(--transition-fast);
}

.comm-cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 159, 56, 0.55);
  box-shadow: var(--shadow-card-hover);
}

.comm-cat-card:hover::before {
  height: 100%;
}

.comm-cat-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(216, 159, 56, 0.12);
  border: 1px solid rgba(216, 159, 56, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 18px;
  transition: all var(--transition-fast);
}

.comm-cat-card:hover .comm-cat-icon {
  background: #d89f38;
  color: #000;
  transform: scale(1.08);
}

.comm-cat-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.comm-cat-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.comm-cat-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Category Quick Browse Pills Bar */
.category-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 40px;
}

.cat-pill-item {
  background: rgba(21, 25, 34, 0.9);
  border: 1px solid rgba(216, 159, 56, 0.3);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all var(--transition-fast);
}

.cat-pill-item:hover {
  background: #d89f38;
  color: #000;
  border-color: #d89f38;
}

/* Why Choose Us 9 Pillars Grid */
.why-nine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-pillar-card {
  background: linear-gradient(145deg, #161922 0%, #0e1117 100%);
  border: 1px solid rgba(216, 159, 56, 0.22);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: all var(--transition-base);
}

.why-pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 159, 56, 0.5);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
}

.why-pillar-num {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.why-pillar-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why-pillar-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Our Commitment Banner */
.commitment-box {
  background: linear-gradient(135deg, rgba(216, 159, 56, 0.15) 0%, rgba(14, 17, 24, 0.95) 100%);
  border: 1px solid rgba(216, 159, 56, 0.4);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.commitment-box h3 {
  font-size: 1.4rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.commitment-tags {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

/* Detailed Support Tri-Grid (Finance, Insurance, RC) */
.support-tri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 36px;
}

.support-tri-card {
  background: var(--bg-card);
  border: 1px solid rgba(216, 159, 56, 0.25);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}

.support-tri-card h4 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 14px;
}

.support-tri-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.55;
}

.support-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-bullet-list li {
  font-size: 0.84rem;
  color: #d1d6e0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-bullet-list li svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

/* Contact Page Layout */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  margin: 50px 0 80px;
}

.contact-details-panel {
  background: linear-gradient(145deg, #151822 0%, #0d1016 100%);
  border: 1px solid rgba(216, 159, 56, 0.3);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-kiran-card {
  background: rgba(216, 159, 56, 0.1);
  border: 1px solid rgba(216, 159, 56, 0.35);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.kiran-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.kiran-info h4 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.kiran-info span {
  font-size: 0.8rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-block svg {
  color: var(--gold-light);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info-block .c-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
  display: block;
}

.contact-info-block .c-val {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.4;
}

.contact-form-panel {
  background: linear-gradient(145deg, #151822 0%, #0d1016 100%);
  border: 1px solid rgba(216, 159, 56, 0.3);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .comm-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-nine-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-tri-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .comm-categories-grid {
    grid-template-columns: 1fr;
  }
  .why-nine-grid {
    grid-template-columns: 1fr;
  }
  .commitment-box {
    padding: 24px 18px;
  }
  .commitment-tags {
    font-size: 0.95rem;
  }
}
