* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Montserrat", sans-serif; background: #f5f7fc; color: #1a223b; }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slide animation from right to left */
@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide animation from left to right */
@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-animation-right {
  animation: slideFromRight 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.slide-animation-left {
  animation: slideFromLeft 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.scroll-animate {
  opacity: 0;
  animation-fill-mode: both;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-animate.fade-up {
  animation-name: fadeInUp;
}

.scroll-animate.fade-left {
  animation-name: fadeInLeft;
}

.scroll-animate.fade-right {
  animation-name: fadeInRight;
}

.scroll-animate.scale {
  animation-name: scaleIn;
}

.container { width: min(1180px, 92%); margin: 0 auto; }
.section { padding: 64px 0; }
h2 { font-size: 2rem; margin-bottom: 16px; }

.brand { font-size: 1.02rem; font-weight: 800; letter-spacing: 0.35px; }
.brand span { color: #0039a6; }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(0, 0, 0, 0.023);
  border-bottom: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(0px);
}
.site-header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(232, 232, 232, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}
body.has-scrolled-header { padding-top: 66px; }

.site-header-row {
  min-height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.site-brand-text {
  color: #f07f1a;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.site-brand-text span {
  color: #fff;
  background: linear-gradient(135deg, #1c8f63 0%, #158854 100%);
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 6px;
  display: inline-block;
  line-height: 1;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.site-nav a {
  text-decoration: none;
  color: #ee8200;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: capitalize;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f07f1a, #1c8f63);
  transition: width 0.3s ease;
}

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

.site-nav a:hover {
  color: #f07f1a;
}

.site-divider {
  width: 2px;
  height: 28px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 8px;
}

.site-icon {
  color: #f07f1a;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 6px;
}

.site-icon:hover {
  background: rgba(240, 127, 26, 0.1);
  transform: scale(1.1);
}

.site-header.scrolled .site-brand-text {
  color: #f07f1a;
}

.site-header.scrolled .site-brand-text span {
  background: linear-gradient(135deg, #1c8f63 0%, #158854 100%);
  color: #fff;
}

.site-header.scrolled .site-nav a {
  color: #1a223b;
}

.site-header.scrolled .site-nav a:hover {
  color: #f07f1a;
}

.site-header.scrolled .site-divider {
  background: rgba(0, 0, 0, 0.2);
}

.site-header.scrolled .site-icon {
  color: #2a2a2a;
}

.site-divider,
.site-icon {
  display: inline-block;
}

/* ===== HERO SECTION - PROFESSIONAL DESIGN ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #0b1122;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Slider Container */
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Hero Image with Smooth Slide Right-to-Left Transition */
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  animation: heroSlideIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Slide in from right with zoom */
@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%) scale(1.1);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Slide out to left animation */
@keyframes heroSlideOut {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(-100%) scale(0.95);
  }
}

.hero-image.exit {
  animation: heroSlideOut 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Professional Gradient Overlay - STRONG TOP SHADOW */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.30) 10%,
    rgba(0, 0, 0, 0.15) 25%,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.08) 100%
  );
  z-index: 2;
  backdrop-filter: none;
}

/* Hero Content */
.hero-content {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideUpHero 0.9s ease-out 0.2s both;
}

@keyframes slideUpHero {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.hero-text-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Title - CLEAN & BOLD */
.hero-title {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-style: italic;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

/* Enhanced Action Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Button Base Styles - CLEAN & MINIMAL */
.btn {
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(-1px);
}

/* Secondary Button - Test Ride */
.btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: #1f2844;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #0b1122;
}

/* Primary Button - Buy Now */
.btn-primary {
  background: linear-gradient(135deg, #f07f1a 0%, #e6711a 100%);
  color: #ffffff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f08f2a 0%, #f07f1a 100%);
  color: #ffffff;
}

/* Hero Dots Navigation */
.hero-dots {
  position: absolute;
  z-index: 3;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: slideInRight 0.8s ease-out 0.4s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

/* Dot Styles */
.dot {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.dot:hover {
  border-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

.dot.active {
  background: #1c8f63;
  border-color: #1c8f63;
  box-shadow: 0 0 12px rgba(28, 143, 99, 0.6);
  transform: scale(1.15);
}

/* Progress Bar */
.hero-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #f07f1a 0%, #1c8f63 50%, #0039a6 100%);
  z-index: 3;
  animation: progressLoad 4s linear infinite;
}

@keyframes progressLoad {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 1024px) {
  .hero { min-height: 90vh; }
  .hero-title { font-size: clamp(2rem, 6vw, 3.5rem); }
  .hero-content { bottom: 50px; }
  .btn { padding: 12px 26px; font-size: 0.9rem; }
  .hero-dots { right: 20px; }
}

@media (max-width: 768px) {
  .hero { min-height: 85vh; }
  .hero-title { font-size: clamp(1.75rem, 5vw, 2.8rem); letter-spacing: 1px; }
  .hero-content { bottom: 40px; }
  .hero-text-wrapper { gap: 20px; }
  .hero-actions { gap: 12px; }
  .btn { padding: 11px 22px; font-size: 0.85rem; }
  .hero-dots { right: 15px; gap: 10px; }
  .dot { width: 10px; height: 10px; }
}

@media (max-width: 640px) {
  .hero { min-height: 80vh; }
  .hero-title { font-size: clamp(1.5rem, 4.5vw, 2.2rem); letter-spacing: 0.5px; }
  .hero-content { bottom: 30px; }
  .hero-text-wrapper { gap: 16px; }
  .hero-actions {
    gap: 10px;
    flex-direction: column;
    width: 90%;
    max-width: 300px;
  }
  .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.8rem;
  }
  .hero-dots {
    right: 12px;
    gap: 8px;
    top: 50%;
  }
  .dot { width: 9px; height: 9px; border-width: 1.5px; }
}

.tabs { display: flex; flex-wrap: wrap; border-bottom: 1px solid #dbe3f6; margin-bottom: 14px; }
.tab { border: 0; border-bottom: 3px solid transparent; background: transparent; padding: 11px 12px; font-size: 0.84rem; color: #2a3553; font-weight: 600; cursor: pointer; }
.tab.active { border-bottom-color: #0039a6; color: #0039a6; }

/* SCOOTERS MODAL POPUP */
.scooters-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-in-out;
  justify-content: flex-end;
  align-items: flex-start;
}

.scooters-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

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

.scooters-modal-content {
  background-color: #ffffff;
  position: relative;
  width: 55%;
  height: 100vh;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  animation: slideInRight 0.3s ease-out;
  margin-top: 0;
}

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

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: #fe6500;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: #f88a41;
  transform: scale(1.1);
}

.modal-split-container {
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;

  overflow: hidden;
}

.modal-split-left {
  display: none;
}

.modal-split-right {
  background: #fafafa;
  padding: 40px 35px;
  overflow-y: auto;
  width: 100%;
}

.modal-split-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #e74c3c;
  margin-bottom: 8px;
  line-height: 1;
}

.modal-split-subtitle {
  font-size: 0.9rem;
  color: #666666;
  max-width: 280px;
  line-height: 1.5;
  margin-bottom: 50px;
  font-weight: 500;
}

.modal-arrival-showcase {
  width: 100%;
  max-width: 260px;
}

.modal-arrival-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.modal-arrival-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.modal-scooters-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fe6500;
  margin-bottom: 28px;
  text-align: left;
  letter-spacing: 0.5px;
}

.modal-scooters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.modal-scooter-card {
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s ease;
}

.modal-scooter-card:hover {
  transform: translateY(-2px);

}

.modal-scooter-image-wrapper {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 4px;
  background: #fafafa;
}
.modal-scooter-card a{
  text-decoration: none;
}

.modal-scooter-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.modal-scooter-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #222222;
  margin: 0;
  letter-spacing: 0.3px;
}

.modal-scooter-name a {
  text-decoration: none;
}


/* SUPPORT MODAL POPUP */
.support-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-in-out;
  justify-content: flex-end;
  align-items: flex-start;
}

.support-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.support-modal-content {
  background-color: #ffffff;
  position: relative;
  width: 55%;
  height: 100vh;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  animation: slideInRight 0.3s ease-out;
  margin-top: 0;
}

.support-modal-body {
  height: 100%;
  overflow-y: auto;
  padding: 40px 35px;
}

.support-modal-title {
  font-size: 2rem;
  font-weight: 800;
  color: #333333;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.support-card {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #f0f0f0;
}

.support-card:last-of-type {
  border-bottom: none;
}

.support-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fe6500;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.support-content {
  flex: 1;
  padding-top: 5px;
}

.support-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fe6500;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.support-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a3b6b;
  margin: 0 0 4px 0;
  letter-spacing: 0.5px;
}

.support-time {
  font-size: 0.85rem;
  color: #666666;
  margin: 0;
  font-weight: 500;
}

.arrow-icon {
  margin-left: 8px;
  color: #e74c3c;
  font-weight: 700;
}

.support-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 45px;
}

