/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark: #0d1117;
  --dark2: #141b24;
  --dark3: #1a2332;
  --accent: #1e6fb5;
  --accent2: #00b4d8;
  --white: #ffffff;
  --light: #edf3ff;
  --gray: #8892a4;
  --border: rgba(255,255,255,0.1);
  --card-bg: rgba(255,255,255,0.04);
  --font-main: 'Open Sans', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.35s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-main);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   FLOATING WA
   ===================== */
.float-wa {
  position: fixed;
  bottom: 28px;
  left: 18px;
  z-index: 1000;
}

.float-wa a {
  display: block;
  text-decoration: none;
}

.float-wa-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
}

.float-wa-inner:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}

.float-wa-text {
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* =====================
   HEADER
   ===================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo img {
  width: 160px;
}

/* ---- Desktop Nav ---- */
#mainNav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

#mainNav > ul > li {
  position: relative;
}

#mainNav > ul > li > a {
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

#mainNav > ul > li > a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

#mainNav > ul > li.highlight-nav > a {
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
}

#mainNav > ul > li.highlight-nav > a:hover {
  background: #1a5fa0;
}

/* Desktop Submenu */
#mainNav > ul > li.has-sub > ul.sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #161e2a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  min-width: 170px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  padding: 6px;
  list-style: none;
  z-index: 100;
}

#mainNav > ul > li.has-sub:hover > ul.sub-menu {
  display: block;
}

#mainNav > ul > li.has-sub > ul.sub-menu li a {
  display: block;
  font-size: 0.84rem;
  font-family: var(--font-body);
  padding: 9px 14px;
  border-radius: 6px;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  white-space: nowrap;
}

#mainNav > ul > li.has-sub > ul.sub-menu li a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

/* Desktop dropdown arrow */
#mainNav > ul > li.has-sub > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

/* Hamburger - 3 dots vertical */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 10px;
  width: 42px;
  height: 42px;
  transition: var(--transition);
}

.nav-toggle:hover {
  background: rgba(255,255,255,0.14);
}

.nav-toggle .dot {
  display: block;
  width: 5px;
  height: 5px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

/* =====================
   HERO
   ===================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,17,23,0.88) 0%, rgba(13,17,23,0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cars {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.car-thumb {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  min-width: 180px;
  flex: 1;
}

.car-thumb:hover {
  background: rgba(255,255,255,0.13);
  border-color: var(--accent2);
  transform: translateY(-4px);
}

.car-thumb img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 10px;
  border-radius: 6px;
}

.car-thumb span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #1a5fa0;
  border-color: #1a5fa0;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.small-btn {
  padding: 7px 18px;
  font-size: 0.82rem;
}

/* =====================
   SECTION HEADER
   ===================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.section-header p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
}

/* =====================
   CAR SECTIONS
   ===================== */
.car-section {
  padding: 100px 0;
}

.car-section.alt-bg {
  background: var(--dark2);
}

.car-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.car-layout.reverse {
  direction: rtl;
}

.car-layout.reverse > * {
  direction: ltr;
}

.car-img {
  position: relative;
}

.rounded-img {
  border-radius: 16px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.badge-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.car-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.specs-row {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.spec-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  flex: 1;
  min-width: 110px;
}

.spec-item p {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 4px;
}

.spec-item h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent2);
  line-height: 1.2;
  margin-bottom: 4px;
}

.feature-list {
  margin-bottom: 28px;
}

.feature-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--border);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 3px;
}

.feature-list li::after {
  content: '\2713';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--white);
  font-weight: 700;
}

.car-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =====================
   BROSUR - SINGLE LAYOUT
   ===================== */
.brosur-section {
  padding: 100px 0;
  background: var(--dark3);
}

.brosur-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.brosur-img-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  cursor: zoom-in;
}

.brosur-img-main img {
  width: 100%;
  display: block;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.brosur-img-main:hover img {
  transform: scale(1.03);
}

.zoom-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  text-align: center;
  padding: 24px 12px 12px;
  letter-spacing: 0.5px;
  pointer-events: none;
}

.brosur-single-info h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.brosur-single-info p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 24px;
}

.brosur-points {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brosur-points li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  padding-left: 24px;
  position: relative;
}

.brosur-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent2);
  border-radius: 50%;
}

.brosur-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =====================
   SALES SECTION
   ===================== */
.sales-section {
  padding: 100px 0;
  background: var(--dark2);
}

.sales-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}

.photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.photo-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(13,17,23,0.95));
  padding: 40px 20px 20px;
  text-align: center;
}

.photo-badge span {
  display: block;
  font-size: 0.78rem;
  color: var(--accent2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.photo-badge strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.sales-name-block h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.sales-title {
  color: var(--accent2);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.divider-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 24px;
}

.sales-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 28px;
}

.sales-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.sh-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}

.sh-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--white);
}

.sh-item strong {
  font-size: 0.88rem;
  display: block;
  margin-bottom: 2px;
}

.sh-item p {
  font-size: 0.78rem;
  color: var(--gray);
  margin: 0;
}

.sales-contacts {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =====================
   TESTIMONI - SINGLE IMAGE
   ===================== */
.testimoni-section {
  padding: 100px 0;
  background: var(--dark);
}

.testimoni-center {
  display: flex;
  justify-content: center;
}

.testi-single-wrap {
  position: relative;
  max-width: 760px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  cursor: zoom-in;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.testi-single-wrap:hover {
  border-color: var(--accent2);
  box-shadow: 0 28px 72px rgba(0,180,216,0.18);
}

.testi-single-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.testi-single-wrap:hover .testi-single-img {
  transform: scale(1.02);
}

.testi-zoom-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
  color: rgba(255,255,255,0.88);
  font-size: 0.8rem;
  text-align: center;
  padding: 32px 16px 16px;
  letter-spacing: 0.4px;
  pointer-events: none;
  font-family: var(--font-body);
}

/* =====================
   DEALER SECTION
   ===================== */
.dealer-section {
  padding: 100px 0;
  background: var(--dark3);
}

.dealer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 60px;
}

