/* ============================================================
   JOY E-BIKE - MAIN STYLESHEET
   ============================================================ */

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

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #00c853;
  --accent-dark: #009624;
  --accent-light: #e8f5e9;
  --accent2: #2979ff;
  --light: #f8f9fa;
  --lighter: #ffffff;
  --grey: #6c757d;
  --light-grey: #e9ecef;
  --border: #dee2e6;
  --text: #1a1a2e;
  --text-light: #636e72;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
  --radius: 14px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: var(--lighter);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--lighter);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.fade-out { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}
.preloader-logo span { color: var(--accent); }
.preloader-bar {
  width: 200px;
  height: 4px;
  background: var(--light-grey);
  border-radius: 4px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 4px;
  animation: barFill 1.2s ease forwards;
}
@keyframes barFill { to { width: 100%; } }

/* ============================================================
   UTILITIES
   ============================================================ */
.transition { transition: var(--transition); }
.text-primary-custom { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-accent2 { color: var(--accent2) !important; }
.bg-primary-custom { background-color: var(--primary) !important; }
.bg-accent { background-color: var(--accent) !important; }
.bg-light-custom { background-color: var(--light) !important; }
.rounded-custom { border-radius: var(--radius) !important; }
.hover-accent:hover { color: var(--accent) !important; }
.shadow-custom { box-shadow: var(--shadow) !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,200,83,0.4);
  color: #fff !important;
}
.btn-outline-custom {
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  color: #fff !important;
  transform: translateY(-2px);
}
.btn-outline-dark-custom {
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  background: transparent;
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}
.btn-outline-dark-custom:hover {
  background: var(--primary);
  color: #fff !important;
  transform: translateY(-2px);
}
.btn-accent-outline {
  color: var(--accent);
  border: 2px solid var(--accent);
  background: transparent;
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}
.btn-accent-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.main-navbar {
  background: rgba(6,10,24,0.80);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.main-navbar.scrolled {
  background: rgba(6,10,24,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
  border-bottom: none;
}
.navbar-brand-text {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.navbar-brand-text .brand-joy { color: #fff; }
.navbar-brand-text .brand-ebike { color: var(--accent); }
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  position: relative;
  letter-spacing: 0.2px;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 4px;
  left: 50%;
  background: var(--accent);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}
.navbar-nav .nav-link:hover::after { width: 70%; }
.navbar-nav .nav-link:hover { color: var(--accent) !important; }
.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3) !important;
}
.navbar-toggler i { color: #fff !important; }
.btn-franchise-login {
  background: transparent;
  color: #fff !important;
  border-radius: 50px;
  padding: 8px 18px !important;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-franchise-login:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff !important;
}
.btn-franchise-login::after { display: none !important; }

/* Book Now CTA button */
.btn-book-now {
  background: var(--accent);
  color: #fff !important;
  border-radius: 50px;
  padding: 9px 22px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.btn-book-now:hover {
  background: #00a846;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,200,83,0.4);
  color: #fff !important;
}

/* Dropdown dark theme */
.dropdown-menu {
  background: rgba(8,12,28,0.97);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  padding: 8px;
  min-width: 210px;
}
.dropdown-item {
  color: rgba(255,255,255,0.78) !important;
  border-radius: 8px;
  font-size: 0.87rem;
  font-weight: 500;
  padding: 9px 14px !important;
  transition: var(--transition);
}
.dropdown-item:hover {
  background: rgba(0,200,83,0.13) !important;
  color: var(--accent) !important;
}
.dropdown-item i { color: var(--accent) !important; }
.dropdown-divider { border-color: rgba(255,255,255,0.08) !important; margin: 4px 8px; }



/* ============================================================
   HERO SECTION — TRUE FULL SCREEN (BULLETPROOF)
   ============================================================ */
.hero-section {
  margin-top: 0;
  position: relative;
  width: 100%;
  /* No height/overflow here — slides define the height */
}

/* Bootstrap carousel: no height constraints, let slides define it */
.hero-carousel {
  width: 100%;
}
.hero-inner {
  width: 100%;
  overflow: hidden;
}

/* THE SLIDE IS 100vh — This is the single source of truth */
.hero-carousel .carousel-item {
  height: 100vh !important;
  min-height: 620px !important;
}
.hero-slide {
  position: relative;
  width: 100%;
  height: 100vh !important;
  min-height: 620px !important;
  overflow: hidden;
}

/* Background gradients per slide */
.hero-slide-1 { background: linear-gradient(135deg, #060d1a 0%, #0f1c2e 60%, #0d1520 100%); }
.hero-slide-2 { background: linear-gradient(135deg, #050e18 0%, #0c1a28 60%, #0a1520 100%); }
.hero-slide-3 { background: linear-gradient(135deg, #060c18 0%, #0d1a26 60%, #0a1420 100%); }

/* Decorative radial overlay */
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 85%, rgba(0,200,83,0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 85% 15%, rgba(41,121,255,0.1) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}

/* Full-cover background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.30;
  filter: saturate(0.7);
  z-index: 0;
}

/* THE KEY: absolute inner wrapper centres content without expanding the slide */
.hero-slide-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 3;
  padding-top: 80px;   /* clear fixed navbar */
}
.hero-slide-inner .container {
  width: 100%;
}
.hero-slide-inner .row {
  width: 100%;
  margin: 0;
}

/* Content column */
.hero-content-wrap {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,200,83,0.15);
  border: 1px solid rgba(0,200,83,0.35);
  color: var(--accent);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeSlideUp 0.8s ease both;
}
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.07;
  margin-bottom: 22px;
  letter-spacing: -1px;
  animation: fadeSlideUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}
.hero-title .highlight {
  background: linear-gradient(90deg, var(--accent) 0%, #00e5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.85;
  animation: fadeSlideUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.22s both;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.35s both;
}
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  animation: fadeSlideUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.5s both;
}
.hero-stat-item {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-item:last-child { border-right: none; }
.hero-stat-item .stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.hero-stat-item .stat-lbl {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

/* Right-side icon column */
.hero-icon-col {
  position: relative;
  z-index: 2;
  height: 400px;
}
.hero-icon-big {
  font-size: 13rem;
  color: rgba(0,200,83,0.22);
  display: block;
  filter: drop-shadow(0 0 70px rgba(0,200,83,0.45));
  animation: floatBike 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.hero-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,83,0.14) 0%, rgba(0,229,255,0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  animation: pulse 4s ease-in-out infinite;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeSlideUp 1s ease 1.2s both;
}
.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollWheel 1.6s ease infinite;
}
.scroll-text {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(12px); opacity: 0; }
  81%  { transform: translateY(0); opacity: 0; }
  100% { opacity: 1; }
}

/* Carousel controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 24px;
  opacity: 1;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}
.hero-carousel .carousel-indicators {
  bottom: 70px;
  z-index: 20;
}
.hero-carousel .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  margin: 0 5px;
  transition: var(--transition);
  cursor: pointer;
  opacity: 1;
}
.hero-carousel .carousel-indicators button.active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0,200,83,0.6);
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatBike {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(1deg); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   QUICK ACTIONS BAR
   ============================================================ */
.quick-actions-bar {
  background: #fff;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  border-radius: var(--radius);
  margin: -30px auto 0;
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0;
  overflow: hidden;
}
.action-item {
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border-right: 1px solid var(--light-grey);
}
.action-item:last-child { border-right: none; }
.action-item:hover { background: var(--accent-light); }
.action-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 12px;
  transition: var(--transition);
}
.action-item:hover .action-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}
.action-item h6 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}
.action-item p { font-size: 0.8rem; color: var(--text-light); margin: 0; }

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
section { padding: 80px 0; }
.section-header { margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--accent); }
.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}
.divider-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 4px;
  margin: 16px auto 0;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--light); }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.about-img-wrap img { width: 100%; display: block; border-radius: var(--radius); }
