/* Hero Section Css*/

.hero-section {
    width: 100%;
    background: url('../images/route_desktop.jpg') no-repeat center center / cover;
    color: #fff;
    padding: 40px 20px;
    position: relative;
}

@media (max-width: 768px) {
    .hero-section {
        background: url('../images/route_mobile.jpg') no-repeat center center / cover;
        padding: 100px 20px;

    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-text {
    max-width: 700px;
}

.hero-text h2 {
    color: white;
    font-size: 30px;
    margin-bottom: 5px;
    font-weight: bold;
}

.hero-text p {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 100;

}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 60px 15px;
    }

    .hero-text {
        align-items: center;
        padding-bottom: 50px;
        margin: 0 auto;
    }

    .hero-text h2 {
        color: white;
        font-size: 24px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .hero-text p {
        font-size: 16px;
        opacity: 1;
        line-height: 1.6;
    }
}


























/* feature section css Start */

.feature-content-wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.feature-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 20px;
    background: #fff;
    box-sizing: border-box;
}

.feature-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: #000;
    margin: 0 auto 30px auto;
    /* auto = horizontal center */
}



/* Each Feature Card */
.feature-item {
    flex: 1 1 calc(25% - 20px);
    /* 4 items per row on desktop */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 8px;
    background: #fff;
    padding-bottom: 10px;
}

/* Responsive Image */
.feature-image {
    width: 100%;
    height: 110px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 10px;
}


.feature-tag-image {
    height: 20px;
    margin-left: 5px;
    vertical-align: top;
}


/* Text Styling */
.feature-heading {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-subtext {
    font-size: 16px;
    margin-bottom: 15px;
    color: #666;
}


.learn-more-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: black;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
    font-size: 16px;
}

.learn-more-btn:hover {
    color: black;
    text-decoration: underline;
    opacity: 0.7;
    /* Optional: slight fade on hover */
}


/* 🔁 Responsive Breakpoints */
@media (max-width: 992px) {
    .feature-item {
        flex: 1 1 calc(50% - 20px);
        /* 2 items per row on tablets */
    }

    /* Text Styling */
    .feature-heading {
        font-size: 20px;

    }

    .feature-subtext {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;

    }
}

@media (max-width: 600px) {
    .feature-item {
        flex: 1 1 100%;
        /* 1 item per row on phones */
    }
}

@media (max-width: 768px) {
    .feature-image {
        height: 150px;
    }
}































/* Sustainability Section css Start */



.sustainability-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

.sustainability-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.sustainability-title {
    flex: 1;
    min-width: 250px;
}

.sustainability-title p {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #111;
    text-transform: uppercase;
    line-height: 1.6;
    margin: 0;
}

.sustainability-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
}

.sustainability-logos img {
    max-height: 80px;
    height: auto;
    width: auto;
    display: block;
}

.divider {
    width: 2px;
    height: 50px;
    background-color: #333;
}

@media (max-width: 768px) {
    .sustainability-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sustainability-logos {
        flex-direction: column;
        gap: 20px;
    }

    .divider {
        width: 100px;
        height: 2px;
        display: block;
        margin: 10px auto;
    }

    .sustainability-title {
        text-align: center;
    }
}

















/* Benefits Section css Start */



.benefits-section {

    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.benefits-intro-left {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 40px;
}

.benefits-intro-left h2 {
    font-size: 36px;
    margin-bottom: 5px;
    text-align: left;
    font-weight: 400;
    /* <-- this aligns the heading left */
}

.benefits-intro-left p.section-description {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 0 20px;
    /* remove auto to avoid centering */
    text-align: left;
    /* <-- this aligns the paragraph left */
    line-height: 1.6;
}

.inline-icon {
    width: auto;
    height: 20px;
    vertical-align: top;
    margin-right: 10px;
    display: inline-block;
}



.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    box-sizing: border-box;
    justify-content: center;
}

