
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: #fff;
}

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

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,175,55,.18);
}

.logo {
  font-weight: 900;
  letter-spacing: .5px;
  font-size: 20px;
}

.logo span { color: #d4af37; }

nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav a:hover { color: #d4af37; }

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 110px 6% 70px;
  background:
    linear-gradient(120deg, rgba(0,0,0,.95), rgba(0,0,0,.62), rgba(0,0,0,.85)),
    radial-gradient(circle at 75% 30%, rgba(212,175,55,.38), transparent 27%),
    linear-gradient(145deg, #080808 0%, #161616 42%, #050505 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 620px;
  height: 330px;
  border: 2px solid rgba(212,175,55,.35);
  border-radius: 50% 50% 20% 20%;
  transform: rotate(-8deg);
  box-shadow: 0 0 100px rgba(212,175,55,.2);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.eyebrow {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 800;
}

h1 {
  font-size: clamp(54px, 9vw, 116px);
  line-height: .88;
  margin: 14px 0 24px;
  text-transform: uppercase;
  letter-spacing: -3px;
}

.hero-text {
  font-size: 20px;
  color: #ddd;
  max-width: 620px;
  line-height: 1.6;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid #d4af37;
  transition: .25s ease;
}

.btn.primary {
  background: #d4af37;
  color: #050505;
}

.btn.secondary {
  background: transparent;
  color: #fff;
}

.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(212,175,55,.2); }

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(212,175,55,.2);
  border-bottom: 1px solid rgba(212,175,55,.2);
  background: #0b0b0b;
}

.trust-bar div {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid rgba(212,175,55,.16);
}

.trust-bar strong { display: block; color: #d4af37; font-size: 18px; }
.trust-bar span { color: #bbb; font-size: 14px; }

.section {
  padding: 95px 6%;
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 45px;
}

.section-heading h2 {
  font-size: clamp(38px, 6vw, 68px);
  margin: 8px 0;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.section-heading p { color: #cfcfcf; line-height: 1.7; }

.service-grid, .pricing-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: auto;
}

.service-card, .price-card, .addons, .booking-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(212,175,55,.28);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.32);
}

.service-card {
  padding: 30px;
  min-height: 250px;
}

.service-card span {
  color: #d4af37;
  font-weight: 900;
}

.service-card h3, .price-card h3 {
  color: #d4af37;
  font-size: 25px;
}

.service-card p, .price-card p { color: #ddd; line-height: 1.6; }

.pricing-section { background: linear-gradient(#050505, #101010, #050505); }

.price-card {
  position: relative;
  padding: 30px;
}

.price-card.featured {
  transform: translateY(-12px);
  border: 2px solid #d4af37;
}

.badge {
  position: absolute;
  top: -15px;
  left: 26px;
  background: #d4af37;
  color: #050505;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
}

.prices {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.prices span {
  background: #050505;
  border: 1px solid rgba(212,175,55,.55);
  padding: 12px;
  border-radius: 14px;
  font-weight: 900;
}

.addons {
  max-width: 1050px;
  margin: 48px auto 0;
  padding: 30px;
}

.addons h3 {
  color: #d4af37;
  font-size: 30px;
  margin-top: 0;
}

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

.addon-grid p {
  background: rgba(0,0,0,.35);
  padding: 14px;
  border-radius: 14px;
  margin: 0;
  color: #ddd;
}

.dark { background: #080808; }

.gallery-card {
  min-height: 250px;
  border-radius: 24px;
  display: flex;
  align-items: end;
  padding: 24px;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  border: 1px solid rgba(212,175,55,.3);
  background:
    linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.1)),
    radial-gradient(circle at 50% 35%, rgba(212,175,55,.45), rgba(255,255,255,.08), rgba(0,0,0,.7));
}

.interior { background-color: #171717; }
.exterior { background-color: #111; }
.seats { background-color: #1b1b1b; }
.wheels { background-color: #090909; }

.booking-section { background: linear-gradient(135deg, #080808, #151515); }

.booking-card {
  max-width: 1120px;
  margin: auto;
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.booking-card h2 {
  font-size: clamp(36px, 5vw, 58px);
  margin: 10px 0;
}

.contact-info {
  margin-top: 25px;
  color: #ddd;
  line-height: 1.7;
}

form {
  display: grid;
  gap: 14px;
}

input, select, textarea {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,.35);
  background: rgba(0,0,0,.45);
  color: white;
  outline: none;
}

textarea { min-height: 120px; resize: vertical; }

footer {
  text-align: center;
  padding: 65px 20px;
  background: #030303;
  border-top: 1px solid rgba(212,175,55,.2);
}

footer h3 {
  color: #d4af37;
  font-size: 32px;
}

.copyright { color: #888; margin-top: 24px; }

.sticky-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  background: #d4af37;
  color: #050505;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 15px 35px rgba(0,0,0,.45);
}

@media (max-width: 950px) {
  nav { display: none; }
  .trust-bar, .service-grid, .pricing-grid, .gallery-grid, .booking-card, .addon-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .site-header { padding: 16px 20px; }
  .trust-bar, .service-grid, .pricing-grid, .gallery-grid, .booking-card, .addon-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 75px 20px; }
  .price-card.featured { transform: none; }
  h1 { letter-spacing: -2px; }
}