.support-link-item {
  padding-bottom: 15px;
  border-bottom: 2px solid #fe6500;
 
}

.support-link-item a {
 text-decoration: none;
}

.support-link-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #333333;
  margin: 0;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;
}

.support-link-item h4:hover {
  color: #fe6500;
}

/* MENU MODAL POPUP */
.menu-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-in-out;
  justify-content: flex-end;
  align-items: flex-start;
}

.menu-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.menu-modal-content {
  background-color: #ffffff;
  position: relative;
  width: 55%;
  height: 100vh;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  animation: slideInRight 0.3s ease-out;
  margin-top: 0;
}

.menu-modal-body {
  height: 100%;
  overflow-y: auto;
  padding: 40px 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 60px;
  align-content: start;
}

.menu-section {
  display: flex;
  flex-direction: column;
}

.menu-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fe6500;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 12px;
  border-bottom: 2px solid #fe6500;
}

.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-links li a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.2px;
}

.menu-links li a:hover {
  color: #e74c3c;
}

/* NEW ARRIVALS SECTION */
.new-arrivals {
  background: #f0f0f0;
  padding-top: 60px;
  padding-bottom: 60px;
}

.new-arrivals-page {
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.page-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fe6500;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #333333;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
  font-weight: 500;
}

.arrivals-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #e74c3c;
  margin-bottom: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.arrivals-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: #333333;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
  font-weight: 500;
}

.arrivals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.new-arrivals-page .arrivals-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 1200px;
}

.arrival-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  
  transition: all 0.3s ease;
}




.arrival-model-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.arrival-image {
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 24px;
}

.color-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.color-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.color-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ddd;
}

.color-item span {
  font-size: 0.7rem;
  color: #666666;
  text-align: center;
  font-weight: 600;
}

.arrival-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.arrival-btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrival-btn.secondary {
  background: #ffffff;
  color: #666666;
  border: 1px solid #cccccc;
}

.arrival-btn.secondary:hover {
  background: #f9f9f9;
  border-color: #999999;
}

.arrival-btn.primary {
  background: #fe6500;
  color: #ffffff;
  font-weight: 700;
}

.arrival-btn.primary:hover {
  background: #f88a41;
}

