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

:root {
  --bg-dark: #ffffff;
  --bg-light: #f8fafc;
  --panel-dark: rgba(255, 255, 255, 0.75);
  --panel-light: rgba(255, 255, 255, 0.95);
  --line-dark: rgba(0, 0, 0, 0.08);
  --line-light: rgba(0, 0, 0, 0.05);
  --text-dark: #0f172a;
  --text-light: #0f172a;
  --muted-dark: #475569;
  --muted-light: #475569;
  
  /* Brand Colors */
  --accent-yellow: #ffd500; /* Sporty performance red */
  --accent-green: #00c758; /* Eco-mobility green */
  --ink: #0b0f19;
  
  --yellow-gradient: linear-gradient(135deg, #ffd500 0%, #ffa600 100%);
  --green-gradient: linear-gradient(135deg, #00c758 0%, #00ff87 100%);
  --dark-gradient: linear-gradient(135deg, #0f172a 0%, #070913 100%);
  
  --font-orbitron: Arial, Helvetica, sans-serif;
  --font-rajdhani: Arial, Helvetica, sans-serif;
  
  --card-blur: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #ffffff;
  color: var(--text-dark);
  font-family: var(--font-rajdhani);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  width: 100%;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
  outline: none;
}

/* Common Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-orbitron);
  font-weight: 900;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: inline-block;
  background: linear-gradient(90deg, #fff 0%, var(--muted-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title.accent {
  background: linear-gradient(90deg, var(--accent-yellow) 0%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: var(--font-orbitron);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
  transition: var(--transition);
}

.header.scrolled {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text {
  font-family: var(--font-orbitron);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--yellow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-green);
  border: 1px solid var(--accent-green);
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-orbitron);
}

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

.nav-link {
  font-family: var(--font-orbitron);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted-dark);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-btn {
  background: rgba(255, 213, 0, 0.1);
  border: 1px solid rgba(255, 213, 0, 0.3);
  color: var(--text-dark);
  padding: 8px 18px;
  border-radius: 8px;
  font-family: var(--font-orbitron);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-btn:hover {
  background: var(--accent-yellow);
  color: #000;
  border-color: var(--accent-yellow);
  box-shadow: 0 4px 15px rgba(255, 213, 0, 0.4);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 30px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #fff;
  transition: var(--transition);
}

/* Hero Section (Slider Carousel) */
.hero-slider-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #ffffff;
}

.hero-slides-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex;
  align-items: center;
  z-index: 1;
  padding-top: 72px;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.95);
}

.hero-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  text-shadow: none;
}

/* Dots Navigation */
.hero-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
  transform: scale(1.2);
  box-shadow: 0 0 10px var(--accent-yellow);
}

.hero-eyebrow {
  font-family: var(--font-orbitron);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-green);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-orbitron);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title span {
  background: var(--yellow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: var(--muted-dark);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.btn-main {
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-orbitron);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-main.primary {
  background: var(--yellow-gradient);
  color: #000;
  box-shadow: 0 10px 25px rgba(255, 213, 0, 0.35);
}

.btn-main.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 213, 0, 0.5);
}

.btn-main.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--line-dark);
}

.btn-main.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-3px);
}

/* Interactive Models Sliding Carousel */
.models-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-dark);
  color: var(--muted-dark);
  padding: 8px 24px;
  border-radius: 99px;
  font-family: var(--font-orbitron);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.filter-tab.active {
  background: var(--yellow-gradient);
  color: #000;
  border-color: var(--accent-yellow);
  box-shadow: 0 4px 15px rgba(255, 213, 0, 0.3);
}

.slider-wrapper {
  position: relative;
  width: 100%;
}

.models-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 24px;
  width: 100%;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.models-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.models-slider .model-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  transition: var(--transition);
}

.models-slider .model-card.hide {
  display: none !important;
}

@media (max-width: 768px) {
  .models-slider .model-card {
    flex: 0 0 290px;
  }
}

