/* ==========================================================================
   AION CIMAHI - OFFICIAL MODERN LIGHT EV THEME
   Visual concept inspired by official AION design (#36c0cd / #45c7d1)
   Ultra-Clean, Minimalist, Highly Responsive for Mobile & Desktop
   ========================================================================== */

:root {
  /* Official AION Turquoise/Cyan Palette */
  --primary: #2ec4d6;
  --primary-hover: #26b2c3;
  --primary-dark: #1b8e9d;
  --primary-light: #e8f9fb;
  --primary-rgb: 46, 196, 214;
  
  --secondary: #0f172a; /* Slate Black */
  --accent-gold: #f59e0b;
  --accent-green: #10b981;
  --wa-green: #25d366;
  
  /* Surfaces & Backgrounds */
  --bg-page: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-cyan-tint: #f3fbfc;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-dark-banner: #0a1924;
  
  /* Typography */
  --text-main: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  /* Borders & Shadows */
  --border-clean: #e2e8f0;
  --border-cyan-light: #d3f3f6;
  --border-focus: rgba(46, 196, 214, 0.4);
  
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-cyan: 0 4px 18px rgba(46, 196, 214, 0.28);
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

.text-cyan {
  color: var(--primary) !important;
}

.highlight-cyan {
  color: var(--primary);
}

.sub-header-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.section-header-center {
  margin-bottom: 3rem;
}

.section-lead-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0.5rem auto 0;
}

.text-center {
  text-align: center;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.68rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: inherit;
  white-space: nowrap;
}

.btn-pill {
  border-radius: var(--radius-pill);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 0.85rem 1.85rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-cyan);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(46, 196, 214, 0.4);
}

.btn-outline-cyan {
  background: #ffffff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline-cyan:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.btn-secondary-light {
  background: #f1f5f9;
  color: var(--text-main);
  border: 1px solid var(--border-clean);
}

