/* ============================================================
   Vega Cycles & Mobility — Premium Design System
   Color Palette: Orange #FF6B00 | Navy #0B1F3A | Blue #00D4FF
   ============================================================ */

/* ----- Google Fonts ----- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;600;700;800;900&display=swap');

/* ----- CSS Custom Properties ----- */
:root {
  --clr-primary:    #FF6B00;
  --clr-primary-dk: #e05500;
  --clr-primary-lt: #ff8c33;
  --clr-navy:       #0B1F3A;
  --clr-navy-lt:    #162d52;
  --clr-accent:     #00D4FF;
  --clr-accent-dk:  #00aacf;
  --clr-white:      #FFFFFF;
  --clr-off-white:  #F8F9FA;
  --clr-gray-100:   #F1F3F5;
  --clr-gray-200:   #E9ECEF;
  --clr-gray-400:   #ADB5BD;
  --clr-gray-600:   #6C757D;
  --clr-gray-800:   #343A40;
  --clr-dark:       #0a0a0a;

  --gradient-hero:  linear-gradient(135deg, #0B1F3A 0%, #162d52 50%, #0B1F3A 100%);
  --gradient-orange: linear-gradient(135deg, #FF6B00, #ff8c33);
  --gradient-blue:  linear-gradient(135deg, #00D4FF, #0099cc);
  --gradient-card:  linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 24px 60px rgba(0,0,0,.18);
  --shadow-xl:  0 40px 100px rgba(0,0,0,.25);
  --shadow-orange: 0 8px 32px rgba(255,107,0,.35);
  --shadow-blue:   0 8px 32px rgba(0,212,255,.25);
  --shadow-navy:   0 8px 32px rgba(11,31,58,.4);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --font-head:  'Poppins', sans-serif;
  --font-body:  'Inter', sans-serif;
  --font-mono:  'Montserrat', sans-serif;

  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .6s cubic-bezier(.4,0,.2,1);

  --nav-height: 80px;
  --section-py: 100px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--clr-gray-800);
  background: var(--clr-white);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ----- Custom Cursor ----- */
.cursor {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--clr-primary);
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: difference;
}
.cursor-follower {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-primary);
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform .08s ease, width .3s, height .3s;
  opacity: .6;
}
body:hover .cursor { opacity: 1; }

/* ----- Page Loader ----- */
#page-loader {
  position: fixed; inset: 0;
  background: var(--clr-navy);
  z-index: 100000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#page-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.loader-logo {
  width: 120px;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  animation: logoFloat 3s ease-in-out infinite;
}

.loader-spinner {
  position: absolute;
  inset: -25px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--clr-primary);
  border-bottom-color: var(--clr-blue);
  animation: loaderSpin 1.5s linear infinite;
  z-index: 1;
}
.loader-spinner::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-left-color: var(--clr-primary);
  border-right-color: var(--clr-blue);
  animation: loaderSpin 2s linear infinite reverse;
}

.loader-text {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: textPulse 2s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.05); }
}
@keyframes loaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes textPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ----- Navbar ----- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition-slow);
  padding: 0 24px;
}
#navbar.nav-transparent { background: transparent; }
#navbar.nav-scrolled {
  background: rgba(11,31,58,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-navy);
  height: 68px;
}
.navbar-brand img { height: 50px; transition: var(--transition); }
#navbar.nav-scrolled .navbar-brand img { height: 42px; }

.nav-link {
  color: rgba(255,255,255,.85) !important;
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 6px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--clr-primary);
  border-radius: 2px;
  transition: left .3s ease, right .3s ease;
}
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }
.nav-link:hover, .nav-link.active { color: var(--clr-white) !important; }

.nav-cta {
  background: var(--gradient-orange) !important;
  color: white !important;
  border-radius: var(--radius-full) !important;
  padding: 8px 22px !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-orange);
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,107,0,.5); }

/* Responsive Navbar */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--clr-navy);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 15px;
    box-shadow: var(--shadow-lg);
  }
  .nav-link {
    padding: 10px 14px !important;
  }
  .nav-link::after {
    display: none;
  }
  .nav-item.ms-lg-2 {
    margin-top: 10px;
  }
}