.scooters-showcase { background: #ececec; position: relative; padding-top: 22px; padding-bottom: 24px; }
.scooter-pill {
  width: fit-content;
  margin: 0 auto 18px;
  background: #f2f2f2;
  border: 1px solid #d8d8d8;
  border-radius: 20px;
  padding: 7px 34px;
  font-size: 2rem;
  font-weight: 500;
  color: #3b3b3b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.scooters-tabs {
  flex-wrap: nowrap;
  justify-content: center;
  gap: 22px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 12px;
}
.scooters-tabs::-webkit-scrollbar { display: none; }
.scooters-tabs .tab { white-space: nowrap; padding: 10px 2px; color: #252525; font-size: 0.95rem; font-weight: 500; }
.scooters-tabs .tab.active { color: #111; border-bottom-color: #f07f1a; }

.product { background: #fff; border: 1px solid #e2e8f7; border-radius: 10px; padding: 16px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px; box-shadow: 0 14px 26px rgba(6, 20, 52, 0.08); }
.product img { width: 100%; height: 430px; object-fit: cover; border-radius: 8px; }
.scooter-stage {
  display: block;
  background: #ececec;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 8px 0 0;
}
.scooter-stage img {
  display: block;
  width: min(700px, 96%);
  height: 360px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}
.scooter-info {
  margin-top: 14px;
  border-radius: 10px;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: 12px;
  align-items: stretch;
}
.info-left { 
  display: grid; 
  grid-template-columns: 1.1fr 2fr; 
  align-items: center; 
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 16px;
}
.model-chip { display: flex; align-items: center; gap: 10px; }
.model-chip h3 { font-size: 2.2rem; font-weight: 800; margin: 0; color: #1a1a1a; font-style: italic; }
.model-chip .arrow { font-size: 1.25rem; }
.quick-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.quick-specs div { text-align: left; }
.quick-specs span { display: block; font-size: 1rem; color: #363636; }
.quick-specs strong { display: inline-block; margin-top: 3px; font-size: 2.2rem; color: #f07f1a; font-weight: 800; }
.quick-specs em { margin-left: 4px; font-size: 0.95rem; color: #2f2f2f; font-style: normal; }
.info-right {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.info-right .hero-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 8px;
  width: 100%;
  align-items: center;
}

.info-right .hero-actions a {
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  border: 1px solid #d5d5d5;
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 0 1 auto;
}

.info-right .hero-actions a:first-child {
  background: #ffffff;
  color: #555555;
  border: 1px solid #c8c8c8;
  min-width: 100px;
}

.info-right .hero-actions a:first-child:hover {
  background: #f9f9f9;
  border-color: #a0a0a0;
}

.info-right .hero-actions a.buy {
  background: #fe6500;
  color: #ffffff;
  border: none;
  flex: 1;
  font-weight: 700;
  padding: 12px 28px;
}

.info-right .hero-actions a.buy:hover {
  background: #f88a41;
}
.float-up {
  position: absolute;
  right: 22px;
  bottom: 40px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: #f07f1a;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.meta h3 { font-size: 2rem; margin-bottom: 10px; font-weight: 800; }
.specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.specs div { background: #f4f7ff; border: 1px solid #e1e8fb; border-radius: 6px; padding: 10px; text-align: center; }
.specs span { display: block; font-size: 0.72rem; text-transform: uppercase; color: #667395; }
.specs strong { display: block; margin-top: 3px; font-size: 1.35rem; color: #0039a6; }
.specs em { display: block; margin-top: 2px; font-size: 0.79rem; color: #667395; font-style: normal; }
.stock { 
  margin-top: 0;
  margin-bottom: 0;
  color: #ffffff; 
  font-weight: 700; 
  background: #7ec500;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 0.7rem;
  text-transform: capitalize;
  width: fit-content;
  letter-spacing: 0.3px;
}

.price-label { 
  margin-top: 10px;
  margin-bottom: 0;
  color: #888888; 
  font-size: 0.7rem; 
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.price { 
  margin-top: 2px;
  margin-bottom: 0;
  font-size: 1.9rem; 
  font-weight: 800; 
  color: #fe6500; 
  line-height: 1.1;
}

.price span {
  color: #fe6500;
}

.tech { background: #ececec; color: #1f1f1f; }
.tech-title-block { text-align: center; margin-bottom: 8px; }
.tech-title-block h2 { color: #f07f1a; margin-bottom: 0; letter-spacing: 1px; }
.tech-title-block p { margin-top: 2px; font-style: italic; font-weight: 600; }
.tech-title-block p span { color: #1c8f63; font-style: normal; }
.tech-feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 12px;
  align-items: center;
}
.tech-copy { text-align: center; }
.tech-copy h3 { font-size: 2.5rem; line-height: 1.3; margin-bottom: 10px; color: #141414; }
.tech-copy p { font-size: 1.35rem; line-height: 1.45; color: #3a3a3a; max-width: 92%; margin: 0 auto; }
.tech-feature img { width: 100%; height: 420px; object-fit: contain; object-position: center bottom; }

.tech-cards { background: #ececec; padding-top: 0; }
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tech-grid article { background: transparent; border: 0; border-radius: 10px; overflow: hidden; }
.tech-grid img { width: 100%; height: 210px; object-fit: cover; border-radius: 10px; }
.tech-grid p { color: #121212; font-size: 0.95rem; padding: 10px 2px 0; font-weight: 600; }


.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.feature-grid div { background: #fff; border: 1px solid #e2e8f7; border-radius: 8px; padding: 16px; font-weight: 600; box-shadow: 0 8px 16px rgba(8, 24, 60, 0.05); }
.features-showcase { text-align: center; }
.features-showcase > p { color: #1c8f63; font-weight: 700; letter-spacing: 1px; margin-bottom: 2px; }
.features-showcase h2 { color: #f07f1a; letter-spacing: 1px; margin-bottom: 12px; }
.feature-hero {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #d8d8d8;
  background: #fff;
}
.feature-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  background: #f1f1f1;
}

.feature-highlights {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  gap: 0;
  row-gap: 60px;
}
.highlight-item {
  min-height: auto;
  padding: 0 40px 0 40px;
  border-right: none;
  border-bottom: none;
  border-left: 1px solid #d0d0d0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
}
.highlight-item:first-child { border-left: none; }
.highlight-item:nth-child(3n+1):not(:first-child) { border-left: 1px solid #d0d0d0; }
.highlight-item:nth-child(3n) { border-right: 0; }
.highlight-item:nth-last-child(-n + 3) { border-bottom: 0; }
.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2rem;
  background: transparent;
  margin-bottom: 24px;
  border: none;
}
.highlight-icon.lock { color: #c9941f; }
.highlight-icon.wheel { color: #5b7fa8; }
.highlight-icon.usb { color: #e87a90; }
.highlight-icon.keyless { color: #e87a90; }
.highlight-icon.modes { color: #e87a90; }
.highlight-icon.walk { color: #d4a574; }
.highlight-icon i { line-height: 1; }
.highlight-icon.keyless i { font-size: 2rem; }
.highlight-icon.walk i { font-size: 2rem; }
.highlight-icon.modes i { font-size: 2rem; }
.highlight-icon.usb i { font-size: 2rem; }
.highlight-icon.lock i { font-size: 2rem; }
.highlight-icon.wheel i { font-size: 2rem; }
.highlight-item h3 {
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #000000;
  max-width: 100%;
}

.green-impact {
  padding: 0;
  background: #ececec;
}
.impact-overlay {
  background:
    linear-gradient(102deg, rgba(6, 16, 14, 0.55), rgba(6, 18, 18, 0.35)),
    url("Image/26.png") center 36%/cover no-repeat fixed;
}
.impact-content {
  min-height: 540px;
  display: grid;
  align-content: space-between;
  padding-top: 26px;
  padding-bottom: 24px;
}
.impact-content h2 {
  margin: 0;
  color: #f2f4f2;
  font-size: clamp(2rem, 4.15vw, 3.35rem);
  font-weight: 200;
  line-height: 1.18;
  text-align: center;
  text-shadow: 0 8px 22px rgba(2, 10, 14, 0.62);
}
.impact-content h2 .impact-green {
  color: #59cc43;
  font-weight: 300;
}
.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: #f2f8f2;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}
.impact-stats article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
}
.impact-stats article:last-child { border-right: 0; }
.impact-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: inline-grid;
  place-items: center;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 246, 241, 0.66);
  border-radius: 50%;
  color: rgba(241, 246, 241, 0.9);
  font-size: 1.35rem;
  line-height: 1;
  opacity: 0.92;
  margin-top: 0;
}
.impact-stats p {
  font-size: 0.96rem;
  line-height: 1.02;
  color: #f2f5f2;
  max-width: 290px;
  font-weight: 300;
}
.impact-label {
  display: block;
  color: rgba(238, 243, 239, 0.95);
  font-weight: 300;
}
.impact-stats strong {
  display: block;
  color: #59cc43;
  font-size: 2.05rem;
  line-height: 1;
  margin-bottom: 5px;
  font-weight: 500;
}
.impact-cta {
  width: fit-content;
  margin: 18px auto 0;
  text-decoration: none;
  background: #f1f3ef;
  color: #121614;
  padding: 11px 30px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1.05rem;
}

.stats-band { background: linear-gradient(130deg, #0039a6, #0a1021); color: #fff; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stats div { background: rgba(255, 255, 255, 0.11); border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 8px; padding: 14px; }
.stats h5 { font-size: 1.45rem; margin-bottom: 4px; }

.updates { list-style: none; display: grid; gap: 10px; }
.updates li { background: #fff; border-left: 4px solid #0039a6; border-radius: 6px; padding: 12px; box-shadow: 0 6px 12px rgba(8, 24, 60, 0.05); }

/* UPDATES SECTION */
.updates-section {
  background: #ffffff;
  padding: 80px 0;
}

.updates-header {
  text-align: center;
  margin-bottom: 60px;
}

.updates-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #333333;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.updates-at {
  color: #333333;
  font-weight: 800;
  margin: 0 8px;
}

.updates-brand {
  color: #fe6500;
  font-weight: 800;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.update-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 280px;
}

.update-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.update-card-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.update-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f0f0f0;
}

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

.update-card:hover .update-card-image img {
  transform: scale(1.05);
}

.update-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  z-index: 2;
}

.update-card-top-text {
 
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 20px;
}

.update-card-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}

.update-card-subtext {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f0f0f0;
  margin: 0 0 8px 0;
  letter-spacing: 0.2px;
}

.update-card-subtext-blue {
  font-size: 0.9rem;
  font-weight: 600;
  color: #5b9fd9;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

.update-card-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: #ffffff;
  border-radius: 8px;
  color: #333333;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.update-date-day {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: #333333;
}

.update-date-month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 4px;
  color: #666666;
  text-transform: uppercase;
}

.update-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  flex-grow: 1;
}

.update-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .updates-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .update-card-large {
    grid-column: span 1;
  }

  .updates-title {
    font-size: 1.8rem;
  }
}

/* SUBSCRIBE SECTION */
.subscribe-section {
  background: #ffffff;
  padding: 0;
  overflow: hidden;
}

.subscribe-container {
  display: grid;
  grid-template-columns: 0.3fr 0.6fr;
  align-items: center;
  min-height: 550px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f2f5 100%);
}

.subscribe-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribe-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 500px;
}

.subscribe-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 50px;
  z-index: 2;
  height: 100%;
}

.subscribe-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fe6500;
  margin: 0 0 16px 0;
  letter-spacing: 0.5px;
}

.subscribe-subtitle {
  font-size: 1.15rem;
  font-weight: 500;
  color: #666666;
  margin: 0 0 45px 0;
  line-height: 1.6;
}

.subscribe-form {
  display: flex;
  width: 100%;
  max-width: 420px;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 55px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.subscribe-input {
  flex: 1;
  padding: 16px 22px;
  border: none;
  outline: none;
  background: #ffffff;
  font-size: 1rem;
  color: #333333;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  border-radius: 50px 0px 0px 50px;
}

.subscribe-input::placeholder {
  color: #999999;
}

.subscribe-btn {
  width: 55px;
  padding: 16px 0;
  background: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border-radius: 0px 50px 50px 0px;
}

.subscribe-btn:hover {
  background: #e74c3c;
  color: #ffffff;
}

.follow-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.follow-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333333;
  margin: 0;
  letter-spacing: 0.5px;
}

.follow-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.follow-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f0f0;
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.follow-icon:hover {
  background: #f88a41;
  color: #ffffff;
  transform: scale(1.1);
}

.follow-icon.facebook { color: #1877f2; }
.follow-icon.twitter { color: #1da1f2; }
.follow-icon.youtube { color: #ff0000; }
.follow-icon.instagram { color: #e1306c; }
.follow-icon.linkedin { color: #0a66c2; }

@media (max-width: 1024px) {
  .subscribe-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .subscribe-left {
    display: none;
  }

  .subscribe-center {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .updates-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .updates-title {
    font-size: 1.8rem;
  }

  .subscribe-title {
    font-size: 1.8rem;
  }

  .subscribe-form {
    max-width: 100%;
  }
}

.footer { background: #1f2024; color: #d7dbe7; padding-bottom: 24px; }
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 20px;
}
.footer-about { border-right: 1px solid #353842; padding-right: 12px; }
.footer-copy { font-size: 0.8rem; line-height: 1.55; margin-bottom: 12px; color: #c8cedf; }
.footer-note { font-size: 0.78rem; line-height: 1.6; color: #aeb6cb; margin-bottom: 12px; }
.social-row { display: flex; gap: 8px; }
.social-row span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f1f3f8;
  color: #1f2024;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
}
.footer-links { list-style: none; display: grid; gap: 10px; color: #d7dbe7; font-size: 0.95rem; }
.footer-contact p { margin-bottom: 10px; font-weight: 700; color: #ffffff; }
.footer-contact button {
  width: 100%;
  margin-bottom: 10px;
  background: transparent;
  color: #fff;
  border: 1px solid #565a66;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}
.footer-bar { border-top: 1px solid #353842; margin-top: 22px; padding-top: 12px; color: #a9b0c2; font-size: 0.82rem; }

@media (max-width: 980px) {
  .hero { height: 100vh; min-height: 100vh; }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 0.8rem; }
  .site-brand-text { font-size: 0.9rem; }
  .hero-content { bottom: 18px; flex-direction: column; gap: 10px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-dots { right: 10px; }
  .product, .feature-grid, .stats, .tech-grid, .tech-feature, .footer-main { grid-template-columns: 1fr; }
  .product img { height: 300px; }
  .scooter-stage img { height: 260px; width: min(520px, 95%); }
  .scooter-info { grid-template-columns: 1fr; }
  .info-left { grid-template-columns: 1fr; }
  .quick-specs { grid-template-columns: 1fr; }
  .model-chip h3 { font-size: 1.55rem; }
  .quick-specs strong { font-size: 1.45rem; }
  .scooters-tabs { justify-content: flex-start; gap: 14px; }
  .scooters-tabs .tab { font-size: 1rem; }
  .scooter-pill { font-size: 1.4rem; padding: 8px 24px; }
  .float-up { right: 10px; bottom: 16px; }
  .tech-copy h3 { font-size: 1.5rem; }
  .tech-copy p { font-size: 1rem; }
  .tech-feature img { height: 300px; }
  .tech-grid img { height: 220px; }
  .feature-hero img { height: 300px; }
  .scooters-grid { grid-template-columns: repeat(2, 1fr); }
  .arrivals-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-item {
    border-right: 0;
    min-height: auto;
    padding: 18px 16px;
  }
  .highlight-item:nth-last-child(-n + 3) { border-bottom: 1px solid #d7d7d7; }
  .highlight-item:last-child { border-bottom: 0; }
  .highlight-item h3 { font-size: 1.1rem; max-width: 100%; }
  .impact-content {
    min-height: 390px;
    padding-top: 22px;
  }
  .impact-content h2 { font-size: clamp(1.6rem, 7vw, 2.45rem); }
  .impact-stats {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.42);
  }
  .impact-stats article {
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.36);
    padding: 14px 4px;
  }
  .impact-stats article:first-child { border-top: 0; }
  .impact-stats strong { font-size: 2rem; }
  .impact-cta {
    font-size: 0.95rem;
    padding: 10px 22px;
  }
  .footer-about { border-right: 0; padding-right: 0; border-bottom: 1px solid #353842; padding-bottom: 12px; }
}

/* ===== MOBILE RESPONSIVE HEADER & FOOTER (768px and below) ===== */
@media (max-width: 768px) {
  /* HEADER MOBILE */
  .site-header-row {
    min-height: 70px;
    padding: 12px;
    justify-content: center;
  }

  .site-brand {
    gap: 6px;
    flex-grow: 1;
    justify-content: center;
  }

  .logo {
    height: 55px;
    width: auto;
  }

  .site-nav {
    gap: 16px;
    margin-left: auto;
  }

  .site-nav a {
    font-size: 0.8rem;
    font-weight: 600;
  }

  .site-divider {
    width: 1.5px;
    height: 22px;
    margin: 0 6px;
  }

  .site-icon {
    font-size: 1rem;
    padding: 6px 10px;
  }

  body.has-scrolled-header {
    padding-top: 56px;
  }

  /* FOOTER MOBILE - HIDDEN */
  .footer {
    display: none !important;
  }

  /* MODAL SCOOTERS GRID - MOBILE (2 per row) */
  .modal-scooters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .modal-scooter-card {
    border-radius: 6px;
    text-align: center;
  }

  .modal-scooter-image-wrapper {
    height: 100px;
    margin-bottom: 8px;
  }

  .modal-scooter-name {
    font-size: 0.8rem;
    font-weight: 700;
  }

  /* MODAL FULL SCREEN ON MOBILE */
  .scooters-modal-content {
    width: 100% !important;
    height: 100vh !important;
    max-width: 100% !important;
  }

  .modal-close-btn {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .modal-split-container {
    grid-template-columns: 1fr !important;
    height: 100% !important;
  }

  .modal-split-left {
    display: none !important;
  }

  .modal-split-right {
    width: 100% !important;
    height: 100% !important;
    padding: 16px 12px !important;
    overflow-y: auto !important;
  }

  /* MODAL SPLIT RIGHT - STYLING ON MOBILE */
  .modal-split-right {
    padding: 16px 12px;
    width: 100%;
    height: 100%;
  }

  .modal-scooters-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  /* SUPPORT MODAL FULL SCREEN ON MOBILE */
  .support-modal-content {
    width: 100% !important;
    height: 100vh !important;
    max-width: 100% !important;
  }

  .support-modal-body {
    padding: 16px 12px !important;
    height: 100% !important;
    overflow-y: auto !important;
  }

  .support-modal-title {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
  }

  .support-card {
    margin-bottom: 16px !important;
    padding: 12px !important;
  }

  .support-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .support-label {
    font-size: 0.9rem !important;
  }

  .support-value {
    font-size: 0.85rem !important;
  }

  .support-links-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }

  .support-link-item {
    padding: 12px !important;
  }

  .support-link-item h4 {
    font-size: 0.9rem !important;
    margin: 0 !important;
  }

  /* MENU MODAL FULL SCREEN ON MOBILE */
  .menu-modal-content {
    width: 100% !important;
    height: 100vh !important;
    max-width: 100% !important;
  }

  .menu-modal-body {
    padding: 16px 12px !important;
    height: 100% !important;
    overflow-y: auto !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .menu-section {
    margin-bottom: 12px !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding-bottom: 12px !important;
  }

  .menu-section-title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #fe6500 !important;
    margin-bottom: 10px !important;
  }

  .menu-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .menu-links li {
    margin: 0 !important;
  }

  .menu-links li a {
    font-size: 0.9rem !important;
    color: #555 !important;
    text-decoration: none !important;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-about {
    border-right: 0;
    border-bottom: 1px solid #353842;
    padding: 0 0 20px 0;
  }

  .footer-copy {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .footer-note {
    font-size: 0.72rem;
    line-height: 1.5;
  }

  .social-row {
    margin-top: 10px;
    gap: 6px;
  }

  .social-row span {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .footer-links {
    gap: 8px;
    font-size: 0.85rem;
  }

  .footer-contact {
    border-top: 1px solid #353842;
    padding-top: 16px;
  }

  .footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .footer-contact button {
    padding: 9px 12px;
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .footer-bar {
    margin-top: 16px;
    padding-top: 10px;
    font-size: 0.75rem;
  }
}

/* ===== MOBILE RESPONSIVE HEADER & FOOTER (640px and below) ===== */
@media (max-width: 640px) {
  /* HEADER EXTRA SMALL */
  .site-header-row {
    min-height: 65px;
    padding: 10px;
    justify-content: center;
  }

  .site-brand {
    flex-grow: 1;
    justify-content: center;
  }

  .logo {
    height: 50px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2px;
  }

  .site-divider {
    display: none;
  }

  .site-icon {
    font-size: 0.95rem;
    padding: 5px 8px;
  }

  body.has-scrolled-header {
    padding-top: 50px;
  }

  .site-header {
    z-index: 100;
  }

  .site-header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  /* FOOTER EXTRA SMALL */
  .footer {
    padding: 24px 0 16px;
  }

  .footer-main {
    gap: 20px;
  }

  .footer-about {
    padding: 0 0 16px 0;
  }

  .footer-copy {
    font-size: 0.7rem;
    line-height: 1.45;
    margin-bottom: 8px;
  }

  .footer-note {
    font-size: 0.68rem;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .social-row {
    gap: 4px;
  }

  .social-row span {
    width: 26px;
    height: 26px;
    font-size: 0.65rem;
  }

  .footer-links {
    gap: 6px;
    font-size: 0.8rem;
  }

  .footer-contact {
    padding-top: 12px;
  }

  .footer-contact p {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }

  .footer-contact button {
    padding: 8px 12px;
    font-size: 0.7rem;
    margin-bottom: 6px;
  }

  .footer-bar {
    margin-top: 12px;
    padding-top: 8px;
    font-size: 0.7rem;
  }
}

/* ===== MOBILE RESPONSIVE HEADER & FOOTER (480px and below - Extra small phones) ===== */
@media (max-width: 480px) {
  /* HEADER ULTRA SMALL */
  .site-header-row {
    min-height: 60px;
    padding: 8px;
    justify-content: center;
  }

  .site-brand {
    flex-grow: 1;
    justify-content: center;
  }

  .logo {
    height: 60px;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav a {
    font-size: 0.68rem;
  }

  .site-icon {
    font-size: 0.9rem;
    padding: 4px 6px;
  }

  body.has-scrolled-header {
    padding-top: 48px;
  }

  /* FOOTER ULTRA SMALL */
  .footer {
    padding: 20px 0 12px;
  }

  .footer-main {
    gap: 16px;
  }

  .footer-copy {
    font-size: 0.65rem;
  }

  .footer-note {
    font-size: 0.63rem;
  }

  .footer-links {
    font-size: 0.75rem;
    gap: 5px;
  }

  .footer-contact button {
    padding: 7px 10px;
    font-size: 0.65rem;
  }

  .footer-bar {
    font-size: 0.65rem;
  }
}

/* Footer links: allow anchor styling */
.footer-links a {
  color: inherit;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* About page */
.about-page {
  background: #f5f7fc;
  color: #1a223b;
}
body > .site-header.scrolled .site-nav a {
  color: #121212;
}
body > .site-header.scrolled .site-brand-text {
  color: #f07f1a;
}
body > .site-header.scrolled .site-brand-text span {
  color: #fff;
  background: #1c8f63;
}

.about-overview {
  background: #f5f7fc;
  padding: 58px 0 18px;
}
.about-overview-title {
  text-align: center;
  color: #fe6500;
  font-size: 2rem;
  letter-spacing: 2px;
  font-weight: 900;
  margin-top: 60px;
  margin-bottom: 60px;
}
.about-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  border-bottom: 1px solid #d8dde9;
  padding: 0 10px 12px;
  margin-bottom: 18px;
}
.about-tab {
  display: inline-block;
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 3px solid transparent;
  text-decoration: none;
}
.about-tab.active {
  color: #1a223b;
  border-bottom-color: #fe6500;
}
.about-overview-text {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  line-height: 1.85;
  color: #2b324a;
}

.about-section-shell {
  background: #f5f7fc;
  padding: 26px 0 10px;
}

.about-centered-copy {
  margin-bottom: 10px;
}

.leadership-card {
  margin-top: 26px;
  background: #fff;
  border-radius: 24px;
  padding: 34px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.leadership-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
}

.parternship-img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: center top;
  border-radius: 18px;
}

.leadership-copy h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #2d313d;
}
.leadership-role {
  color: #8a8f9d;
  font-size: 1rem;
  margin-bottom: 18px;
}
.leadership-copy p {
  color: #303544;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-two-col.reverse {
  padding-top: 10px;
}
.about-two-col.reverse .about-side-img {
  order: 1;
}
.about-two-col.reverse .about-text-block {
  order: 2;
}
.about-text-block p {
  color: #2f3646;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-side-img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 16px;
}

.about-empty-panel {
  min-height: 280px;
}

.about-manufacturing-second {
  padding-top: 4px;
}
.manufacturing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding: 26px 0 10px;
}
.manufacturing-grid img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 18px;
}

.about-gallery {
  background: #ffffff;
}
.about-gallery.section {
  padding: 50px 0;
}
.about-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.about-gallery-card {
  margin: 0;
  padding: 0;
}
.about-gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
}

.about-vision {
  background: #ffffff;
}
.about-vision-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: center;
}
.about-vision-illustration {
  width: 100%;
  height: 360px;
  object-fit: contain;
  border-radius: 14px;
  background: #f3f4f6;
  padding: 10px;
}
.about-vision-head {
  color: #fe6500;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.12;
  margin: 0 0 18px;
}
.about-vision-body {
  color: #374151;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.about-subhead {
  color: #fe6500;
  font-size: 1.05rem;
  font-weight: 900;
  margin: 18px 0 8px;
}
.about-vision-paragraph {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-core {
  background: #ffffff;
}
.about-core.section {
  padding: 64px 0;
}
.about-core-wrap {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 44px;
  align-items: start;
}
.about-core-title {
  color: #fe6500;
  font-size: 1.75rem;
  font-weight: 900;
  margin: 0 0 22px;
}
.about-core-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 34px;
}
.core-value h4 {
  color: #1a223b;
  font-size: 0.95rem;
  font-weight: 900;
  margin-bottom: 6px;
}
.core-value p {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.7;
}
.about-core-img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 16px;
}

.about-brand {
  background: #f5f7fc;
  padding: 28px 0 8px;
}
.about-brand-banner {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  min-height: 260px;
}
.about-brand-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-brand-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.22));
}
.about-brand-content {
  position: relative;
  padding: 48px 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.brand-label {
  display: inline-block;
  background: #e03a3e;
  color: #fff;
  font-weight: 900;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.brand-heading {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 900;
  margin: 0 0 14px;
}
.brand-subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

.about-brand-visual-only {
  padding-top: 18px;
}
.about-brand-visual-only .about-brand-banner {
  min-height: auto;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 10px;
}
.about-brand-visual-only .about-brand-img {
  position: static;
  display: block;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.about-director {
  background: #ffffff;
}
.about-director.section {
  padding: 64px 0;
}
.director-heading {
  text-align: center;
  color: #fe6500;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 22px;
  position: relative;
}
.director-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 160px;
  height: 2px;
  background: #e03a3e;
}
.director-content {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: start;
}
.director-content-clean {
  align-items: start;
}
.director-photo-card {
  position: relative;
  background: #f2f2f2;
  border-radius: 22px;
  padding: 16px;
  overflow: hidden;
}
.director-photo-card::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border: 7px solid rgba(224, 58, 62, 0.6);
  border-radius: 50%;
  left: 18px;
  top: 18px;
}
.director-photo-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f4f6;
  padding: 18px;
}
.director-photo-wrap::before,
.director-photo-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 10px solid rgba(224, 58, 62, 0.9);
  z-index: 1;
}
.director-photo-wrap::before {
  width: 220px;
  height: 220px;
  left: -50px;
  top: -40px;
}
.director-photo-wrap::after {
  width: 170px;
  height: 170px;
  left: 40px;
  top: -10px;
}
.director-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 14px;
}
.director-subtitle {
  color: #f88a41;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.28;
  margin: 0 0 14px;
}
.director-paragraph {
  color: #374151;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

@media (max-width: 980px) {
  .about-overview { padding: 54px 0 20px; }
  .about-tabs { gap: 16px; }
  .leadership-card,
  .about-two-col,
  .about-core-wrap,
  .director-content { grid-template-columns: 1fr; }
  .about-two-col.reverse .about-side-img,
  .about-two-col.reverse .about-text-block { order: initial; }
  .manufacturing-grid { grid-template-columns: 1fr; }
  .leadership-card { padding: 18px; }
  .leadership-img,
  .about-side-img,
  .director-photo { height: 300px; }
  .leadership-copy h3 { font-size: 1.5rem; }
  .director-subtitle { font-size: 1.35rem; }
  .about-brand-banner { min-height: 240px; }
  .brand-heading { font-size: 2.2rem; }
}


/* =========================
   CAREER PAGE SIMPLE STYLE
========================= */

.career-page-only {
  background: #e9e9e9;
  padding-top: 40px;

}

.career-simple-section,
.career-image-section,
.career-process-section,
.career-openings-section {
  padding: 28px 0;
}

.career-simple-container {
  text-align: center;
  max-width: 1100px;
}

.career-main-title {
  font-size: 3.6rem;
  font-weight: 400;
  color: #fe6500;
  letter-spacing: 1px;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.career-sub-title {
  font-size: 2.1rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 34px;
  text-align: center;
}

.career-big-text {
  max-width: 1060px;
  margin: 0 auto 32px;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #111111;
  font-weight: 400;
}

.career-small-text {
  max-width: 1040px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.9;
  color: #222222;
  font-weight: 400;
}

.career-text-space {
  margin-bottom: 42px;
}

.second-title {
  margin-top: 8px;
}

.career-image-container {
  max-width: 1120px;
}

.career-team-image {
  width: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

/* PROCESS */
.process-title {
  margin-bottom: 40px;
}

.career-process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
  justify-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.career-process-item {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-process-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 28px solid transparent;
}

.process-gold::before {
  border-color: #d2a144 #eadfca #d2a144 #eadfca;
  transform: rotate(45deg);
}

.process-brown::before {
  border-color: #cda582 #e6dada #cda582 #e6dada;
  transform: rotate(45deg);
}

.process-green::before {
  border-color: #5d9156 #d7d9cf #5d9156 #d7d9cf;
  transform: rotate(45deg);
}

.process-blue::before {
  border-color: #83aec0 #cfd4da #83aec0 #cfd4da;
  transform: rotate(45deg);
}

.career-process-circle {
  width: 160px;
  height: 160px;
  background: #e9e9e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.career-process-circle span {
  font-size: 1.05rem;
  line-height: 1.35;
  color: #2b2b2b;
  font-weight: 500;
}

/* OPENINGS */
.career-job-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 32px 30px;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 28px;
  align-items: start;
}

.career-job-left h3 {
  font-size: 1.1rem;
  color: #fe6500;
  font-weight: 500;
  margin-bottom: 12px;
}

.career-job-left p {
  font-size: 1rem;
  color: #111111;
  line-height: 1.8;
  margin-bottom: 0;
}

.career-job-meta {
  margin-top: 26px;
  margin-bottom: 28px;
}

.career-job-meta p {
  margin-bottom: 8px;
}

.career-job-right {
  border-left: 10px solid #e6e6e6;
  padding-left: 24px;
  min-height: 76px;
}

.career-job-right p {
  margin: 0 0 4px 0;
  font-size: 0.98rem;
  color: #111;
}

.career-job-right span {
  font-size: 1rem;
  color: #111;
}

.career-job-buttons {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.career-red-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fe6500;
  color: #ffffff;
  text-decoration: none;
  border: none;
  padding: 14px 26px;
  min-width: 126px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.career-red-btn:hover {
  background: #f88a41;
}

.outline-btn {
  background: #fe6500;
}

.career-job-detail-box {
  display: none;
  margin-top: 22px;
  padding: 18px 20px;
  background: #ffffff;
  border-left: 4px solid #ff1f1f;
  border-radius: 4px;
}

.career-job-detail-box p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.8;
  color: #222222;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .career-process-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }
}

@media (max-width: 768px) {
  .career-main-title {
    font-size: 2.5rem;
    margin-bottom: 36px;
  }

  .career-sub-title {
    font-size: 1.7rem;
    margin-bottom: 22px;
  }

  .career-big-text,
  .career-small-text {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .career-process-row {
    grid-template-columns: 1fr;
  }

  .career-process-item {
    width: 220px;
    height: 220px;
  }

  .career-process-circle {
    width: 135px;
    height: 135px;
  }

  .career-job-card {
    grid-template-columns: 1fr;
  }

  .career-job-right {
    border-left: none;
    border-top: 8px solid #e6e6e6;
    padding-left: 0;
    padding-top: 18px;
  }

  .career-job-buttons {
    flex-direction: column;
  }

  .career-red-btn {
    width: 100%;
  }
}

.color-item {
  cursor: pointer;
}

.color-item .color-dot {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.color-item:hover .color-dot {
  transform: scale(1.12);
}

.color-item.active .color-dot {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.18);
  transform: scale(1.12);
}

/* ===== MOBILE NAVIGATION SECTION ===== */

/* Hide navigation on mobile (640px and below) */
@media (max-width: 768px) {
  .site-nav {
    display: none;
  }
}

/* Mobile Footer Navigation Section */
.footer-mobile-nav {
  display: none;
  border-top: 1px solid #353842;
  padding-top: 16px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .footer-mobile-nav {
    display: block;
  }
}

.mobile-nav-logo {
  display: none;
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #353842;
}

@media (max-width: 768px) {
  .mobile-nav-logo {
    display: block;
  }
}

.mobile-nav-logo img {
  height: 35px;
  width: auto;
  object-fit: contain;
}

.mobile-nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {
  .mobile-nav-links {
    display: flex;
  }
}

.mobile-nav-links a {
  display: inline-block;
  color: #d7dbe7;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 0;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.mobile-nav-links a:hover {
  color: #f07f1a;
  border-bottom-color: #f07f1a;
}

.mobile-nav-links a.active {
  color: #f07f1a;
  border-bottom-color: #f07f1a;
}

.mobile-nav-divider {
  width: 100%;
  height: 1px;
  background: #353842;
  margin: 10px 0;
  display: none;
}

@media (max-width: 768px) {
  .mobile-nav-divider {
    display: block;
  }
}

/* Mobile Quick Actions */
.mobile-quick-actions {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #353842;
}

@media (max-width: 768px) {
  .mobile-quick-actions {
    display: flex;
  }
}

.mobile-quick-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  background: transparent;
  color: #fff;
  border: 1px solid #565a66;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-quick-actions a:hover {
  background: rgba(240, 127, 26, 0.1);
  border-color: #f07f1a;
  color: #f07f1a;
}

/* ===== RESPONSIVE MOBILE MENU (640px and below) ===== */
@media (max-width: 640px) {
  .site-header-row {
    justify-content: space-between;
  }

  .site-nav {
    display: none !important;
  }

  .footer-mobile-nav {
    padding-top: 12px;
    margin-top: 12px;
  }

  .mobile-nav-logo {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .mobile-nav-logo img {
    height: 32px;
  }

  .mobile-nav-links {
    gap: 10px;
  }

  .mobile-nav-links a {
    font-size: 0.8rem;
    padding: 6px 0;
  }

  .mobile-quick-actions {
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
  }

  .mobile-quick-actions a {
    padding: 7px 10px;
    font-size: 0.7rem;
  }
}

/* ===== RESPONSIVE MOBILE MENU (480px and below) ===== */
@media (max-width: 480px) {
  .footer-mobile-nav {
    padding-top: 10px;
    margin-top: 10px;
  }

  .mobile-nav-logo {
    margin-bottom: 10px;
    padding-bottom: 8px;
  }

  .mobile-nav-logo img {
    height: 28px;
  }

  .mobile-nav-links {
    gap: 8px;
  }

  .mobile-nav-links a {
    font-size: 0.75rem;
    padding: 5px 0;
  }

  .mobile-nav-divider {
    margin: 8px 0;
  }

  .mobile-quick-actions {
    gap: 6px;
    margin-top: 8px;
    padding-top: 8px;
  }

  .mobile-quick-actions a {
    padding: 6px 8px;
    font-size: 0.65rem;
  }
}

/* ===== MOBILE BOTTOM NAVIGATION BAR ===== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  background: linear-gradient(135deg, #1c5a8b 0%, #0f3d6b 100%);
  border-top: 2px solid #f07f1a;
  z-index: 999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  padding: 8px 0;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  body {
    padding-bottom: 65px;
  }
}

.mobile-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px 12px;
  flex: 1;
  transition: all 0.3s ease;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  min-height: 65px;
}

.mobile-nav-btn i {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.mobile-nav-btn span {
  display: block;
  font-size: 0.7rem;
  white-space: nowrap;
}

.mobile-nav-btn:active {
  background: rgba(240, 127, 26, 0.2);
  transform: scale(0.95);
}

.mobile-nav-btn:hover {
  background: rgba(240, 127, 26, 0.15);
  color: #f07f1a;
}

.mobile-nav-btn:hover i {
  color: #f07f1a;
  transform: scale(1.1);
}

/* Responsive sizing for mobile bottom nav */
@media (max-width: 640px) {
  .mobile-bottom-nav {
    padding: 6px 0;
  }

  .mobile-nav-btn {
    min-height: 60px;
    padding: 6px 10px;
    gap: 3px;
  }

  .mobile-nav-btn i {
    font-size: 1.3rem;
  }

  .mobile-nav-btn span {
    font-size: 0.65rem;
  }

  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .mobile-bottom-nav {
    padding: 4px 0;
  }

  .mobile-nav-btn {
    min-height: 55px;
    padding: 4px 8px;
    gap: 2px;
  }

  .mobile-nav-btn i {
    font-size: 1.2rem;
  }

  .mobile-nav-btn span {
    font-size: 0.6rem;
  }

  body {
    padding-bottom: 55px;
  }
}

/* Hide on desktop (769px and above) */
@media (min-width: 769px) {
  .mobile-bottom-nav {
    display: none !important;
  }

  body {
    padding-bottom: 0 !important;
  }
}

/* ===== MOBILE SCOOTERS CAROUSEL (768px and below) ===== */
@media (max-width: 768px) {
  .scooters-showcase {
    background: #f5f7fc;
    padding: 20px 0;
  }

  .scooter-pill {
    margin-bottom: 16px;
    font-size: 1.5rem;
    padding: 6px 24px;
  }

  .scooters-tabs {
    display: none;
  }

  /* Mobile Carousel Container */
  .scooter-carousel {
    position: static;
    width: 100%;
    overflow: hidden;
    background: #f5f7fc;
  }

  .scooter-carousel-inner {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
  }

  .scooter-carousel-item {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }

  .product {
    display: block;
    background: #fff;
    border: 1px solid #e2e8f7;
    border-radius: 12px;
    padding: 12px;
    width: 90%;
    margin: 0 auto;
  }

  .scooter-stage {
    background: #f5f7fc;
    border: none;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 12px;
  }

  .scooter-stage img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    object-position: center;
  }

  .scooter-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
    padding: 0;
    grid-template-columns: none;
  }

  .info-left {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
  }

  .model-chip {
    gap: 8px;
    margin-bottom: 8px;
  }

  .model-chip h3 {
    font-size: 1.6rem;
    font-weight: 800;
  }

  .model-chip .arrow {
    font-size: 1rem;
  }

  .quick-specs {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .quick-specs span {
    font-size: 0.7rem;
    color: #666;
  }

  .quick-specs strong {
    font-size: 1.4rem;
    color: #f07f1a;
  }

  .quick-specs em {
    font-size: 0.7rem;
  }

  .info-right {
    padding: 10px;
    gap: 6px;
  }

  .stock {
    font-size: 0.8rem;
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .price-label {
    font-size: 0.7rem;
    color: #999;
    margin: 2px 0;
  }

  .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f07f1a;
    margin-bottom: 8px;
  }

  .price span {
    color: #f07f1a;
  }

  .hero-actions {
    display: flex;
    gap: 8px;
    width: 100%;
  }

  .hero-actions a {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #f07f1a;
    color: #f07f1a;
  }

  .hero-actions a:first-child {
    background: transparent;
    border: 1px solid #f07f1a;
  }

  .hero-actions a:first-child:hover {
    background: #f07f1a;
    color: #fff;
  }

  .hero-actions a:last-child {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
  }

  .hero-actions a:last-child:hover {
    background: #c0392b;
    border-color: #c0392b;
  }

  /* Carousel Navigation Dots */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 0;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .carousel-dot.active {
    background: #f07f1a;
    width: 24px;
    border-radius: 4px;
  }

  .carousel-dot:hover {
    background: #f07f1a;
  }

  /* Carousel Arrow Buttons */
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(240, 127, 26, 0.9);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
  }

  .carousel-arrow:hover {
    background: #f07f1a;
    transform: translateY(-50%) scale(1.1);
  }

  .carousel-arrow.prev {
    left: 8px;
  }

  .carousel-arrow.next {
    right: 8px;
  }
}

/* ===== HIDE CAROUSEL ARROWS ON DESKTOP (>768px) ===== */
@media (min-width: 769px) {
  .carousel-arrow {
    display: none !important;
  }

  .scooter-carousel {
    display: none !important;
  }
}

/* ===== MOBILE CAROUSEL SMALL SCREENS (640px and below) ===== */
@media (max-width: 640px) {
  .scooter-pill {
    font-size: 1.2rem;
    padding: 5px 20px;
    margin-bottom: 12px;
  }

  .product {
    width: 95%;
    padding: 10px;
  }

  .scooter-stage img {
    height: 200px;
  }

  .model-chip h3 {
    font-size: 1.4rem;
  }

  .quick-specs {
    gap: 4px;
  }

  .quick-specs span {
    font-size: 0.65rem;
  }

  .quick-specs strong {
    font-size: 1.2rem;
  }

  .price {
    font-size: 1.4rem;
  }

  .hero-actions a {
    padding: 7px 10px;
    font-size: 0.7rem;
  }

  .carousel-dots {
    gap: 6px;
    margin-top: 10px;
  }

  .carousel-dot {
    width: 6px;
    height: 6px;
  }

  .carousel-dot.active {
    width: 20px;
  }

  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}

/* ===== MOBILE CAROUSEL EXTRA SMALL (480px and below) ===== */
@media (max-width: 480px) {
  .scooter-pill {
    font-size: 1rem;
    padding: 4px 16px;
  }

  .product {
    width: 100%;
    padding: 8px;
    margin: 0;
  }

  .scooter-stage img {
    height: 180px;
  }

  .model-chip h3 {
    font-size: 1.2rem;
  }

  .quick-specs span {
    font-size: 0.6rem;
  }

  .quick-specs strong {
    font-size: 1rem;
  }

  .price {
    font-size: 1.2rem;
  }

  .hero-actions {
    gap: 6px;
  }

  .hero-actions a {
    padding: 6px 8px;
    font-size: 0.65rem;
  }

  .carousel-arrow {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
}