/* =========================================================
   WEBSITE VARIABLES
========================================================= */

:root {
    --primary-color: #f59e0b;
    --primary-dark: #d97706;
    --dark-color: #111827;
    --light-bg: #f8fafc;
    --border-color: #e5e7eb;
}

/* =========================================
   HOME HERO
========================================= */

.home-hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.98) 0%,
            rgba(255,255,255,0.90) 45%,
            rgba(255,255,255,0.25) 100%
        ),
        url('/images/home-hero.jpg') center/cover no-repeat;
}

.min-vh-75 {
    min-height: 650px;
}

.hero-badge {
    display: inline-block;
    background: #fff3cd;
    color: #856404;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.hero-title {
    max-width: 700px;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.08;
    font-weight: 800;
    color: var(--dark-color);
}

.hero-title span {
    color: var(--primary-color);
}

.hero-description {
    max-width: 600px;
    font-size: 19px;
    line-height: 1.7;
    color: #6b7280;
}


/* =========================================
   SECTIONS
========================================= */

.section-subtitle {
    display: inline-block;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    color: var(--dark-color);
}


/* =========================================
   BOOKING
========================================= */

.booking-section {
    background: var(--light-bg);
}

.booking-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: -90px;
    position: relative;
    z-index: 5;
}

.booking-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark-color);
    transition: 0.25s ease;
}

.booking-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    color: var(--dark-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.booking-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff3cd;
    color: #856404;
    border-radius: 10px;
    font-size: 22px;
}

.booking-option h5 {
    margin: 0 0 4px;
    font-weight: 700;
}

.booking-option p {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
}


/* =========================================
   SERVICES
========================================= */

.service-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 25px 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff3cd;
    color: #856404;
    border-radius: 12px;
    font-size: 30px;
}

.service-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.service-content p {
    color: #6b7280;
    line-height: 1.7;
}

.service-link {
    color: #111827;
    text-decoration: none;
    font-weight: 600;
}

.service-link:hover {
    color: var(--primary-dark);
}


/* =========================================
   ROUTES
========================================= */

.routes-section {
    background: var(--light-bg);
}

.route-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 25px;
    transition: 0.25s ease;
}

.route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.route-cities {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.route-city span {
    display: block;
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
    margin-bottom: 4px;
}

.route-city strong {
    font-size: 17px;
}

.route-arrow {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff3cd;
    color: #856404;
    border-radius: 50%;
}

.route-details {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
    padding-top: 15px;
    font-size: 13px;
    color: #6b7280;
}


/* =========================================
   VEHICLES
========================================= */

.vehicle-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: 0.25s ease;
}

.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.vehicle-image,
.vehicle-placeholder {
    width: 100%;
    height: 220px;
}

.vehicle-image {
    object-fit: cover;
}

.vehicle-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    font-size: 70px;
    color: #9ca3af;
}

.vehicle-capacity {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #6b7280;
    font-size: 14px;
}


/* =========================================
   WHY CHOOSE US
========================================= */

.why-section {
    background: var(--light-bg);
}

.feature-box {
    height: 100%;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.feature-box > i {
    font-size: 28px;
    color: var(--primary-dark);
}

.feature-box h5 {
    margin-top: 15px;
    font-weight: 700;
}

.feature-box p {
    color: #6b7280;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   CTA
========================================= */

.cta-card {
    background: var(--dark-color);
    color: #fff;
    padding: 60px 30px;
    border-radius: 18px;
}

.cta-card h2 {
    font-size: 38px;
    font-weight: 700;
}

.cta-card p {
    color: #d1d5db;
    margin: 15px 0 25px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .home-hero {
        min-height: 550px;
        background:
            linear-gradient(
                rgba(255,255,255,0.92),
                rgba(255,255,255,0.92)
            ),
            url('/images/home-hero.jpg') center/cover no-repeat;
    }

    .min-vh-75 {
        min-height: 550px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }

    .booking-card {
        padding: 20px;
        margin-top: -50px;
    }

    .cta-card h2 {
        font-size: 28px;
    }

}


/* =========================================================
   MODERN HOME HERO
========================================================= */

.home-hero-modern {
    position: relative;
    min-height: 650px;
    padding: 90px 0;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #111827 0%,
            #1f2937 50%,
            #374151 100%
        );
}


.home-hero-modern::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    top: -200px;
    right: -150px;

    background: rgba(255, 193, 7, 0.12);

    border-radius: 50%;
}