@media (max-width: 480px) {
  .models-slider .model-card {
    flex: 0 0 270px;
  }
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(3, 4, 8, 0.85);
  border: 1px solid var(--line-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
  box-shadow: 0 4px 15px rgba(255, 213, 0, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: -22px;
}

.slider-arrow.next {
  right: -22px;
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1240px) {
  .slider-arrow.prev {
    left: 10px;
  }
  .slider-arrow.next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .slider-arrow {
    display: none;
  }
}

.slider-progress-wrap {
  width: 240px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  margin: 20px auto 0;
  position: relative;
  overflow: hidden;
}

.slider-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--accent-yellow);
  border-radius: 99px;
  transition: width 0.15s ease-out;
}

.model-card {
  background: rgba(13, 17, 28, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  perspective: 1000px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.model-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--yellow-gradient);
  opacity: 0.8;
  z-index: 2;
}

.model-card:hover {
  transform: translateY(-10px) rotateX(3deg) rotateY(1.5deg);
  border-color: rgba(255, 213, 0, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(255, 213, 0, 0.25);
}

.model-img-wrap {
  position: relative;
  height: 220px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(255, 213, 0, 0.06) 0%, transparent 70%);
}

.model-img-wrap img {
  max-width: 90%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.4s ease;
}

.model-card:hover .model-img-wrap img {
  transform: scale(1.1) translateY(-6px) translateZ(40px);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.model-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 199, 88, 0.15);
  color: var(--accent-green);
  border: 1px solid rgba(0, 199, 88, 0.25);
  font-family: var(--font-orbitron);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 99px;
}