.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.about-badge-text { font-size: 0.8rem; color: var(--text-light); }
.about-badge-text strong { display: block; font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.about-features { list-style: none; padding: 0; margin: 24px 0; }
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-grey);
  font-weight: 500;
}
.about-features li i { color: var(--accent); font-size: 1rem; }

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section { background: #fff; }
.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: var(--transition);
  overflow: hidden;
  height: 100%;
  position: relative;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transition: var(--transition);
}
.product-card:hover::before { transform: scaleX(1); }
.product-img {
  height: 200px;
  background: linear-gradient(135deg, #f0f2f5 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--light-grey);
  transition: var(--transition);
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img i { transition: var(--transition); }
.product-card:hover .product-img { background: var(--accent-light); }
.product-card:hover .product-img i { color: var(--accent); transform: scale(1.1); }
.product-body { padding: 20px; }
.product-name { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.product-price { font-size: 1.3rem; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
.spec-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.spec-chip {
  background: var(--light);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.spec-chip i { font-size: 0.7rem; color: var(--accent); }
.btn-know-more {
  display: block;
  text-align: center;
  background: var(--light);
  color: var(--primary);
  border-radius: 8px;
  padding: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
}
.btn-know-more:hover { background: var(--accent); color: #fff; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--light); }
.feature-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  border: 1px solid transparent;
}
.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}
.feature-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--accent);
  transition: var(--transition);
}
.feature-card:hover .feature-icon-wrap {
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
}
.feature-card h5 { font-weight: 700; margin-bottom: 10px; color: var(--primary); }
.feature-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* ============================================================
   FRANCHISE / INVESTMENT SECTION
   ============================================================ */
.franchise-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #16213e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.franchise-cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(0,200,83,0.06);
  pointer-events: none;
}
.franchise-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.franchise-benefit:last-child { border-bottom: none; }
.franchise-benefit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(0,200,83,0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.franchise-benefit h6 { font-weight: 700; color: #fff; margin-bottom: 3px; font-size: 0.95rem; }
.franchise-benefit p { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin: 0; line-height: 1.5; }
.rate-table-wrap {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  max-height: 380px;
  overflow-y: auto;
}
.rate-table-wrap::-webkit-scrollbar { width: 6px; }
.rate-table-wrap::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
.rate-table-wrap::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 3px; }
.table-custom { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.table-custom thead th {
  background: rgba(0,200,83,0.2);
  color: var(--accent);
  font-weight: 700;
  padding: 12px 14px;
  white-space: nowrap;
  position: sticky;
  top: 0;
}
.table-custom tbody td { padding: 11px 14px; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.06); }
.table-custom tbody tr:hover td { background: rgba(255,255,255,0.05); color: #fff; }
.table-custom tbody td:first-child { font-weight: 700; color: #fff; }

/* ============================================================
   STATS / COUNTER SECTION
   ============================================================ */
.stats-section { background: #fff; padding: 60px 0; }
.stat-item { text-align: center; padding: 20px; }
.stat-num {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.3px;
}
.stat-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section { background: var(--light); }
.swiper-testimonial { padding: 20px 0 50px; }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.testimonial-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 14px; }
.testimonial-quote-icon {
  font-size: 2.5rem;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.testimonial-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-info .author-name { font-weight: 700; font-size: 0.9rem; color: var(--primary); }
.author-info .author-city { font-size: 0.78rem; color: var(--text-light); }
.swiper-pagination-bullet { background: var(--accent); }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section { background: #fff; }
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--accent); }
.blog-img {
  height: 200px;
  background: linear-gradient(135deg, #f0f2f5, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--light-grey);
  overflow: hidden;
}
.blog-body { padding: 20px; }
.blog-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.blog-title { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; line-height: 1.5; }
.blog-excerpt { font-size: 0.82rem; color: var(--text-light); line-height: 1.7; margin-bottom: 14px; }
.blog-meta { font-size: 0.78rem; color: var(--text-light); display: flex; align-items: center; gap: 10px; }
.blog-meta i { color: var(--accent); }
.btn-read-more { font-weight: 700; font-size: 0.85rem; color: var(--accent); text-decoration: none; transition: var(--transition); }
.btn-read-more:hover { color: var(--accent-dark); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--light); }
.contact-info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  height: 100%;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-grey);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-item h6 { font-weight: 700; color: var(--primary); margin-bottom: 3px; font-size: 0.85rem; }
.contact-item p { color: var(--text-light); font-size: 0.85rem; margin: 0; line-height: 1.6; }
.contact-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-control, .form-select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--light);
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,200,83,0.12);
  background: #fff;
  outline: none;
}
.form-label { font-weight: 600; font-size: 0.85rem; color: var(--text); margin-bottom: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-brand { font-size: 1.6rem; font-weight: 900; color: #fff; margin-bottom: 14px; }
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: 0.85rem; line-height: 1.8; margin-bottom: 20px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.footer-heading { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links li a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; }
.footer-contact-item i { color: var(--accent); margin-top: 3px; font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.82rem; margin: 0; }
.footer-bottom a { color: var(--accent); text-decoration: none; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,200,83,0.4);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-dark); color: #fff; transform: translateY(-3px); }

.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); color: #fff; }

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-body {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f5e9 100%);
  min-height: 100vh;
}
.auth-container { width: 100%; max-width: 520px; }
.register-container { max-width: 800px; }
.auth-card { border-radius: 20px; border: none; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.otp-box {
  width: 52px;
  height: 60px;
  font-size: 22px;
  text-align: center;
  font-weight: 700;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: var(--light);
  color: var(--primary);
  transition: var(--transition);
}
.otp-box:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,200,83,0.15);
  background: #fff;
}
.otp-box.filled {
  border-color: var(--accent);
  background: var(--accent-light);
}

