/* ============================================
   LUXURY AUTO - Design System
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600&display=swap');

:root {
  --black: #0A0A0A;
  --piano: #111111;
  --dark: #161616;
  --dark-2: #1C1C1C;
  --dark-3: #222222;
  --gold: #D4AF37;
  --gold-2: #C6A664;
  --gold-light: #E8D5A3;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --pearl: #F8F8F8;
  --silver: #9A9A9A;
  --silver-2: #6A6A6A;
  --white: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(212, 175, 55, 0.15);
  --glass-strong: rgba(255, 255, 255, 0.08);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1360px;
  --header-h: 90px;
}

/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: auto;
  overflow-x: visible;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--pearl);
  line-height: 1.6;
  overflow-x: visible;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.lux-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  overflow: visible;
}

/* Full width container wrapper */
.lux-container-full {
  width: 100%;
}

/* WordPress removes default margin */
body.lux-body {
  margin: 0;
}

/* ============================================
   HEADER
   ============================================ */
#luxury-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: all 0.6s var(--ease-out);
  border-bottom: 1px solid transparent;
}

#luxury-header.scrolled {
  height: 70px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--glass-border);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.lux-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.6s var(--ease-out);
}

#luxury-header.scrolled .lux-logo {
  transform: scale(0.9);
}

.lux-logo-mark {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.lux-logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.lux-logo-mark span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--black);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.lux-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.lux-logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pearl);
  letter-spacing: 0.02em;
}

.lux-logo-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav */
.lux-nav {
  display: flex;
  align-items: center;
}

.lux-nav-list {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.lux-nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(248, 248, 248, 0.8);
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}

.lux-nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.9rem;
  right: 0.9rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.lux-nav-link:hover {
  color: var(--gold);
}

.lux-nav-link:hover::after {
  transform: scaleX(1);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.header-hotline {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.header-hotline-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
}

.header-hotline-number {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.btn-appointment {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.4s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-appointment::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-appointment:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-appointment:hover::before {
  opacity: 1;
}

.btn-appointment:hover {
  color: var(--black);
}

.lux-mobile-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--pearl);
  flex-direction: column;
  gap: 5px;
}

.lux-mobile-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: all 0.3s;
}

/* Mobile Menu */
.lux-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--piano);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}

.lux-mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.mobile-close-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--pearl);
  font-size: 1.5rem;
  line-height: 1;
}

.mobile-nav-list {
  list-style: none;
}

.mobile-nav-list li+li {
  border-top: 1px solid var(--glass-border);
}

.mobile-nav-list a {
  display: block;
  padding: 1.1rem 0;
  font-size: 1.3rem;
  font-family: var(--font-display);
  color: var(--pearl);
  transition: color 0.3s, padding-left 0.3s;
}

.mobile-nav-list a:hover {
  color: var(--gold);
  padding-left: 0.75rem;
}

.mobile-menu-footer {
  margin-top: auto;
}

.mobile-menu-footer .btn-appointment {
  width: 100%;
  justify-content: center;
  padding: 1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: visible;
  display: flex;
  align-items: center;
}

.hero-bg,
.hero-bg-next {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.55) 45%,
      rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--black), transparent);
  z-index: 2;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 20;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 4rem;
  width: 100%;
  max-width: 100%;
  padding-right: 4rem;
  padding-left: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 1.1rem;
  border: 1px solid var(--gold);
  background: rgba(212, 175, 55, 0.08);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: goldPulse 2s ease-in-out infinite;
}

@keyframes goldPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7)
  }
}