.home-hero-modern::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -150px;
    left: -100px;

    background: rgba(255, 193, 7, 0.08);

    border-radius: 50%;
}


.hero-content-modern {
    position: relative;
    z-index: 2;
}


.hero-badge-modern {
    display: inline-flex;

    align-items: center;

    padding: 9px 16px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.12);

    color: #fff;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;
}


.hero-badge-modern i {
    color: #ffc107;
}


.hero-title-modern {
    color: #fff;

    font-size: clamp(42px, 5vw, 64px);

    font-weight: 800;

    line-height: 1.08;

    margin-bottom: 22px;

    letter-spacing: -1px;
}


.hero-title-modern span {
    display: block;

    color: #ffc107;
}


.hero-description-modern {
    color: rgba(255, 255, 255, 0.82);

    font-size: 18px;

    line-height: 1.7;

    max-width: 580px;

    margin-bottom: 25px;
}


.hero-features {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;
}


.hero-feature {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #fff;

    font-size: 14px;
}


.hero-feature i {
    color: #ffc107;
}


.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   BOOKING WIDGET
========================================================= */

.booking-widget-modern {
    position: relative;

    z-index: 3;

    background: #fff;

    border-radius: 20px;

    padding: 30px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25);

    max-width: 520px;

    margin-left: auto;
}


.booking-widget-header {
    text-align: center;

    margin-bottom: 25px;
}


