/* ================================================================
   ELITE PRO — Premium Automotive Films
   style.css  |  Luxury Dark Theme
   Screens: 4K · 2K · Large · Desktop · Laptop · Tablet · Mobile
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS VARIABLES
---------------------------------------------------------------- */
:root {
  /* Colors */
  --black:       #080808;
  --dark:        #0c0c0c;
  --dark2:       #0f0f0f;
  --dark3:       #151515;
  --dark4:       #1a1a1a;
  --white:       #ffffff;
  --off-white:   #f0e8d5;
  --gold:        #c9a14a;
  --gold-lt:     #e1b85c;
  --gold-dim:    rgba(201, 161, 74, 0.35);
  --gold-wash:   rgba(201, 161, 74, 0.08);
  --gray:        #888888;
  --gray-lt:     #bbbbbb;
  --gray-mid:    #cccccc;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', sans-serif;

  /* Spacing (fluid) */
  --sp-xs:  clamp(8px,  1vw,  16px);
  --sp-sm:  clamp(16px, 2vw,  32px);
  --sp-md:  clamp(32px, 4vw,  64px);
  --sp-lg:  clamp(60px, 7vw, 110px);
  --sp-xl:  clamp(80px, 9vw, 140px);

  /* Layout */
  --max-w:  1400px;
  --radius: 14px;
  --trans:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a  { color: inherit; text-decoration: none; transition: var(--trans); }
ul { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; }

/* ----------------------------------------------------------------
   3. NAVBAR
---------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(68px, 5.5vw, 92px);
  padding: 0 clamp(20px, 5vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Scroll — frosted glass effect */
.navbar.scrolled {
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(201, 161, 74, 0.12);
}

.brand { display: flex; align-items: center; }

.Elite_Pro_Logo {
  height: clamp(48px, 4.5vw, 78px);
  width: auto;
  object-fit: contain;
}

.nav-list {
  display: flex;
  gap: clamp(24px, 3vw, 54px);
}

.nav-list a {
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding-bottom: 4px;
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-list a:hover { color: var(--gold); }
.nav-list a:hover::after { width: 100%; }

.menu {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: var(--white);
  padding: 4px;
  line-height: 1;
}

/* ----------------------------------------------------------------
   4. MOBILE NAV
---------------------------------------------------------------- */
.mobile-nav {
  position: fixed;
  top: clamp(68px, 5.5vw, 92px);
  left: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-dim);
  display: none;
  z-index: 999;
}

.mobile-nav.active { display: block; }

.mobile-nav ul { padding: 28px 20px; text-align: center; }
.mobile-nav li { margin: 18px 0; }

.mobile-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-lt);
}

.mobile-nav a:hover { color: var(--gold); }
/* ----------------------------------------------------------------
   dropdown NAV
---------------------------------------------------------------- */

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  padding: 10px;
  list-style: none;
  border-radius: 8px;
  min-width: 160px;
}

.dropdown-menu li a {
  color: #fff;
  display: block;
  padding: 8px;
  text-decoration: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* ----------------------------------------------------------------
   5. HERO — VIDEO BANNER
---------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(8,8,8,0.82) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 80px);
  animation: heroFadeUp 1.4s ease both;
}

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

.hero-overline {
  display: block;
  font-size: clamp(9px, 0.75vw, 12px);
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(12px, 1.5vw, 22px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(58px, 9.5vw, 150px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--off-white);
  letter-spacing: -1px;
  margin-bottom: clamp(14px, 2vw, 26px);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-tagline {
  font-size: clamp(11px, 1vw, 16px);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: clamp(28px, 3.5vw, 52px);
}

.hero-btn {
  display: inline-block;
  padding: clamp(12px, 1.1vw, 17px) clamp(28px, 3vw, 52px);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: clamp(9px, 0.75vw, 12px);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 2px;
  background: transparent;
  transition: var(--trans);
}

.hero-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 161, 74, 0.28);
}

/* ----------------------------------------------------------------
   6. SHARED SECTION HEADING
---------------------------------------------------------------- */
.section-heading {
  text-align: center;
  margin-bottom: var(--sp-md);
}

