/* ========================================
   EV DRIVE HUB - MOTOR SHOW 2026
   Premium Design System
   ======================================== */

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

/* ---------- CSS Variables ---------- */
:root {
  --navy: #0f2027;
  --navy-dark: #0a161c;
  --navy-light: #1a3040;
  --cyan: #00d2ff;
  --cyan-dark: #00b8e6;
  --cyan-glow: rgba(0, 210, 255, 0.35);
  --cyan-subtle: rgba(0, 210, 255, 0.08);
  --white: #ffffff;
  --off-white: #f0f8ff;
  --silver: #c8d6e5;
  --silver-dark: #8395a7;
  --text-dark: #1a1a2e;
  --text-muted: #576574;
  --line-green: #06c755;
  --line-green-dark: #05a847;
  --gold: #f9ca24;
  --gradient-navy: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  --gradient-cyan: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
  --gradient-hero: linear-gradient(135deg, rgba(15,32,39,0.88) 0%, rgba(32,58,67,0.75) 50%, rgba(44,83,100,0.60) 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-cyan: 0 4px 30px rgba(0, 210, 255, 0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

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

.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-cyan);
  border-radius: 2px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 20px auto 0;
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-cyan {
  background: var(--gradient-cyan);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 210, 255, 0.3);
}

.btn-cyan:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 210, 255, 0.45);
}

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

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

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

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.88rem;
}

/* ========================================
   SECTION 0 - TOP PROMO BAR
   ======================================== */
.top-bar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.82rem;
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar__promo {
  color: var(--cyan);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: pulseText 2.5s ease-in-out infinite;
}

@keyframes pulseText {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.top-bar__promo svg {
  width: 14px;
  height: 14px;
  fill: var(--cyan);
}

.top-bar__contact {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar__contact a {
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
}

.top-bar__contact a:hover {
  color: var(--cyan);
}

.top-bar__contact svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* ========================================
   SECTION 1 - STICKY HEADER / NAVBAR
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

/* backdrop-filter applied only when menu is NOT open, to avoid
   creating a containing block that clips the fixed mobile overlay */
.navbar:not(.menu-open) {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
}

.navbar__logo svg {
  width: 36px;
  height: 36px;
}

.navbar__logo span {
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s ease;
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__links a:hover {
  color: var(--cyan-dark);
}

.navbar__cta {
  font-size: 0.82rem !important;
  padding: 10px 22px !important;
}

.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   SECTION 2 - HERO BANNER
   ======================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero__particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(0, 210, 255, 0.5);
  border-radius: 50%;
  animation: floatParticle 8s infinite ease-in-out;
}

.hero__particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.hero__particles span:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; animation-duration: 9s; }
.hero__particles span:nth-child(3) { left: 55%; top: 15%; animation-delay: 2s; animation-duration: 6s; }
.hero__particles span:nth-child(4) { left: 70%; top: 70%; animation-delay: 0.5s; animation-duration: 10s; }
.hero__particles span:nth-child(5) { left: 85%; top: 40%; animation-delay: 3s; animation-duration: 8s; }
.hero__particles span:nth-child(6) { left: 40%; top: 80%; animation-delay: 1.5s; animation-duration: 7.5s; }

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-40px) scale(1.5); opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 60px 0 60px 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 210, 255, 0.15);
  border: 1px solid rgba(0, 210, 255, 0.3);
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.hero__badge svg {
  width: 14px;
  height: 14px;
  fill: var(--cyan);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero h1 .highlight {
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}

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

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__stat {
  text-align: center;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
}

.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

/* ========================================
   SECTION 3 - SPECIFICATIONS
   ======================================== */
.specs {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
}

.specs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(15,32,39,0.03), transparent);
}

.specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.spec-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-cyan);
  opacity: 0;
  transition: var(--transition);
}

.spec-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.spec-card:hover::before {
  opacity: 1;
}

.spec-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cyan-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
}

.spec-card:hover .spec-card__icon {
  background: var(--gradient-cyan);
  box-shadow: var(--shadow-cyan);
}

.spec-card__icon svg {
  width: 32px;
  height: 32px;
  fill: var(--cyan);
  transition: var(--transition);
}

.spec-card:hover .spec-card__icon svg {
  fill: var(--white);
}

.spec-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.spec-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.spec-card__value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cyan);
  margin: 16px 0 4px;
}

.spec-card__unit {
  font-size: 0.82rem;
  color: var(--silver-dark);
}

/* ========================================
   SECTION 4 - MODELS GALLERY
   ======================================== */
.models {
  padding: 100px 0;
  background: var(--white);
}

.models__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.model-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
}

.model-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 210, 255, 0.12);
  border-color: rgba(0, 210, 255, 0.2);
}

.model-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-cyan);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 2;
  letter-spacing: 0.04em;
}

.model-card__img {
  height: 200px;
  background: linear-gradient(135deg, #e8f4ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.model-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.model-card:hover .model-card__img img {
  transform: scale(1.08);
}

.model-card__body {
  padding: 24px;
}

.model-card__body h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.model-card__specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.model-card__spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.model-card__spec svg {
  width: 14px;
  height: 14px;
  fill: var(--cyan);
}

.model-card__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.model-card__price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ========================================
   SECTION 5 - FINANCING
   ======================================== */
.financing {
  padding: 100px 0;
  background: var(--off-white);
}

.financing__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}