/* ----- Hero Section ----- */
#hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1; opacity: .6;
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(255,107,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove { 0%{background-position:0 0} 100%{background-position:60px 60px} }

.hero-glow {
  position: absolute; z-index: 2;
  border-radius: 50%; filter: blur(80px); opacity: .15;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: var(--clr-primary);
  top: -200px; right: -100px;
  animation: floatGlow 8s ease-in-out infinite;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: var(--clr-accent);
  bottom: -100px; left: -100px;
  animation: floatGlow 10s ease-in-out infinite reverse;
}
@keyframes floatGlow { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-40px)} }

.hero-content { position: relative; z-index: 10; padding-top: var(--nav-height); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,0,.12);
  border: 1px solid rgba(255,107,0,.3);
  color: var(--clr-primary-lt);
  padding: 6px 16px; border-radius: var(--radius-full);
  font-size: .8rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--clr-primary); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--clr-white);
  letter-spacing: -.02em;
}
.hero-headline .highlight {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-headline .highlight-blue {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 24px 0 40px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary-vega {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient-orange);
  color: white;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-weight: 600; font-size: 1rem;
  border: none; cursor: pointer;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary-vega::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  opacity: 0; transition: opacity .3s;
}
.btn-primary-vega:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(255,107,0,.5); color: white; }
.btn-primary-vega:hover::before { opacity: 1; }

.btn-ghost-vega {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: white;
  padding: 15px 34px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-weight: 600; font-size: 1rem;
  border: 1.5px solid rgba(255,255,255,.25);
  cursor: pointer; transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-ghost-vega:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-3px);
  color: white;
}

.hero-stats {
  display: flex; gap: 48px; margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem; font-weight: 800;
  color: var(--clr-primary-lt);
  line-height: 1;
}
.hero-stat-label {
  font-size: .78rem; color: rgba(255,255,255,.5);
  letter-spacing: .06em; text-transform: uppercase;
  margin-top: 4px;
}

/* Hero Bike SVG */
.hero-bike-wrap {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: center;
}
.hero-bike-img {
  width: 100%; max-width: 620px;
  filter: drop-shadow(0 30px 80px rgba(255,107,0,.3));
  animation: bikeFloat 6s ease-in-out infinite;
}
@keyframes bikeFloat {
  0%,100%{transform:translateY(0) rotate(-1deg)}
  50%{transform:translateY(-20px) rotate(1deg)}
}
.hero-wheel-badge {
  position: absolute; background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 12px 18px; color: white;
  font-size: .82rem; font-weight: 600;
  animation: badgeFloat 4s ease-in-out infinite;
}
.hero-wheel-badge:nth-child(2) { top: 20%; right: 0; animation-delay: .5s; }
.hero-wheel-badge:nth-child(3) { bottom: 25%; left: 0; animation-delay: 1s; }
.hero-wheel-badge:nth-child(4) { top: 40%; left: 5%; animation-delay: 1.5s; }
.hero-wheel-badge .badge-icon { color: var(--clr-primary); margin-right: 6px; }
@keyframes badgeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; z-index: 10; color: rgba(255,255,255,.4);
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-indicator-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--clr-primary), transparent);
}
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ----- Section Utilities ----- */
.section-py { padding: var(--section-py) 0; }
.section-py-sm { padding: 60px 0; }

.section-label {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--clr-primary);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block;
  width: 32px; height: 2px;
  background: var(--gradient-orange);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15;
  color: var(--clr-navy);
  letter-spacing: -.02em;
}
.section-title .text-orange { color: var(--clr-primary); }
.section-title .text-gradient {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  color: var(--clr-gray-600);
  font-size: 1.05rem; line-height: 1.7;
  max-width: 560px; margin-top: 16px;
}

/* ----- Counter Stats ----- */
#stats { background: var(--clr-navy); overflow: hidden; position: relative; }
#stats::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-card {
  text-align: center; padding: 48px 24px;
  position: relative;
}
.stat-card::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.08);
}
.stat-card:last-child::after { display: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-suffix { font-size: 1.8rem; color: var(--clr-primary); }
.stat-label {
  color: rgba(255,255,255,.5);
  font-size: .85rem; text-transform: uppercase;
  letter-spacing: .08em; margin-top: 8px;
}
.stat-icon { color: var(--clr-accent); font-size: 2rem; margin-bottom: 16px; opacity: .7; }

/* ----- Category Filters ----- */
.cat-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 48px;
}
.cat-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: .85rem; font-weight: 500;
  border: 1.5px solid var(--clr-gray-200);
  color: var(--clr-gray-600);
  background: white;
  cursor: pointer; transition: var(--transition);
}
.cat-btn:hover, .cat-btn.active {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: white;
  box-shadow: var(--shadow-orange);
}