.booking-widget-subtitle {
    display: block;

    color: #f59e0b;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}


.booking-widget-header h2 {
    font-size: 28px;

    font-weight: 700;

    color: #111827;

    margin-bottom: 8px;
}


.booking-widget-header p {
    color: #6b7280;

    margin-bottom: 0;

    font-size: 14px;
}


/* =========================================================
   BOOKING OPTIONS
========================================================= */

.booking-tabs-modern {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


.booking-tab-modern {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px;

    border: 1px solid #e5e7eb;

    border-radius: 12px;

    text-decoration: none;

    color: #111827;

    background: #fff;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}


.booking-tab-modern:hover {
    color: #111827;

    transform: translateY(-2px);

    border-color: #ffc107;

    background: #fffdf5;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.08);
}


.booking-tab-icon {
    width: 48px;

    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #fff3cd;

    color: #d89b00;

    font-size: 20px;
}


.booking-tab-modern strong {
    display: block;

    font-size: 16px;

    margin-bottom: 3px;
}


.booking-tab-modern small {
    display: block;

    color: #6b7280;

    font-size: 13px;
}


.booking-tab-modern > i:last-child {
    color: #9ca3af;

    font-size: 16px;
}


.booking-widget-footer {
    margin-top: 20px;

    padding-top: 18px;

    border-top: 1px solid #eee;

    color: #6b7280;

    text-align: center;

    font-size: 13px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991.98px) {

    .home-hero-modern {
        min-height: auto;

        padding: 65px 0;
    }


    .hero-content-modern {
        text-align: center;
    }


    .hero-description-modern {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-features {
        justify-content: center;
    }


    .hero-buttons {
        justify-content: center;
    }


    .booking-widget-modern {
        margin: 25px auto 0;

        max-width: 600px;
    }

}


@media (max-width: 575.98px) {

    .home-hero-modern {
        padding: 45px 0;
    }


    .hero-title-modern {
        font-size: 40px;
    }


    .hero-description-modern {
        font-size: 16px;
    }


    .hero-features {
        flex-direction: column;

        align-items: center;

        gap: 10px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .booking-widget-modern {
        padding: 22px 16px;

        border-radius: 16px;
    }


    .booking-widget-header h2 {
        font-size: 24px;
    }


    .booking-tab-modern {
        padding: 13px;
    }

}


/* =========================================================
   PUBLIC WEBSITE HEADER
========================================================= */

.website-topbar {
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    padding: 10px 0;
    font-size: 14px;
}

.website-topbar a {
    color: #334155;
    text-decoration: none;
}

.website-topbar a:hover {
    color: var(--primary-dark);
}

.topbar-contact {
    display: flex;
    align-items: center;
}

.topbar-contact i {
    color: var(--primary-color);
}


/* =========================================================
   PUBLIC WEBSITE NAVBAR
========================================================= */

.website-navbar {
    background: #ffffff;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.website-logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 24px;
    font-weight: 700;

    color: var(--dark-color) !important;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--primary-color);
    color: #ffffff;

    font-size: 20px;
}

.website-navbar .navbar-nav {
    gap: 5px;
}

.website-navbar .nav-link {
    color: #334155;

    font-size: 16px;
    font-weight: 500;

    padding: 8px 13px !important;

    border-radius: 7px;

    text-decoration: none;

    transition: 0.2s ease;
}

.website-navbar .nav-link:hover {
    color: var(--primary-dark);

    background: #fff7ed;
}


/* Mobile Navbar */

.website-navbar .navbar-toggler {
    border: 1px solid #e5e7eb;
}

.website-navbar .navbar-toggler:focus {
    box-shadow: none;
}


/* =========================================================
   PUBLIC FOOTER
========================================================= */

.website-footer {
    background: #111827;

    color: #cbd5e1;

    margin-top: 80px;

    padding: 65px 0 0;
}


/* Footer title */

.footer-title {
    color: #ffffff;

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 20px;
}


/* Footer description */

.footer-description {
    color: #94a3b8;

    font-size: 15px;

    line-height: 1.7;

    max-width: 390px;

    margin-bottom: 20px;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {
    list-style: none !important;

    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    list-style: none !important;

    margin-bottom: 10px;
}

.footer-links li::before {
    display: none !important;
    content: none !important;
}

.footer-links a {
    display: inline-block;

    color: #cbd5e1;

    text-decoration: none;

    font-size: 15px;

    transition: 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-color);

    padding-left: 4px;
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #cbd5e1;

    font-size: 15px;
}

.footer-contact-item i {
    flex-shrink: 0;

    color: var(--primary-color);

    font-size: 17px;

    margin-top: 3px;
}

.footer-contact-item a {
    color: #cbd5e1;

    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--primary-color);
}


/* =========================================================
   FOOTER SOCIAL
========================================================= */

.footer-social {
    display: flex;

    align-items: center;

    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #334155;

    border-radius: 50%;

    color: #cbd5e1;

    text-decoration: none;

    transition: 0.2s ease;
}

.footer-social a:hover {
    background: var(--primary-color);

    border-color: var(--primary-color);

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    margin-top: 55px;

    padding: 20px 0;

    border-top: 1px solid #263244;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    color: #94a3b8;

    font-size: 14px;
}

.footer-bottom strong {
    color: #ffffff;
}

.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 20px;
}

.footer-bottom-links a {
    color: #94a3b8;

    text-decoration: none;

    transition: 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}


/* =========================================================
   CMS PUBLIC PAGE
========================================================= */

.cms-page-header {
    margin-bottom: 30px;
}

.cms-page-header h1 {
    color: var(--dark-color);

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 10px;
}

.published-date {
    color: #64748b;

    font-size: 14px;
}

.cms-page-content {
    color: #334155;

    font-size: 17px;

    line-height: 1.8;
}

.cms-page-content h1,
.cms-page-content h2,
.cms-page-content h3,
.cms-page-content h4,
.cms-page-content h5,
.cms-page-content h6 {
    color: var(--dark-color);

    margin-top: 30px;

    margin-bottom: 15px;
}

.cms-page-content p {
    margin-bottom: 18px;
}

.cms-page-content ul,
.cms-page-content ol {
    margin-bottom: 20px;

    padding-left: 25px;
}

.cms-page-content li {
    margin-bottom: 8px;
}

.cms-page-content img {
    max-width: 100%;

    height: auto;

    border-radius: 10px;
}


/* =========================================================
   RESPONSIVE HEADER / FOOTER
========================================================= */

@media (max-width: 991.98px) {

    .website-navbar .navbar-nav {
        padding-top: 15px;
    }

    .website-navbar .nav-link {
        padding: 10px 0 !important;
    }

    .website-footer {
        padding-top: 50px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 767.98px) {

    .website-topbar .container > div {
        flex-direction: column;

        align-items: flex-start !important;

        gap: 5px;
    }

    .website-footer {
        margin-top: 50px;

        padding-top: 45px;
    }

    .footer-bottom-links {
        flex-direction: column;

        align-items: flex-start;

        gap: 7px;
    }

    .cms-page-header h1 {
        font-size: 32px;
    }

}


/* =========================================================
   TRUST / STATISTICS SECTION
========================================================= */

.trust-section {
    background: #ffffff;
    padding: 65px 0;
    border-bottom: 1px solid #f1f5f9;
}

.trust-intro {
    padding-right: 30px;
}

.trust-intro h2 {
    color: var(--dark-color);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.trust-intro p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

.trust-stat-card {
    height: 100%;
    padding: 25px 15px;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: 0.25s ease;
}

.trust-stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.trust-stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff3cd;
    color: var(--primary-dark);

    border-radius: 12px;

    font-size: 21px;
}

.trust-stat-number {
    color: var(--dark-color);
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
}

.trust-stat-label {
    color: #64748b;
    font-size: 13px;
    margin-top: 5px;
}


/* Mobile */

@media (max-width: 991.98px) {

    .trust-intro {
        padding-right: 0;
        text-align: center;
        margin-bottom: 15px;
    }

}

@media (max-width: 575.98px) {

    .trust-section {
        padding: 45px 0;
    }

    .trust-intro h2 {
        font-size: 29px;
    }

}

/* =========================================================
   OUR FLEET
========================================================= */

.fleet-section {
    padding: 80px 0;
    background: #f8fafc;
}

.fleet-card {
    height: 100%;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 18px;

    overflow: hidden;

    transition: all 0.25s ease;
}

.fleet-card:hover {
    transform: translateY(-6px);

    border-color: #f59e0b;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.10);
}


/* Vehicle image */

.fleet-image {
    width: 100%;
    height: 230px;

    background: #f1f5f9;

    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.35s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}


/* Image placeholder */

.fleet-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #94a3b8;

    font-size: 60px;
}


/* Vehicle body */

.fleet-body {
    padding: 24px;
}

.fleet-body h4 {
    color: #111827;

    font-size: 23px;

    font-weight: 700;

    margin-bottom: 10px;
}

.fleet-body p {
    color: #64748b;

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 15px;

    min-height: 52px;
}


/* Vehicle meta */

.fleet-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 20px;
}

.fleet-meta span {
    display: flex;

    align-items: center;

    gap: 6px;

    color: #475569;

    font-size: 14px;
}

.fleet-meta i {
    color: #f59e0b;

    font-size: 16px;
}


/* Book button */

.fleet-book-btn {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 12px 18px;

    border-radius: 10px;

    background: #111827;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    transition: all 0.25s ease;
}

.fleet-book-btn:hover {
    background: #f59e0b;

    color: #ffffff;
}


/* Empty state */

.fleet-empty-icon {
    width: 70px;
    height: 70px;

    margin: auto;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff3cd;

    color: #d97706;

    font-size: 30px;
}


/* Mobile */

@media (max-width: 767.98px) {

    .fleet-section {
        padding: 55px 0;
    }

    .fleet-image {
        height: 210px;
    }

}


/* =========================================================
   WHY CHOOSE US SECTION
   ========================================================= */

.why-choose-section {
    padding: 90px 0;
    background: #ffffff;
}

.why-content {
    max-width: 600px;
}

.why-content .section-title {
    margin-bottom: 20px;
}

.why-content .section-title span {
    color: #f59e0b;
}

.why-description {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Features */

.why-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 32px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff7ed;
    color: #f59e0b;
    font-size: 21px;
}

.why-feature-content h5 {
    margin: 0 0 5px;
    color: #111827;
    font-size: 17px;
    font-weight: 700;
}

.why-feature-content p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

/* Button */

.why-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 22px;
    border-radius: 10px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.why-book-btn:hover {
    background: #f59e0b;
    color: #ffffff;
}

.why-book-btn i {
    transition: transform 0.25s ease;
}

.why-book-btn:hover i {
    transform: translateX(4px);
}

/* Statistics */

.why-stats-wrapper {
    position: relative;
    padding: 15px;
}

.why-stats-wrapper::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -15px;
    right: -10px;
    border-radius: 50%;
    background: #fff7ed;
    z-index: 0;
}