.financing__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.financing__table thead {
  background: var(--gradient-navy);
}

.financing__table thead th {
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 18px 20px;
  text-align: left;
  white-space: nowrap;
}

.financing__table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.financing__table tbody tr:hover {
  background: var(--cyan-subtle);
}

.financing__table tbody td {
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.financing__table tbody td:first-child {
  font-weight: 600;
  color: var(--navy);
}

.financing__highlight {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
  color: #6c5300;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-left: 8px;
}

.financing__note {
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--cyan-subtle);
  border-left: 4px solid var(--cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========================================
   SECTION 6 - BOOKING & DOCUMENTS
   ======================================== */
.booking {
  padding: 100px 0;
  background: var(--white);
}

.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.booking__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
}

.booking__form h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
  background: var(--white);
}

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

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

.booking__docs {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.05);
}

.booking__docs h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking__docs h3 svg {
  width: 24px;
  height: 24px;
  fill: var(--cyan);
}

.doc-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.doc-item:last-of-type {
  border-bottom: none;
}

.doc-item__num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--gradient-cyan);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.doc-item__text {
  font-size: 0.92rem;
  color: var(--text-dark);
  padding-top: 4px;
}

.doc-item__text span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.booking__docs-note {
  margin-top: 20px;
  padding: 16px;
  background: rgba(0, 210, 255, 0.06);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--cyan-dark);
  border: 1px dashed rgba(0, 210, 255, 0.3);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.booking__docs-note svg {
  width: 18px;
  height: 18px;
  fill: var(--cyan);
  min-width: 18px;
  margin-top: 2px;
}

/* ========================================
   SECTION 7 - AFTER-SALES
   ======================================== */
.after-sales {
  padding: 100px 0;
  background: var(--off-white);
}

.after-sales__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-cyan);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card__icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--cyan-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--gradient-cyan);
  box-shadow: var(--shadow-cyan);
  transform: rotateY(180deg);
}

.service-card__icon svg {
  width: 36px;
  height: 36px;
  fill: var(--cyan);
  transition: var(--transition);
}

.service-card:hover .service-card__icon svg {
  fill: var(--white);
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========================================
   SECTION 8 - FOOTER
   ======================================== */
.footer {
  background: var(--gradient-navy);
  color: var(--white);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
}

.footer h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--cyan);
}

.footer p, .footer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer a:hover {
  color: var(--cyan);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--cyan);
  min-width: 18px;
}

.footer__map {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer__socials {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer__social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer__social:hover {
  background: var(--cyan);
  transform: translateY(-3px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

/* ========================================
   FLOATING LINE CTA
   ======================================== */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--line-green);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 6px 30px rgba(6, 199, 85, 0.45);
  cursor: pointer;
  transition: var(--transition);
  animation: pulseGlow 2s ease-in-out infinite;
  text-decoration: none;
}

.floating-cta:hover {
  background: var(--line-green-dark);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 40px rgba(6, 199, 85, 0.55);
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 6px 30px rgba(6, 199, 85, 0.45); }
  50% { box-shadow: 0 6px 50px rgba(6, 199, 85, 0.7), 0 0 20px rgba(6, 199, 85, 0.3); }
}

.floating-cta svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.floating-cta__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.floating-cta__text small {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.9;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .specs__grid,
  .after-sales__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    justify-content: center;
    text-align: center;
  }

  .top-bar__contact {
    display: none;
  }

  .navbar__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 32, 39, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 9998;
    overflow-y: auto;
    padding: 80px 24px 40px;
  }

  .navbar__links.active {
    display: flex;
  }

  .navbar__links a {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    padding: 8px 0;
  }

  .navbar__links a::after {
    display: none;
  }

  .navbar__links .btn.navbar__cta {
    margin-top: 12px;
    font-size: 1rem !important;
    padding: 14px 32px !important;
  }

  .navbar__hamburger {
    display: flex;
    z-index: 9999;
    position: relative;
  }

  .navbar__hamburger.active span {
    background: var(--white);
  }

  .navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
  }

  .navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
  }

  .hero {
    min-height: 80vh;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero__stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero__stat-num {
    font-size: 1.5rem;
  }

  .specs__grid,
  .after-sales__grid {
    grid-template-columns: 1fr;
  }

  .models__grid {
    grid-template-columns: 1fr;
  }

  .booking__grid {
    grid-template-columns: 1fr;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    font-size: 0.82rem;
  }

  .floating-cta svg {
    width: 22px;
    height: 22px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .specs, .models, .financing, .booking, .after-sales {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  .hero__buttons {
    flex-direction: column;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__stat-num {
    font-size: 1.3rem;
  }

  .booking__form, .booking__docs {
    padding: 24px;
  }

  .spec-card, .service-card {
    padding: 28px 20px;
  }

  .floating-cta__text small {
    display: none;
  }
}
