body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #0b0f1a;
  color: #e5e5e5;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #05070d;
  border-bottom: 1px solid #3a3f55;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  background: linear-gradient(135deg, #cfd4e6, #7a819c);
  color: #000;
  padding: 10px 14px;
  font-weight: 700;
  border-radius: 6px;
  font-family: 'Playfair Display', serif;
}

.logo-text {
  font-size: 1.4em;
}

nav a {
  color: #cfd4e6;
  margin: 0 12px;
  text-decoration: none;
}

nav a:hover {
  color: #fff;
}

.hero {
  text-align: center;
  padding: 120px 20px;
  background:
    linear-gradient(rgba(5,7,13,.7), rgba(5,7,13,.9)),
    url("https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=1600&q=80")
    center/cover;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3em;
}

.hero p {
  max-width: 600px;
  margin: 15px auto;
  font-size: 1.1em;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 32px;
  background: linear-gradient(135deg, #cfd4e6, #7a819c);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}

.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: 1s ease;
}

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

.cars {
  padding: 80px 20px;
  text-align: center;
}

.car-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.car-card {
  background: linear-gradient(145deg, #0f162d, #0b1022);
  width: 320px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
}

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

.booking {
  padding: 80px 20px;
  background: #05070d;
  text-align: center;
}

form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form select,
form button {
  padding: 14px;
  font-size: 16px;
  border-radius: 4px;
  border: none;
}

.footer {
  padding: 30px;
  text-align: center;
  background: #0b0f1a;
  color: #aaa;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 15px;
  }

  .car-card {
    width: 92%;
  }

  form {
    padding: 0 15px;
  }
}