.btn-secondary-light:hover {
  background: var(--primary-light);
  border-color: var(--border-cyan-light);
  color: var(--primary-dark);
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.icon-sm {
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  background: #f8fafc;
  border-bottom: 1px solid var(--border-clean);
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dealer-badge-top {
  background: var(--primary);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.separator {
  color: var(--border-clean);
}

.top-link {
  color: var(--primary-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-link:hover {
  color: var(--primary);
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-clean);
  transition: var(--transition);
}

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

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

/* BRAND LOGO */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-img-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

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

.logo-divider {
  width: 1px;
  height: 24px;
  background: var(--border-clean);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-sub {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-main);
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* NAV LINKS */
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition);
}

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

.dropdown-icon {
  width: 13px;
  height: 13px;
  transition: transform 0.2s ease;
}

.nav-item.has-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* DROPDOWN MENU */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background: #ffffff;
  border: 1px solid var(--border-clean);
  border-radius: var(--radius-md);
  padding: 0.6rem;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 1001;
  animation: fadeInDown 0.2s ease;
}

.has-dropdown:hover .dropdown-menu {
  display: flex;
}

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

.dropdown-link {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.dropdown-link:hover {
  background: var(--primary-light);
}

.menu-car-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dropdown-link strong {
  font-size: 0.92rem;
  color: var(--text-main);
}

.dropdown-link small {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.car-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.car-badge.new { background: #e0f2fe; color: #0284c7; }
.car-badge.pop { background: #dcfce7; color: #16a34a; }
.car-badge.pro { background: #ede9fe; color: #7c3aed; }
.car-badge.lux { background: #fef3c7; color: #d97706; }

/* HEADER ACTION & MOBILE TOGGLE */
.header-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-header {
  font-size: 0.88rem;
  padding: 0.55rem 1.25rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   MOBILE OFF-CANVAS DRAWER
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-clean);
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.drawer-brand-sub {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-secondary);
}

.drawer-nav {
  padding: 1rem 0;
  flex: 1;
}

.drawer-nav-list li {
  border-bottom: 1px solid #f1f5f9;
}

.drawer-link {
  display: block;
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
}

.drawer-link:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.drawer-dropdown-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  font-size: 0.95rem;
}

.dropdown-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.drawer-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

.drawer-submenu {
  display: none;
  background: #f8fafc;
  padding: 0.5rem 0;
}

.drawer-dropdown.open .drawer-submenu {
  display: block;
}

.drawer-submenu a {
  display: block;
  padding: 0.65rem 1.75rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.drawer-submenu a:hover {
  color: var(--primary-dark);
}

.drawer-actions {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border-clean);
}

.drawer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.drawer-socials a {
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-socials svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(180deg, #f0fbfb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-label-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-subtitle-line {
  display: block;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: -0.2px;
  margin-top: 0.35rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-car-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 65%, #ffffff 0%, #edf7f9 65%, #dff0f4 100%);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-clean);
  padding: 2.25rem 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-car-img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(15, 23, 42, 0.16));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.hero-car-frame:hover .hero-car-img {
  transform: translateY(-4px) scale(1.03);
  filter: drop-shadow(0 22px 30px rgba(46, 196, 214, 0.25));
}

.hero-carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}

.hero-carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.hero-carousel-dots .dot.active {
  width: 22px;
  border-radius: var(--radius-pill);
  background: var(--primary);
}

/* ==========================================================================
   4 VALUE PROPOSITIONS ROW
   ========================================================================== */
.value-props-section {
  padding: 1.5rem 0 3rem;
  background: #ffffff;
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.prop-card {
  background: #ffffff;
  border: 1px solid var(--border-clean);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.prop-card:hover {
  border-color: var(--border-cyan-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.prop-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prop-icon svg {
  width: 20px;
  height: 20px;
}

.prop-text h4 {
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.prop-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   LINE UP AION (CARS CATALOG)
   ========================================================================== */
.section-cars {
  padding: 4.5rem 0;
  background: var(--bg-subtle);
}

.car-filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-pill {
  background: #ffffff;
  border: 1px solid var(--border-clean);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.filter-pill:hover, .filter-pill.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-cyan);
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 1100px) {
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.car-card {
  background: #ffffff;
  border: 1px solid var(--border-clean);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  border-color: var(--border-cyan-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.car-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: radial-gradient(ellipse at 50% 65%, #ffffff 0%, #edf7f9 65%, #dff0f4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.2rem 1.2rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border-clean);
}

.car-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(15, 23, 42, 0.12));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.car-card:hover .car-img {
  transform: translateY(-4px) scale(1.05);
  filter: drop-shadow(0 18px 22px rgba(46, 196, 214, 0.22));
}

.car-pill-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-main);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.car-pill-badge.popular-badge {
  background: var(--primary);
  color: #ffffff;
}

.car-pill-badge.pro-badge {
  background: #0f172a;
  color: #ffffff;
}

.car-pill-badge.luxury-badge {
  background: var(--accent-gold);
  color: #ffffff;
}

.car-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.car-title {
  font-size: 1.45rem;
  font-weight: 800;
}

.car-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.car-price-row {
  margin-top: 0.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-clean);
}

.price-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-number {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.car-mini-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin: 1.1rem 0 1.35rem;
}

.mini-spec {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  background: #f8fafc;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-xs);
  border: 1px solid #f1f5f9;
}

.mini-spec svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

.car-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

.btn-group-row {
  display: flex;
  gap: 0.6rem;
}

.btn-group-row .btn {
  flex: 1;
}

/* ==========================================================================
   PROMO SECTION (Matches Screen 05)
   ========================================================================== */
.section-promo {
  padding: 4.5rem 0;
  background: #ffffff;
}

.promo-banner-card {
  background: linear-gradient(135deg, #e6f8fa 0%, #ffffff 60%, #f0fbfb 100%);
  border: 1px solid var(--border-cyan-light);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: center;
}

.promo-banner-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0.5rem 0 0.85rem;
}

.promo-banner-desc {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}

.promo-highlights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.p-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.p-item span {
  color: var(--primary);
  font-weight: 800;
}

.promo-btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.promo-art-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid #ffffff;
  background: radial-gradient(ellipse at 50% 65%, #ffffff 0%, #edf7f9 65%, #dcf0f4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem 2.5rem;
}

.promo-art-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(15, 23, 42, 0.16));
}

.promo-tag-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.88);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   CREDIT CALCULATOR SECTION
   ========================================================================== */
.section-calculator {
  padding: 4rem 0;
  background: var(--bg-subtle);
}

.calc-clean-card {
  background: #ffffff;
  border: 1px solid var(--border-clean);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  box-shadow: var(--shadow-md);
}

.calc-heading {
  font-size: 1.95rem;
  margin: 0.4rem 0 0.6rem;
}

.calc-sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.form-control-clean {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--border-clean);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text-main);
  transition: var(--transition);
}

.form-control-clean:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(46, 196, 214, 0.15);
}

.clean-range-slider {
  width: 100%;
  accent-color: var(--primary);
  height: 6px;
  background: var(--border-clean);
  border-radius: 4px;
  cursor: pointer;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.col-6 {
  flex: 1;
}

.calc-result-clean {
  background: var(--primary-light);
  border: 1px solid var(--border-cyan-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  text-align: center;
}

.res-title-clean {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.res-amount-clean {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0.4rem 0 0.15rem;
}

.res-tenor-clean {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1.5rem;
}

.res-specs-clean {
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 1.15rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: left;
  border: 1px solid #e0f2f4;
}

.res-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.calc-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.85rem;
}

/* ==========================================================================
   TEST DRIVE SECTION
   ========================================================================== */
.section-test-drive {
  padding: 4.5rem 0;
  background: #ffffff;
}

.td-clean-container {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
}

.td-sub-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  margin: 0.75rem 0 2rem;
}

.td-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.td-f-item {
  display: flex;
  gap: 1rem;
}

.td-f-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.td-f-item h5 {
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.td-f-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.td-form-clean {
  background: var(--bg-subtle);
  border: 1px solid var(--border-clean);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-clean-title {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-clean);
}

.req {
  color: #ef4444;
}

.radio-pill-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.radio-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: #ffffff;
  border: 1px solid var(--border-clean);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.radio-pill:hover {
  border-color: var(--primary);
}

.radio-pill input[type="radio"] {
  accent-color: var(--primary);
}

/* ==========================================================================
   SERVICE SECTION (Matches Screen 06)
   ========================================================================== */
.section-service {
  padding: 4.5rem 0;
  background: var(--bg-subtle);
}

.service-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.svc-box {
  background: #ffffff;
  border: 1px solid var(--border-clean);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.svc-box:hover {
  border-color: var(--border-cyan-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.svc-box-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.svc-box-icon svg {
  width: 24px;
  height: 24px;
}

.svc-box h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.svc-box p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.svc-link-arrow {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
}

.service-nav-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.svc-tab-btn {
  background: #ffffff;
  border: 1px solid var(--border-clean);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.svc-tab-btn:hover, .svc-tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-cyan);
}

.svc-tab-pane {
  display: none;
  animation: fadeIn 0.25s ease;
}

.svc-tab-pane.active {
  display: block;
}

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

.svc-clean-form-card {
  background: #ffffff;
  border: 1px solid var(--border-clean);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
  box-shadow: var(--shadow-md);
}

.service-emergency-alert {
  background: #fef2f2;
  border: 1px solid #fee2e2;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1.75rem;
  font-size: 0.88rem;
  color: #991b1b;
}

/* PAKET SERVICE CARDS */
.paket-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.paket-card-clean {
  background: #ffffff;
  border: 1px solid var(--border-clean);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.paket-card-clean:hover {
  transform: translateY(-3px);
  border-color: var(--border-cyan-light);
  box-shadow: var(--shadow-md);
}

.featured-paket-clean {
  border: 1.5px solid var(--primary);
  background: linear-gradient(180deg, #f0fbfb 0%, #ffffff 100%);
}

.paket-badge-clean {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.paket-badge-clean.best-badge {
  background: var(--primary);
  color: #ffffff;
  padding: 2px 7px;
  border-radius: 4px;
  width: fit-content;
}

.paket-cost {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-green);
  margin: 0.5rem 0 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-clean);
}

.clean-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  flex: 1;
}

.clean-check-list li {
  position: relative;
  padding-left: 1.25rem;
}

.clean-check-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* INFORMASI SERVICE GRID */
.info-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.clean-info-box {
  background: #ffffff;
  border: 1px solid var(--border-clean);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.c-info-icon {
  font-size: 1.8rem;
  margin-bottom: 0.85rem;
}

.clean-info-box h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.clean-info-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   SPARE PARTS SECTION
   ========================================================================== */
.section-spare-parts {
  padding: 4.5rem 0;
  background: #ffffff;
}

.spare-parts-clean-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3.5rem;
}

.sp-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  margin: 0.75rem 0 2rem;
}

.parts-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.p-feat {
  display: flex;
  gap: 1rem;
}

.p-bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-feat h5 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.p-feat p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.sp-form-clean {
  background: var(--bg-subtle);
  border: 1px solid var(--border-clean);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-sub-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: -0.85rem;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   ABOUT DEALER SECTION
   ========================================================================== */
.section-about {
  padding: 4.5rem 0;
  background: var(--bg-subtle);
}

.about-clean-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: center;
}

.about-showroom-card {
  background: #ffffff;
  border: 1px solid var(--border-clean);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-box {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.about-showroom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-tagline-box {
  padding: 1.75rem;
}

.badge-cyan {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.about-tagline-box h3 {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.about-tagline-box p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.6;
  margin: 0.75rem 0 1rem;
}

.about-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}

.pillar-box {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: #ffffff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-clean);
}

.pillar-num {
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 1.1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-box h5 {
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}

.pillar-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ARTIKEL EDUKASI (Matches Screen 07)
   ========================================================================== */
.section-articles {
  padding: 4.5rem 0;
  background: #ffffff;
}

.link-cyan-clean {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.92rem;
}

.link-cyan-clean:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.article-card {
  background: #ffffff;
  border: 1px solid var(--border-clean);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-cyan-light);
  box-shadow: var(--shadow-md);
}

.article-img-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 65%, #ffffff 0%, #edf7f9 65%, #dff0f4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
}

.article-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(15, 23, 42, 0.12));
  transition: transform 0.4s ease;
}

.article-card:hover .article-thumb {
  transform: scale(1.04);
}

.article-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-date {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.article-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.article-snippet {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex: 1;
}

.article-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

/* ==========================================================================
   CONTACT SECTION (Matches Screen 08)
   ========================================================================== */
.section-contact {
  padding: 4.5rem 0;
  background: var(--bg-subtle);
}

.contact-clean-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0.75rem 0 2rem;
}

.contact-details-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.c-detail-item {
  display: flex;
  gap: 1rem;
}

.c-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-icon-circle svg {
  width: 20px;
  height: 20px;
}

.c-detail-item h5 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.c-detail-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-btns-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-map-clean {
  background: #ffffff;
  border: 1px solid var(--border-clean);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  min-height: 400px;
}

.map-embed-frame {
  flex: 1;
  width: 100%;
  height: 100%;
}

.map-tag-bottom {
  padding: 1rem 1.25rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  background: #ffffff;
  border-top: 1px solid var(--border-clean);
}

/* ==========================================================================
   BOTTOM DARK CTA BANNER (Matches Mockup Desktop & Mobile)
   ========================================================================== */
.bottom-cta-banner {
  background: radial-gradient(circle at 80% 50%, #0d2838 0%, #081620 100%);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(46, 196, 214, 0.2);
  position: relative;
  overflow: hidden;
}

.bottom-cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border: 1.5px solid rgba(46, 196, 214, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-small-tag {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary);
  display: block;
  margin-bottom: 0.4rem;
}

.cta-big-heading {
  font-size: 2.35rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.cta-subtext {
  font-size: 1rem;
  color: #94a3b8;
  margin-top: 0.35rem;
}

/* ==========================================================================
   SITE FOOTER (Matches Mockup Desktop)
   ========================================================================== */
.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--border-clean);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-slogan {
  font-size: 0.8rem;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0.4rem 0 0.85rem;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  color: #ffffff;
}

.footer-socials svg {
  width: 17px;
  height: 17px;
}

.footer-links-col h5, .footer-partner-col h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-links-col a:hover {
  color: var(--primary);
  padding-left: 3px;
}

.partner-badge {
  background: #f8fafc;
  border: 1px solid var(--border-clean);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.indomobil-logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #0284c7;
}

.partner-badge small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer-contact-summary {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-clean);
  padding-top: 2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* ==========================================================================
   FLOATING BUTTONS & TOAST
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.float-wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: var(--transition);
}

.float-wa-btn:hover {
  transform: scale(1.08);
}

.wa-icon {
  width: 30px;
  height: 30px;
}

.wa-tooltip {
  position: absolute;
  right: 66px;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
}

.float-wa-btn:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(-4px);
}

.back-to-top-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-clean);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.9;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.back-to-top-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.back-to-top-btn svg {
  width: 18px;
  height: 18px;
}

/* CAR MODAL DIALOG */
.car-modal {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 800px;
  width: 92%;
  margin: auto;
}

.car-modal::backdrop {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
}

.car-modal-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #f1f5f9;
  border: none;
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: #e2e8f0;
}

.modal-car-photo-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.modal-car-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.modal-specs-table td {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--border-clean);
}

.modal-specs-table tr:nth-child(even) {
  background: #f8fafc;
}

.modal-specs-table td:first-child {
  color: var(--text-muted);
  font-weight: 500;
  width: 45%;
}

.modal-specs-table td:last-child {
  color: var(--text-main);
  font-weight: 700;
}

/* VARIANT PILLS & COMPARISON TABLES */
.variant-pills-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 0.65rem;
}

.variant-pill-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid var(--border-cyan-light);
}