.dealer-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  transition: var(--transition);
  text-align: center;
}

.dealer-card:hover {
  border-color: var(--accent2);
  transform: translateY(-4px);
}

.dealer-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 0.6rem;
  color: var(--white);
}

.dealer-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.dealer-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 12px;
}

.dealer-card a {
  font-size: 0.82rem;
  color: var(--accent2);
  font-weight: 600;
}

.dealer-card a:hover {
  text-decoration: underline;
}

/* CTA Block */
.cta-block {
  background: linear-gradient(135deg, var(--accent), #0a3d6b);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
}

.cta-block h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.cta-block p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================
   FOOTER
   ===================== */
#footer {
  background: #080c10;
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-col img {
  margin-bottom: 20px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contacts a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: var(--transition);
}

.footer-contacts a:hover {
  color: var(--white);
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.qr-img {
  border-radius: 8px;
  margin-bottom: 8px;
}

.qr-name {
  font-size: 0.78rem;
  color: var(--gray);
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  border: none;
}

.social-btn svg {
  display: block;
}

.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.social-btn.instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-btn.tiktok    { background: #010101; border: 1px solid #333; }
.social-btn.whatsapp  { background: #25d366; }
.social-btn.email     { background: #ea4335; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray);
}

/* =====================
   FADE-IN ANIMATION
   ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   LIGHTBOX
   ===================== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 92vw;
  max-height: 92vh;
}

.lightbox-img-wrap {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 80vh;
  cursor: grab;
}

.lightbox-img-wrap.dragging {
  cursor: grabbing;
}

#lightboxImg {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  transform-origin: center center;
  transition: transform 0.22s ease;
  user-select: none;
  pointer-events: none;
}

.lightbox-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lbx-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lbx-btn:hover {
  background: rgba(255,255,255,0.22);
}

/* Zoomable cursor */
.zoomable {
  cursor: zoom-in;
}

/* Active nav link */
#mainNav a.active-link {
  color: var(--accent2);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .car-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .car-layout.reverse {
    direction: ltr;
  }

  .car-layout.reverse .car-img {
    order: -1;
  }

  .dealer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  #mainNav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10,14,20,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 4px 12px 12px;
  }

  #mainNav.active {
    display: block;
    animation: slideDown 0.25s ease;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Reset desktop ul styles */
  #mainNav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  /* All nav links in mobile */
  #mainNav > ul > li > a {
    padding: 13px 10px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent !important;
    color: rgba(255,255,255,0.88);
  }

  #mainNav > ul > li > a:hover {
    background: rgba(255,255,255,0.05) !important;
    color: var(--white);
  }

  #mainNav > ul > li.highlight-nav > a {
    background: var(--accent) !important;
    color: #fff !important;
    margin-top: 8px;
    border-radius: 8px !important;
    border-bottom: none;
    justify-content: center;
  }

  /* Hide desktop arrow on mobile, we add our own */
  #mainNav > ul > li.has-sub > a::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 2px solid rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-top: -2px;
    margin-left: auto;
  }

  #mainNav > ul > li.has-sub.open > a::after {
    transform: rotate(-135deg);
    margin-top: 2px;
  }

  /* Mobile submenu - hidden by default, toggled by JS */
  #mainNav > ul > li.has-sub > ul.sub-menu {
    display: none;
    position: static;
    background: rgba(255,255,255,0.03);
    border: none;
    border-radius: 0;
    box-shadow: none;
    min-width: unset;
    padding: 0;
    list-style: none;
    border-left: 2px solid var(--accent);
    margin-left: 10px;
  }

  #mainNav > ul > li.has-sub.open > ul.sub-menu {
    display: block;
  }

  /* Desktop hover no longer works on mobile */
  #mainNav > ul > li.has-sub:hover > ul.sub-menu {
    display: none;
  }

  #mainNav > ul > li.has-sub.open:hover > ul.sub-menu {
    display: block;
  }

  #mainNav > ul > li.has-sub > ul.sub-menu li a {
    display: block;
    padding: 10px 14px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    border-radius: 0;
  }

  #mainNav > ul > li.has-sub > ul.sub-menu li:last-child a {
    border-bottom: none;
  }

  #mainNav > ul > li.has-sub > ul.sub-menu li a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06) !important;
  }

  /* Sections */
  .hero-content {
    padding: 90px 20px 48px;
  }

  .car-thumb {
    min-width: 140px;
  }

  .brosur-single {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sales-layout {
    grid-template-columns: 1fr;
  }

  .testi-single-wrap {
    max-width: 100%;
  }

  .dealer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sales-highlights {
    grid-template-columns: 1fr;
  }

  .specs-row {
    flex-wrap: wrap;
  }

  .cta-block {
    padding: 36px 24px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .car-section,
  .brosur-section,
  .sales-section,
  .testimoni-section,
  .dealer-section {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  .dealer-grid {
    grid-template-columns: 1fr;
  }

  .hero-cars {
    flex-direction: column;
  }

  .car-thumb {
    min-width: unset;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .car-actions {
    flex-direction: column;
  }

  .sales-contacts {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