.why-stats-wrapper::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: -15px;
    left: -10px;
    border-radius: 50%;
    background: #fef3c7;
    z-index: 0;
}

.why-stats-card {
    position: relative;
    z-index: 1;
    padding: 35px;
    border-radius: 24px;
    background: #111827;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

.why-stats-header {
    margin-bottom: 25px;
}

.why-stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.10);
    color: #fbbf24;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.why-stats-header h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
}

.why-stats-header p {
    margin: 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
}

/* Stat cards */

.why-stat {
    height: 100%;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    transition: all 0.25s ease;
}

.why-stat:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.10);
}

.why-stat-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f59e0b;
    color: #ffffff;
    font-size: 16px;
}

.why-stat strong {
    display: block;
    color: #ffffff;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.why-stat span {
    display: block;
    margin-top: 5px;
    color: #94a3b8;
    font-size: 13px;
}

/* Mobile */

@media (max-width: 991.98px) {

    .why-content {
        max-width: 100%;
    }

    .why-stats-wrapper {
        margin-top: 20px;
    }

}

@media (max-width: 767.98px) {

    .why-choose-section {
        padding: 60px 0;
    }

    .why-feature {
        gap: 12px;
    }

    .why-feature-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .why-stats-card {
        padding: 25px 20px;
        border-radius: 18px;
    }

    .why-stats-header h3 {
        font-size: 24px;
    }

    .why-stat {
        padding: 16px;
    }

    .why-stat strong {
        font-size: 22px;
    }

}


