/* ==========================================================================
   VELOCITY MOTORS — WORLD-CLASS LUXURY AUTOMOTIVE CSS STYLESHEET
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1F1F1F;
  --bg-glass: rgba(18, 18, 18, 0.85);
  --bg-glass-card: rgba(255, 255, 255, 0.03);
  
  --text-primary: #FFFFFF;
  --text-secondary: #D1D5DB;
  --text-muted: #9CA3AF;
  
  --accent-gold: #D4AF37;
  --accent-gold-light: #F3E5AB;
  --accent-gold-dark: #B8860B;
  --accent-gold-glow: rgba(212, 175, 55, 0.3);
  --accent-gold-soft: rgba(212, 175, 55, 0.12);
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-gold-hover: rgba(212, 175, 55, 0.8);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Syncopate', sans-serif;
  
  /* Shadows & Effects */
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Background Light */
.ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(10, 10, 10, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.glow-top { top: -150px; left: 50%; transform: translateX(-50%); }
.glow-center { top: 40%; right: -200px; }

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.gold-icon {
  color: var(--accent-gold);
}

.gold-text, .text-gold-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #F3E5AB 40%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-padding {
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  background: var(--accent-gold-soft);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

.glass-panel {
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
}

.glass-panel:hover {
  border-color: rgba(212, 175, 55, 0.25);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  color: #0A0A0A;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 100%);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--accent-gold);
}

.btn-outline-gold:hover {
  background: var(--accent-gold-soft);
  color: var(--accent-gold-light);
  border-color: var(--accent-gold-light);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-block {
  width: 100%;
}

/* TOP ANNOUNCEMENT */
.top-announcement {
  background: #050505;
  border-bottom: 1px solid var(--border-glass);
  padding: 0.5rem 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.announcement-links a:hover {
  color: var(--accent-gold);
}

.divider {
  color: var(--text-muted);
  opacity: 0.4;
}

/* NAVBAR HEADER */
.navbar-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-emblem {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37 0%, #111111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
  font-weight: 900;
  font-size: 1.2rem;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

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

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  line-height: 1;
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--accent-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-arrow {
  font-size: 0.7rem;
  margin-left: 0.2rem;
  transition: transform 0.3s;
}

/* MEGA MENU */
.has-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: -150px;
  width: 780px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-normal);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  z-index: 100;
}

.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-mega:hover .nav-arrow {
  transform: rotate(180deg);
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 2rem;
}

.mega-title {
  font-size: 0.85rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-glass);
}

.mega-links li {
  margin-bottom: 0.6rem;
}

.mega-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mega-links a:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.mega-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 1.2rem;
  border-radius: var(--radius-md);
}

.mega-card h5 {
  font-size: 1.1rem;
  margin: 0.5rem 0 0.2rem;
}

.mega-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.badge-gold {
  background: var(--accent-gold);
  color: #0A0A0A;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.icon-btn:hover {
  background: var(--accent-gold-soft);
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--accent-gold);
  color: #0A0A0A;
  font-size: 0.68rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger-btn span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
}

/* SECTION 1 — HERO */
.hero-section {
  position: relative;
  min-height: calc(100vh - 120px);
  padding: 4rem 0 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(212, 175, 55, 0.12) 0%, rgba(10, 10, 10, 0.95) 70%);
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.gold-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
}

.hero-headline {
  font-size: 4.2rem;
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 1.2rem;
  text-transform: capitalize;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 1.2rem 2rem;
  border-radius: var(--radius-md);
  width: fit-content;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  line-height: 1;
}

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

.metric-divider {
  width: 1px;
  height: 35px;
  background: var(--border-glass);
}

.hero-visual {
  position: relative;
}

.hero-car-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.hero-car-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
  border: 1px solid var(--border-glass);
  transition: transform 0.5s ease;
}

.hero-car-img:hover {
  transform: scale(1.02);
}

.hero-car-glow {
  position: absolute;
  bottom: -30px;
  left: 10%;
  width: 80%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(20px);
  z-index: -1;
}

.floating-badge {
  position: absolute;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-card);
  animation: float 4s ease-in-out infinite;
}

.badge-top-right {
  top: -20px;
  right: -20px;
}

.badge-bottom-left {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}

.floating-badge strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.floating-badge span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

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

.scroll-down-btn {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}

.mouse-icon {
  width: 22px;
  height: 36px;
  border: 2px solid var(--border-gold);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.mouse-icon .wheel {
  width: 4px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 2px;
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* VEHICLE CARDS GRID & CARDS */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.vehicle-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.15);
}

.card-media {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vehicle-card:hover .card-img {
  transform: scale(1.06);
}

.card-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.badge-brand {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  color: var(--accent-gold);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
}

.card-quick-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.quick-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.quick-btn:hover, .quick-btn.active {
  background: var(--accent-gold);
  color: #0A0A0A;
  border-color: var(--accent-gold);
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.card-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
}

.card-specs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 0.8rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.2rem;
  text-align: center;
}

.spec-item span {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.spec-item strong {
  font-size: 0.9rem;
  color: var(--text-primary);
}

.card-footer-actions {
  margin-top: auto;
  display: flex;
  gap: 0.8rem;
}

/* SECTION 3 — VEHICLE SEARCH SYSTEM */
.filter-box {
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);

}