.variant-pill-tag.dark {
  background: #0f172a;
  color: #ffffff;
  border-color: #1e293b;
}

.variant-pill-tag.gold {
  background: #fef3c7;
  color: #b45309;
  border-color: #fde68a;
}

/* Modal Comparison Table & Photo */
.modal-car-photo-frame {
  position: relative;
  width: 100%;
  background: radial-gradient(ellipse at 50% 65%, #ffffff 0%, #edf7f9 65%, #dff0f4 100%);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-clean);
}

.modal-car-photo {
  max-width: 90%;
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(15, 23, 42, 0.15));
}

.modal-table-container {
  width: 100%;
  overflow-x: auto;
  margin-top: 1rem;
  border: 1px solid var(--border-clean);
  border-radius: var(--radius-sm);
}

.modal-specs-table.comparison-table {
  min-width: 580px;
  border-collapse: collapse;
}

.modal-specs-table.comparison-table th {
  background: #f8fafc;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: left;
  border-bottom: 2px solid var(--border-clean);
  color: var(--text-main);
}

.modal-specs-table.comparison-table td {
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  border-bottom: 1px solid #f1f5f9;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

/* TOAST POPUP */
.toast-popup {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0f172a;
  color: #ffffff;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 9999;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast-popup.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Desktop & Mobile Friendly)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.6rem;
  }
  
  .hero-container, .promo-banner-card, .calc-clean-card, .td-clean-container, .svc-clean-form-card, .spare-parts-clean-grid, .about-clean-grid, .contact-clean-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .props-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cars-grid {
    grid-template-columns: 1fr;
  }
  
  .service-cards-row, .paket-cards-row, .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-left span:nth-child(2),
  .top-bar-left span:nth-child(3),
  .top-bar-left .separator {
    display: none;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .header-action .btn-header {
    display: none;
  }
  
  .hero-section {
    padding: 3rem 0 2rem;
  }
  
  .hero-title {
    font-size: 2.15rem;
  }
  
  .hero-subtitle-line {
    font-size: 1.15rem;
  }
  
  .props-grid {
    grid-template-columns: 1fr;
  }
  
  .promo-banner-card, .calc-clean-card, .td-form-clean, .svc-clean-form-card, .sp-form-clean {
    padding: 1.75rem 1.25rem;
  }
  
  .promo-highlights-list {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .cta-big-heading {
    font-size: 1.75rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .floating-actions {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

/* ==========================================================================
   HERO AUTO-ROTATING CAROUSEL (2 SECONDS ROTATION)
   ========================================================================== */
.hero-slides-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 290px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.3rem 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.88);
  color: #ffffff;
  margin-top: 0.85rem;
  backdrop-filter: blur(4px);
  letter-spacing: 0.4px;
}

/* ==========================================================================
   HEADLINE VARIANT BOX & PROMO DISCLAIMER
   ========================================================================== */
.headline-variant-box {
  background: #f0fbfc;
  border: 1.5px solid var(--border-cyan-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.95rem;
  margin: 0.85rem 0;
}

.headline-variant-box.luxury-theme {
  background: #fefcf3;
  border-color: #fde68a;
}

.headline-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary-dark);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.headline-variant-box.luxury-theme .headline-label {
  color: #b45309;
}

.headline-name-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.headline-name-price strong {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 800;
}

.headline-name-price .headline-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.headline-variant-box.luxury-theme .headline-name-price .headline-val {
  color: #d97706;
}

.sub-variant-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px dashed rgba(46, 196, 214, 0.3);
  padding-top: 0.35rem;
}

.headline-variant-box.luxury-theme .sub-variant-line {
  border-top-color: rgba(217, 119, 6, 0.25);
}

.sub-variant-line strong {
  color: var(--text-main);
  font-weight: 700;
}

.promo-disclaimer-notice {
  background: #fefce8;
  border: 1px solid #fde047;
  color: #854d0e;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 1.25rem 0;
}

.promo-disclaimer-notice svg {
  flex-shrink: 0;
  color: #ca8a04;
  width: 18px;
  height: 18px;
}

.parts-wa-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--wa-green);
  letter-spacing: 1px;
  background: #e8fbf0;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