.overline {
  display: block;
  font-size: clamp(9px, 0.7vw, 11px);
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 54px);
  font-weight: 300;
  color: var(--off-white);
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.section-heading h2 em {
  font-style: italic;
  color: var(--gold-lt);
}

/* FIX: --gold-lt was referenced but never defined in original — now defined in :root */
.line {
  display: block;
  width: clamp(60px, 8vw, 110px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

/* ----------------------------------------------------------------
   7. PRODUCTS
---------------------------------------------------------------- */
.product-section {
  background: var(--dark);
  padding: var(--sp-lg) clamp(16px, 4vw, 72px);
}

.product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 26px);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* CARD */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(0,0,0,0.55), 0 0 0 1px var(--gold-dim);
  border-color: var(--gold-dim);
}

.card-img {
  position: relative;
  width: 100%;
  height: clamp(220px, 25vw, 480px);
  overflow: hidden;
  background: #0e0e0e;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: clamp(9px, 0.7vw, 11px);
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gold-dim);
  padding: 7px 12px;
  border-radius: 2px;
  z-index: 2;
}

.card-body {
  padding: clamp(14px, 1.8vw, 26px);
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.divider {
  width: 26px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 12px;
  opacity: 0.5;
}

.card-body h3 {
  font-size: clamp(9px, 0.7vw, 11px);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4c8b0;
  margin-bottom: 16px;
  line-height: 1.6;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  padding: clamp(8px, 0.7vw, 11px) clamp(14px, 1.4vw, 22px);
  border-radius: 30px;
  font-size: clamp(8px, 0.65vw, 10px);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--trans);
  white-space: nowrap;
}

.btn.outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn.outline:hover { background: var(--gold-wash); }

.btn.solid {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn.solid:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,161,74,0.32);
}

/* ----------------------------------------------------------------
   8. ABOUT
---------------------------------------------------------------- */
.about-elite {
  background: #0b0b0b;
  padding: var(--sp-xl) clamp(20px, 6vw, 100px);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  max-width: clamp(240px, 28vw, 420px);
  width: 100%;
  filter: drop-shadow(0 24px 48px rgba(201,161,74,0.28));
  transition: filter 0.4s ease;
}
.about-image img:hover {
  filter: drop-shadow(0 32px 64px rgba(201,161,74,0.44));
}

.about-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}

.about-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-top: 12px;
  margin-bottom: 26px;
}

.about-content p {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.95;
  color: var(--gray-mid);
  margin-bottom: 18px;
}

.about-content p:last-child { margin-bottom: 0; }
.about-content strong { color: var(--gold); font-weight: 500; }

/* ----------------------------------------------------------------
   9. PARTNER
---------------------------------------------------------------- */
.partner-section {
  background: radial-gradient(ellipse at 60% 0%, #0e0e0e, #000 70%);
  padding: var(--sp-xl) clamp(20px, 6vw, 100px);
  position: relative;
}

.partner-section::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(201,161,74,0.6), transparent);
}

.partner-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.partner-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--gold-dim);
  box-shadow: 0 48px 96px rgba(0,0,0,0.72);
}

.partner-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.partner-visual:hover img { transform: scale(1.04); }

.partner-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(0,0,0,0.55), rgba(201,161,74,0.08));
  pointer-events: none;
}

.visual-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  padding: 8px 18px;
  font-size: clamp(10px, 0.85vw, 13px);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border-radius: 20px;
  z-index: 2;
}

.partner-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.partner-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.partner-text .lead {
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.9;
  color: #d6d6d6;
  margin-bottom: 28px;
}
.partner-text strong { color: var(--gold); font-weight: 500; }

.partner-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.partner-features span {
  padding: 9px 18px;
  border-radius: 30px;
  font-size: clamp(11px, 0.85vw, 13px);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold-dim);
  color: #e8e8e8;
  transition: var(--trans);
}
.partner-features span:hover {
  background: var(--gold-wash);
  border-color: rgba(201,161,74,0.6);
}

.partner-note {
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.9;
  color: #bdbdbd;
  border-left: 2px solid rgba(201,161,74,0.5);
  padding-left: 18px;
}

