html{
    scroll-behavior: smooth;
}

.services-section {
  background-color: #fff;
  padding: 100px 0px;
  text-align: center;
}

.services-title {
  color: #000;
  font-size: 32px;
  margin-bottom: 40px;
  text-transform: capitalize;
  font-weight: 800;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.service-card {
  background-color: #003466;
  color: #ffffff;
  width: 300px;
  padding: 30px 20px;
  border-radius: 12px;
  border-bottom: 4px solid #da262e;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #da262e;
  font-weight: 700;
  text-transform: capitalize;
}

.service-card p {
  font-size: 14px;
  font-weight: 500;
}

.service-card:hover {
  transform: translateY(-10px);
  background-color: #002a52;
}

.airport-modern {
  width: 100%;
  padding: 100px 0px;
  background: linear-gradient(135deg, #003466, #001f3f);
}

.airport-container {
  max-width: 1200px;
  margin: 0 auto;
}

.airport-heading {
  color: #fff;
  font-size: 32px;
  margin-bottom: 60px;
  text-transform: capitalize;
  font-weight: 800;
  text-align: center;
}

.airport-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.airport-box {
  position: relative;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  transition: 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.airport-box p{
    color:white !important;
}
.airport-box:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 9px 9px rgba(0, 0, 0, 0.4);
}

.airport-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.airport-box h3,
.airport-box h3 a {
  font-size: 18px;
  color: #fff;
  margin-top: 10px;
  font-weight: 700;
}

.airport-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #da262e;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 20px;
}


.station-section {
  width: 100%;
  padding: 100px 0px 40px;
  background-color: #fff;
}

.station-title {
  font-size: 32px;
  margin-bottom: 60px;
  text-transform: capitalize;
  font-weight: 800;
  text-align: center;
  color: #000;
}

.station-track {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  justify-content: space-between;
  position: relative;
}

.station-track::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #da262e;
}

.station-stop {
  position: relative;
  text-align: center;
  /*width: 140px;*/
}

.station-icon {
  width: 40px;
  height: 40px;
  background-color: #fff;
  padding: 6px;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}

.station-stop a {
  display: block;
  margin-top: 15px;
  font-size: 15px;
  color: #000;
}

.station-stop:hover a {
  color: #da262e;
}

.fleet-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #fff;
  font-family: Arial, sans-serif;
}

.fleet-title {
  font-size: 32px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: 800;
  text-align: center;
  color: #000;
}
.fleet-section p{
    text-align: center;
    /*margin-bottom: 60px;*/
}
.fleet-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.fleet-card {
  background-color: #000;
  color: #fff;
  width: 260px;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  position: relative;
  transition: 0.3s ease;
  border: 2px solid #da262e;

}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(218, 38, 46, 0.5);

}

.fleet-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 700;
}

.popular-tag {
  font-size: 12px;
  background-color: #da262e;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 5px;
}

.fleet-price {
  font-size: 28px;
  font-weight: bold;
  color: #003466;
  margin-bottom: 20px;
}

.fleet-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.fleet-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 500;
}

.fleet-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #da262e;
  font-weight: bold;
}

.fleet-card button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background-color: #da262e;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.fleet-card button:hover {
  background-color: #003466;
  color: #fff;
}


.fleet-card.popular {
  background-color: #003466;
  color: #fff;
  border-color: #da262e;

}

.fleet-card.popular h3,
.fleet-card.popular .fleet-price,
.fleet-card.popular .popular-tag {
  color: #fff;
}

.fleet-card.popular button {
  background-color: #da262e;
  color: #fff;
}

.fleet-card.popular button:hover {
  background-color: #fff;
  color: #003466;
}


.site-footer {
  width: 100%;
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

.footer-top {
 
  padding: 70px 0px 50px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  width: 25%;
}

.footer-col.brand {
  width: 30%;
}
.footer-col.brand img{
  margin-bottom: 30px;
}

.footer-col h3 {
   font-size: 22px;
  color: #da262e;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col p {
  font-size: 14px;
  line-height: 22px;
  opacity: 0.9;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 5px;

}


.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social img {
  width: 32px;
  height: 32px;
  transition: 0.3s ease;
}

.footer-social img:hover {
  transform: translateY(-5px);
}

.footer-bottom {
  background-color: #000;
  text-align: center;
  padding: 18px 10px;
}

.footer-bottom p {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.footer-bottom p a {
  color: #da262e;
  text-decoration: underline;
  font-weight: 600;
}
.contact-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #fff;
  font-family: Arial, sans-serif;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* Left info */
.contact-info {
  width: 40%;
}

.contact-info h2 {
  font-size: 36px;
  color: #003466;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 15px;
  color: #000;
  line-height: 24px;
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item span {
  display: block;
  font-size: 14px;
  color: #da262e;
  margin-bottom: 6px;
}

.contact-item a {
  font-size: 18px;
  color: #003466;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.contact-item a:hover {
  color: #da262e;
}

.contact-item p {
  font-size: 16px;
  color: #000;
}

/* Right map */
.contact-map {
  width: 60%;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}


@media (max-width: 991px) {
  .services-title {
    font-size: 28px;
  }

  .service-card {
    width: 280px;
    padding: 25px 18px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .airport-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .airport-heading {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .airport-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .station-track {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 40px;
  }

  .station-track::before {
    top: 0;
    left: 20px;
    width: 4px;
    height: 100%;
  }

  .station-stop {
    display: block;
    align-items: center;
    margin-bottom: 35px;
    width: auto;
  }

  .station-icon {
    margin-right: 15px;
    z-index:1;
  }

  .station-stop a {
    margin-top: 0;
    font-size: 16px;
  }

  .fleet-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .fleet-title {
    font-size: 32px;
  }

  .footer-top {
    flex-direction: column;
    gap: 35px;
  }

  .footer-col,
  .footer-col.brand {
    width: 100%;
  }

  .footer-col h3 {
    font-size: 22px;
  }

  .footer-col h3 {
    font-size: 17px;
  }
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info,
  .contact-map {
    width: 100%;
  }

  .contact-info h2 {
    font-size: 28px;
  }

  .contact-map {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .airport-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .airport-heading {
    font-size: 26px;
  }

  .airport-box {
    padding: 35px 15px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 40px 15px;
  }

  .services-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .services-container {
    gap: 20px;
  }

  .service-card {
    width: 100%;
    max-width: 340px;
    padding: 22px 16px;
  }

  .service-card h3 {
    font-size: 19px;
  }

  .service-card p {
    font-size: 14px;
  }
}