/* Admin Login */
.admin-login-wrap { height: 100vh; display: flex; overflow: hidden; }
.admin-login-left {
  flex: 0 0 42%;
  background: linear-gradient(160deg, var(--primary) 0%, #0f1124 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
  position: relative;
  overflow: hidden;
}
.admin-login-left::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(0,200,83,0.08);
}
.admin-login-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  background: #fff;
}
.admin-login-right .login-form-box { width: 100%; max-width: 380px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .hero-section { height: auto; min-height: 90vh; }
  .hero-bike-visual { display: none; }
  .hero-title { font-size: 2.4rem; }
  .hero-stats { gap: 24px; }
  section { padding: 60px 0; }
  .quick-actions-bar { margin: 20px 16px 0; border-radius: var(--radius); }
  .action-item { border-right: none; border-bottom: 1px solid var(--light-grey); }
  .action-item:last-child { border-bottom: none; }
  .rate-table-wrap { max-height: 260px; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .admin-login-wrap { flex-direction: column; }
  .admin-login-left { flex: none; padding: 40px 30px; }
  .admin-login-right { padding: 40px 30px; }
  .otp-box { width: 42px; height: 52px; font-size: 18px; }
  .contact-item { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group a { text-align: center; }
  .quick-actions-bar { display: none; }
}