/* ----------------------------------------------------------------
   10. DEALER SECTION
   FIX: was .hero12 / .hero-left1 / .cta — renamed to avoid
   collisions with .hero and confusing class names
---------------------------------------------------------------- */
.dealer-section {
  width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 72px);
  padding: clamp(56px, 8vw, 110px) clamp(20px, 6vw, 100px);
  background: var(--dark);
  overflow: hidden;
}

.dealer-left { flex: 1; min-width: 0; }

.dealer-tag {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: clamp(9px, 0.75vw, 12px);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: clamp(22px, 2.5vw, 34px);
}

.dealer-left h1 {
  font-family: var(--font-sans);
  font-size: clamp(48px, 7.5vw, 128px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: clamp(26px, 3vw, 44px);
}

.dealer-left h1 span { color: var(--gold); }

.dealer-btn {
  display: inline-block;
  padding: clamp(13px, 1.2vw, 19px) clamp(26px, 3vw, 46px);
  font-size: clamp(10px, 0.85vw, 13px);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 2px;
  transition: var(--trans);
}

.dealer-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(201,161,74,0.3);
}

.dealer-right {
  flex: 0 0 clamp(260px, 40vw, 640px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.dealer-right img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
}

/* ----------------------------------------------------------------
   11. MAP / LOCATION
---------------------------------------------------------------- */
.location-full {
  position: relative;
  width: 100%;
  height: clamp(460px, 80vh, 860px);
  background: var(--black);
  overflow: hidden;
}

.map-full {
  position: absolute;
  inset: 0;
}

.map-full iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(1.05) brightness(0.85);
}

/* Pointer-events: none so clicks pass through overlay to iframe */
.map-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(8,8,8,0.72) 100%);
  z-index: 1;
  pointer-events: none;
}

.map-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-overlay span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.map-overlay h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 50px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.map-overlay p {
  font-size: clamp(13px, 1vw, 16px);
  max-width: 400px;
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 30px;
}

.map-overlay a {
  display: inline-block;
  width: fit-content;
  padding: clamp(12px, 1vw, 16px) clamp(26px, 2.5vw, 42px);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: clamp(10px, 0.8vw, 13px);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--trans);
}

.map-overlay a:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   12. WHY ELITE
---------------------------------------------------------------- */
.why-elite {
  background: var(--black);
  padding: var(--sp-xl) clamp(20px, 6vw, 100px);
}

.why-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.why-heading {
  max-width: 640px;
  margin-bottom: clamp(52px, 6vw, 90px);
}

.why-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.why-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.why-heading p {
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.85;
  color: #d6d6d6;
}

/* FIX: .text-gold and .text-underline were duplicated — defined once here */
.text-gold { color: var(--gold); font-weight: 500; }

.text-underline { position: relative; display: inline-block; }
.text-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--gold-dim);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 60px);
}

.why-item {
  position: relative;
  padding-left: 24px;
}

.why-item::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 1px;
}

.why-item h4 {
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.why-item p {
  font-size: clamp(13px, 0.9vw, 15px);
  line-height: 1.85;
  color: #bdbdbd;
}

/* ----------------------------------------------------------------
   13. WARRANTY
---------------------------------------------------------------- */
.warranty-section {
  padding: var(--sp-lg) clamp(16px, 4vw, 80px);
  background: linear-gradient(150deg, #0b0b0b, #111111);
}

.warranty-container {
  max-width: 1100px;
  margin: 0 auto;
}

.warranty-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.warranty-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.warranty-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}

.warranty-content {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  padding: clamp(26px, 4vw, 52px);
  border-radius: var(--radius);
  box-shadow: 0 28px 72px rgba(0,0,0,0.42);
}

.warranty-content p {
  font-size: clamp(13px, 0.95vw, 15px);
  color: var(--gray-mid);
  line-height: 1.85;
}

.intro-text { font-size: clamp(14px, 1.05vw, 16px) !important; }

.warranty-content h3 {
  margin-top: 32px;
  margin-bottom: 14px;
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 500;
  color: var(--white);
}

.list-main { padding-left: 18px; margin-bottom: 8px; }
.list-main li {
  color: #bdbdbd;
  font-size: clamp(13px, 0.9vw, 14px);
  margin-bottom: 8px;
  line-height: 1.8;
}
.list-main strong { color: var(--white); }

.list-sub {
  margin-top: 10px;
  padding-left: 18px;
  list-style: disc;
}

.warranty-footer {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: clamp(12px, 0.85vw, 14px) !important;
  color: #aaaaaa !important;
}

.warranty-actions {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FIX: renamed from .contact-btn to .w-contact-btn — was conflicting with contact form button */
.w-contact-btn,
.download-btn {
  display: inline-block;
  padding: clamp(12px, 1.1vw, 16px) clamp(26px, 3vw, 42px);
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 50px;
  text-align: center;
  min-width: clamp(170px, 18vw, 230px);
  transition: var(--trans);
}

.w-contact-btn {
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  background: transparent;
}
.w-contact-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.download-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--black);
  border: none;
  font-weight: 600;
}
.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(201,161,74,0.32);
}