/* ----- Product Cards ----- */
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  position: relative;
  cursor: pointer;
  border: 1px solid var(--clr-gray-200);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.product-card-img-wrap {
  position: relative; overflow: hidden;
  background: var(--clr-gray-100);
  height: 260px;
}
.product-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-card-img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gradient-orange);
  color: white; padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  box-shadow: var(--shadow-orange);
}
.product-actions {
  position: absolute; bottom: -60px; left: 0; right: 0;
  display: flex; gap: 8px; justify-content: center;
  padding: 0 20px 20px;
  transition: bottom .3s ease;
}
.product-card:hover .product-actions { bottom: 0; }
.product-action-btn {
  flex: 1; padding: 10px;
  border: none; border-radius: var(--radius-md);
  font-weight: 600; font-size: .82rem;
  cursor: pointer; transition: var(--transition);
  font-family: var(--font-head);
}
.product-action-btn.primary {
  background: var(--gradient-orange); color: white;
  box-shadow: var(--shadow-orange);
}
.product-action-btn.ghost {
  background: rgba(11,31,58,.08); color: var(--clr-navy);
}
.product-action-btn:hover { transform: translateY(-2px); }

.product-card-body { padding: 24px; }
.product-category {
  font-size: .75rem; color: var(--clr-primary);
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 700;
  color: var(--clr-navy); line-height: 1.3;
  margin-bottom: 8px;
}
.product-tagline { font-size: .85rem; color: var(--clr-gray-600); margin-bottom: 16px; }
.product-meta {
  display: flex; gap: 16px;
  padding-top: 16px; border-top: 1px solid var(--clr-gray-200);
}
.product-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; color: var(--clr-gray-600);
}
.product-meta-item i { color: var(--clr-primary); }
.product-price {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 700;
  color: var(--clr-navy);
  margin-top: 8px;
}

/* ----- Dark Card (Why Choose) ----- */
.feature-card {
  background: var(--clr-navy);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--transition-slow);
  height: 100%;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255,107,0,.2);
}
.feature-icon {
  width: 60px; height: 60px;
  background: rgba(255,107,0,.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--clr-primary);
  margin-bottom: 24px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--clr-primary); color: white; transform: scale(1.1); }
.feature-title {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 700;
  color: white; margin-bottom: 12px;
}
.feature-desc { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ----- Glassmorphism Cards ----- */
.glass-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* ----- 3D Section ----- */
#three-section {
  background: var(--clr-navy);
  min-height: 600px;
  position: relative; overflow: hidden;
}
#bike-3d-canvas {
  width: 100%; height: 500px;
  display: block;
}
.three-hotspot {
  position: absolute;
  background: rgba(0,212,255,.15);
  border: 1.5px solid var(--clr-accent);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  color: var(--clr-accent);
  font-size: .8rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  backdrop-filter: blur(8px);
}
.three-hotspot::before {
  content: '';
  position: absolute;
  width: 8px; height: 8px; background: var(--clr-accent);
  border-radius: 50%; top: 50%; left: -12px;
  transform: translateY(-50%);
  animation: hotspotPulse 2s ease-in-out infinite;
}
@keyframes hotspotPulse { 0%,100%{box-shadow:0 0 0 0 rgba(0,212,255,.5)} 50%{box-shadow:0 0 0 8px transparent} }

/* ----- Timeline ----- */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute; left: 20px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--clr-primary), var(--clr-accent));
}
.timeline-item {
  display: flex; gap: 32px;
  margin-bottom: 48px; position: relative;
}
.timeline-dot {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 50%;
  background: var(--gradient-orange);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: .9rem;
  box-shadow: var(--shadow-orange);
  position: relative; z-index: 1;
}
.timeline-content {
  background: white; border-radius: var(--radius-md);
  padding: 24px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-gray-200);
  flex: 1; transition: var(--transition);
}
.timeline-content:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.timeline-year {
  font-size: .78rem; color: var(--clr-primary);
  font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 6px;
}
.timeline-title {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: var(--clr-navy); margin-bottom: 6px;
}
.timeline-desc { font-size: .87rem; color: var(--clr-gray-600); }

