/* =========================================
     GLOBAL VARIABLES & RESET
     ========================================= */
:root {
    --primary-color: #ffca00;
    /* Yellow */
    --primary-hover: #e0b100;
    --dark-bg: #1a1a1a;
    --text-color: #333;
    --text-light: #777;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --header-height: 80px;
    --font-main: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f9f9f9;
}

a {
    text-decoration: none !important;
    transition: 0.3s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =========================================
     HEADER SECTION
     ========================================= */
nav.navbar {
    background: rgba(0 0 0 / 49%) !important;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 45px;
    transition: transform 0.3s;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link.menu-title {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 15px !important;
    border-radius: 4px;
}

.nav-link.menu-title:hover,
.nav-item.active .nav-link {
    color: var(--primary-color) !important;
    background: rgba(255, 255, 255, 0.05);
}

.header-right .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 5px 30px 5px 15px;
    font-size: 13px;
}

.user-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: #000;
    display: flex;
    /* Center icon */
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.user-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 202, 0, 0.4);
}

/* =========================================
     HERO SECTION
     ========================================= */
.hero-section {
    padding: 100px 0;
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transform: scale(1);
    animation: zoomBg 20s infinite alternate;
}

@keyframes zoomBg {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));*/
    z-index: 0;
}


.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1140px;
    padding: 0 15px;
}

.hero-title {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title h1 {
    font-weight: 800;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-title p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* SEARCH CARD - Glassmorphism */
.search-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out forwards;
}

/* FLIGHTS SEARCH PANEL SPECIFIC STYLES */
#dspf {
    padding: 10px;
}

#dspf .light {
    font-weight: 500;
    color: #333 !important;
    margin-right: 15px;
    cursor: pointer;
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    transition: all 0.3s ease;
}

#dspf input[type="radio"] {
    display: none;
}

#dspf .light::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background: #fff;
    transition: all 0.3s ease;
}

#dspf input[type="radio"]:checked+.light::before {
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: inset 0 0 0 4px #fff;
}

#dspf input[type="radio"]:checked+.light {
    color: #000;
    font-weight: 700;
}

#dspf .row .col-md-12:first-child {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
}

#dspf .search-group {
    position: relative;
    margin-bottom: 0;
    display: inline-block;
    vertical-align: top;
}

#dspf .col-md-12:nth-child(2) {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

#dspf .search-group.source,
#dspf .search-group.date,
#dspf .search-group.misc,
#dspf .search-group.search {
    flex: 1;
    min-width: 150px;
}

#dspf .search-group.search {
    flex: 0 0 100%;
    margin-top: 15px;
}

#dspf .form-control-lg {
    height: 55px;
    border-radius: 12px;
    font-size: 15px;
    border: 1px solid #e0e0e0;
    /*                padding-left: 45px;*/
    /* Space for icons if added later or just padding */
    font-weight: 500;
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

#dspf .form-control-lg:focus {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 202, 0, 0.15);
    transform: translateY(-2px);
}

#dspf .form-control-lg::placeholder {
    color: #999;
    font-weight: 400;
}

#dspf .btn-all-search {
    height: 55px;
    line-height: 40px;
    /* Vertically center text */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), #f5b800);
    border: none;
    box-shadow: 0 8px 20px rgba(255, 202, 0, 0.3);
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

#dspf .btn-all-search:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 202, 0, 0.4);
    background: linear-gradient(135deg, #ffd333, #ffca00);
}

/* REFINED FLIGHT MISC PANEL - INTEGRATED */
#flightsMisc {
    flex: 0 0 100%;
    background: #fff;
    padding: 20px 0;
    border-radius: 0;
    z-index: 10;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideDown 0.3s ease-out;
    margin: 65px 0 0 68%;
    width: 40% !important;
}

#flightsMisc .misc-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
}

#flightsMisc .misc-title {
    font-size: 13px;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#flightsMisc .traveler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