.hero-headline-wrap {
  margin-bottom: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.hero-title-1,
.hero-title-2 {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.15;
  color: var(--pearl);
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.hero-title-2 {
  color: var(--gold);
  font-style: italic;
}

/* Gold sweep shimmer */
.gold-sweep .hero-title-1,
.gold-sweep .hero-title-2 {
  background: linear-gradient(105deg,
      var(--pearl) 0%,
      var(--pearl) 35%,
      #fffae0 48%,
      var(--gold-light) 52%,
      var(--pearl) 65%,
      var(--pearl) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: sweep 1.8s ease-in-out forwards;
}

.gold-sweep .hero-title-2 {
  background: linear-gradient(105deg,
      var(--gold-2) 0%,
      var(--gold-2) 35%,
      #fff8c0 48%,
      var(--gold) 52%,
      var(--gold-2) 65%,
      var(--gold-2) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: sweep 1.8s ease-in-out 0.1s forwards;
}

@keyframes sweep {
  from {
    background-position: 200%
  }

  to {
    background-position: -200%
  }
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(248, 248, 248, 0.75);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px var(--gold-glow);
}

.btn-gold:hover::after {
  opacity: 1;
}

.btn-gold:hover {
  color: var(--black);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  background: transparent;
  color: var(--pearl);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(248, 248, 248, 0.4);
  border-radius: 3px;
  transition: all 0.4s var(--ease-out);
}

.btn-outline-white:hover {
  background: rgba(248, 248, 248, 0.08);
  border-color: var(--pearl);
  transform: translateY(-3px);
  color: var(--pearl);
}

/* Hero Navigation */
.hero-nav {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-dot {
  width: 6px;
  height: 6px;
  background: rgba(248, 248, 248, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s;
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.5);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--pearl);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  cursor: pointer;
}

.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.hero-arrow-left {
  left: 2rem;
}

.hero-arrow-right {
  right: 2rem;
}

.hero-arrow svg {
  width: 20px;
  height: 20px;
}

/* Progress bar */
.hero-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  z-index: 10;
}

.hero-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform-origin: left;
  transform: scaleX(0);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 248, 248, 0.5);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  51% {
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

/* HERO STATS */
.hero-stats-row {
  position: absolute;
  bottom: 5rem;
  right: 2rem;
  z-index: 15;
  display: none;
  gap: 0.5px;
}

.hero-stats-bar {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 1.2rem 1.8rem;
  text-align: center;
}

.hero-stats-bar:first-child {
  border-radius: 12px 0 0 12px;
}

.hero-stats-bar:last-child {
  border-radius: 0 12px 12px 0;
}

.stat-number {
  display: inline;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  color: var(--gold);
  font-size: 1.3rem;
}

.stat-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 248, 248, 0.5);
  margin-top: 0.25rem;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.lux-section {
  padding: 7rem 0;
}

.lux-section-sm {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header.centered {
  text-align: center;
}

.lux-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.lux-label::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.lux-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--pearl);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.lux-title em {
  color: var(--gold);
  font-style: italic;
}

.lux-subtitle {
  font-size: 1.05rem;
  color: var(--silver);
  line-height: 1.8;
  max-width: 580px;
}

/* Gold Divider */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.gold-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--piano);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-media {
  position: relative;
  height: 620px;
  overflow: hidden;
  border-radius: 4px;
}

.about-media-inner {
  width: 100%;
  height: 115%;
  margin-top: -7.5%;
}

.about-media-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media-badge {
  position: absolute;
  bottom: 2.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--black);
  padding: 1.5rem 2rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-media-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.about-media-badge-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.about-text {
  padding-right: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: all 0.3s;
}

.about-feature:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--black);
}

.about-feature-icon svg {
  width: 20px;
  height: 20px;
}

.about-feature-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pearl);
  margin-bottom: 0.2rem;
}

.about-feature-desc {
  font-size: 0.78rem;
  color: var(--silver);
  line-height: 1.5;
}

/* ============================================
   FEATURED CARS
   ============================================ */
.cars-section {
  background: var(--black);
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.car-card {
  position: relative;
  background: var(--piano);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-out);
  cursor: pointer;
}

.car-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px var(--gold-glow);
  transform: translateY(-8px);
}

.car-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.car-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.car-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
}

.car-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
}

.car-card-body {
  padding: 1.75rem;
}

.car-card-brand {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.car-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pearl);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.car-card-specs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.car-spec {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.car-spec-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pearl);
}

.car-spec-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--silver);
  text-transform: uppercase;
}

.car-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.car-card-price {
  font-family: var(--font-display);
}

.car-price-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.2rem;
}

.car-price-val {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.btn-view-car {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(248, 248, 248, 0.15);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pearl);
  transition: all 0.3s;
}

.btn-view-car:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.btn-view-car svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.btn-view-car:hover svg {
  transform: translateX(3px);
}

