* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0c0f14;
  color: white;
}

a {
  text-decoration: none;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background: rgba(0, 0, 0, 0.75);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

/* ✅ Logo Styling */
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* Nav Links */
nav a {
  color: white;
  margin: 0 10px;
  font-weight: 500;
}

.nav-buttons a {
  margin-left: 10px;
}

/* Buttons */
.btn-call, .btn-whatsapp {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: bold;
  display: inline-block;
}

.btn-call {
  background: #ffcc00;
  color: black;
}

.btn-whatsapp {
  background: #25D366;
  color: black;
}

.btn-primary, .btn-secondary {
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: #ffcc00;
  color: black;
}

.btn-secondary {
  border: 2px solid #ffcc00;
  color: #ffcc00;
}

/* ✅ Hero Banner */
.hero-banner {
  height: 90vh;
  background: url("images/banner.png") no-repeat;
  background-size: cover;
  background-position: 65% center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 30px;
}

/* ✅ Gradient shade only on left */
.banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.00) 75%
  );
  display: flex;
  align-items: center;
  padding: 30px;
}

.banner-content {
  max-width: 700px;
}

.banner-title {
  font-size: 70px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1;
}

.banner-title span {
  color: #ffcc00;
}

.banner-subtitle {
  font-size: 18px;
  color: #e6e6e6;
  margin-bottom: 25px;
}

.banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.banner-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(0, 0, 0, 0.55);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Sections */
.section {
  padding: 70px 30px;
  text-align: center;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.subtitle {
  color: #cfd2d6;
  margin-bottom: 35px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
  border-radius: 18px;
  text-align: left;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.price {
  margin-top: 10px;
  color: #ffcc00;
  font-weight: bold;
}

/* ✅ Fleet with Images */
.fleet-card {
  overflow: hidden;
  padding: 0;
}

.fleet-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}

.fleet-card h3 {
  padding: 15px 18px 5px;
  font-size: 18px;
}

.fleet-card p {
  padding: 0 18px 12px;
  color: #cfd2d6;
}

.fleet-card .price {
  padding: 0 18px 18px;
}

/* ✅ Reviews Section */
.review-card {
  padding: 22px;
  border-radius: 18px;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-name {
  font-weight: bold;
  color: #ffcc00;
}

.review-text {
  color: #cfd2d6;
  font-size: 15px;
  line-height: 1.6;
}

/* ✅ Google Map Section */
.map-box {
  max-width: 950px;
  margin: auto;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255, 204, 0, 0.35);
  box-shadow: 0px 0px 25px rgba(0,0,0,0.6);
}

/* ✅ About Section Styling */
.about-grid {
  margin-top: 25px;
}

.about-card h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

/* Contact */
.contact {
  background: rgba(255, 255, 255, 0.04);
}

.form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.08);
  color: white;
}

/* ✅ Fix select dropdown colors */
select {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

/* ✅ Dropdown options color fix */
select option {
  background: #0c0f14;
  color: white;
}

select option:disabled {
  color: #888;
}

textarea {
  height: 110px;
  resize: none;
}

.submit {
  border: none;
  font-size: 16px;
}

.note {
  color: #cfd2d6;
  font-size: 14px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: black;
  color: #aaa;
}

/* Floating Buttons */
.float-whatsapp, .float-call {
  position: fixed;
  bottom: 20px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: bold;
  color: black;
  z-index: 9999;
}

.float-whatsapp {
  right: 20px;
  background: #25D366;
}

.float-call {
  left: 20px;
  background: #ffcc00;
}

/* ✅ Mobile Hamburger Button */
.menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

/* ✅ Mobile Menu Panel */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.9);
  padding: 15px 30px;
}

.mobile-menu a {
  color: white;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.show {
  display: flex;
}

/* Mobile */
@media (max-width: 700px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-banner {
    height: 75vh;
    padding: 0 15px;
  }

  .banner-overlay {
    padding: 15px;
  }

  .banner-title {
    font-size: 42px;
  }

  .banner-subtitle {
    font-size: 15px;
  }

  .logo-img {
    height: 55px;
  }
}
/* ✅ Footer Contact Details */
.footer {
  background: black;
  padding: 40px 30px 20px;
  color: #ccc;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  text-align: left;
}

.footer-box h3 {
  color: #ffcc00;
  margin-bottom: 12px;
}

.footer-box p {
  margin-bottom: 8px;
  color: #cfd2d6;
}

.footer-box a {
  display: block;
  color: white;
  margin-bottom: 8px;
}

.footer-box a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  color: #888;
  font-size: 14px;
}