/* ----------------------------------------------------------------
   14. CONTACT
---------------------------------------------------------------- */
.contact-section {
  padding: var(--sp-lg) clamp(16px, 4vw, 80px);
  background: linear-gradient(150deg, #0b0b0b, #111111);
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.contact-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.15;
}

.contact-subtitle {
  font-size: clamp(13px, 0.95vw, 15px);
  color: var(--gray-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 52px);
  box-shadow: 0 28px 72px rgba(0,0,0,0.42);
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}

.contact-info p {
  font-size: clamp(13px, 0.95vw, 15px);
  color: var(--gray-mid);
  line-height: 1.85;
  margin-bottom: 22px;
}

.contact-details { padding: 0; }
.contact-details li {
  font-size: clamp(13px, 0.9vw, 14px);
  color: #bdbdbd;
  margin-bottom: 10px;
  line-height: 1.6;
}
.contact-details strong { color: var(--gold); font-weight: 500; margin-right: 4px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: clamp(12px, 1vw, 15px) clamp(14px, 1.2vw, 18px);
  font-family: var(--font-sans);
  font-size: clamp(13px, 0.9vw, 14px);
  color: var(--white);
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
  background: rgba(201,161,74,0.04);
}

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

/* FIX: renamed from .contact-btn to .form-submit-btn — removes CSS conflict with warranty section */
.form-submit-btn {
  margin-top: 6px;
  padding: clamp(13px, 1.1vw, 17px);
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border: none;
  border-radius: 50px;
  color: var(--black);
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--trans);
}

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(201,161,74,0.32);
}

/* ----------------------------------------------------------------
   15. FOOTER
---------------------------------------------------------------- */
.elite-footer {
  background: #060606;
  color: var(--gray-mid);
  padding: var(--sp-lg) clamp(16px, 4vw, 80px) var(--sp-sm);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: clamp(36px, 4vw, 52px);
}

.footer-logo {
  max-width: clamp(110px, 12vw, 170px);
  height: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: clamp(12px, 0.85vw, 14px);
  line-height: 1.8;
  color: #777;
}

.footer-container h4 {
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-sitemap li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: clamp(12px, 0.85vw, 14px);
  color: #777;
}

.footer-sitemap a {
  color: #777;
  transition: color 0.3s;
}
.footer-sitemap a:hover { color: var(--gold); }

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icons a {
  font-size: clamp(12px, 0.85vw, 14px);
  color: #777;
  transition: color 0.3s;
}
.social-icons a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: clamp(18px, 2vw, 26px);
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.footer-bottom p {
  font-size: clamp(11px, 0.8vw, 13px);
  color: #444;
}

/* ----------------------------------------------------------------
   16. FLOATING AI ASSISTANT
---------------------------------------------------------------- */
.ai-widget {
  position: fixed;
  bottom: clamp(16px, 1.8vw, 26px);
  left: clamp(16px, 1.8vw, 26px);
  z-index: 9999;
}

.ai-toggle {
  width: clamp(50px, 4.2vw, 62px);
  height: clamp(50px, 4.2vw, 62px);
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--black);
  font-size: clamp(20px, 1.8vw, 26px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,161,74,0.28);
  transition: var(--trans);
}
.ai-toggle:hover { transform: scale(1.08); box-shadow: 0 12px 36px rgba(201,161,74,0.32); }