.benefit-item {
    flex: 1 1 calc((100% - 60px) / 3);
    min-width: 280px;
    padding: 30px 25px;
    border: 1px solid #f2f2f2;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    text-align: left;
    box-sizing: border-box;
}

.benefit-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 10px;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
}

.benefit-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-container {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .benefit-item {
        flex: 1 1 100%;
        max-width: 500px;
    }


    .benefits-intro-left h2 {
        font-size: 24px;
    }


}

























































/* CARS section css Start */




.car-display {
    text-align: center;
    padding: 80px 0px;
    background-color: white;
    max-width: 1200px;
    /* Maximum width of the section */
    margin: 0 auto;
    /* Center align the section */
}

.car-display h2 {
    margin-bottom: 1rem;
    font-size: 36px;
}

.car-display p {
    margin-bottom: 26px;
    font-size: 20px;
}

.car-gallery {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow-x: hidden;
    /* Prevent horizontal scroll bar */
}

.car-item {
    flex: 1 1 14%;
    /* Adjust to fit all 7 cars evenly */
    text-align: center;
    margin: 0 0.5rem;
    /* Add some spacing between items */
}

.star-icon {
    color: #e6303e;
}

.car-item img {
    width: 100%;
    /* Make image fit the container */
    max-width: 150px;
    /* Adjust the max-width as needed */
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 8px;
}

.car-name {
    margin: 0.5rem 0;
    font-weight: bold;
    font-size: 1rem;
}

.car-capacity {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #555;
    margin-top: 6px;
}

.car-capacity span {
    display: flex;
    align-items: center;
    gap: 5px;
}


@media (max-width: 768px) {
    .car-display h2 {
        font-size: 24px;
    }


    .car-display {
        margin: 20px;
    }

    .car-display p {
        margin-bottom: 26px;
        font-size: 16px;
    }
}

.icon-inline {
    width: 16px;
    height: 16px;
    object-fit: contain;
    vertical-align: middle;
}






/* Adjust image styles to match your design */
.car-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

.car-name,
.car-capacity {
    font-size: 1rem;
}


.carousel .car-item {
    text-align: center;
    padding: 20px;
}

.carousel .car-item img {
    max-width: 200px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.car-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.car-capacity {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #555;
}

.car-capacity span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.custom-carousel-btn {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 10;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev.custom-carousel-btn {
    left: 10px;
}

.carousel-control-next.custom-carousel-btn {
    right: 10px;
}

.custom-carousel-btn i {
    font-size: 18px;
}



/* CARS section css End */



























































/* Worldwide section css END */



#private-transfers {
    max-width: 1200px;
    margin: 0 auto;
    background-color: transparent;
    padding: 50px 0;
    text-align: center;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 0px;
}

h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.country-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

.country-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    text-align: left;
    position: relative;
}

.country-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.country-card .info {
    padding: 14px 16px;
}

.country-card h4 {
    font-size: 16px;
    margin: 0 0 6px;
    font-weight: 600;
    color: #111;
}

.country-card p {
    font-size: 14px;
    color: #444;
    margin: 0;
}

.country-card .hidden {
    display: none;
}


.card-image-wrapper {
    position: relative;
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.rating-badge i.fas.fa-globe {
    color: #e6303e !important;
    font-size: 12px;
}









.top-countries {
    text-align: left;
    font-size: 30px;
}





@media (max-width: 600px) {
    .country-card-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .country-card img {
        width: 100%;
        height: 200px;

    }

    .container {

        padding: 0 20px !important;
    }

    .country-card-grid {
        gap: 10px;
    }

    .top-countries {
        font-size: 24px;
    }
}











.city-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.city-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    text-align: left;
    position: relative;

}

.city-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.city-card .info {
    padding: 14px 16px;
}

.city-card h4 {
    font-size: 16px;
    margin: 0 0 6px;
    font-weight: 600;
    color: #111;
}

.city-card p {
    font-size: 14px;
    color: #444;
    margin: 0;
}

.city-card.hidden {
    display: none;
}

.top-cities {
    text-align: left;
    font-size: 30px;
    margin-bottom: 20px;
}