/* =========================================================
   HOW IT WORKS SECTION
   ========================================================= */

.how-it-works-section {
    padding: 90px 0;
    background: #f8fafc;
}

.how-it-works-heading {
    margin-bottom: 55px;
}

.how-step-card {
    position: relative;
    height: 100%;
    padding: 35px 30px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.how-step-card:hover {
    transform: translateY(-7px);
    border-color: #f59e0b;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
}

/* Step number */

.how-step-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #e2e8f0;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
}

/* Icon */

.how-step-icon {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #fff7ed;
    color: #f59e0b;
    font-size: 30px;
    transition: all 0.3s ease;
}

.how-step-card:hover .how-step-icon {
    background: #f59e0b;
    color: #ffffff;
    transform: scale(1.05);
}

/* Content */

.how-step-card h4 {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    color: #111827;
    font-size: 20px;
    font-weight: 700;
}

.how-step-card p {
    position: relative;
    z-index: 1;
    max-width: 300px;
    margin: 0 auto;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}

/* Connector */

@media (min-width: 992px) {

    .how-step-card:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 70px;
        left: calc(100% + 1px);
        width: 48px;
        border-top: 2px dashed #f59e0b;
        z-index: 2;
    }

}

/* Mobile */

@media (max-width: 767.98px) {

    .how-it-works-section {
        padding: 60px 0;
    }

    .how-it-works-heading {
        margin-bottom: 35px;
    }

    .how-step-card {
        padding: 30px 22px;
    }

    .how-step-number {
        font-size: 34px;
    }

}

/* =========================================================
   TESTIMONIALS SLIDER
   ========================================================= */

.testimonials-slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    flex-wrap: nowrap;

    gap: 24px;

    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;

    padding: 5px 2px 20px;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   TESTIMONIAL SLIDES
   ========================================================= */

/*
|--------------------------------------------------------------------------
| Desktop
|--------------------------------------------------------------------------
| Show 2 testimonials at a time
*/

.testimonial-slide {
    flex: 0 0 calc((100% - 24px) / 2);
    width: calc((100% - 24px) / 2);
    min-width: calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
}

.testimonial-slide .testimonial-card {
    width: 100%;
    height: 100%;
}


/* =========================================================
   TESTIMONIAL CONTROLS
   ========================================================= */

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 12px;

    margin-top: 25px;
}

.testimonial-control {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e5e7eb;
    border-radius: 50%;

    background: #ffffff;
    color: #111827;

    font-size: 16px;

    cursor: pointer;

    transition: all 0.25s ease;
}