/* ----- Testimonials ----- */
.testimonial-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px; border: 1px solid var(--clr-gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  height: 100%;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-quote {
  font-size: 3rem; line-height: 1;
  color: var(--clr-primary); opacity: .2;
  font-family: Georgia, serif;
}
.testimonial-text { font-size: .95rem; color: var(--clr-gray-600); line-height: 1.8; margin: 16px 0 24px; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gradient-orange);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { font-family: var(--font-head); font-weight: 700; color: var(--clr-navy); font-size: .95rem; }
.testimonial-role { font-size: .8rem; color: var(--clr-gray-600); }
.testimonial-rating { color: #FFB800; font-size: .85rem; margin-top: 4px; }

/* ----- Blog Cards ----- */
.blog-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--clr-gray-200);
  box-shadow: var(--shadow-sm); transition: var(--transition-slow);
  height: 100%;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.blog-card-img-wrap {
  height: 200px; overflow: hidden; background: var(--clr-gray-100);
}
.blog-card-img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.06); }
.blog-card-body { padding: 24px; }
.blog-category {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  color: var(--clr-primary); text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 10px;
}
.blog-title {
  font-family: var(--font-head); font-size: 1rem;
  font-weight: 700; color: var(--clr-navy); line-height: 1.4;
  margin-bottom: 10px; transition: color .2s;
}
.blog-card:hover .blog-title { color: var(--clr-primary); }
.blog-excerpt { font-size: .85rem; color: var(--clr-gray-600); line-height: 1.7; }
.blog-meta {
  display: flex; align-items: center; gap: 16px;
  padding-top: 16px; margin-top: 16px;
  border-top: 1px solid var(--clr-gray-200);
  font-size: .78rem; color: var(--clr-gray-400);
}

/* ----- Dealer Section ----- */
#dealer-section { background: var(--clr-navy); }
.dealer-map-wrap {
  position: relative;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden; min-height: 400px;
}
.dealer-form-card { background: rgba(255,255,255,.04); }

/* ----- Contact Section ----- */
.contact-info-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px; border-radius: var(--radius-md);
  background: white; border: 1px solid var(--clr-gray-200);
  box-shadow: var(--shadow-sm); margin-bottom: 16px;
  transition: var(--transition);
}
.contact-info-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-info-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(255,107,0,.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--clr-primary);
}
.contact-info-label { font-size: .78rem; color: var(--clr-gray-400); letter-spacing: .06em; text-transform: uppercase; }
.contact-info-value { font-weight: 600; color: var(--clr-navy); margin-top: 2px; font-size: .95rem; }

/* ----- Forms ----- */
.form-control-vega {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--clr-gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .95rem;
  background: white; color: var(--clr-navy);
  transition: var(--transition);
  outline: none;
}
.form-control-vega:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 4px rgba(255,107,0,.1);
}
.form-control-vega::placeholder { color: var(--clr-gray-400); }
.form-label-vega {
  display: block; font-weight: 600; font-size: .85rem;
  color: var(--clr-navy); margin-bottom: 6px;
}
textarea.form-control-vega { resize: vertical; min-height: 120px; }
select.form-control-vega { appearance: none; }

/* ----- Footer ----- */
#footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,.65);
}
.footer-brand img { height: 52px; margin-bottom: 20px; }
.footer-desc { font-size: .9rem; line-height: 1.8; max-width: 300px; }
.footer-heading {
  font-family: var(--font-head);
  color: white; font-size: 1rem; font-weight: 700;
  margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px; background: var(--gradient-orange);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.5); font-size: .9rem;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--clr-primary); padding-left: 4px; }
.footer-links a::before { content: '›'; opacity: 0; transition: opacity .2s; }
.footer-links a:hover::before { opacity: 1; }

.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--clr-primary); border-color: var(--clr-primary); color: white; transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0; margin-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: .82rem; color: rgba(255,255,255,.3);
}