.worldwide-heading {
    font-size: 36px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* ✅ this centers flex content */
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
    /* applies to multiline text if wrapped */
}


.heading-tag img {
    height: 20px;
    width: auto;
    display: inline-block;
    vertical-align: top;
}



@media (max-width: 600px) {
    .city-card-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .city-card img {
        width: 100%;
        height: 80px;
    }



    .city-card-grid {
        gap: 10px;
    }

    .top-cities {
        font-size: 24px;
    }

    .worldwide-heading {
        font-size: 24px;

    }
}











.route-content {


    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    padding: 20px;


    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);


}

/* Ensure each child takes correct space */
.route-text {
    flex: 1;
    text-align: left;
    font-size: 1rem;
    color: #333;
}

.route-text strong {
    font-size: 20px;
    display: block;
}

.route-btn {
    background-color: #2a2a2a;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hover: slightly lighter black */
.route-btn:hover {
    background-color: #111;
    /* softer black */
    color: #fff;
    box-shadow: none;
}


/* Mobile responsive */
@media (max-width: 768px) {
    .route-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }

    .route-text {
        text-align: center;
    }

    .route-btn {
        width: 100%;
        text-align: center;
    }
}



























































/* Partner Section */


.partner-steps {
    background: #f8f9fb;
    padding: 40px 20px;
    border-radius: 20px;
    max-width: 1200px;
    margin: 50px auto;
    font-family: 'Poppins', sans-serif;
}

.partner-title {
    font-size: 36px;
    font-weight: 600;
    color: #111;
    margin-bottom: 30px;
    text-align: center;
}

.steps-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.step-box {
    flex: 1 1 30%;
    min-width: 260px;
    padding: 10px 5px;
    text-align: left;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;

}

.step-circle {
    background: #e6303e;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.check-circle {
    background: #d4f5e8;
    color: #25D366;
    font-size: 1.2rem;
}

.step-header h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #111;
}

.step-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.step-box a {
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
}

.step-box a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .steps-wrapper {
        flex-direction: column;
        align-items: stretch;
    }



    .partner-title {
        font-size: 24px;
    }

    .partner-steps {

        margin: 20px;
    }

}




































































/* App Section */


.app-launch-section {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    flex-wrap: wrap;
}

.app-content {
    max-width: 500px;
    flex: 1;
}

.app-content h2 {
    font-size: 36px;
    margin-bottom: 1rem;
    color: #222;
}

.app-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.store-buttons img {
    width: 150px;
    margin-right: 10px;
    opacity: 0.6;
    cursor: not-allowed;
}

.app-preview {
    flex: 1;
    text-align: center;
}

.app-preview img {
    max-width: 250px;
    width: 100%;
    height: auto;
}




@media (max-width: 768px) {
    .app-launch-section {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .app-content h2 {
        font-size: 24px;

    }

    .app-content,
    .app-preview {
        max-width: 100%;
    }

    .store-buttons img {
        margin-bottom: 10px;
    }
}

















































/* Quote Section */



.quote-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.quote-section blockquote {
    font-size: 44px;
    font-weight: 600;
    color: #111;
    margin: 0 auto 10px;
    max-width: 1200px;
    line-height: 1.4;
}

.quote-section cite {
    font-size: 1rem;
    color: #444;
    display: block;
    margin-top: 10px;
}



@media (max-width: 768px) {



    .quote-section blockquote {
        font-size: 32px;
    }
}





















































/* ISMOVA airport section */


.ismova-service-section {
    background: #fff;
    color: white;
    padding: 30px 20px;
}

/* Flexbox for Layout */
.ismova-service-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Text Styling */
.ismova-service-text {
    flex: 1;
    max-width: 550px;
}

.ismova-service-text h2 {

    font-size: 30px;
    margin: 25px 0;

}

.service-desktop-image {

    display: block;
}

.service-mobile-image {

    display: none;
}


.ismova-service-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ismova-service-section-m {
    visibility: hidden;
}


/* Underline */
.ismova-service-text .underline {
    width: 50px;
    height: 2px;
    background: rgb(0, 0, 0);
    /* changed to white for visibility */
    margin-bottom: 20px;
    margin-left: 0;
    /* left-aligned on desktop */
}

/* Right Image Styling */
.ismova-service-image {
    flex: 1;
    max-width: 600px;
}

.ismova-service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .ismova-service-container {
        flex-direction: column;
        text-align: left;
    }

    .ismova-service-text h2 {
        font-size: 24px;

    }

    .service-desktop-image {

        display: none;
    }

    .service-mobile-image {

        display: block;
    }


    .ismova-service-text,
    .ismova-service-image {
        max-width: 100%;
    }

    .ismova-service-image img {
        max-height: 400px;
    }

    .ismova-service-text .underline {
        margin: 0 auto;
        /* centered on mobile */
    }
}