.cars-footer {
  text-align: center;
  margin-top: 3.5rem;
}

/* ============================================
   BRANDS MARQUEE
   ============================================ */
.brands-section {
  background: var(--piano);
  padding: 4rem 0;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.brands-label {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver-2);
  margin-bottom: 2.5rem;
}

.brands-marquee {
  overflow: hidden;
}

.brands-marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  transition: opacity 0.3s;
  cursor: default;
  white-space: nowrap;
}

.brand-item:hover {
  opacity: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pearl);
  letter-spacing: 0.05em;
}

.brand-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  background: var(--piano);
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  transform-style: preserve-3d;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  background: var(--dark-2);
  box-shadow: inset 0 0 0 1px var(--gold);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.4s;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--black);
  border-color: var(--gold);
  transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--pearl);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.8rem;
  color: var(--silver);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--black);
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.7s var(--ease-out);
}

.testimonial-card {
  flex: 0 0 calc(100% / 3);
  padding: 0 0.75rem;
}

.testimonial-inner {
  background: var(--piano);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  transition: border-color 0.3s;
}

.testimonial-inner:hover {
  border-color: var(--gold);
}

.testimonial-quote-icon {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: -1rem;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(248, 248, 248, 0.8);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.25rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--black);
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  color: var(--pearl);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--silver);
  margin-top: 0.15rem;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.test-nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pearl);
  transition: all 0.3s;
}

.test-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.test-nav-btn svg {
  width: 18px;
  height: 18px;
}

.test-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.test-dot {
  width: 6px;
  height: 6px;
  background: rgba(248, 248, 248, 0.2);
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
}

.test-dot.active {
  background: var(--gold);
  transform: scale(1.5);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta-section {
  position: relative;
  padding: 9rem 0;
  overflow: hidden;
  text-align: center;
  background: var(--piano);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212, 175, 55, 0.08), transparent);
}

.cta-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--pearl);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-headline em {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--silver);
  margin-bottom: 3rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.btn-cta-vip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 3rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--black);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  position: relative;
  transition: all 0.4s var(--ease-out);
  animation: goldGlow 3s ease-in-out infinite;
}

@keyframes goldGlow {

  0%,
  100% {
    box-shadow: 0 0 20px var(--gold-glow);
  }

  50% {
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
  }
}

.btn-cta-vip:hover {
  transform: translateY(-4px) scale(1.03);
  color: var(--black);
}

/* ============================================
   FOOTER
   ============================================ */
.lux-footer {
  background: #080808;
  border-top: 1px solid var(--gold);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  padding: 5rem 0 4rem;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.8;
  margin: 1.5rem 0 2rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: all 0.3s;
}

.footer-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pearl);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--glass-border);
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li+li {
  margin-top: 0.75rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--silver);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-contact-text {
  font-size: 0.85rem;
  color: var(--silver);
  line-height: 1.6;
}

.footer-contact-text strong {
  color: var(--pearl);
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--silver-2);
}

.footer-copy span {
  color: var(--gold);
}

.footer-bottom-right {
  font-size: 0.8rem;
  color: var(--silver-2);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
#scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  box-shadow: 0 4px 20px var(--gold-glow);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
  pointer-events: none;
  cursor: pointer;
}

#scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

#scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

#scroll-top-btn svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   APPOINTMENT MODAL
   ============================================ */
#appointment-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

#appointment-modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
}

.modal-inner {
  position: relative;
  z-index: 1;
  background: var(--piano);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 3rem;
  width: 100%;
  max-width: 520px;
  max-height: 95vh;
  overflow-y: visible;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pearl);
  line-height: 1.2;
}

.modal-title em {
  color: var(--gold);
  font-style: italic;
}

#modal-close {
  color: var(--silver);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.3s;
}

