/* ====================================
banner
======================================= */

.page-banner5 {
  position: relative;
  height: 450px;
  background: url("../images/Banners/book_car_banner.webp") center center/cover
    no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-content h1 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb i {
  font-size: 14px;
}

@media (max-width: 992px) {
  .page-banner5 {
    height: 350px;
  }

  .banner-content h1 {
    font-size: 55px;
  }

  .breadcrumb {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-banner5 {
    height: 280px;
    padding: 0 15px;
  }

  .banner-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .breadcrumb {
    gap: 8px;
    font-size: 14px;
    flex-wrap: wrap;
  }

  .breadcrumb i {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .page-banner3 {
    height: 220px;
  }

  .banner-content h1 {
    font-size: 25px;
  }

  .breadcrumb {
    font-size: 11px;
  }
}
/* =====================================
   SERVICES SECTION
===================================== */
.airport-services-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 15px;
}

.airport-service-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.airport-reverse-row {
    flex-direction: row-reverse;
}

/* =====================================
   IMAGE
===================================== */
.airport-service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
}

.airport-service-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    height: 320px;
    display: block;
    transition: all .5s ease;
}

.airport-service-image:hover img {
    transform: scale(1.08);
}

/* =====================================
   CONTENT CARD
===================================== */
.airport-service-content {
    flex: 1.4;
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transition: all .3s ease;
}

.airport-service-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.airport-service-content h3 {
    color: #2d57a1;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.airport-service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.airport-service-content p a {
    color: #0d6efd;
    text-decoration: none;
}

.airport-service-content p a:hover {
    color: #084298;
    text-decoration: none;
}


/* =====================================
   LAPTOP
===================================== */
@media (max-width: 1200px) {

    .airport-service-row {
        gap: 30px;
    }

    .airport-service-content {
        padding: 30px;
    }

    .airport-service-content h3 {
        font-size: 28px;
    }
}

/* =====================================
   TABLET
===================================== */
@media (max-width: 992px) {

    .airport-service-row {
        gap: 25px;
    }

    .airport-service-image img {
        height: 260px;
    }

    .airport-service-content {
        padding: 25px;
    }

    .airport-service-content h3 {
        font-size: 24px;
    }

    .airport-service-content p {
        font-size: 15px;
    }
}

/* =====================================
   MOBILE
===================================== */
@media (max-width: 768px) {

    .airport-services-section {
        margin: 50px auto;
        padding: 0 15px;
    }

    .airport-service-row,
    .airport-reverse-row {
        flex-direction: column !important;
        gap: 20px;
        margin-bottom: 40px;
    }

    .airport-service-image {
        order: 1;
        width: 100%;
    }

    .airport-service-content {
        order: 2;
        width: 100%;
        padding: 20px;
    }

    .airport-service-image img {
        width: 100%;
        height: 220px;
        border-radius: 15px;
    }

    .airport-service-content h3 {
        font-size: 22px;
        line-height: 1.4;
    }

    .airport-service-content p {
        font-size: 14px;
        line-height: 1.8;
    }

  
}

/* =====================================
   SMALL MOBILE
===================================== */
@media (max-width: 480px) {

    .airport-services-section {
        padding: 0 10px;
    }

    .airport-service-content {
        padding: 15px;
    }

    .airport-service-content h3 {
        font-size: 20px;
    }

    .airport-service-content p {
        font-size: 13px;
    }
}

/* =====================================
   EXTRA SMALL MOBILE
===================================== */
@media (max-width: 360px) {

    .airport-service-content h3 {
        font-size: 18px;
    }

    .airport-service-content p {
        font-size: 12px;
    }
}