#flightsMisc .section-label {
    font-size: 10px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 5px;
    display: block;
}

#flightsMisc .form-control-lg {
    height: 40px !important;
    border-radius: 8px !important;
    border: 1.5px solid #eee !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 0 10px !important;
}

#flightsMisc .btn-close-flight {
    background: #ff4d4d;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

#flightsMisc .btn-close-flight:hover {
    background: #e60000;
}

/* Responsive adjustments for the new flex layout */
@media (min-width: 992px) {
    #dspf .search-group.search {
        flex: 0 0 auto;
        width: 150px;
        /* Fixed width button on desktop */
        margin-top: 0;
    }
}

/* BUS SEARCH PANEL SPECIFIC STYLES */
#dspb {
    padding: 10px;
}

#dspb .custom-radio-label {
    font-weight: 500;
    color: #333 !important;
    margin-right: 15px;
    cursor: pointer;
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    transition: all 0.3s ease;
}

#dspb .custom-radio-label input {
    display: none;
}

#dspb .custom-radio-label span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background: #fff;
    transition: all 0.3s ease;
}

#dspb input[type="radio"]:checked+span::before {
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: inset 0 0 0 4px #fff;
}

#dspb input[type="radio"]:checked+span {
    color: #000;
    font-weight: 700;
}

#dspb .trip-type-labels {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
    justify-content: flex-start !important;
}

#dspb .search-form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

#dspb .form-group {
    flex: 1;
    min-width: 150px;
}

#dspb .form-group.btn-search-col {
    flex: 0 0 100%;
    margin-top: 15px;
}

#dspb .form-control-custom {
    height: 55px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    border: 1px solid #e0e0e0 !important;
    font-weight: 500 !important;
    color: #333 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.3s ease !important;
}

#dspb .form-control-custom:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(255, 202, 0, 0.15) !important;
    transform: translateY(-2px);
}

#dspb .btn-search {
    height: 55px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), #f5b800);
    border: none;
    box-shadow: 0 8px 20px rgba(255, 202, 0, 0.3);
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 5px;
}

#dspb .btn-search:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 202, 0, 0.4);
}

/* REFINED HOTEL MISC DROPDOWN */
#hotelsMisc {
    position: absolute;
    top: 75px;
    right: 0;
    left: 70% !important;
    width: 40% !important;
    max-height: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.08);
    animation: fadeInScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Custom Scrollbar for #hotelsMisc */
#hotelsMisc::-webkit-scrollbar {
    width: 6px;
}

#hotelsMisc::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#hotelsMisc::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

#hotelsMisc::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

#hotelsMisc .room-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
}

#hotelsMisc .room-card:hover {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#hotelsMisc .room-title {
    font-size: 13px;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#hotelsMisc .room-title i {
    color: var(--primary-color);
}

#hotelsMisc .guest-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

#hotelsMisc .child-ages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
}

#hotelsMisc .section-label {
    font-size: 10px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
    display: block;
}

#hotelsMisc .form-group {
    margin-bottom: 0px;
}

#hotelsMisc .form-control-lg {
    height: 38px !important;
    border-radius: 8px !important;
    border: 1.5px solid #eee !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 0 8px !important;
}

#hotelsMisc .btn-done {
    width: 100%;
    height: 48px;
    background: #222;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    position: sticky;
    bottom: 0;
}

#hotelsMisc .btn-done:hover {
    background: #000;
    transform: translateY(-2px);
}

#dsph .light {
    font-weight: 700;
    color: #000 !important;
    margin-right: 15px;
    cursor: pointer;
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    transition: all 0.3s ease;
}

#dsph input[type="radio"] {
    display: none;
}

#dsph .light::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background: #fff;
    transition: all 0.3s ease;
}

#dsph input[type="radio"]:checked+.light::before {
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: inset 0 0 0 4px #fff;
}

#dsph input[type="radio"]:checked+.light {
    color: #000;
    font-weight: 700;
}