.model-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.model-name {
  font-family: var(--font-orbitron);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.model-meta {
  font-size: 14px;
  color: var(--muted-dark);
  margin-bottom: 16px;
  font-weight: 500;
}

.model-features {
  list-style: none;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.model-features li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.model-features li::before {
  content: "✓";
  color: var(--accent-green);
  font-weight: 900;
}

.model-action {
  margin-top: auto;
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  font-family: var(--font-orbitron);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  transition: var(--transition);
}

.model-card:hover .model-action {
  background: var(--accent-yellow);
  color: #fff;
  border-color: var(--accent-yellow);
  box-shadow: 0 4px 15px rgba(255, 213, 0, 0.3);
}

/* Color Swatches in Model Cards */
.model-colors {
  display: flex;
  gap: 6px;
  margin-top: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.color-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.3);
  display: inline-block;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.color-circle:hover {
  transform: scale(1.25);
  border-color: #fff;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.5);
}

.color-circle.active {
  transform: scale(1.3);
  border-color: var(--accent-yellow);
  box-shadow: 0 0 10px var(--accent-yellow), inset 0 0 0 2px rgba(0, 0, 0, 0.2);
}

.color-blue { background-color: #214fe8; }
.color-black { background-color: #101010; }
.color-white { background-color: #f5f5f5; }
.color-red { background-color: #c60016; }
.color-grey { background-color: #777777; }
.color-silver { background-color: #c8c8c8; }
.color-green { background-color: #5ee65a; }
.color-orange { background-color: #f57c00; }
.color-pink { background-color: #f48acb; }
.color-yellow { background-color: #ffd43b; }
.color-darkgreen { background-color: #1b5e20; }
.color-skyblue { background-color: #4dabf7; }

/* Statistics section */
.stats {
  background: linear-gradient(180deg, #070913 0%, #030408 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.stats:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 213, 0, 0.04) 0%, transparent 70%);
  z-index: 1;
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: var(--panel-dark);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(0, 199, 88, 0.25);
  transform: translateY(-5px);
}

.stat-number {
  font-family: var(--font-orbitron);
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 15px;
  color: var(--muted-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-family: var(--font-orbitron);
}

/* Pushing Limits Banner Section */
.limits-banner-sec {
  background: #030408;
  position: relative;
  padding: 0;
}

.limits-banner-wrap {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 400px;
}

.limits-banner-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  filter: brightness(0.4);
}

.limits-text-card {
  position: absolute;
  left: 10%;
  max-width: 500px;
  padding: 40px;
  background: rgba(7, 9, 19, 0.85);
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.limits-text-card h2 {
  font-family: var(--font-orbitron);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: var(--yellow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.limits-text-card p {
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.6;
}

/* Corporate Info & Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--panel-dark);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 30px 24px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.15);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(0, 199, 88, 0.1);
  border: 1px solid rgba(0, 199, 88, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  margin-bottom: 20px;
  font-size: 22px;
}

.feature-card:nth-child(even) .feature-icon-box {
  background: rgba(255, 213, 0, 0.1);
  border-color: rgba(255, 213, 0, 0.2);
  color: var(--accent-yellow);
}

.feature-title {
  font-family: var(--font-orbitron);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.feature-desc {
  font-size: 15px;
  color: var(--muted-dark);
  line-height: 1.5;
}

/* Partnership / Financial Logos */
.partners-section {
  background: #030408;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 50px 0;
}

.partners-slider {
  display: flex;
  overflow-x: auto;
  gap: 40px;
  align-items: center;
  padding: 10px 0;
}

.partners-slider::-webkit-scrollbar {
  display: none;
}

.partner-logo-item {
  flex: 0 0 140px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) brightness(1.5) contrast(0.8);
  opacity: 0.5;
  transition: var(--transition);
}

.partner-logo-item:hover {
  filter: none;
  opacity: 1;
}

.partner-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Dealership Lead Form */
.dealer-locator-sec {
  background: linear-gradient(180deg, #030408 0%, #070913 100%);
}

.locator-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.locator-info h2 {
  font-family: var(--font-orbitron);
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.2;
}

.locator-info p {
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.locator-bullets {
  list-style: none;
}

.locator-bullets li {
  margin-bottom: 14px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.locator-bullets li svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-green);
  flex-shrink: 0;
}

.dealer-form-card {
  background: var(--panel-dark);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

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

.form-group-full {
  grid-column: span 2;
}

.input-box {
  position: relative;
  display: block;
}

.input-box input, .input-box select, .input-box textarea {
  width: 100%;
  height: 52px;
  background: rgba(3, 4, 8, 0.5);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  color: #fff;
  padding: 0 16px;
  font-family: var(--font-rajdhani);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.input-box textarea {
  height: 100px;
  padding: 12px 16px;
  resize: none;
}

.input-box input:focus, .input-box select:focus, .input-box textarea:focus {
  border-color: var(--accent-yellow);
  background: rgba(3, 4, 8, 0.8);
  box-shadow: 0 0 12px rgba(255, 213, 0, 0.15);
}

.input-box select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
}

.form-btn {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 10px;
  background: var(--yellow-gradient);
  color: #000;
  font-family: var(--font-orbitron);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 213, 0, 0.25);
  transition: var(--transition);
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 213, 0, 0.45);
}

.form-btn:disabled {
  background: var(--muted-dark);
  color: var(--ink);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-alert {
  display: none;
  margin-top: 16px;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.form-alert.success {
  display: block;
  background: rgba(0, 199, 88, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(0, 199, 88, 0.2);
}

.form-alert.error {
  display: block;
  background: rgba(255, 213, 0, 0.1);
  color: var(--accent-yellow);
  border: 1px solid rgba(255, 213, 0, 0.2);
}

/* Reviews / Slider */
.reviews-section {
  background: #030408;
}

.reviews-wrap {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 4px 30px;
}

.reviews-wrap::-webkit-scrollbar {
  height: 5px;
}

.reviews-wrap::-webkit-scrollbar-thumb {
  background: var(--line-dark);
  border-radius: 10px;
}

.review-card {
  flex: 0 0 340px;
  background: var(--panel-dark);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 24px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(255, 213, 0, 0.2);
  transform: translateY(-5px);
}

.review-stars {
  color: #ffbf00;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  color: var(--muted-dark);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.reviewer-name {
  font-family: var(--font-orbitron);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.reviewer-loc {
  font-size: 12px;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FAQs Accordion */
.faq-section {
  background: #f8fafc;
}

.faq-layout {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: var(--panel-dark);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question {
  font-family: var(--font-orbitron);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  stroke: var(--accent-yellow);
  transition: var(--transition);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-content {
  padding-bottom: 20px;
  max-height: 200px;
}

/* General Contact Section */
.contact-section {
  background: #ffffff;
  border-top: 1px solid var(--line-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-panel h2 {
  font-family: var(--font-orbitron);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-info-panel p {
  color: var(--muted-dark);
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 213, 0, 0.1);
  border: 1px solid rgba(255, 213, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  flex-shrink: 0;
}

.contact-text h4 {
  font-family: var(--font-orbitron);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted-dark);
}

.contact-text p, .contact-text a {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-top: 4px;
}

/* Footer styling */
.footer {
  background: #f8fafc;
  border-top: 1px solid var(--line-dark);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-family: var(--font-orbitron);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #0f172a;
  position: relative;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-yellow);
}

.footer-desc {
  font-size: 15px;
  color: var(--muted-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 15px;
  color: var(--muted-dark);
}

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

.footer-units {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.unit-item h5 {
  font-family: var(--font-orbitron);
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.unit-item p {
  font-size: 13px;
  color: var(--muted-dark);
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--muted-dark);
}

/* Mobile Actions Sticky Bar */
.mobile-sticky-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 56px;
  background: #04050b;
  border-top: 1px solid var(--line-dark);
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  z-index: 90;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  background: transparent;
  color: #fff;
  font-family: var(--font-orbitron);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sticky-btn:last-child {
  border-right: 0;
}

.sticky-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-yellow);
  stroke-width: 2.5;
}

.sticky-btn:hover {
  background: rgba(255, 255, 255, 0.02);
  color: var(--accent-yellow);
}

/* Drawer / Mobile Menu */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 110;
  display: none;
  opacity: 0;
  transition: var(--transition);
}

.mobile-drawer.open {
  display: block;
  opacity: 1;
}

.drawer-content {
  position: absolute;
  right: 0;
  top: 0;
  width: 280px;
  height: 100%;
  background: #ffffff;
  border-left: 1px solid var(--line-dark);
  padding: 40px 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-drawer.open .drawer-content {
  transform: translateX(0);
}

.drawer-close {
  float: right;
  background: rgba(0,0,0,0.03);
  border: 1px solid var(--line-dark);
  color: #0f172a;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
}

.drawer-close:hover {
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
}

.drawer-menu {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-link {
  font-family: var(--font-orbitron);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line-dark);
  display: block;
}

.drawer-link:hover {
  color: var(--accent-yellow);
  padding-left: 8px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-col:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
  }
  
  .contact-btn {
    display: none;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .limits-banner-wrap {
    min-height: 300px;
  }
  
  .limits-banner-wrap img {
    height: 360px;
  }
  
  .limits-text-card {
    position: relative;
    left: 0;
    margin: -60px 24px 0;
    max-width: none;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .locator-layout {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-col:last-child, .footer-col {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding-bottom: 80px; /* Leave space for sticky bar */
  }
  
  .mobile-sticky-bar {
    display: grid;
  }
}

/* Extra small mobile devices optimization */
@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }
  .hero-title {
    font-size: 32px;
  }
  .stat-number {
    font-size: 36px;
  }
  .footer-col h3 {
    font-size: 14px;
  }
  .footer-units {
    grid-template-columns: 1fr;
  }
  .model-card {
    border-radius: 16px;
  }
  .model-info {
    padding: 16px;
  }
  .model-features {
    grid-template-columns: 1fr;
    gap: 6px;
    font-size: 14px;
  }
  .model-name {
    font-size: 18px;
  }
  .model-meta {
    font-size: 13px;
  }
}
