body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
}
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.85);
  padding: 10px 40px;
  z-index: 1000;
}
.navbar .logo { height: 40px; }
.navbar ul { list-style: none; display: flex; gap: 20px; }
.navbar a { text-decoration: none; color: gold; font-weight: 500; }
.btn {
  background: linear-gradient(45deg, gold, #cdaa25);
  color: black;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn:hover { background: #fff; color: black; }
.btn-outline {
  border: 2px solid gold;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: gold;
  transition: 0.3s;
}
.btn-outline:hover { background: gold; color: black; }
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background: linear-gradient(to right, #000, #111);
}
.hero-logo { height: 120px; margin-bottom: 20px; }
.section {
  padding: 80px 20px;
  text-align: center;
}
.section.dark { background: #111; }
.cards { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
.card {
  background: #000;
  border: 1px solid gold;
  padding: 20px;
  flex: 1 1 200px;
  transition: 0.3s;
}
.card:hover { background: gold; color: black; }
.fleet { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.fleet-item {
  border: 1px solid gold;
  padding: 40px;
  flex: 1 1 200px;
  transition: 0.3s;
}
.fleet-item:hover { background: gold; color: black; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: auto;
}
.contact-form input, .contact-form textarea {
  padding: 10px;
  border: 1px solid gold;
  border-radius: 5px;
  background: #111;
  color: white;
}
.footer {
  text-align: center;
  padding: 20px;
  background: #000;
  border-top: 1px solid gold;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: gold;
  color: black;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
