/* ============================================================= */
        /* SERVICES SLIDER – UNIQUE PREFIX: svc- (NO BOOTSTRAP CONFLICT) */
        /* ============================================================= */
body{
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}
        .svc-section {
            padding: 90px 5%;
            background: #f9f9fb;
            position: relative;
            overflow: hidden;
        }

        .svc-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .svc-badge {
            display: inline-block;
            background: #e3f2fd;
            color: #1565c0;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 6px 18px;
            border-radius: 30px;
            margin-bottom: 16px;
        }

        .svc-title {
            font-size: 2.9rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .svc-subtitle {
            font-size: 1.1rem;
            color: #555;
            max-width: 750px;
        }

        /* Slider Wrapper */
        .svc-slider-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

        .svc-slider {
            display: flex;
            transition: transform 0.5s ease;
            width: 100%;
        }

        .svc-slide {
            min-width: 100%;
            padding: 50px 40px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            align-items: start;
        }

        /* Card */
        .svc-card {
            border-radius: 20px;
            padding: 30px 22px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .svc-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 16px 35px rgba(0,0,0,0.1);
            border-color: #093628;
        }

        .svc-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: #e8f5e8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #093628;
        }

        .svc-card-title {
            font-size: 1.22rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .svc-card-desc {
            font-size: 0.94rem;
            color: #666;
            line-height: 1.55;
            margin-bottom: 18px;
        }

        .svc-btn {
            display: inline-block;
            background: #093628;
            color: #fff;
            padding: 9px 18px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.88rem;
            transition: all 0.3s;
        }

        .svc-btn:hover {
            background: #087443;
            transform: translateY(-2px);
        }

        /* Navigation Arrows */
        .svc-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: #093628;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }

        .svc-nav:hover {
            background: #087443;
            transform: translateY(-50%) scale(1.1);
        }

        .svc-prev { right: 80px; top:180px}
        .svc-next { right: 20px; top:180px}






        /* Responsive */
        @media (max-width: 1200px) {
            .svc-slide { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 992px) {
            .svc-title { font-size: 2.4rem; }
            .svc-slide { grid-template-columns: repeat(2, 1fr); padding: 40px 30px; }
        }

        @media (max-width: 768px) {
            .svc-section { padding: 50px 5%; }
            .svc-title { font-size: 2.1rem; }
            .svc-slide { grid-template-columns: 1fr; gap: 20px; padding: 30px 20px; }
            .svc-card { padding: 25px 18px; }
            .svc-nav { width: 42px; height: 42px; font-size: 1.1rem; }
            .svc-prev { left: 10px; }
            .svc-next { right: 10px; }
        }

        @media (max-width: 480px) {
            .svc-title { font-size: 1.9rem; }
            .svc-badge { font-size: 0.8rem; padding: 5px 14px; }
        }




        /* ============================================================= */
        /* FAQ SECTION – UNIQUE PREFIX: faq- (NO BOOTSTRAP CONFLICT) */
        /* ============================================================= */

        .faq-section {
            padding: 30px 5%;
            background: #f9f9fb;
            text-align: center;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-badge {
            display: inline-block;
            background: #e3f2fd;
            color: #1565c0;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 30px;
            margin-bottom: 16px;
        }

        .faq-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 50px;
            line-height: 1.2;
        }

        /* Accordion Wrapper */
        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 12px;
            background-color: #fff;
            padding: 10px;
            border-radius: 35px;
            border:1px solid #eee;
        }

        .faq-item {
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #eee;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }


        .faq-question {
            padding: 10px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: #1a1a1a;
            font-size: 0.9rem;
            user-select: none;
            position: relative;
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: #093628;
            font-weight: 300;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            content: '−';
            transform: rotate(0deg);
        }

        .faq-item:not(.active) .faq-question::after {
            transform: rotate(0deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 24px;
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px; /* adjust if content is longer */
            padding: 0 24px 24px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .faq-title { font-size: 2.2rem; margin-bottom: 40px; }
            .faq-question { font-size: 1rem; padding: 18px 20px; }
            .faq-answer { font-size: 0.9rem; }
        }

        @media (max-width: 480px) {
            .faq-title { font-size: 1.9rem; }
            .faq-badge { font-size: 0.8rem; padding: 5px 14px; }
            .faq-question { padding: 16px 18px; }
        }


        /* ============================================================= */
    /* MODERN EXPLO FOOTER – PREFIX: explo- (NO BOOTSTRAP CONFLICT) */
    /* ============================================================= */

    .explo-footer {
        background: #fafafa;
        padding: 0px 5% 40px;
        margin-top: 50px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    .explo-footer__inner {
        max-width: 1300px;
        margin: 0 auto;
        background: #ffffff;
        border-radius: 24px;
        padding: 60px 50px;
        box-shadow: 0 15px 50px rgba(0,0,0,0.07);
        display: grid;
        grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
        gap: 60px;
        align-items: start;
    }

    .explo-logo-img {
        height: 50px;
        object-fit: contain;
    }

    .explo-brand-text {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #555;
        margin: 20px 0 0;
    }

    .explo-col-title {
        font-size: 1.35rem;
        font-weight: 700;
        color: #093628;
        margin: 0 0 24px 0;
    }

    .explo-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .explo-links a {
        color: #666;
        text-decoration: none;
        font-size: 1rem;
        transition: color 0.3s;
    }

    .explo-links a:hover {
        color: #093628;
    }

    .explo-contact {
        display: flex;
        flex-direction: column;
        gap: 16px;
        font-size: 1rem;
        color: #444;
        line-height: 1.6;
    }

    .explo-contact a {
        color: #093628;
        font-weight: 600;
        text-decoration: none;
    }

    .explo-contact a:hover {
        text-decoration: underline;
    }

    .explo-bottom {
        max-width: 1300px;
        margin: 50px auto 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        font-size: 0.95rem;
        color: #777;
    }

    .explo-social {
        display: flex;
        gap: 14px;
    }

    .explo-social a {
        width: 44px;
        height: 44px;
        background: #e8f5e8;
        color: #093628;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .explo-social a:hover {
        background: #093628;
        color: #fff;
        transform: translateY(-4px);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .explo-footer__inner {
            grid-template-columns: 1fr;
            gap: 50px;
            padding: 25px 20px;
        }
        .explo-col--brand {
            grid-column: 1 / -1;
        }
    }


    .featured-stations-section {
    padding: 90px 20px;
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.featured-stations-container {
    max-width: 1400px;
    margin: 0 auto;
}

.featured-header {
    text-align: center;
    margin-bottom: 50px;
}

.discover-tag {
    display: inline-block;
    background: #ecfdf5;
    color: #059669;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.featured-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.featured-desc {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 680px;
    margin: 0 auto;
}

.featured-cards-wrapper {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.featured-cards-wrapper::-webkit-scrollbar {
    display: none;
}

.featured-card {
    min-width: 300px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}



.featured-card-img {
    border-radius: 24px;

    height: 220px;
    overflow: hidden;
}

.featured-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}



.featured-card-body {
    padding: 14px;

}

.featured-card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.featured-card-body p {
    color: #6b7280;
    font-size: 1rem;
}

.featured-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #374151;
}

.featured-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.icon-clock::before { content: "⏱"; }

.featured-book-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: #093628;
    border: 1px solid rgb(206, 206, 206);
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-book-btn:hover {
    background: #093628;
    border:1px solid #093628;
    color: white;
}

.see-all-packages {
    display: block;
    margin: 50px auto 0;
    background: transparent;
    color: #10b981;
    border: 2px solid #10b981;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.see-all-packages:hover {
    background: #10b981;
    color: white;
}

/* Mobile snap */
@media (max-width: 768px) {
    .featured-cards-wrapper {
        scroll-snap-type: x mandatory;
    }
    .featured-card {
        scroll-snap-align: start;
    }
        .featured-stations-section {
    padding: 50px 20px;
        }
}


/* Fleet container */
.fleet-section {
  padding: 50px 100px;
  text-align: center;
}


/* ⭐ Grid Layout */
.fleet-cards-wrapper {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding-top: 15px;
}

/* Fleet Card Style */
.fleet-card {
  background: #fff;
  border-radius: 25px;
  padding: 15px;
  transition: .3s ease;
  border: 1px solid #e0e0e0;
}

.fleet-card:hover {
  transform: translateY(-5px);
  border:1px solid #093628;
}

.fleet-card-img img {
  width: 60%;
  border-radius: 10px;
  margin: 0 auto;
  display: block;
}

.fleet-card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #111827;
}

.fleet-card-body p {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}

.fleet-meta {
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 18px;
}



.about-story-section {
    padding: 100px 100px;
    background: #ffffff;
}

.about-story-container {
    max-width: 1400px;
    margin: 0 auto;
}

.story-hero,
.story-values {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.story-hero:last-child,
.story-values:last-child { margin-bottom: 0; }

.story-image {
    align-items: center;
    flex: 1;
}

.story-image img {
    width: 80%;
    height: 480px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.story-content {
    flex: 1;
}

.story-content h3{
    font-size: 1.5rem;
    font-weight: 700;
}

.section-tag {
    display: inline-block;
    background: #ecfdf5;
    color: #059669;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.story-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.story-points {
    margin: 32px 0;
}

.point-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.point-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.point-item h4 {
    margin: 0 0 6px 0;
    font-size: 1.25rem;
    color: #111827;
}

.point-item p {
    margin: 0;
    color: #6b7280;
    line-height: 1.6;

}
p{
    color: #6b7280;

}
/* Values Section */
.values-lead {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-box {
    text-align: center;
    padding: 24px;
    background: #ecfdf5;
    border-radius: 20px;
}

.value-box h3 {
    font-size: 1.5rem;
    color: #111827;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.value-box p {
    margin: 0;
    color: #64748b;
    font-weight: 400;
}

/* Reverse layout on odd blocks */
.reverse {
    flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 992px) {
    .story-hero, .story-values, .reverse {
        flex-direction: column;
        gap:0;
    }

    .story-title {
        font-size: 2.4rem;
    }
    .reverse { flex-direction: column; }
    .fleet-section {
  padding: 30px 20px;
  text-align: center;
}
.about-story-section {
    padding: 50px 20px;
}
}

@media (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .story-image img {
        display: none;
    }
}



/* airport pages content css */

.lhr-content-section {
    padding: 100px 100px;
    background: #ffffff;
}

.lhr-content-container {
    max-width: 1400px;
    margin: 0 auto;
}

.lhr-hero-block,
.lhr-content-block {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 100px;
}

.lhr-hero-image img,
.lhr-content-image img {
    width: 70vh;
    height: 65vh;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.lhr-hero-text,
.lhr-content-text {
    flex: 1;
}

.lhr-main-title,
.lhr-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin: 0 0 14px 0;
}

.lhr-heading {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 0px;
}

.lhr-heading:first-child { margin-top: 0; }

.lhr-paragraph {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 24px 0;
}

/* Reverse layout (image on right) */
.reverse {
    flex-direction: row-reverse;
}

/* CTA Block */
.lhr-cta-block {
    text-align: center;
    border-radius: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.lhr-cta-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.lhr-cta-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto 32px;
}

.lhr-book-btn {
    display: inline-block;
    background: #e8f5e8;
    color: #093628;
    padding: 16px 44px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.lhr-book-btn:hover {
    background: #093628;
    color: white;

    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 720px) {
    .lhr-hero-block,
    .lhr-content-block,
    .reverse {
        flex-direction: column;
        gap: 0px;
    }
    .lhr-hero-image img,
    .lhr-content-image img {
        display: none;
    }
    .lhr-main-title,
    .lhr-heading {
        font-size: 2rem;
    }
    .lhr-content-section{
        padding: 10px;
    }
}

@media (max-width: 640px) {
    .lhr-hero-image img,
    .lhr-content-image img {
        border-radius: 20px;
        height: 300px;
    }
    .lhr-main-title { font-size: 1.8rem; }
    .lhr-heading { font-size: 1.7rem; }
}



.cities-compact-section{
    height:100vh;
    background:#093628;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 5% 60px;
    overflow:hidden;
}
.cities-compact-container{
    width:100%;
    max-width:1400px;
    min-height: 65vh;
}
.cities-compact-title{
    text-align:center;
    font-size:2.2rem;
    font-weight:700;
    margin-bottom:24px;
    letter-spacing:0.5px;
}
.cities-compact-grid{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:12px 16px;
    font-size:1rem;
    font-weight:500;
}
.city-link{
    display:block;
    padding:10px 14px;
    background:rgba(255,255,255,0.08);
    border-radius:2rem;
    text-decoration:none;
    color:white;
    text-align:center;
    transition:all 0.25s ease;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.city-link:hover{
    background:rgba(255,255,255,0.22);
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,0.3);
    color: #fff;
}

/* Search bar styling */
.search-wrapper {
    position: relative;
    /* margin-bottom: 12px; */
}

.search-div{
     position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #093628;
      padding: 5px;
      height: 40px;
      width: 40px;
    border-radius: 50%;
}
.search-div img{
    height: 16px;
    width: 16px;
    align-items: center;
    margin-left: 6px;
}
#citySearch {
    width: 100%;
    padding: 10px 20px 10px 54px;       /* space for the icon */
    border-radius: 2rem;
    border: none;
    background: #fff;
    color: gray;
    font-size: 1rem;
    outline: none;
    transition: all 0.25s ease;
}
/* #citySearch::placeholder { color: rgba(255,255,255,0.7); }
#citySearch:focus {
    background: rgba(255,255,255,0.22);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
} */

/* Responsive */
@media (max-width:1200px){ .cities-compact-grid{grid-template-columns:repeat(5,1fr);gap:11px;font-size:0.95rem} }
@media (max-width:992px) { .cities-compact-grid{grid-template-columns:repeat(4,1fr);gap:10px;}.cities-compact-section{ height:fit-content} }
@media (max-width:768px)  { .cities-compact-grid{grid-template-columns:repeat(3,1fr);gap:9px}  .cities-compact-title{font-size:1.9rem} }
@media (max-width:480px)  { .cities-compact-grid{grid-template-columns:repeat(2,1fr);gap:8px}  .cities-compact-title{font-size:1.7rem} }




.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}


.lhr-cta-block ul li{
    color: #4b5563 !important;
}