#dsph .row .col-md-12:first-child {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
}

#dsph .col-md-12:nth-child(2) {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

#dsph .search-group {
    flex: 1;
    min-width: 150px;
}

#dsph .search-group.search {
    flex: 0 0 100%;
    margin-top: 15px;
}

#dsph .form-control-lg {
    height: 55px;
    border-radius: 12px;
    font-size: 15px;
    border: 1px solid #e0e0e0 !important;
    font-weight: 500;
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

#dsph .form-control-lg:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(255, 202, 0, 0.15);
    transform: translateY(-2px);
}

#dsph .btn-all-search {
    height: 55px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), #f5b800);
    border: none;
    box-shadow: 0 8px 20px rgba(255, 202, 0, 0.3);
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

#dsph .btn-all-search:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 202, 0, 0.4);
}

@media (min-width: 992px) {

    #dspb .form-group.btn-search-col,
    #dsph .search-group.search {
        flex: 0 0 auto;
        width: 150px;
        margin-top: 0;
    }
}

@media (max-width: 991px) {

    #dspb .form-group,
    #dsph .search-group {
        flex: 0 0 calc(50% - 15px);
    }

    #dspb .form-group.btn-search-col,
    #dsph .search-group.search {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {

    #dspb .form-group,
    #dsph .search-group {
        flex: 0 0 100%;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trip-type-labels {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.custom-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.custom-radio-label input {
    accent-color: var(--primary-color);
}

.search-form-row {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
    gap: 15px;
    align-items: end;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

.form-control-custom {
    width: 100% !important;
    height: 50px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    padding: 0 15px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    background: #fff !important;
    transition: 0.3s;
    box-shadow: none !important;
}

.form-control-custom:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(255, 202, 0, 0.1) !important;
}

.btn-search {
    height: 50px;
    width: 100%;
    background-color: var(--primary-color);
    color: #000;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 202, 0, 0.3);
}

.btn-search:hover {
    transform: translateY(-2px);
    background-color: var(--primary-hover);
}

/* =========================================
     FEATURES SECTION
     ========================================= */
.features-section {
    padding: 80px 0;
    background: #fff;
}

.feature-box {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    transition: 0.3s;
    border: 1px solid #eee;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 202, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 30px;
    transition: 0.3s;
}

.feature-box:hover .feature-icon {
    background: var(--primary-color);
    color: #fff;
}

.feature-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: #777;
}

/* =========================================
     FOOTER SECTION
     ========================================= */
footer {
    background-color: #111;
    color: #ccc;
    padding: 70px 0 0;
    font-size: 14px;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-title h5 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #aaa;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    margin-bottom: 15px;
    color: #aaa;
}

.contact-list i {
    color: var(--primary-color);
    width: 25px;
    margin-top: 4px;
}

.sub-footer {
    background: #000;
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid #222;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-title h1 {
        font-size: 3rem;
    }

    .search-form-row {
        grid-template-columns: 1fr 1fr;
    }

    .search-form-row .btn-search-col {
        grid-column: span 2;
    }

    .navbar-collapse {
        background: #111;
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .hero-title h1 {
        font-size: 2.5rem;
    }

    .search-form-row {
        grid-template-columns: 1fr;
    }

    .search-form-row .btn-search-col {
        grid-column: span 1;
    }
}

/* =========================================
     POPULAR ROUTES SECTION
     ========================================= */
.popular-routes-section {
    padding: 80px 0;
    background: #fff;
}

.popular-routes-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 100px;
}

.popular-routes-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* =========================================
     BUS TYPES SECTION (PREMIUM REFINEMENT)
     ========================================= */
.bus-type-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.bus-type-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.bus-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.bus-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: 0.3s;
}

.bus-type-card:hover .bus-image::after {
    opacity: 1;
}

.bus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bus-type-card:hover .bus-image img {
    transform: scale(1.1);
}

