/* ==========================
   Base
========================== */
:root {
  --bg: #0b0b0b;
  --gold: #d4af37;
  --white: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.7);
  --glass: rgba(11, 11, 11, 0.65);
  --border: rgba(212, 175, 55, 0.35);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 0 0 1rem;
  font-weight: 600;
}

p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

/* ==========================
   Navbar
========================== */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  transition: background 0.3s ease, backdrop-filter 0.3s ease,
    border-bottom 0.3s ease;
}

.navbar.scrolled {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.25rem;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  border: 1px solid var(--border);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ==========================
   Hero
========================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/images/hero-luxury-car.png") center/cover no-repeat;
  transform: scale(1.05);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(11, 11, 11, 0.9) 20%,
    rgba(11, 11, 11, 0.6) 70%
  );
  z-index: 1;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.hero-subtitle {
  font-size: 1.1rem;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-stats span {
  display: block;
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

/* ==========================
   Buttons
========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease,
    color 0.3s ease, background 0.3s ease;
}

.btn-primary {
  background: var(--gold);
  color: #0b0b0b;
  border: 1px solid transparent;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

/* ==========================
   Sections
========================== */
.section {
  padding: 6rem 0;
}

.section-dark {
  background: #070707;
}

.section-gold {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), transparent);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* ==========================
   Fleet
========================== */
.fleet-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.fleet-card {
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.6);
}

.fleet-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.fleet-info {
  padding: 1.5rem;
}

/* ==========================
   About
========================== */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.about-card {
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 2rem;
  border-radius: 24px;
  background: rgba(15, 15, 15, 0.9);
}

.about-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
  color: var(--muted);
}

.about-card li::before {
  content: "•";
  color: var(--gold);
  margin-right: 0.6rem;
}

/* ==========================
   Features
========================== */
.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  background: rgba(17, 17, 17, 0.8);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}

.feature-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ==========================
   Booking
========================== */
.booking-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

/* ==========================
   Footer
========================== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.footer-links a:hover {
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.45);
}

/* ==========================
   Reveal Animation
========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
   Mobile
========================== */
@media (max-width: 880px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(5, 5, 5, 0.98);
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0 2rem;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-cta {
    margin: 0 auto;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (min-width: 900px) {
  .hero-bg {
    background-attachment: fixed;
  }
}