.testimonial-control:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #ffffff;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .testimonial-slide {
        flex: 0 0 calc((100% - 24px) / 2);
        width: calc((100% - 24px) / 2);
        min-width: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .testimonials-slider {
        gap: 15px;
    }

    .testimonial-slide {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

}


/* =========================================================
   DYNAMIC HERO BANNER SLIDER - NO FLICKER
   ========================================================= */

.home-hero-modern {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-banner-slider {
    position: relative;
    width: 100%;
}

.hero-banner-slide {
    display: none;
}

.hero-banner-slide.active {
    display: block;
}


/* Banner indicators */

.hero-banner-indicators {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    position: relative;
    z-index: 5;
}

.hero-banner-indicator {
    width: 28px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-banner-indicator.active {
    width: 45px;
    background: #ffffff;
}


/* Keep hero content stable */

.hero-content-modern {
    position: relative;
    z-index: 3;
}

.hero-banner-slide .hero-title-modern {
    margin-bottom: 20px;
}


/* Mobile */

@media (max-width: 767.98px) {

    .hero-banner-indicators {
        margin-top: 20px;
    }

    .hero-banner-indicator {
        width: 22px;
    }

    .hero-banner-indicator.active {
        width: 35px;
    }

}


/* =========================================================
   HERO BACKGROUND - SMOOTH CROSS FADE
   ========================================================= */

.home-hero-modern {
    position: relative;
    overflow: hidden;
    background: #111827;
}

.hero-background-layer {
    position: absolute;
    inset: 0;
    z-index: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;

    transition: opacity 0.8s ease-in-out;

    will-change: opacity;
}

.hero-background-layer.visible {
    opacity: 1;
}

.hero-background-layer.active {
    opacity: 1;
}


/* Overlay */

.home-hero-modern .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}


/* Content */

.home-hero-modern > .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   REFERENCE STYLE BOOKING SEARCH
   ========================================================= */

.hero-booking-section {
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: 38px;
}

.booking-search-card {
    width: 100%;
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 34px 28px;
    border: 1px solid #eef2f7;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

.booking-trip-tabs {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 30px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: #f1f3f5;
    border-radius: 14px;
}

.booking-trip-tab {
    min-height: 44px;
    border: none;
    background: transparent;
    padding: 11px 22px;
    border-radius: 11px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
}

.booking-trip-tab i {
    margin-right: 5px;
    font-size: 13px;
}

.booking-trip-tab:hover {
    color: #0ea5e9;
}

.booking-trip-tab.active {
    background: #0ea5e9;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(14, 165, 233, 0.24);
}

.booking-main-search-row {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(300px, 1.65fr) 42px minmax(300px, 1.65fr) minmax(175px, 0.9fr) minmax(165px, 0.85fr);
    align-items: end;
    gap: 12px;
}

.booking-route-group,
.booking-date-time-field {
    min-width: 0;
}

.booking-route-group > label,
.booking-date-time-field > label {
    display: block;
    margin: 0 0 9px;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.booking-route-group > label span,
.booking-date-time-field > label span {
    color: #ef4444;
}

.booking-route-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
}

.booking-clean-input {
    width: 100%;
    min-width: 0;
    height: 54px;
    display: flex;
    align-items: center;
    border: 1px solid #d9e1ea;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.booking-clean-input:focus-within {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.09);
}

.booking-clean-input > i {
    flex: 0 0 auto;
    margin-left: 13px;
    color: #0ea5e9;
    font-size: 16px;
}

.booking-clean-input .form-control {
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0 10px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    color: #1e293b;
    font-size: 13px;
    font-weight: 500;
}

.booking-clean-input .form-control:disabled {
    color: #94a3b8;
    opacity: 1;
    cursor: not-allowed;
}

.booking-clean-input select.form-control {
    cursor: pointer;
}

.booking-clean-input input[type="date"],
.booking-clean-input input[type="time"] {
    cursor: pointer;
}

.booking-swap-container {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-swap-button {
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0ea5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.booking-swap-button:hover {
    background: #0ea5e9;
    color: #ffffff;
    transform: rotate(180deg);
}

.booking-swap-button i {
    font-size: 17px;
}

.booking-search-action {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.booking-explore-button {
    min-width: 265px;
    height: 52px;
    padding: 0 30px;
    border: none;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f97316;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.2px;
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.25);
    cursor: pointer;
    transition: all 0.2s ease;
}

.booking-explore-button:hover {
    background: #ea580c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.30);
}

.booking-explore-button:active {
    transform: translateY(0);
}

.booking-benefits {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 17px;
}

.booking-benefit {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #111827;
    font-size: 13px;
    font-weight: 500;
}

.booking-benefit i {
    color: #16c784;
    font-size: 17px;
}

.home-hero-modern {
    padding-bottom: 42px;
}

.home-hero-modern .hero-content-modern {
    padding-top: 10px;
}

@media (max-width: 1399.98px) {
    .booking-main-search-row {
        grid-template-columns: minmax(260px, 1.55fr) 42px minmax(260px, 1.55fr) minmax(160px, 0.9fr) minmax(150px, 0.85fr);
    }
}

@media (max-width: 1199.98px) {
    .booking-search-card {
        padding: 28px 24px 30px;
    }

    .booking-main-search-row {
        grid-template-columns: minmax(240px, 1.4fr) 42px minmax(240px, 1.4fr) minmax(150px, 0.85fr) minmax(140px, 0.8fr);
        gap: 9px;
    }

    .booking-route-fields {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .hero-booking-section {
        margin-top: 30px;
    }

    .booking-search-card {
        padding: 24px 20px 28px;
        border-radius: 16px;
    }

    .booking-trip-tabs {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        margin-bottom: 26px;
        scrollbar-width: none;
    }

    .booking-trip-tabs::-webkit-scrollbar {
        display: none;
    }

    .booking-trip-tab {
        flex: 0 0 auto;
        padding: 11px 18px;
    }

    .booking-main-search-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .booking-route-fields {
        grid-template-columns: 1fr 1fr;
    }

    .booking-swap-container {
        height: 10px;
    }

    .booking-swap-button {
        transform: rotate(90deg);
    }

    .booking-swap-button:hover {
        transform: rotate(270deg);
    }

    .booking-search-action {
        margin-top: 23px;
    }

    .booking-explore-button {
        width: 100%;
        max-width: 320px;
    }

    .booking-benefits {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-left: 8px;
        margin-right: 8px;
    }
}

@media (max-width: 575.98px) {
    .hero-booking-section {
        margin-top: 22px;
    }

    .booking-search-card {
        padding: 19px 14px 23px;
        border-radius: 14px;
    }

    .booking-trip-tabs {
        margin-bottom: 22px;
    }

    .booking-trip-tab {
        min-height: 40px;
        padding: 10px 13px;
        font-size: 11px;
    }

    .booking-route-fields {
        grid-template-columns: 1fr;
    }

    .booking-clean-input {
        height: 50px;
    }

    .booking-explore-button {
        max-width: none;
    }

    .booking-benefit {
        font-size: 12px;
    }
}

/* =========================================================
   HOMEPAGE AIRPORT OPTIONS
   ========================================================= */

.hero-airport-options {
    margin-bottom: 25px;
    padding: 16px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 13px;
}


.hero-airport-direction {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}


.hero-airport-radio {
    flex: 1;
    min-height: 58px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #d9e2ec;
    border-radius: 10px;
    cursor: pointer;
}


.hero-airport-radio:has(input:checked) {
    border-color: #0ea5e9;
    background: #f0f9ff;
}


.hero-airport-radio input {
    width: 16px;
    height: 16px;
    accent-color: #0ea5e9;
}


.hero-airport-radio span {
    display: flex;
    flex-direction: column;
}


.hero-airport-radio strong {
    color: #172033;
    font-size: 13px;
}


.hero-airport-radio small {
    margin-top: 2px;
    color: #64748b;
    font-size: 11px;
}


.hero-airport-select-wrapper {
    max-width: 500px;
}


.hero-airport-select-wrapper > label {
    display: block;
    margin-bottom: 8px;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .6px;
}


.hero-airport-select-wrapper > label span {
    color: #ef4444;
}


.hero-airport-select-wrapper .booking-clean-input {
    height: 52px;
}


@media (max-width: 767.98px) {

    .hero-airport-direction {
        flex-direction: column;
        align-items: stretch;
    }


    .hero-airport-radio {
        width: 100%;
    }


    .hero-airport-select-wrapper {
        max-width: none;
    }

}