/* ============================================
   YUVAAN TVS - PREMIUM DEALERSHIP WEBSITE
   MASTER STYLESHEET
   ============================================ */

/* === CSS VARIABLES === */
:root {
  --black: #0B0B0B;
  --dark-gray: #151515;
  --medium-gray: #1E1E1E;
  --red: #E10600;
  --red-dark: #B80500;
  --red-glow: rgba(225, 6, 0, 0.3);
  --white: #FFFFFF;
  --light-gray: #BFBFBF;
  --text-muted: #888888;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
  --shadow-red: 0 0 30px rgba(225, 6, 0, 0.15);
  --glass-bg: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

.section-padding {
  padding: 100px 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  position: relative;
}

.section-tag::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red);
  margin-top: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--light-gray);
  max-width: 600px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-tag::after {
  margin: 8px auto 0;
}

/* === PRELOADER === */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.loader-logo span {
  color: var(--red);
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--medium-gray);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), #ff4444);
  border-radius: 4px;
  animation: loaderFill 1.8s ease-in-out forwards;
}

@keyframes loaderFill {
  0% { width: 0; }
  50% { width: 60%; }
  100% { width: 100%; }
}

.loader-text {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--red), #ff4444);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

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

.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.nav-brand-name span {
  color: var(--red);
}

.nav-brand-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--light-gray);
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--red);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: scale(1.05);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* === MOBILE NAV === */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 11, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--light-gray);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--red);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--black);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(225, 6, 0, 0.15);
  border: 1px solid rgba(225, 6, 0, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-title span {
  background: linear-gradient(135deg, var(--red), #ff4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--light-gray);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(225, 6, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: var(--red);
  background: rgba(225, 6, 0, 0.1);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}

/* Hero indicators */
.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-indicator {
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-indicator.active {
  background: var(--red);
  width: 60px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* === KEYFRAMES === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* === FEATURED BIKES === */
.featured-bikes {
  background: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.featured-bikes::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(225,6,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.bikes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.bike-card {
  background: var(--medium-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.bike-card:hover {
  transform: translateY(-12px);
  border-color: rgba(225, 6, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-red);
}

.bike-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--dark-gray);
}

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

.bike-card:hover .bike-card-image img {
  transform: scale(1.1);
}

.bike-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bike-card-body {
  padding: 28px;
}

.bike-card-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.bike-card-type {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.bike-card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 16px;
}

.bike-card-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.bike-card-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 20px;
}

.bike-card-spec {
  text-align: center;
}

.bike-card-spec-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.bike-card-spec-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.bike-card-actions {
  display: flex;
  gap: 12px;
}

.bike-card-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 12px;
  font-size: 0.8rem;
}

.btn-card {
  background: rgba(225, 6, 0, 0.1);
  color: var(--red);
  border: 1px solid rgba(225, 6, 0, 0.2);
}

.btn-card:hover {
  background: var(--red);
  color: var(--white);
}

/* === WHY CHOOSE US === */
.why-choose {
  background: var(--black);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.why-card {
  background: var(--medium-gray);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 6, 0, 0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.why-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(225, 6, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.why-card:hover .why-card-icon {
  background: var(--red);
  transform: scale(1.1);
}

.why-card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--red);
  transition: var(--transition);
}

.why-card:hover .why-card-icon svg {
  fill: var(--white);
}

.why-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-card-text {
  font-size: 0.85rem;
  color: var(--light-gray);
  line-height: 1.6;
}

/* === EMI CALCULATOR === */
.emi-section {
  background: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.emi-section::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(225,6,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.emi-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: center;
}

.emi-calculator {
  background: var(--medium-gray);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.05);
}

.emi-calculator-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.emi-form-group {
  margin-bottom: 24px;
}

.emi-form-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--light-gray);
  margin-bottom: 8px;
}

.emi-form-group label span {
  color: var(--red);
  font-weight: 600;
  font-size: 1rem;
}

.emi-range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  outline: none;
}

.emi-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--red);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(225, 6, 0, 0.3);
}