.newsletter-form { display: flex; gap: 10px; margin-top: 12px; }
.newsletter-input {
  flex: 1; padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  color: white; font-family: var(--font-body);
  font-size: .88rem; outline: none;
  transition: var(--transition);
}
.newsletter-input:focus { border-color: var(--clr-primary); }
.newsletter-input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-btn {
  padding: 12px 20px;
  background: var(--gradient-orange);
  border: none; border-radius: var(--radius-md);
  color: white; font-weight: 600; cursor: pointer;
  transition: var(--transition);
}
.newsletter-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }

/* ----- WhatsApp Floating Button ----- */
#whatsapp-btn {
  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;
  color: white; font-size: 1.5rem;
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: waBounce 3s ease-in-out infinite;
}
#whatsapp-btn:hover { transform: scale(1.15); box-shadow: 0 16px 48px rgba(37,211,102,.6); color: white; }
@keyframes waBounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }

/* ----- Back to Top ----- */
#back-to-top {
  position: fixed; bottom: 92px; right: 24px; z-index: 998;
  width: 44px; height: 44px;
  background: var(--clr-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem;
  box-shadow: var(--shadow-orange);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-4px); background: var(--clr-primary-dk); }

/* ----- Swiper Overrides ----- */
.swiper-button-next, .swiper-button-prev {
  width: 48px !important; height: 48px !important;
  background: white; border-radius: 50%;
  box-shadow: var(--shadow-md);
  color: var(--clr-primary) !important;
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1rem !important; }
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--clr-primary); color: white !important; }
.swiper-pagination-bullet { background: var(--clr-gray-400) !important; }
.swiper-pagination-bullet-active { background: var(--clr-primary) !important; }

/* ----- AOS Custom ----- */
[data-aos] { will-change: transform, opacity; }

/* ----- Alert / Toast ----- */
.toast-vega {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--clr-navy);
  color: white; padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: .9rem; font-weight: 600;
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  opacity: 0; transition: all .4s ease;
  min-width: 260px; text-align: center;
  border-left: 4px solid var(--clr-primary);
}
.toast-vega.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-vega.success { border-color: #22c55e; }
.toast-vega.error { border-color: #ef4444; }

/* ----- Marquee Banner ----- */
.marquee-wrap {
  background: var(--clr-primary);
  padding: 14px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  color: white; font-size: .82rem;
  font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0 40px; display: inline-flex; align-items: center; gap: 16px;
  flex-shrink: 0;
}
.marquee-item i { opacity: .6; }
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ----- Map ----- */
.gmap-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}
.gmap-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ----- Utility ----- */
.text-orange { color: var(--clr-primary) !important; }
.text-navy   { color: var(--clr-navy) !important; }
.text-accent { color: var(--clr-accent) !important; }
.bg-navy     { background: var(--clr-navy) !important; }
.bg-orange   { background: var(--clr-primary) !important; }
.bg-off-white{ background: var(--clr-off-white) !important; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }
.font-head { font-family: var(--font-head); }
.rounded-vega { border-radius: var(--radius-lg); }

/* ----- Responsive ----- */
@media (max-width: 991.98px) {
  :root { --section-py: 70px; --nav-height: 70px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  #navbar .nav-cta { display: none; }
  .navbar-toggler {
    border: none; padding: 8px;
    color: white !important; font-size: 1.3rem;
  }
  .navbar-collapse {
    background: rgba(11,31,58,.97);
    backdrop-filter: blur(20px);
    margin-top: 12px; padding: 16px;
    border-radius: var(--radius-md);
  }
  .stat-card::after { display: none; }
  .timeline::before { left: 16px; }
  .timeline-dot { width: 32px; height: 32px; min-width: 32px; font-size: .75rem; }
}

@media (max-width: 767.98px) {
  :root { --section-py: 56px; }
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero-stats { gap: 20px; }
  .hero-bike-wrap { margin-top: 40px; }
  .hero-wheel-badge { font-size: .72rem; padding: 8px 12px; }
  .section-title { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .product-card-img-wrap { height: 200px; }
  .feature-card { padding: 24px 20px; }
}

@media (max-width: 575.98px) {
  .hero-actions { flex-direction: column; }
  .btn-primary-vega, .btn-ghost-vega { width: 100%; justify-content: center; }
  .cat-filters { justify-content: center; }
}

/* ----- Print ----- */
@media print {
  #navbar, #whatsapp-btn, #back-to-top, #page-loader { display: none; }
}