.bus-content {
    padding: 30px;
}

.bus-content h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: 0.3s;
}

.bus-type-card:hover .bus-content h4 {
    color: #d4a017;
    /* Darker gold */
}

.bus-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.bus-features span {
    background: #f0f2f5;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    color: #444;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.bus-type-card:hover .bus-features span {
    background: rgba(255, 202, 0, 0.1);
    color: #000;
}

.bus-content .price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-top: 10px;
}

/* =========================================
     POPULAR ROUTES SECTION (GLASSMORPHISM)
     ========================================= */
.popular-routes-section {
    position: relative;
    z-index: 1;
}

.route-card {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 45px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 100%;
    text-align: center;
}

.route-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.route-cities .from,
.route-cities .to {
    font-size: 1.5rem;
    font-weight: 800;
    color: #222;
    transition: 0.3s;
}

.route-card:hover .route-cities .from,
.route-card:hover .route-cities .to {
    color: var(--primary-color);
}

.route-cities i {
    color: var(--primary-color);
    font-size: 1.4rem;
    transition: 0.3s;
}

/* =========================================
     STATISTICS SECTION (MODERN LOOK)
     ========================================= */
.stats-section {
    background: #111;
    padding: 80px 0;
    color: #fff;
    position: relative;
}

.stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 2px;
}

/* =========================================
     BUS FEATURES SECTION
     ========================================= */
.features-section {
    padding: 80px 0;
    background: #fff;
}

/* =========================================
     HOTEL DEALS SECTION
     ========================================= */
.hotel-deals-section {
    padding: 80px 0;
    background: #fff;
}

.deals-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
}

.hotel-deal-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    cursor: pointer;
}

.hotel-deal-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.deal-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.deal-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.hotel-deal-card:hover .deal-image-wrapper img {
    transform: scale(1.1);
}

.deal-content {
    padding: 20px;
}

.deal-hotel-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.deal-location {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.deal-location i {
    color: #999;
}

.deal-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.deal-stars {
    color: #ffca00;
    font-size: 0.8rem;
}

.deal-reviews {
    font-size: 0.8rem;
    color: #999;
}

.deal-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    font-weight: 500;
}

.discount-price {
    color: #ff385c;
    font-size: 1.5rem;
    font-weight: 800;
}

.features-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.features-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: #f8f9fa;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #000;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

.stats-section {
    display: none !important;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* =========================================
     BUS TYPES SECTION
     ========================================= */
.bus-types-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.bus-types-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.bus-types-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.bus-type-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.bus-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.bus-image {
    height: 220px;
    overflow: hidden;
}

.bus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bus-type-card:hover .bus-image img {
    transform: scale(1.1);
}

.bus-content {
    padding: 25px;
}

.bus-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.bus-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.bus-features span {
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.bus-features i {
    color: #ffca00;
}

.bus-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.bus-content .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffca00;
}

/* Responsive Design */
@media (max-width: 768px) {

    .route-cities .from,
    .route-cities .to {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .features-section .section-title,
    .bus-types-section .section-title,
    .popular-routes-section .section-title {
        font-size: 2rem;
    }
}

/* =========================================
     WHY WE ARE THE BEST SECTION
     ========================================= */
.new-whybest {
    background-color: #fff;
    padding: 50px 0;
}

.Holidaytitle h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.demo-et {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.panlbg {
    padding: 15px;
}

.icon-box,
.icon-box-1 {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
    text-align: center;
}

.icon-box:hover,
.icon-box-1:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.icon-box img,
.icon-box-1 img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.icon-box:hover img,
.icon-box-1:hover img {
    transform: scale(1.1);
}

.icon-box h5,
.icon-box-1 h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.icon-box p,
.icon-box-1 p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

#dbtnLg {
    color: #fff !important;
}

#dbtnALg {
    color: #fff !important;
}

#flightsDesc {
    display: block !important;
}