* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0b0b0b;
  --dark: #111111;
  --gold: #c9a45c;
  --gold-light: #e2c98b;
  --white: #ffffff;
  --gray: #b8b8b8;
  --soft: #1a1a1a;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(11, 11, 11, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.logo span {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--gray);
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1549399542-7e3f8b79c341?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.82), rgba(0,0,0,0.35));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-tag {
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-desc {
  color: #dddddd;
  max-width: 620px;
  margin-bottom: 35px;
  font-size: 1.05rem;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* Stats */
.stats {
  padding: 70px 0;
  background: #0f0f0f;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: linear-gradient(180deg, #181818, #111111);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-card h2 {
  color: var(--gold);
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.stat-card p {
  color: var(--gray);
}

/* Section Common */
section {
  padding: 100px 0;
}

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

.subtitle {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 2.7rem;
}

/* Cars */
.cars-section {
  background: var(--black);
}

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

.car-card {
  background: linear-gradient(180deg, #151515, #101010);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.car-card:hover {
  transform: translateY(-8px);
}

.car-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.car-info {
  padding: 28px;
}

.car-info h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.car-info p {
  color: var(--gray);
  margin-bottom: 24px;
}

.car-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.car-footer span {
  color: var(--gold-light);
  font-weight: 600;
}

.car-footer a {
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}

/* Features */
.features {
  background: #0f0f0f;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: linear-gradient(180deg, #181818, #121212);
  border: 1px solid var(--border);
  padding: 35px 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201, 164, 92, 0.12);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(201, 164, 92, 0.25);
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.feature-card p {
  color: var(--gray);
}

/* Banner */
.luxury-banner {
  padding: 40px 0 100px;
}

.banner-content {
  background: linear-gradient(135deg, #1c1c1c, #111111);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow);
}

.banner-content h2 {
  font-size: 2.4rem;
}

/* Testimonials */
.testimonials {
  background: var(--black);
}

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

.testimonial-card {
  background: linear-gradient(180deg, #171717, #111111);
  border: 1px solid var(--border);
  padding: 35px 30px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.testimonial-card p {
  color: #dddddd;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-card h4 {
  font-size: 1.2rem;
  color: var(--gold-light);
}

.testimonial-card span {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Contact */
.contact {
  background: #0f0f0f;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(180deg, #161616, #101010);
  border: 1px solid var(--border);
  padding: 50px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.contact-text h2 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.contact-text p:last-child {
  color: var(--gray);
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #121212;
  color: var(--white);
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 164, 92, 0.1);
}

/* Footer */
.footer {
  background: #090909;
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}

.footer h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.footer p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 10px;
}

.copyright {
  margin-top: 20px;
  font-size: 0.9rem;
}

/* Animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-grid,
  .car-grid,
  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .banner-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 80px;
    right: 5%;
    width: 220px;
    background: #111111;
    border: 1px solid var(--border);
    border-radius: 18px;
    flex-direction: column;
    padding: 20px;
    display: none;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

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

  .section-title h2,
  .contact-text h2,
  .banner-content h2 {
    font-size: 2rem;
  }

  .stats-grid,
  .car-grid,
  .feature-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 30px;
  }

  .banner-content {
    padding: 35px 28px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 90vh;
  }

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

  .hero-desc {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}