.ai-box {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 0;
  width: clamp(268px, 22vw, 330px);
  max-height: 470px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(0,0,0,0.65);
}

.ai-header {
  background: rgba(255,255,255,0.03);
  padding: 13px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ai-header span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.ai-header button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 22px;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}
.ai-header button:hover { color: var(--white); }

.ai-messages {
  padding: 14px;
  flex: 1;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.ai-messages::-webkit-scrollbar { width: 3px; }
.ai-messages::-webkit-scrollbar-thumb {
  background: rgba(201,161,74,0.28);
  border-radius: 2px;
}

.ai-message {
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 88%;
}

.ai-message.bot {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border-radius: 12px 12px 12px 2px;
}

.ai-message.user {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--black);
  font-weight: 500;
  margin-left: auto;
  border-radius: 12px 12px 2px 12px;
}

.ai-input {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ai-input input {
  flex: 1;
  padding: 12px 14px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 13px;
  font-family: var(--font-sans);
  outline: none;
}
.ai-input input::placeholder { color: rgba(255,255,255,0.28); }

.ai-input button {
  width: 46px;
  background: var(--gold);
  border: none;
  color: var(--black);
  font-size: 15px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.ai-input button:hover { background: var(--gold-lt); }

.ai-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.ai-quick button {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
  padding: 6px 10px;
  font-size: 11px;
  font-family: var(--font-sans);
  border-radius: 20px;
  transition: var(--trans);
}
.ai-quick button:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ================================================================
   17. RESPONSIVE BREAKPOINTS
================================================================ */

/* ---- TABLET (≤ 1024px) ---- */
@media (max-width: 1024px) {

  .navbar { padding: 0 clamp(16px, 3vw, 40px); }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-content h2::after { margin: 12px auto 26px; }

  .partner-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .partner-visual { max-width: 460px; margin: 0 auto; }
  .partner-features { justify-content: center; }
  .partner-note {
    border-left: none;
    border-top: 2px solid var(--gold-dim);
    padding-left: 0;
    padding-top: 18px;
  }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-container { grid-template-columns: repeat(2, 1fr); }
}

/* ---- MOBILE (≤ 768px) ---- */
@media (max-width: 768px) {

  .nav  { display: none; }
  .menu { display: flex; }

  .product-row {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .dealer-section {
    flex-direction: column;
    min-height: auto;
    text-align: center;
  }
  .dealer-right { flex: none; width: 100%; }

  .contact-content { grid-template-columns: 1fr; }

  .location-full { height: clamp(380px, 65vh, 560px); }

  .why-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---- SMALL MOBILE (≤ 480px) ---- */
@media (max-width: 480px) {

  .hero-title { font-size: clamp(40px, 14vw, 64px); }

  .dealer-left h1 { font-size: clamp(42px, 13vw, 72px); letter-spacing: -1.5px; }

  .warranty-actions { flex-direction: column; }
  .w-contact-btn,
  .download-btn { width: 100%; min-width: unset; }

  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .social-icons { align-items: center; }
  .footer-logo { margin: 0 auto 16px; }

  .ai-box { width: clamp(252px, 88vw, 310px); }
}

/* ---- 2K / LARGE (≥ 1800px) ---- */
@media (min-width: 1800px) {
  :root { --max-w: 1700px; }
  .product-row { gap: 32px; }
  .hero-title { font-size: clamp(100px, 8.5vw, 160px); }
}

/* ---- 4K / UHD (≥ 2560px) ---- */
@media (min-width: 2560px) {
  html { font-size: 20px; }
  :root { --max-w: 2100px; }

  .navbar { height: 116px; }
  .Elite_Pro_Logo { height: 92px; }

  .hero-title { font-size: clamp(140px, 9vw, 210px); }

  .card-img { height: clamp(480px, 26vw, 680px); }

  .why-grid { gap: 76px; }
  .footer-container { gap: 80px; }

  .ai-box { width: 390px; max-height: 540px; }
  .ai-toggle { width: 70px; height: 70px; font-size: 30px; }
}