#modal-close:hover {
  color: var(--gold);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  color: var(--pearl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: var(--dark);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.modal-submit {
  margin-top: 0.5rem;
}

.modal-submit button {
  width: 100%;
  padding: 1rem;
}

/* ============================================
   UTILITIES
   ============================================ */
.relative {
  position: relative;
}

.text-center {
  text-align: center;
}

.mt-sm {
  margin-top: 1.5rem;
}

.mt-md {
  margin-top: 2.5rem;
}

.mt-lg {
  margin-top: 4rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stats-row {
    display: none;
  }

  .hero-content {
    padding-right: 2rem;
    padding-left: 1rem;
  }
}

@media (max-width: 1024px) {
  .lux-nav {
    display: none;
  }

  .lux-mobile-btn {
    display: flex;
  }

  .header-hotline {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-media {
    height: 400px;
  }

  .about-media-badge {
    right: 1rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .cars-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 70px;
  }

  .lux-section {
    padding: 5rem 0;
  }

  .cars-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
  }

  .hero-title-1,
  .hero-title-2 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.15;
  }

  .hero-desc {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-nav {
    bottom: 1.5rem;
  }

  .hero-arrow {
    display: none;
  }

  .hero-scroll-hint {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .lux-container {
    padding: 0 1.25rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-gold,
  .btn-outline-white {
    width: 100%;
    justify-content: center;
  }
}/ *   U p d a t e   h e a d e r   d r o p d o w n   s t y l e s   i n   l u x u r y . c s s   * / 
 
 . h a s - d r o p d o w n   { 
 
         p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 
 
 . h a s - d r o p d o w n > a : : a f t e r   { 
 
         c o n t e n t :   " �  � " ; 
 
         f o n t - s i z e :   0 . 6 e m ; 
 
         m a r g i n - l e f t :   6 p x ; 
 
         o p a c i t y :   0 . 7 ; 
 
         d i s p l a y :   i n l i n e - b l o c k ; 
 
         v e r t i c a l - a l i g n :   m i d d l e ; 
 
 } 
 
 
 
 . d r o p d o w n - m e n u   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   1 0 0 % ; 
 
         l e f t :   0 ; 
 
         m i n - w i d t h :   2 2 0 p x ; 
 
         b a c k g r o u n d :   r g b a ( 2 0 ,   2 0 ,   2 0 ,   0 . 9 5 ) ; 
 
         b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ; 
 
         - w e b k i t - b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ; 
 
         b o r d e r - t o p :   2 p x   s o l i d   v a r ( - - g o l d ) ; 
 
         l i s t - s t y l e :   n o n e ; 
 
         p a d d i n g :   0 . 5 r e m   0 ; 
 
         m a r g i n :   0 ; 
 
         o p a c i t y :   0 ; 
 
         v i s i b i l i t y :   h i d d e n ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( 1 5 p x ) ; 
 
         t r a n s i t i o n :   a l l   0 . 3 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ; 
 
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 5 ) ; 
 
         z - i n d e x :   1 0 0 ; 
 
 } 
 
 
 
 / *   E n s u r e   h e a d e r   s t a y s   v i s i b l e   w h e n   i n t e r a c t i n g   w i t h   d r o p d o w n   * / 
 
 . l u x - c o n t a i n e r - f u l l : h o v e r   { 
 
         o v e r f l o w :   v i s i b l e ; 
 
 } 
 
 
 
 . h a s - d r o p d o w n : h o v e r   . d r o p d o w n - m e n u   { 
 
         o p a c i t y :   1 ; 
 
         v i s i b i l i t y :   v i s i b l e ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ; 
 
 } 
 
 
 
 . d r o p d o w n - m e n u   l i   { 
 
         w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . d r o p d o w n - m e n u   a   { 
 
         d i s p l a y :   b l o c k ; 
 
         p a d d i n g :   0 . 7 5 r e m   1 . 5 r e m ; 
 
         c o l o r :   v a r ( - - w h i t e ) ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         f o n t - f a m i l y :   v a r ( - - f o n t - b o d y ) ; 
 
         f o n t - s i z e :   0 . 9 r e m ; 
 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 3 ) ; 
 
 } 
 
 
 
 . d r o p d o w n - m e n u   l i : l a s t - c h i l d   a   { 
 
         b o r d e r - b o t t o m :   n o n e ; 
 
 } 
 
 
 
 . d r o p d o w n - m e n u   a : h o v e r   { 
 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ; 
 
         c o l o r :   v a r ( - - g o l d ) ; 
 
         p a d d i n g - l e f t :   1 . 8 r e m ; 
 
 } 
 
 