.filter-input, .filter-select, .form-control {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition-fast);
}

.filter-input:focus, .filter-select:focus, .form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.filter-select option {
  background: #111;
  color: #fff;
}

.price-filter-group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-val {
  color: var(--accent-gold);
  font-weight: 700;
}

.price-slider {
  width: 100%;
  accent-color: var(--accent-gold);
  cursor: pointer;
  margin-top: 0.8rem;
}

.filter-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-glass);
}

/* SECTION 4 — DETAIL EXPERIENCE PREVIEW */
.detail-preview-card {
  padding: 2.5rem;
}

.detail-preview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.main-gallery-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--border-glass);
  margin-bottom: 1rem;
}

.spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  border: 1px solid var(--border-glass);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.thumb-btn {
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: var(--transition-fast);
}

.thumb-btn.active, .thumb-btn:hover {
  border-color: var(--accent-gold);
  transform: scale(1.03);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-pill {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-gold);
  letter-spacing: 0.15em;
}

.info-header h3 {
  font-size: 2.2rem;
  margin: 0.2rem 0 0.5rem;
}

.price-tag {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);

}

.msrp-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.spec-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.8rem 0;
}

.spec-tile {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 1rem;
  border-radius: var(--radius-md);
}

.spec-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.spec-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.spec-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--accent-gold);
}

.feature-bullets li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spotlight-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* SECTION 5 — WHY CHOOSE VELOCITY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.why-card {
  padding: 2.2rem;
  text-align: left;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
}

.why-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-soft);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.why-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* SECTION 6 — FINANCE CALCULATOR */
.finance-card {
  padding: 3rem;
}

.finance-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.form-group {
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.finance-output {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.output-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.monthly-payment-display {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1.1;
  margin: 0.5rem 0;
}

.output-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.finance-breakdown {
  border-top: 1px solid var(--border-glass);
  padding-top: 1.2rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  color: var(--text-secondary);
}

/* SECTION 7 — TEST DRIVE BOOKING */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.perks-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.perk-item {
  display: flex;
  gap: 1.2rem;
}

.perk-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gold-soft);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.perk-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

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

.booking-form-card {
  padding: 2.5rem;
}

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

/* SECTION 8 — TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.star-rating {
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37, #111);
  color: #0A0A0A;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-name {
  font-size: 1.1rem;
}

.client-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
}

/* SECTION 9 — BRAND SHOWCASE */
.brand-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.5rem;
}

.brand-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.8rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

.brand-tile:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.brand-icon {
  font-size: 2rem;
  color: var(--accent-gold);
}

.brand-tile .brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

/* SECTION 10 — CTA */
.cta-section {
  position: relative;
  padding: 7rem 0;
  background: #050505;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  overflow: hidden;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, rgba(5, 5, 5, 0.95) 75%);
}

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

.cta-headline {
  font-size: 3.5rem;
  margin: 0.8rem 0 1rem;
}

.cta-subheadline {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* SECTION 11 — FOOTER */
.site-footer {
  background: #040404;
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-glass);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

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

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

.footer-contact li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials a:hover {
  background: var(--accent-gold);
  color: #0A0A0A;
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 0.8rem;
}

/* STICKY COMPARISON DOCK */
.comparison-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(14, 14, 14, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-gold);
  padding: 1rem 0;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.9);
}

.comparison-dock.active {
  transform: translateY(0);
}

.dock-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dock-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.dock-thumbs {
  display: flex;
  gap: 1rem;
}

.dock-thumb-item {
  position: relative;
  width: 60px;
  height: 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.dock-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dock-thumb-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0,0,0,0.8);
  color: #fff;
  border: none;
  font-size: 10px;
  cursor: pointer;
}

.dock-actions {
  display: flex;
  gap: 0.8rem;
}

/* MODALS & OVERLAYS */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem;
  background: #111;
  border: 1px solid var(--border-gold);
}

.compare-modal-card {
  max-width: 1100px;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--accent-gold);
  color: #0A0A0A;
}

/* COMPARISON MATRIX TABLE */
.compare-matrix-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.compare-matrix-table th, .compare-matrix-table td {
  padding: 1rem;
  border: 1px solid var(--border-glass);
  text-align: center;
  font-size: 0.92rem;
}

.compare-matrix-table th {
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-heading);
  color: var(--accent-gold);
}

.compare-matrix-table td.feature-title {
  text-align: left;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
}

/* FAVORITES DRAWER */
.favorites-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  background: #111;
  border-left: 1px solid var(--border-gold);
  z-index: 1500;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.favorites-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-glass);
}

.drawer-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* TOAST NOTIFICATIONS */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.toast {
  background: #111;
  border: 1px solid var(--border-gold);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-subheadline { margin: 0 auto 2.5rem; }
  .hero-buttons { justify-content: center; }
  .hero-metrics { margin: 0 auto; }
  .detail-preview-grid, .finance-grid, .booking-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #0A0A0A;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    border-bottom: 1px solid var(--border-gold);
  }
  .nav-menu.active { transform: translateY(0); }
  .hamburger-btn { display: flex; }
  .hero-headline { font-size: 2.8rem; }
  .btn-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
