/* Services */
/* Base styles (already provided) */
.services-section {
  padding: 90px 20px;
  background: #0c1715;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.services-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 60px;
    letter-spacing: 1px;
    position: relative;
}

.services-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #a5c35f;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

.services-container {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.service-card {
  background: #0f2421;
  border-radius: 22px;
  padding: 45px 30px;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(165,195,95,0.15), transparent);
  transition: 0.6s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.6);
}

.icon-box {
  width: 90px;
  height: 90px;
  background: #a5c35f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 25px;
}

.icon-box img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.service-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
    font-style: italic;
}

.service-card p {
  color: #e6e6e6;
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
}


/* Airport */
.airport-section {
  padding: 90px 20px;
  background: #f9f9f9; /* soft light background for section */
  font-family: 'Poppins', sans-serif;
}

.airport-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
  flex-wrap: wrap;
}

.airport-image {
  flex: 1 1 500px;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.airport-image img {
  width: 100%;
  border-radius: 25px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.airport-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(0,0,0,0.3);
}

.airport-content {
  flex: 1 1 500px;
}

.airport-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
  font-style: italic;
  color: #171d1c;
}

.airport-content p {
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 30px;
  color: #0c1715;
}

.airport-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

/* Card as anchor link */
.airport-card {
  flex: 1 1 150px;
  padding: 18px 15px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.3s ease;
  font-weight: 600;
  font-style: italic;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Dark background */
.airport-card.dark {
  background: #0c1715;
  color: #fff;
}

.airport-card.dark:hover {
  transform: translateY(-8px);
  background: #a5c35f;
  color: #0c1715;
  box-shadow: 0 12px 25px rgba(165,195,95,0.4);
}

/* Light background */
.airport-card.light {
  background: #fff;
  color: #0c1715;
  border: 1px solid #a5c35f;
}

.airport-card.light:hover {
  transform: translateY(-8px);
  background: #a5c35f;
  color: #0c1715;
  box-shadow: 0 12px 25px rgba(165,195,95,0.4);
}

/* Book Now Button */
.airport-btn {
  display: inline-block;
  padding: 12px 35px;
  background: #a5c35f;
  color: #0c1715;
  font-weight: 600;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(165,195,95,0.4);
}

.airport-btn:hover {
  background: #fff;
  color: #0c1715;
  box-shadow: 0 12px 25px rgba(165,195,95,0.5);
}



/* Stations */
.station-section-new {
  padding: 90px 20px;
  background: linear-gradient(135deg, #0c1715, #1a2a25);
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #fff;
}

.station-wrap {
  max-width: 1200px;
  margin: auto;
}

.station-section-new h2 {
  font-size: 38px;
  color: #a5c35f;
  margin-bottom: 15px;
}

.station-section-new p {
  font-size: 16px;
  margin-bottom: 50px;
  line-height: 1.8;
  color: #e6e6e6;
}

/* Grid Layout */
.station-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

/* Station Card Base */
.station-section-new {
  padding: 90px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.station-wrap {
  max-width: 1100px;
  margin: auto;
}

.station-section-new h2 {
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  color: #0c1715;
  margin-bottom: 10px;
}

.station-section-new p {
  font-size: 14px;
  color: #0c1715;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 45px;
}

/* Grid */
.station-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Station link (VERY CLEAN) */
.station-card {
  padding: 18px 15px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  color: #0c1715;
  background: #fff;
  font-style: italic;
  transition: border 0.25s ease, color 0.25s ease;
}

/* Hover effect – subtle */
.station-card:hover {
  border-color: #a5c35f;
  color: #a5c35f;
}

/* Remove dark/light drama */
.station-card.new-dark,
.station-card.new-light {
  background: #fff;
  color: #0c1715;
}

/* Full width station (desktop only) */
.station-card.full-width {
  grid-column: 1 / -1;
}

/* Button */
.station-btn-new {
  display: inline-block;
  padding: 12px 38px;
  background: #a5c35f;
  color: #0c1715;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.station-btn-new:hover {
  background: #0c1715;
  color: #fff;
}

/* Fleet */
.fleet-section {
  padding: 90px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.fleet-wrap {
  max-width: 1100px;
  margin: auto;
}

.fleet-section h2 {
  font-size: 36px;
  color: #0c1715;
  margin-bottom: 10px;
  font-weight: 700;
  font-style: italic;
}

.fleet-section p {
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  color: #0c1715;
  margin-bottom: 50px;
}

/* Grid */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

/* Card */
.fleet-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 22px;
  border: 1px solid #eee;
  transition: all 0.35s ease;
}

.fleet-card:hover {
  border-color: #a5c35f;
}

/* Image */
.fleet-img {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.fleet-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Title */
.fleet-card h3 {
  font-size: 18px;
  color: #0c1715;
  margin-bottom: 18px;
  font-weight: 600;
  font-style: italic;
}

/* Info Row */
.fleet-info {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.fleet-info span {
  background: #f4f4f4;
  color: #0c1715;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
  font-style: italic;
}


/* Footer */
.footer {
    background-color: #171d1c;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.footer-info li a {
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    color: #a5c35f;
    text-decoration: none;
}

.copy {
    padding: 30px 0;
    background-color: #a5c35f;
}

.copy p {
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    text-align: center;
}

.copy p a {
    color: #171d1c;
    text-decoration: none;
}


@media screen and (max-width: 576px) {
  .services-section {
    padding: 50px 15px;
  }

  .services-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .services-container {
    grid-template-columns: 1fr; /* single column on small screens */
    gap: 20px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .icon-box {
    width: 70px;
    height: 70px;
  }

  .icon-box img {
    width: 35px;
    height: 35px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 14px;
  }
  .airport-content h2 {
    font-size: 28px;
  }

  .airport-content p {
    font-size: 14px;
  }

  .airport-card {
    flex: 1 1 100%;
  }

  .airport-card h4 {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
   .station-section-new h2 {
    font-size: 30px;
  }

  .station-section-new p {
    font-size: 14px;
  }

  .station-grid {
    grid-template-columns: 1fr;
  }
  .fleet-section h2 {
    font-size: 30px;
  }

  .fleet-section p {
    font-size: 14px;
  }
  .footer-info {
        flex-direction: column;
    }

    .footer-info li {
        margin-bottom: 10px;
    }

    .footer-info li a {
        font-size: 15px;
    }

    .copy {
        padding: 20px 0;
    }
  
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 992px) {
  .services-section {
    padding: 70px 20px;
  }
  
  .services-title {
    font-size: 32px;
    margin-bottom: 50px;
  }
  
  .services-container {
    gap: 25px;
  }
  
  .service-card {
    padding: 35px 25px;
  }
  
  .icon-box {
    width: 80px;
    height: 80px;
  }
  
  .icon-box img {
    width: 40px;
    height: 40px;
  }
  .airport-container {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .airport-content h2 {
    font-size: 32px;
  }

  .airport-content p {
    font-size: 15px;
  }

  .airport-card {
    flex: 1 1 45%;
  }

  .airport-card h4 {
    font-size: 15px;
  }
}


.contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
  font-family: Arial, sans-serif;
}

.contact-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
  font-style: italic;
}

.contact-section p {
  color: #171d1c;
  margin-bottom: 40px;
  font-weight: 600;
  font-style: italic;
}

.contact-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap; /* Flex items will wrap on smaller screens */
}

.contact-info,
.contact-map {
  flex: 1;
  min-width: 300px; /* Ensure proper sizing on mobile */
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  text-align: left;
  box-sizing: border-box;
}

.contact-info h3 {
  margin-bottom: 15px;
  font-weight: 600;
  font-style: italic;
}

.contact-info a {
  color: #171d1c;
  text-decoration: none;
  font-weight: 600;
  font-style: italic;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* --- Responsive adjustments --- */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column; /* Stack vertically on tablets & mobiles */
  }

  .contact-info,
  .contact-map {
    padding: 20px;
  }

  .contact-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .contact-section h2 {
    font-size: 24px;
  }

  .contact-section p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .contact-info,
  .contact-map {
    padding: 15px;
  }
}