/* Essential Facts Section */

.essential-facts-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.essential-facts-intro-left {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 40px;
}

.essential-facts-intro-left h2 {
    font-size: 36px;
    margin-bottom: 5px;
    text-align: left;
    font-weight: 400;
}

.essential-facts-intro-left p.section-description {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 0 20px;
    text-align: left;
    line-height: 1.6;
}

.essential-facts-container {
    max-width: 1200px;
    margin: 0 auto;
}

.essential-facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .essential-facts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .essential-facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
}

.essential-fact-item {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    text-align: left;
    transition: all 0.3s ease;
}

.essential-fact-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #ccc;
}

.fact-label {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.fact-value {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.3;
}

.fact-subtext {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .essential-facts-section {
        padding: 60px 20px;
    }

    .essential-facts-intro-left h2 {
        font-size: 24px;
    }

    .essential-fact-item {
        padding: 15px;
    }

    .fact-value {
        font-size: 20px;
    }

    .fact-label {
        font-size: 12px;
    }

    .fact-subtext {
        font-size: 13px;
    }
}




/* Tabular Navigation */

.tabular-navigation {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    position: relative;
    z-index: 99;
    transition: box-shadow 0.3s ease, position 0.2s ease;
    will-change: position;
}

.tabular-navigation.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.tabular-nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0;
}

.tabular-book-ride-btn {
    background-color: #111;
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    margin-right: 30px;
    flex-shrink: 0;
}

.tabular-book-ride-btn:hover {
    background-color: #333;
}

.tabular-nav-items {
    display: flex;
    gap: 0;
    align-items: center;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: thin;
}

.tabular-nav-items::-webkit-scrollbar {
    height: 4px;
}

.tabular-nav-items::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 2px;
}