.emi-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--red);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.emi-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.emi-result-item {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.emi-result-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.emi-result-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.emi-result-value.highlight {
  color: var(--red);
}

.emi-cta {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

.emi-info {
  padding: 20px;
}

.emi-info-icon {
  width: 80px;
  height: 80px;
  background: rgba(225, 6, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
}

.emi-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.emi-info p {
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.emi-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.emi-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--light-gray);
}

.emi-feature::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
}

/* === TEST RIDE SECTION === */
.test-ride {
  background: var(--black);
  position: relative;
}

.test-ride-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: center;
}

.test-ride-form {
  background: var(--medium-gray);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.05);
}

.test-ride-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

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

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--light-gray);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.1);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--dark-gray);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.test-ride-image {
  position: relative;
}

.test-ride-image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.test-ride-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(11,11,11,0.9), transparent);
  border-radius: var(--radius-lg);
}

.test-ride-image-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.test-ride-image-overlay p {
  color: var(--light-gray);
  font-size: 0.9rem;
}

/* === CUSTOMER REVIEWS === */
.reviews {
  background: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 24px;
  margin-top: 60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
}

.reviews-track::-webkit-scrollbar {
  height: 4px;
}

.reviews-track::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}

.reviews-track::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 4px;
}

.review-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--medium-gray);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(225, 6, 0, 0.2);
  transform: translateY(-4px);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: #FFD700;
}

.review-text {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #ff4444);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
}

.review-author-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.review-author-title {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === BLOG SECTION === */
.blog {
  background: var(--black);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.blog-card {
  background: var(--medium-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 6, 0, 0.2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.blog-card-image {
  height: 200px;
  background: var(--dark-gray);
  overflow: hidden;
}

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

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-link {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-card-link:hover {
  gap: 12px;
}

/* === STATS SECTION === */
.stats {
  background: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--medium-gray);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.stat-item:hover {
  border-color: rgba(225, 6, 0, 0.2);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === BRAND STRIP === */
.brand-strip {
  background: var(--medium-gray);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.brand-strip-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: var(--light-gray);
}

.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.brand-logo {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  transition: var(--transition);
}

.brand-logo:hover {
  opacity: 1;
  color: var(--white);
}

/* === FOOTER === */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: var(--font-heading);
}

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--light-gray);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--red);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 20px;
  flex-shrink: 0;
  color: var(--red);
  font-size: 1.1rem;
}

.footer-contact-text {
  font-size: 0.85rem;
  color: var(--light-gray);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--red);
}

/* === FLOATING WHATSAPP === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--transition);
  animation: whatsappPulse 2s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6); }
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(225, 6, 0, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

/* === BIKE DETAIL PAGE === */
.bike-detail-hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  background: var(--black);
  overflow: hidden;
}

.bike-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bike-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,0.95) 0%, rgba(11,11,11,0.3) 100%);
}

.bike-detail-hero-content {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 2;
}

.bike-detail-breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.bike-detail-breadcrumb a {
  color: var(--light-gray);
}

.bike-detail-breadcrumb a:hover {
  color: var(--red);
}

.bike-detail-breadcrumb span {
  color: var(--red);
}

.bike-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.bike-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.bike-detail-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
}

.bike-detail-emi {
  font-size: 1rem;
  color: var(--light-gray);
}

.bike-detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFD700;
}

.bike-detail-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
  z-index: 998;
  border-top: 1px solid rgba(255,255,255,0.05);
  transform: translateY(100%);
  transition: var(--transition);
}

.bike-detail-sticky-cta.visible {
  transform: translateY(0);
}

.bike-detail-sticky-cta .btn {
  padding: 12px 24px;
  font-size: 0.85rem;
}

/* === SPECIFICATIONS TABLE === */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--medium-gray);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.05);
}

.spec-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.spec-value {
  font-size: 0.95rem;
  font-weight: 600;
}

/* === COLOR SELECTOR === */
.colors-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.color-swatch {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition);
  position: relative;
}

.color-swatch:hover {
  transform: scale(1.1);
}

