body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 7rem 1.5rem 6rem;
  background: url("../images/color-logo.svg") center/500px no-repeat;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.85); /* adjust transparency */
  pointer-events: none;
}


.hero-content {
  position: relative;
  max-width: 850px;
}

/* Title */
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

/* Tagline */
.hero .tagline {
  color: var(--color-accent);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

/* Glass Button */
.hero .btn-gradient {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-primary);
  border: 1px solid rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 12px 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero .btn-gradient:hover {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Hero Description */
.hero .hero-desc {
  margin-top: 2.5rem;
  color: rgba(0, 0, 0, 0.65);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 5rem 1rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .tagline {
    font-size: 1.1rem;
  }

  .hero .hero-desc {
    font-size: 0.95rem;
  }
}


/* Airport Promo */
.promo-airport {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(to right, rgba(224, 168, 13, 0.1), rgba(27, 38, 59, 0.05));
}

.promo-airport .btn-outline {
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.promo-airport .btn-outline:hover {
    background: var(--color-accent);
    color: #fff;
}

/* Testimonials */
.testimonials {
    padding: 4rem 8%;
    background: #f9f9f9;
}

.testimonial-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-style: italic;
    color: #555;
}

/* Services */
.services {
    padding: 5rem 8%;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card h3 {
    color: var(--color-primary);
    margin: 1rem;
}

.service-card p {
    padding: 0 1rem 1.5rem;
    color: #555;
}

/* Why Choose (Background Image Style) */
.why-choose {
  position: relative;
  background: url('../images/luxury-car.jpg') center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  color: #fff;
  overflow: hidden;
}

/* Subtle dark overlay for readability */
.why-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 8%;
}

/* Content styling */
.why-content {
  max-width: 700px;
  z-index: 2;
  position: relative;
}

.why-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-content li {
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.7;
}

.why-content li::before {
  content: "✓";
  color: var(--color-accent);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .why-content h2 {
    font-size: 2rem;
    text-align: center;
  }

  .why-content ul {
    font-size: 1rem;
  }

  .why-overlay {
    padding: 3rem 5%;
  }
}


.cta-footer {
    background: var(--gradient-primary);
    text-align: center;
    padding: 3rem 1.5rem;
    border-radius: 16px;
    max-width: 1100px;
    margin: 3rem auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.cta-footer h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.cta-footer p {
    font-size: 1.1rem;
    color: #eee;
    margin-bottom: 1.8rem;
}

/* Optional outline version for secondary buttons */
.cta-footer .btn-outline-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 10px 28px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s ease;
}

.cta-footer .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.25);
}

@media (max-width: 992px) {
  .cta-footer { border-radius: 0; }
}