.tabular-nav-item {
    padding: 16px 20px;
    font-size: 15px;
    color: #666;
    cursor: pointer;
    border: none;
    background: none;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tabular-nav-item:hover {
    color: #111;
}

.tabular-nav-item.active {
    color: #111;
    border-bottom-color: #111;
}

@media (max-width: 768px) {
    .tabular-nav-wrapper {
        padding: 0 15px;
    }

    .tabular-book-ride-btn {
        padding: 12px 18px;
        font-size: 14px;
        margin-right: 15px;
    }

    .tabular-nav-items {
        padding-right: 15px;
    }

    .tabular-nav-item {
        padding: 14px 16px;
        font-size: 14px;
    }
}




/* Booking Info Section / Services */

.booking-info-section {
    background-color: #fff;
    padding: 60px 20px;
}

.booking-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.booking-info-left {
    display: flex;
    flex-direction: column;
}

.booking-info-left h2 {
    font-size: 36px;
    margin-bottom: 5px;
    text-align: left;
    font-weight: 400;
}

.booking-info-content {
    margin-top: 20px;
}

.booking-info-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

.booking-info-content p:last-child {
    margin-bottom: 0;
}

.booking-info-content strong {
    color: #111;
    font-weight: 600;
}

.booking-info-right {
    display: flex;
    flex-direction: column;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.service-card {
    background-color: #f9f9f9;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    display: flex;
    gap: 12px;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
    background-color: #fff;
}

.service-card-icon {
    font-size: 20px;
    color: #e6303e;
    font-weight: bold;
    flex-shrink: 0;
    line-height: 1;
}

.service-card-text {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 992px) {
    .booking-info-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .booking-info-section {
        padding: 60px 20px;
    }

    .booking-info-wrapper {
        gap: 30px;
    }

    .booking-info-left h2 {
        font-size: 24px;
    }

    .booking-info-content p {
        font-size: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card {
        padding: 16px;
    }

    .service-card-text {
        font-size: 13px;
    }
}




/* How to Book Section */

.how-to-book-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.how-to-book-container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-to-book-header {
    margin-bottom: 60px;
}

.how-to-book-header h2 {
    font-size: 36px;
    margin-bottom: 5px;
    text-align: left;
    font-weight: 400;
}

.how-to-book-header p.section-description {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 0 20px;
    text-align: left;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-item {
    background-color: #fff;
    padding: 40px 28px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.step-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
    transform: translateY(-2px);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #111;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.step-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 12px 0;
}

.step-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .how-to-book-section {
        padding: 60px 20px;
    }

    .how-to-book-header h2 {
        font-size: 24px;
    }

    .how-to-book-header p.section-description {
        font-size: 15px;
    }

    .steps-grid {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .steps-grid::-webkit-scrollbar {
        height: 6px;
    }

    .steps-grid::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 10px;
    }

    .steps-grid::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

    .step-item {
        padding: 30px 24px;
        flex: 0 0 90%;
        scroll-snap-align: start;
        min-width: 90%;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .step-item h3 {
        font-size: 16px;
    }

    .step-item p {
        font-size: 13px;
    }
}




/* FAQ Section */

.faq-section {
    background-color: #fff;
    padding: 60px 20px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 36px;
    margin-bottom: 5px;
    font-weight: 400;
}

.faq-header p.section-description {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background-color: #f9f9f9;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.faq-item:hover {
    border-color: #d0d0d0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    background-color: #fff;
    border-color: #111;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 22px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-question span:first-child {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    line-height: 1.5;
    flex: 1;
}

.faq-icon {
    font-size: 24px;
    color: #111;
    font-weight: bold;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .faq-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-header h2 {
        font-size: 24px;
    }

    .faq-header p.section-description {
        font-size: 15px;
    }

    .faq-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .faq-question {
        padding: 18px;
    }

    .faq-question span:first-child {
        font-size: 14px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 18px 18px;
    }

    .faq-answer p {
        font-size: 13px;
    }
}




/* Airport Guide Section */

.airport-guide-section {
    background-color: #fff;
    padding: 60px 20px;
}

.airport-guide-container {
    max-width: 1200px;
    margin: 0 auto;
}

.airport-guide-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.guide-left-content {
    display: flex;
    flex-direction: column;
}

.guide-left-content h2 {
    font-size: 36px;
    margin-bottom: 5px;
    text-align: left;
    font-weight: 400;
}

.guide-main-text {
    margin-top: 20px;
}

.guide-main-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

.guide-main-text p:last-child {
    margin-bottom: 0;
}

.guide-main-text strong {
    color: #111;
    font-weight: 600;
}

.guide-right-content {
    display: flex;
    flex-direction: column;
}

.guide-highlights-box {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.guide-highlights-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 25px;
    margin-top: 0;
}

.guide-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guide-highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlight-icon {
    color: #e6303e;
    font-size: 20px;
    font-weight: bold;
    margin-top: -2px;
    flex-shrink: 0;
}

.highlight-text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .airport-guide-section {
        padding: 60px 20px;
    }

    .airport-guide-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .guide-left-content h2 {
        font-size: 24px;
    }

    .guide-main-text p {
        font-size: 15px;
    }

    .guide-highlights-box {
        padding: 20px;
    }

    .guide-highlights-box h3 {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .highlight-text {
        font-size: 14px;
    }
}