.color-swatch.active {
  border-color: var(--white);
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.color-swatch.red {
  background: #E10600;
}
.color-swatch.black {
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.2);
}
.color-swatch.blue {
  background: #0044ff;
}
.color-swatch.white {
  background: #f0f0f0;
}
.color-swatch.silver {
  background: #c0c0c0;
}
.color-swatch.gray {
  background: #666;
}
.color-swatch.green {
  background: #00a86b;
}
.color-swatch.matte-black {
  background: #2d2d2d;
}

/* === GALLERY GRID === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  background: var(--medium-gray);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,11,11,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.gallery-item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 21/9;
}

/* === FAQ === */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--medium-gray);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--red);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--light-gray);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  fill: var(--red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.7;
}

/* === RELATED BIKES === */
.related-bikes {
  background: var(--dark-gray);
}

/* === CONTACT PAGE === */
.contact-section {
  padding: 140px 0 100px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info-grid {
  display: grid;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--medium-gray);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(225, 6, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--red);
}

.contact-info-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-text {
  font-size: 0.85rem;
  color: var(--light-gray);
}

.map-container {
  margin-top: 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* === PAGE HEADER === */
.page-header {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,11,11,0.7), var(--black));
}

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

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* === ABOUT PAGE === */
.about-section {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 16px 24px;
  background: rgba(11,11,11,0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
}

.about-image-badge strong {
  display: block;
  font-size: 1.5rem;
  color: var(--red);
}

.about-image-badge span {
  font-size: 0.8rem;
  color: var(--light-gray);
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.about-feature::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
}

/* === TEAM SECTION === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.team-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--medium-gray);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 6, 0, 0.2);
}

.team-card-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--red), #ff4444);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
}

.team-card-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* === EV PAGE === */
.ev-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.ev-feature-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--medium-gray);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.ev-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 6, 0, 0.2);
}

.ev-feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(225, 6, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.ev-feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.ev-feature-desc {
  font-size: 0.85rem;
  color: var(--light-gray);
  line-height: 1.6;
}

/* === EXCHANGE PAGE === */
.exchange-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.exchange-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--medium-gray);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.exchange-step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
}

.exchange-step-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.exchange-step-desc {
  font-size: 0.85rem;
  color: var(--light-gray);
}

/* === SERVICE PAGE === */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  padding: 32px 24px;
  background: var(--medium-gray);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 6, 0, 0.2);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(225, 6, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.service-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 0.85rem;
  color: var(--light-gray);
  line-height: 1.6;
}

/* === BLOG PAGE === */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-top: 60px;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-widget {
  background: var(--medium-gray);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.05);
}

.sidebar-widget-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.sidebar-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-categories a {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--light-gray);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-categories a:hover {
  color: var(--red);
}

/* === GALLERY PAGE === */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 60px;
}

.gallery-page-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--medium-gray);
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-page-item:hover img {
  transform: scale(1.1);
}

.gallery-page-item:nth-child(3n+1) {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* === IMAGE LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--red);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

/* === PARTICLE BACKGROUND === */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .emi-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .test-ride-wrapper {
    grid-template-columns: 1fr;
  }
  .test-ride-image {
    order: -1;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .page-header h1 {
    font-size: 2.5rem;
  }
  .about-content h2 {
    font-size: 2rem;
  }
  .gallery-page-item:nth-child(3n+1) {
    grid-row: auto;
    aspect-ratio: 4/3;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-scroll {
    display: none;
  }
  .bikes-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-number {
    font-size: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .bike-detail-hero {
    height: 60vh;
  }
  .bike-detail-meta {
    gap: 16px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item:first-child {
    aspect-ratio: 16/9;
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    flex: 0 0 300px;
  }
  .bikes-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .bike-detail-sticky-cta {
    padding: 12px 16px;
  }
  .bike-detail-sticky-cta .btn {
    padding: 10px 16px;
    font-size: 0.75rem;
  }
  .brand-logos {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .bike-card-actions {
    flex-direction: column;
  }
  .bike-detail-sticky-cta {
    flex-wrap: wrap;
  }
  .bike-detail-sticky-cta .btn {
    flex: 1;
    min-width: 120px;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .emi-results {
    grid-template-columns: 1fr;
  }
}

/* === UTILITY === */
.gradient-text {
  background: linear-gradient(135deg, var(--red), #ff4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
