.asia-deals-section {
    padding: 20px;
}

.deal-item {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: 10px;
    transition: all 0.2s ease-in-out;
}

    .deal-item:hover {
        background-color: #f8f9fa;
        transform: translateY(-2px);
    }

.deal-price {
    font-weight: 600;
}

.view-all-btn {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 15px;
    text-align: center;
    margin-top: 10px;
    display: inline-block;
}

    .view-all-btn:hover {
        background-color: #f8f9fa;
    }

img {
    border-radius: 10px;
}


/* Quote Section */
.flight_detail {
    background-color: rgba(0, 0, 0, 0);
    background-repeat: repeat, no-repeat;
    background-image: linear-gradient(rgba(34, 26, 25, 0.4), rgba(34, 26, 25, 0.4)), url("../img/flight/background.jpg");
    background-size: cover;
    background-position: center;
    
}
.deal-box {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

    .deal-box h5 {
        background: #ffeaea;
        color: #c00;
        padding: 0.5rem;
        border-radius: 6px;
        font-weight: 700;
    }

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #2c2c2c;
}

    .price del {
        color: red;
        font-size: 1.5rem;
        margin-left: 10px;
    }

.quote-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.call-box {
    background: #d9f8e8;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .call-box a {
        text-decoration: none;
        color: #007a2d;
        font-weight: 700;
        font-size: 1.1rem;
    }

        .call-box a:hover {
            text-decoration: underline;
        }

.btn-quote {
    background-color: #d63031;
    color: white;
    font-weight: 600;
    border: none;
    padding: 0.75rem 1.5rem;
    width: 100%;
    border-radius: 6px;
}

    .btn-quote:hover {
        background-color: #b02527;
    }



/* Traveler dropdown */
.traveler-dropdown {
    position: relative;
}

.traveler-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
    z-index: 10;
}
.home1-offer-section img {
    min-height:210px;
}
.traveler-count {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

    .traveler-count button {
        width: 30px;
        height: 30px;
        border: none;
        background: #f0f0f0;
        border-radius: 50%;
        font-weight: bold;
    }

    .traveler-count span {
        min-width: 20px;
        text-align: center;
    }

.traveler-menu hr {
    margin: 0.75rem 0;
}

.search-container-info2 {
    display: block;
    width: 93%;
    margin: 0 auto;
    padding: 2px 5px;
    border: solid 2px #ebf0f3;
    background: #fff;
    -webkit-transition: border .5s ease;
    -moz-transition: border .5s ease;
    -ms-transition: border .5s ease;
    -o-transition: border .5s ease;
    transition: border .5s ease;
    margin-bottom: 5px;
}


    .search-container-info2 ul {
        border: 1px solid #dee2e6;
        max-width: 600px;
        margin: auto;
        display: flex; /* ✅ Makes items inline */
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        list-style: none; /* ✅ Removes bullet points */
        padding: 10px;
    }

        .search-container-info2 ul li {
            font-size: 1.1rem;
            margin: 0 10px;
        }

            .search-container-info2 ul li .btn-primary {
                background-color: #0069ff;
                border: none;
                transition: 0.2s ease-in-out;
            }

                .search-container-info2 ul li .btn-primary:hover {
                    background-color: #0056d6;
                    transform: translateY(-2px);
                }


.price {
    list-style-type: none; 
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
    .price li {
        border-bottom: 1px solid rgb(238, 238, 238);
        padding: 20px;
        text-align: justify;
        font-size: 16px;
        font-weight: normal;
        line-height: 25px;
    }
    .price .header {
        background-color: #017CC2;
        color: white;
        font-size: 18px;
        text-align: center;
    }
    .price li img {
        margin: 0 auto;
    }



.list-group.airport-suggestions {
    width: auto !important;
}

.list-group-item.list-group-item-action {
    line-height: 18px;
    padding: 5px;
}

.list-group-item-action:focus, .list-group-item-action:hover {
    z-index: 2;
    color: var(--bs-list-group-active-color);
    background-color: var(--bs-list-group-active-bg);
    border-color: var(--bs-list-group-active-border-color);
}



/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup box */
.popup {
    background: #fff;
    border-radius: 10px;
    max-width: 900px;
    width: 90%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease-in-out;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

/* Popup content */
.popup-content {
    display: flex;
    flex-direction: row;
    padding: 20px;
    gap: 20px;
}

/* Left image */
.popup-left img {
    width: 300px;
    max-width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* Right content */
.popup-right {
    flex: 1;
}

.popup-right h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.popup-right .highlight {
    color: #FF5733;
}

.popup-right .subtext {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Offers */
.offers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.offer {
    flex: 1 1 45%;
    padding: 10px;
    border-radius: 8px;
    color: #fff;
    text-align: center;
}

.offer.green {
    background: #4CAF50;
}

.offer.yellow {
    background: #FFC107;
}

/* Features */
.features {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature {
    font-size: 14px;
}

/* Animation */
@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .popup-content {
        flex-direction: column;
        padding: 15px;
    }

    .popup-left img {
        width: 100%;
        max-width: 100%;
    }

    .offers {
        flex-direction: column;
    }

    .offer {
        flex: 1 1 100%;
    }

    .popup-right h2 {
        font-size: 20px;
    }

    .popup-right .subtext {
        font-size: 14px;
    }

    .feature {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .popup {
        width: 95%;
        padding: 10px;
    }

    .close-btn {
        font-size: 24px;
        top: 5px;
        right: 10px;
    }
}
.menu_slide img {
    height: auto;
    max-height: 195px;
    width: 100%;
    min-height: 195px;
}

 

/*xcxcxc*/
.deal-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
    height: 220px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: transform 0.3s ease;
}

    .deal-card:hover {
        transform: scale(1.02);
    }

    .deal-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
    }

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

.deal-btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: #212529;
    font-weight: 600;
    border: none;
    padding: 6px 16px;
    border-radius: 5px;
}

    .deal-btn:hover {
        background-color: #fff;
    }

.agent-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    padding: 30px 20px;
}

    .agent-card img {
/*        width: 80px;
        height: 80px;
        border-radius: 50%;*/
        margin-bottom: 15px;
    }

.call-btn {
    display: inline-block;
    background-color: #22c55e;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

    .call-btn:hover {
        background-color: #16a34a;
        color: #fff;
    }



.tour-card {
    border-radius: 16px;
    padding: 14px;
    background: #fff;
    border: 1px solid #eee;
    transition: .3s;
    margin-bottom: 10px;
}

    .tour-card:hover {
        box-shadow: 0 5px 20px rgba(0,0,0,.12);
    }

/* Image Styling */
.tour-img-wrapper {
    position: relative;
}

.tour-img {
    width: 100%;
    object-fit: cover;
    height: 250px;
}

.tour-title {
    font-size: 16px;
    font-weight: 600;
}

.rating {
    color: #13aa52;
    font-weight: 600;
}

.itinerary {
    background: #fff8e6;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 13px;
    color: #444;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
}

.save-tag {
    background: #e8ffea;
    color: #01972c;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
}

.tour-card .price {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    border: none;
}
.price .text-muted {
    font-size: 12px;
}
/* Buttons */
.tour-card .call-btn {
    width: 48px;
    height: 48px;
    border: 2px solid #135c84;
    border-radius: 10px;
    font-size: 21px;
    color: #135c84;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

    .tour-card .call-btn:hover {
        background: #588a07;
        color: #fff;
    }

.request-btn {
    background: #135c84;
    border-radius: 10px;
    flex: 1;
    transition: .3s;
}

    .request-btn:hover {
        background: #588a07;
    }

//model
.elegant-modal {
    border-radius: 18px;
    padding: 10px 20px;
    background: #ffffff;
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.tour-thumb {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.modal-tour-title {
    font-size: 14px;
    line-height: 1.3;
    color: #1a1a1a;
}

.price-bold {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.save-badge {
    background: #d9f7d9;
    color: #0b8e37;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 6px;
}


.close-btn {
    width: 36px;
    height: 36px;
    background-color: #F0F0F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top:-20px;
    right: -20px;
    transition: 0.5s;
}

.close-btn:hover {
    background-color: #FF3927;
}

 
.elegant-field {
    border-radius: 12px !important;
    border: 1px solid #e5e5e5;
    padding: 12px 14px;
    font-size: 15px;
}

    .elegant-field:focus {
        border-color: #ff7a00;
        box-shadow: 0 0 0 .15rem rgba(255,122,0,0.2);
    }

.submit-btn {
    background: #ff7a00;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    transition: .25s;
}

    .submit-btn:hover {
        background: #e56700;
        transform: translateY(-2px);
    }


header.style-1 .main-menu > ul > li .mega-menu {
    position: absolute;
    left: 0;
    top: 55px;
    margin: 0;
    display: none;
    background: var(--white-color);
    border: 1px solid var(--borders-color);
    padding: 50px 0px;
    width: 100%;
    transform-origin: top;
    z-index: 1;
    background-image: url(../img/megamenubg2.webp);
}

    header.style-1 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li > a img {
        min-width: 15px;
        max-width: 15px;
        height: 15px;
        border-radius: 50%;
        background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
 
    }
    header.style-1 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li {
        margin-bottom: 10px; 
    }

    header.style-1 .main-menu > ul > li .mega-menu .menu-row { 
        display: flex; 
        justify-content: space-between;
    }
.sticky-sidebar {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    height: fit-content;
}

input:disabled {
    background-color: #9f9a9a30 !important; 
    cursor: not-allowed;
}

.ofbg p {
    margin-bottom: 5px !important;
}
/* ===== ACCOUNT DASHBOARD ===== */

.dashboard-hero {
    background: linear-gradient( 135deg, #f7faff, #ffffff );
    padding: 26px;
    border-radius: 18px;
    border: 1px solid #eef2f7;
}


.stat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    border: 1px solid #f0f0f0;
}

    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(0,0,0,0.08);
    }


.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.stat-card h6 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
    color: #6b7280;
    text-transform: uppercase;
}

.stat-card h3 {
    font-size: 28px;
    margin-bottom: 2px;
    font-weight: 700;
    color: #111827;
}

.stat-card small {
    font-size: 13px;
    color: #6b7280;
}


.stat-card.dark {
    background: linear-gradient(135deg, #111, #2b2b2b);
    color: #fff;
}

.ttl-coins {
    background: linear-gradient(180deg, #ffffff, #faf9ff);
}


.trip-card {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 16px;
    height: 100%;
    transition: all 0.25s ease;
}

    .trip-card:hover {
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        transform: translateY(-4px);
    }

.trip-type {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #888;
}

/* ===== SOFT BRAND COLORS ===== */

.icon-blue {
    background: #eef4ff;
    color: #2f5bea;
}

.icon-green {
    background: #edf8f3;
    color: #1e8e6a;
}

.icon-orange {
    background: #fff4ec;
    color: #c05621;
}

.icon-purple {
    background: #f4f1ff;
    color: #6b46c1;
}


/* ===== ACCOUNT SIDEBAR ===== */

.account-wrapper {
    max-width: 1200px;
}

.account-sidebar {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.account-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

    .account-user .avatar {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: linear-gradient(135deg, #4facfe, #00f2fe);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

.account-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .account-menu li {
        margin-bottom: 8px;
    }

    .account-menu a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        border-radius: 12px;
        color: #333;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s ease;
    }

        .account-menu a i {
            font-size: 18px;
        }

        .account-menu li.active a,
        .account-menu a:hover {
            background: linear-gradient(135deg, #4facfe, #00f2fe);
            color: #fff;
        }

    .account-menu li.logout a {
        color: #dc3545;
    }

        .account-menu li.logout a:hover {
            background: #dc3545;
            color: #fff;
        }
/* LOGIN BACKGROUND */
.auth-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
    /* Background image */
    background-image: linear-gradient( 135deg, rgba(238, 246, 255, 0.92), rgba(255, 255, 255, 0.96) ), url("/assets/img/flight/newformbackground.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* soft overlay texture */
.auth-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(13,110,253,0.12), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(32,201,151,0.10), transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(0,0,0,0.04), transparent 50%);
    z-index: 0;
}

/* ensure content stays above background */
.auth-wrapper > * {
    position: relative;
    z-index: 1;
}


/* LOGIN CARD */
.auth-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 42px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

/* Headings */
.auth-title {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.auth-sub {
    color: #6c757d;
    font-size: 14px;
}

/* OTP input */
.letter-spacing {
    letter-spacing: 6px;
    font-size: 20px;
    text-align: center;
}

/* Icon row */
.auth-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 24px;
    color: #0d6efd;
    margin-bottom: 20px;
}

.travel-path {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#0d6efd 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
    animation: moveBg 40s linear infinite;
}

@keyframes moveBg {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 800px 800px;
    }
}
.destination-tags {
    position: absolute;
    top: 15%;
    right: 10%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0.8;
}

.destination-tags span {
    background: rgba(255,255,255,0.7);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
}

.destination-tags span:nth-child(2) { animation-delay: 1s; }
.destination-tags span:nth-child(3) { animation-delay: 2s; }

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-6px, -16px);
    }
    100% {
        transform: translate(0, 0);
    }
}


.auth-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(120deg, #4facfe, #43e97b);
    z-index: -1;
    opacity: 0.25;
}
.trust-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 12px;
    color: #6c757d;
    margin-top: 20px;
}

    .trust-row i {
        color: #198754;
    }
/* Page center */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

/* Background container */
.login-wrapper {
    position: relative;
    width: 420px;
    padding: 40px 0;
}

/* Login card */
.auth-card {
    position: relative;
    z-index: 3;
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* Orbit container */
.travel-orbit {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Orbit items */
.orbit-item {
    position: absolute;
    padding: 6px 14px;
    font-size: 13px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    opacity: 0.85;
}

/* Circular positioning */
.o1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: floatY 6s infinite;
}

.o2 {
    top: 15%;
    right: -20px;
    animation: floatX 7s infinite;
}

.o3 {
    top: 40%;
    right: -30px;
    animation: floatXY 8s infinite;
}

.o4 {
    bottom: 15%;
    right: -20px;
    animation: floatY 6s infinite;
}

.o5 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: floatX 7s infinite;
}

.o6 {
    bottom: 40%;
    left: -30px;
    animation: floatXY 8s infinite;
}

.o7 {
    top: 15%;
    left: -20px;
    animation: floatX 6s infinite;
}

.o8 {
    top: 40%;
    left: -30px;
    animation: floatY 7s infinite;
}

/* Animations */
@keyframes floatX {
    0%,100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(12px);
    }
}

@keyframes floatY {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatXY {
    0%,100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(10px,-10px);
    }
}
.icon-row {
    display: flex;
    justify-content: center;
    gap: 22px;
    font-size: 26px;
    margin-bottom: 14px;
    color: #0d6efd;
}

    .icon-row i {
        opacity: 0.85;
    }
/* ===== Button Spinner ===== */
#visaSubmitBtn {
    position: relative;
}

    #visaSubmitBtn .btn-spinner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    #visaSubmitBtn .spinner {
        width: 16px;
        height: 16px;
        border: 2px solid #fff;
        border-top: 2px solid transparent;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== Success Animation ===== */
.visa-success-box {
    text-align: center;
    padding: 40px 20px;
}

    .visa-success-box svg {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
        fill: #28a745;
    }

    .visa-success-box h4 {
        margin-bottom: 10px;
        color: #28a745;
    }

    .visa-success-box p {
        color: #555;
    }
/* ===== Fix submit button width jump & cropping ===== */
#visaSubmitBtn {
    min-width: 180px; /* adjust if your button is wider */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    #visaSubmitBtn .btn-text,
    #visaSubmitBtn .btn-spinner {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }


}

/* =========================================================
   HERO BANNER STRUCTURE
========================================================= */

.home2-banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-wrapper {
    position: relative;
    width: 100%;
    height: 900px 1important;
}

/* =========================================================
   BACKGROUND IMAGE + DARK OVERLAY (IMAGE ONLY)
========================================================= */

.banner-video-area {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.banner-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* dark overlay only on image */
.banner-dark-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}

/* =========================================================
   CONTENT LAYER
========================================================= */

.banner-content-wrap {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-layout-fixed {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* =========================================================
   LEFT : PINNED CARDS
========================================================= */

.banner-left-cards {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 0 0 50%;
}

.banner-pin-card {
    width: 180px;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

    .banner-pin-card:nth-child(2) {
        transform: rotate(1.5deg);
    }

    .banner-pin-card:nth-child(3) {
        transform: rotate(-1deg);
    }

    .banner-pin-card:hover {
        transform: rotate(0deg) scale(1.05);
        z-index: 5;
    }

    .banner-pin-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        display: block;
    }

.banner-pin-content {
    padding: 10px 12px;
}

    .banner-pin-content h4 {
        font-size: 14px;
        margin: 0 0 4px;
        color: #111;
        font-weight: 700;
    }

    .banner-pin-content span {
        font-size: 12px;
        color: #666;
    }

/* =========================================================
   RIGHT : TEXT
========================================================= */

.banner-right-text-fixed {
    flex: 0 0 45%;
    text-align: center !important;
    color: #ffffff;
}

    .banner-right-text-fixed h1 {
        font-size: 38px;
        font-weight: 800;
        text-align: center !important;
        line-height: 1.2;
        margin-bottom: 15px;
        color: #ffffff;
    }

    .banner-right-text-fixed p {
        font-size: 18px;
        line-height: 1.6;
        color: #ffffff;
        text-align: center !important;
        margin-bottom: 25px;
    }

/* CTA Button */
.banner-cta-btn {
    display: inline-block;
    padding: 12px 30px;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 600;
    background: linear-gradient(90deg, #2563eb, #22c55e);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .banner-cta-btn:hover {
        transform: translateY(-2px);
        color: #ffffff;
    }

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .banner-wrapper {
        height: auto;
        padding: 0px 0 0px;
    }

    .banner-layout-fixed {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-left-cards {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }

    .banner-right-text-fixed {
        flex: 0 0 100%;
    }

        .banner-right-text-fixed h1 {
            font-size: 32px;
        }
}
/* ================================
   PINNED PAPER NOTE EFFECT
================================ */

/* Slight overlap */
.banner-left-cards .banner-pin-card {
    position: relative;
}

/* push cards slightly over each other */
.banner-left-cards .banner-pin-card:nth-child(1) {
    margin-right: -10px;
}

.banner-left-cards .banner-pin-card:nth-child(2) {
    margin-top: 15px;
    margin-right: -10px;
}

.banner-left-cards .banner-pin-card:nth-child(3) {
    margin-top: 5px;
}

/* Stronger shadow for paper feel */
.banner-pin-card {
    box-shadow:
        0 8px 15px rgba(0,0,0,0.25),
        0 20px 40px rgba(0,0,0,0.25);
}

/* Pin dot */
.banner-pin-card::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at 30% 30%, #ff5252, #b71c1c);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    z-index: 10;
}

/* Hover lift like lifting paper */
.banner-pin-card:hover {
    transform: rotate(0deg) scale(1.07) translateY(-6px);
    z-index: 20;
}
.banner-card-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.banner-card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* =========================================================
   HERO — MOBILE: HIDE PINNED CARDS COMPLETELY
========================================================= */
@media (max-width: 768px) {

    /* Hide cards on all slides */
    .banner-left-cards {
        display: none !important;
    }

    /* Let text take full width */
    .banner-right-text-fixed {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        justify-self: center; 
        justify-items: center;
        }

    .banner-layout-fixed {
        justify-content: center !important;
        text-align: center !important;
    }

    .banner-right-text-fixed h1 {
        font-size: 28px !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }

    .banner-right-text-fixed p {
        font-size: 15px !important;
        line-height: 1.5 !important;
        text-align: center !important;
    }

    .banner-cta-btn {
        padding: 10px 22px !important;
        font-size: 14px !important;
        border-radius: 24px !important;
        text-align: center !important;
        background: linear-gradient(90deg, #2563eb, #22c55e);
    }
}


/* ================================
   CLEAN PROFESSIONAL SEARCH WIDGET
   ================================ */

/* main widget box */
.filter-wrapper .newsearch.filter-input.one.show {
    background: rgba(255,255,255,0.66);
    border-radius: 14px;
    padding: 18px 20px 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.05);
}

/* top tabs */
.filter-item-list {
    margin-bottom: -10px !important;
}

    .filter-item-list .single-item {
        padding: 5px 10px !important;
        border-radius: 18px;
        font-size: 13px !important;
        font-weight: 600;
        color: #444;
        transition: all 0.2s ease;
    }

        .filter-item-list .single-item.active {
            background: #f1f3f5;
            color: #000;
        }

/* radios */
.newformradios label {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.newformradios input[type="radio"] {
    transform: scale(0.85);
    margin-right: 4px;
}

/* fields row spacing */
.filter-wrapper .frmfields {
    margin-top: 6px;
}

/* floating labels */
.filter-wrapper .floating {
    font-size: 11px;
    font-weight: 600;
    background: #ffffff00;
    color: #666;
    margin-bottom: 2px;
    display: inline-block;
}

/* inputs */
.filter-wrapper input[type="text"],
.filter-wrapper select {
    width: 100%;
    height: 42px;
    border: 1px solid #e1e5ea;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 14px;
    color: #222;
    background: #ffffff00;
    transition: all 0.2s ease;
}

    .filter-wrapper input[type="text"]:focus,
    .filter-wrapper select:focus {
        border-color: #000;
        outline: none;
        box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
    }

/* calendar icon */
.calandericon {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

/* passenger box */
.diviouterbox input {
    cursor: pointer;
}

/* passenger dropdown */
.filter-wrapper .divMsg {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
    border: 1px solid #eee;
}

/* plus minus */
.filter-wrapper .number span {
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    background: #f1f3f5;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

/* search button */
.filter-wrapper input[type="submit"] {
    height: 42px;
    background: #000;
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition: all 0.2s ease;
}

    .filter-wrapper input[type="submit"]:hover {
        background: #111;
        transform: translateY(-1px);
    }

/* ===== Section Subtitle ===== */
.section-subtitle {
    font-size: 14px;
    color: #777;
    margin-top: 6px;
}

/* =========================
   OFFERS
========================= */
.offer-card {
    display: block;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform .35s ease, box-shadow .35s ease;
}

    .offer-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    }

.offer-image-wrap {
    position: relative;
}

    .offer-image-wrap img {
        width: 100%;
        height: auto;
        transition: transform .5s ease;
    }

.offer-card:hover img {
    transform: scale(1.05);
}

.offer-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 20px;
}

/* =========================
   DESTINATIONS
========================= */
.destination-card {
    border-radius: 16px;
    overflow: hidden;
}

.destination-image {
    position: relative;
    height: 230px;
    border-radius: 16px; /* IMPORTANT: preserved */
    overflow: hidden;
}

    .destination-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
    }

/* Hover via card (original behavior) */
.destination-card:hover img {
    transform: scale(1.08);
}

/* =========================
   DESTINATION CLICKABLE CARD
========================= */
.destination-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

    /* Hover via link (original behavior preserved) */
    .destination-card-link:hover img {
        transform: scale(1.08);
    }

.destination-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    background: linear-gradient( to top, rgba(0,0,0,0.65), rgba(0,0,0,0) );
}

/* Extended layout (original second definition preserved) */
.destination-overlay {
    flex-direction: column;
    justify-content: flex-end;
}

    .destination-overlay h5 {
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        margin: 0;
    }

    .destination-overlay p {
        color: rgba(255,255,255,0.85);
        font-size: 13px;
        margin-top: 4px;
    }


/* ===== Visa Type Tabs: Center Alignment ===== */

.visa-dt-visa-list-slider .swiper-wrapper {
    justify-content: center; /* centers all tabs */
}

/* Each tab card */
.single-visa {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 18px 20px;
    cursor: pointer;
}

    /* Icon wrapper */
    .single-visa .visa-type-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 6px;
    }

        /* Icon styling */
        .single-visa .visa-type-icon svg {
            width: 36px;
            height: 36px;
            fill: #0d6efd; /* adjust to your theme color */
        }

    /* Visa name */
    .single-visa h6 {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
    }

    /* Price text */
    .single-visa span {
        font-size: 13px;
        color: #666;
    }

    /* Active tab styling */
    .single-visa.active {
        border-bottom: 3px solid #0d6efd;
    }

        .single-visa.active h6 {
            color: #0d6efd;
        }

        .single-visa.active .visa-type-icon svg {
            fill: #0d6efd;
        }

/* ===== Visa News Ribbon ===== */

.visa-news-ribbon {
    width: 100%;
    background: linear-gradient(90deg, #0d6efd, #3b82f6);
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    position: relative;
}

.visa-news-track {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    animation: visaMarquee 28s linear infinite;
    padding-left: 100%;
}

    .visa-news-track span {
        font-size: 14px;
        font-weight: 500;
        opacity: 0.95;
    }

/* Marquee animation */
@keyframes visaMarquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ===== Visa Tab Section (Clean Framing Accents) ===== */

.visa-tab-section {
    position: relative;
    padding: 60px 20px 70px;
    margin: 0 auto 0px;
    max-width: 1200px; /* give more breathing room */
    background: linear-gradient(180deg, #f7f9ff, #ffffff);
    border-radius: 22px;
}

    /* Side accent lines – OUTSIDE the tab cluster */
    .visa-tab-section::before,
    .visa-tab-section::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 300px; /* longer but lighter */
        height: 1px; /* thinner */
        opacity: 0.95;
        background: linear-gradient( 90deg, rgba(13,110,253,0), rgba(13,110,253,0.5), rgba(13,110,253,0) );
    }

    /* Left line */
    .visa-tab-section::before {
        left: -140px; /* push OUTSIDE container */
    }

    /* Right line */
    .visa-tab-section::after {
        right: -140px; /* push OUTSIDE container */
    }

@media (max-width: 992px) {
    .visa-tab-section::before,
    .visa-tab-section::after {
        display: none;
    }
    .visa-tab-section {
        padding: 30px 20px 50px !important;
    }
}

/* -------------------------------------- */
.elig-modal {
    border-radius: 16px;
}

.elig-progress {
    height: 6px;
    border-radius: 6px;
    background: #eef2f7;
}

#eligibilityBar {
    background: linear-gradient(90deg, #0d6efd, #1e7bff);
}

.elig-question {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
}

.elig-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.elig-option {
    border: 2px solid #e5e7eb;
    background: #fff;
    border-radius: 14px;
    padding: 16px 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all .2s ease;
}

    .elig-option:hover {
        border-color: #0d6efd;
        background: #f0f7ff;
    }

    .elig-option.active {
        border-color: #0d6efd;
        background: linear-gradient(135deg, #0d6efd, #1e7bff);
        color: #fff;
        box-shadow: 0 8px 18px rgba(13,110,253,0.25);
    }

.elig-step:not(.d-none) {
    animation: fadeStep .25s ease;
}

@keyframes fadeStep {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.elig-next-btn {
    font-size: 16px;
    font-weight: 600;
    padding: 12px;
    border-radius: 12px;
}

.elig-result-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 22px 18px;
    border: 1px solid #e5e7eb;
}

.elig-result-title {
    text-align: center;
    font-weight: 800;
    color: #0d6efd;
}

.elig-summary p {
    margin: 6px 0;
    font-size: 14px;
}
.elig-donut-wrap {
    position: relative;
}

    .elig-donut-wrap.winner canvas {
        filter: drop-shadow(0 0 10px rgba(13,110,253,0.6));
    }

.elig-badge {
    position: absolute;
    top: -8px;
    right: 8px;
    background: linear-gradient(135deg,#0d6efd,#1e7bff);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
}

.elig-strength {
    text-align: center;
    font-weight: 700;
    margin: 10px 0 6px;
}

    .elig-strength.strong {
        color: #16a34a;
    }

    .elig-strength.medium {
        color: #d97706;
    }

    .elig-strength.weak {
        color: #dc2626;
    }

.elig-warnings {
    margin-top: 10px;
    font-size: 13px;
    color: #b45309;
}

    .elig-warnings p {
        margin: 4px 0;
    }

.elig-donut-label {
    margin-top: -78px;
    font-weight: 800;
    font-size: 18px;
    color: #0d6efd;
}

/* New Home Layout Offers and Destinations */
/* =========================
   OFFERS – 3 CARD PAGER
========================= */
.home-offers-section {
    margin: 80px 0 70px;
}

.offers-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */

.offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

    .offers-header h2 {
        font-size: 32px;
        font-weight: 800;
        margin: 0;
        color: #0f172a;
    }

    .offers-header p {
        margin: 6px 0 0;
        color: #64748b;
        font-size: 15px;
    }

/* Arrows */

.offers-nav {
    display: flex;
    gap: 10px;
}

    .offers-nav button {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid #e5e7eb;
        background: #fff;
        font-size: 22px;
        cursor: pointer;
        transition: all .25s ease;
        box-shadow: 0 6px 14px rgba(15,23,42,.08);
    }

        .offers-nav button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 22px rgba(15,23,42,.12);
        }

/* Flip wrapper */

.offers-flip-wrapper {
    position: relative;
    height: 240px;
    perspective: 1200px;
}

/* Each page (3 cards) */

.offers-page {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    opacity: 0;
    transform: rotateY(90deg) scale(0.96);
    transition: all .5s ease;
    pointer-events: none;
}

    .offers-page.active {
        opacity: 1;
        transform: rotateY(0deg) scale(1);
        pointer-events: auto;
    }

/* Cards */
/* =========================
   OFFER CARD – POLISHED UI
========================= */

.offer-card {
    position: relative;
    height: 240px;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    display: block;
    /* soft elevation */
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.60), 0 2px 6px rgba(15, 23, 42, 0.86);
    transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

    /* subtle depth gradient at bottom (does NOT fight banner text) */
    .offer-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.08) 30%, rgba(0,0,0,0.0) 55% );
        opacity: 0.6;
        pointer-events: none;
        transition: opacity .35s ease;
    }

    /* image */
    .offer-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .45s ease, filter .45s ease;
    }

    /* hover = lift + sharpen */
    .offer-card:hover {
        transform: translateY(-8px) scale(1.015);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22), 0 6px 14px rgba(15, 23, 42, 0.12);
    }

        .offer-card:hover img {
            transform: scale(1.06);
            filter: contrast(1.05) saturate(1.05);
        }

        .offer-card:hover::after {
            opacity: 0.85;
        }
    .offer-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 18px;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
        pointer-events: none;
        opacity: 0;
        transition: opacity .35s ease;
    }

    .offer-card:hover::before {
        opacity: 1;
    }


/* Mobile */

@media (max-width: 992px) {
    .offers-page {
        grid-template-columns: 1fr 1fr;
    }

    .offers-flip-wrapper {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .offers-page {
        grid-template-columns: 1fr;
    }

    .offers-flip-wrapper {
        height: 220px;
    }
}
/* Hide desktop offers on mobile */
@media (max-width: 576px) {
    .home-offers-section {
        display: none;
    }
}
/* =========================
   MOBILE OFFERS SECTION
========================= */

.home-offers-section-mobile {
    display: none;
}

@media (max-width: 576px) {

    .home-offers-section-mobile {
        display: block;
        margin-bottom: 48px;
    }

    .offers-mobile-list {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

        .offers-mobile-list .offer-card {
            height: auto;
            min-height: 200px;
            border-radius: 18px;
            overflow: hidden;
        }

            .offers-mobile-list .offer-card img {
                width: 100%;
                height: auto;
                display: block;
            }
}
@media (max-width: 576px) {
    .home-offers-section {
        display: none;
    }
}

.home-offers-section-mobile {
    display: none;
}

@media (max-width: 576px) {
    .home-offers-section-mobile {
        display: block;
        margin-bottom: 48px;
    }
}

/* =========================
   DESTINATIONS – EDITORIAL WIDTH GRID
========================= */

.home-destinations-section {
    margin: 90px 0 80px;
}

.destinations-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */

.destinations-header {
    margin-bottom: 22px;
}

.destinations-eyebrow {
    display: block;
    font-size: 12px;
    letter-spacing: 2.5px;
    font-weight: 700;
    color: #9ca3af;
    margin-bottom: 10px;
}

.destinations-header h2 {
    font-size: 34px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.6px;
    color: #0f172a;
}

/* Grid */

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px; /* tighter gap like reference */
}

/* Base tile */

.tile {
    position: relative;
    height: 260px; /* 🔒 SAME HEIGHT FOR ALL */
    border-radius: 10px; /* reduced radius */
    overflow: hidden;
    display: block;
    background: #000;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.14), 0 2px 6px rgba(15, 23, 42, 0.08);
    transition: transform .35s ease, box-shadow .35s ease;
}

    .tile:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22), 0 6px 14px rgba(15, 23, 42, 0.12);
    }

/* Width variants */

.tile-small {
    grid-column: span 2; /* 3 per row */
}

.tile-wide {
    grid-column: span 3; /* 2 per row */
}

/* Image */

.tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease, filter .45s ease;
}

.tile:hover img {
    transform: scale(1.06);
    filter: contrast(1.05) saturate(1.08);
}

/* Overlay */

.destination-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    background: linear-gradient( to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 35%, rgba(0,0,0,0.10) 60%, rgba(0,0,0,0.0) 85% );
}

.destination-tag {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    margin-bottom: 6px;
}

.destination-overlay h3 {
    margin: 0;
    font-size: 21px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
}

/* -------------------------
   RESPONSIVE
------------------------- */

@media (max-width: 992px) {
    .editorial-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .tile-small {
        grid-column: span 2; /* 2 per row */
    }

    .tile-wide {
        grid-column: span 4; /* full width */
    }
}

@media (max-width: 576px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tile {
        grid-column: span 1 !important;
        height: 210px;
    }

    .destination-overlay {
        padding: 16px;
    }

        .destination-overlay h3 {
            font-size: 20px;
        }
}

/* =========================
   VISA SPLIT JOURNEY
========================= */

.visa-split-section {
    padding: 20px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.visa-split-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */

.visa-left .visa-eyebrow {
    font-size: 12px;
    letter-spacing: 2.5px;
    font-weight: 800;
    color: #64748b;
    display: block;
    margin-bottom: 10px;
}

.visa-left h2 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #0f172a;
    letter-spacing: -0.8px;
}

.visa-subtext {
    font-size: 16px;
    color: #475569;
    margin-bottom: 26px;
    max-width: 520px;
}

/* Steps */

.visa-steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.visa-step-v {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
    opacity: 0.5;
    transform: translateX(-8px);
    transition: all .45s ease;
}

    .visa-step-v.active {
        opacity: 1;
        transform: translateX(0);
        box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18), 0 6px 14px rgba(15, 23, 42, 0.10);
    }

    .visa-step-v .step-index {
        min-width: 42px;
        height: 42px;
        border-radius: 50%;
        background: linear-gradient(135deg, #2563eb, #22c55e);
        color: #fff;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
    }

    .visa-step-v .step-content h4 {
        margin: 0 0 6px;
        font-size: 16px;
        font-weight: 800;
        color: #0f172a;
    }

    .visa-step-v .step-content p {
        margin: 0;
        font-size: 14px;
        color: #475569;
        line-height: 1.5;
    }

/* CTA */

.visa-cta-btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .visa-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 35px rgba(37, 99, 235, 0.35);
    }

/* RIGHT VISUAL */

.visa-right {
    display: flex;
    justify-content: center;
}

.visa-visual {
    position: relative;
    width: 520px; /* ⬅️ bigger ring */
    height: 520px;
}

/* Ring container */

.visa-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: slowSpin 30s linear infinite;
}

/* Country circles */

.visa-country {
    position: absolute;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    padding: 4px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18), 0 3px 8px rgba(15, 23, 42, 0.10);
}

/* ---- Circle Geometry (10 points, true ring) ---- */
/* radius ≈ 210px from center */
/* ---- Tighter Circle Geometry (10 points) ---- */
/* Reduced radius ≈ 170–180px from center */

.c1 {
    top: 14%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.c2 {
    top: 22%;
    left: 72%;
    transform: translate(-50%, -50%);
}

.c3 {
    top: 38%;
    left: 84%;
    transform: translate(-50%, -50%);
}

.c4 {
    top: 62%;
    left: 84%;
    transform: translate(-50%, -50%);
}

.c5 {
    top: 78%;
    left: 72%;
    transform: translate(-50%, -50%);
}

.c6 {
    top: 86%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.c7 {
    top: 78%;
    left: 28%;
    transform: translate(-50%, -50%);
}

.c8 {
    top: 62%;
    left: 16%;
    transform: translate(-50%, -50%);
}

.c9 {
    top: 38%;
    left: 16%;
    transform: translate(-50%, -50%);
}

.c10 {
    top: 22%;
    left: 28%;
    transform: translate(-50%, -50%);
}

/* Approved badge */

.visa-approved-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.25));
    animation: pulse 2.6s ease-in-out infinite;
}

/* Animations */

@keyframes slowSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* -------------------------
   RESPONSIVE
------------------------- */

@media (max-width: 992px) {
    .visa-split-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visa-right {
        order: -1;
    }

    .visa-visual {
        width: 420px;
        height: 420px;
    }

    .visa-country {
        width: 74px;
        height: 74px;
    }

    .visa-approved-badge {
        width: 220px;
    }
}
/* =========================
   MOBILE OVERFLOW FIX
========================= */

@media (max-width: 576px) {

    /* Hard stop horizontal scroll */
    body {
        overflow-x: hidden;
    }

    .visa-split-section {
        overflow-x: hidden;
    }

    /* Center + scale visual instead of resizing geometry */
    .visa-right {
        width: 100%;
        overflow: hidden;
    }

    .visa-visual {
        width: 360px;
        height: 360px;
        max-width: 100%;
        margin: 0 auto;
        transform: scale(0.88); /* ⬅️ KEY FIX */
        transform-origin: center;
    }

    /* Reduce country bubble size */
    .visa-country {
        width: 64px;
        height: 64px;
    }

    /* Reduce center badge */
    .visa-approved-badge {
        width: 180px;
    }
}
.visa-ring {
    will-change: transform;
}

/* ------------------------------------
    The visa search bar on visa listing 
    -----------------------------------*/
/* ===== VISA HERO SEARCH UI ===== */
.visa-hero-section {
    position: relative;
    background: #bfbfbf; /* replace later with banner image if needed */
    min-height: 320px;
    display: flex;
    align-items: center;
}

.visa-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.visa-hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.visa-hero-search-wrap {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 8px;
    margin-bottom: -50px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.visa-hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    height: 56px;
    padding: 0 22px;
    font-size: 18px;
    border-radius: 50px;
}

    .visa-hero-search-input::placeholder {
        color: #999;
    }

.visa-hero-search-btn {
    border: none;
    outline: none;
    background: #6bbf44;
    color: #fff;
    height: 56px;
    padding: 0 32px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .visa-hero-search-btn:hover {
        background: #5aa737;
    }

/* ===== MOBILE ===== */
@media (max-width: 576px) {
    .visa-hero-title {
        font-size: 34px;
    }

    .visa-hero-search-wrap {
        flex-direction: column;
        border-radius: 18px;
        padding: 10px;
        gap: 10px;
    }

    .visa-hero-search-input {
        width: 100%;
        border-radius: 12px;
        height: 50px;
    }

    .visa-hero-search-btn {
        width: 100%;
        border-radius: 12px;
        height: 50px;
    }
}

/* =========================
   WHY BOOK WITH US – PREMIUM UI
========================= */
.why-book-section {
    padding: 20px 0 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.why-book-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}

    .why-book-header .why-eyebrow {
        display: inline-block;
        font-size: 12px;
        letter-spacing: 2px;
        font-weight: 700;
        color: #2c7be5;
        margin-bottom: 10px;
    }

    .why-book-header h2 {
        font-size: 36px;
        font-weight: 700;
        color: #0b2545;
    }

    .why-book-header p {
        font-size: 16px;
        color: #5e6e82;
    }

.why-book-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 36px 28px 34px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    .why-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(44,123,229,0.08), rgba(0,0,0,0));
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .why-card:hover::after {
        opacity: 1;
    }

    .why-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 45px rgba(11, 37, 69, 0.15);
    }

.why-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(44, 123, 229, 0.35);
}

.why-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0b2545;
}

.why-card p {
    font-size: 14.8px;
    line-height: 1.6;
    color: #5e6e82;
}

/* Responsive */
@media (max-width: 991px) {
    .why-book-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .why-book-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .why-book-section {
        padding: 70px 0 55px;
    }

    .why-book-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-book-header h2 {
        font-size: 26px;
    }
}

/* =========================
   HERO OVERLAY DISCOVERY WIDGET (POLISHED)
========================= */

.home2-banner-section {
    position: relative;
}

/* Widget wrapper */
.hero-overlay-widget {
    position: absolute;
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    padding: 0 16px;
    z-index: 20;
}

/* Glass container */

.hero-overlay-inner {
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-radius: 22px;
    padding: 20px 26px 24px;
}

/* =========================
   TABS
========================= */

.hero-tabs {
    display: flex;
    justify-content: center;
    justify-self: center;
    gap: 18px;
    width: fit-content;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    padding: 6px;
    margin-bottom: 18px;
    box-shadow: inset 0 1px 3px rgba(15, 23, 42, 0.12);
}

.hero-tab {
    background: transparent;
    border: none;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .hero-tab:hover {
        background: rgba(37, 99, 235, 0.08);
        color: #0f172a;
    }

    .hero-tab.active {
        background: linear-gradient(90deg, #2563eb, #22c55e);
        color: #fff;
        box-shadow: 0 6px 16px rgba(37, 99, 235, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }

/* =========================
   PANELS + TRANSITION
========================= */

.hero-panel {
    display: none;
    width: 100%;
    animation: fadeUp 0.35s ease;
}

    .hero-panel.active {
        display: block;
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   HOLIDAYS SEARCH
========================= */

.hero-holiday-search {
    display: flex;
    width: 70%;
    justify-self: center;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 999px;
    padding: 0px 0px 0px 20px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

    .hero-holiday-search input {
        flex: 1;
        border: none;
        background: transparent;
        outline: none;
        font-size: 15px;
        color: #0f172a;
    }

        .hero-holiday-search input::placeholder {
            color: #64748b;
        }
/* =========================
   HOLIDAYS SEARCH ICON BUTTON (SVG SAFE)
========================= */

.hero-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)) padding-box, linear-gradient(90deg, #2563eb, #22c55e) border-box;
    color: #2563eb;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.25s ease;
}

    .hero-search-btn:hover {
        transform: translateY(-1px) scale(1.03);
        box-shadow: 0 12px 26px rgba(37, 99, 235, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.7);
        color: #0f172a;
    }

    .hero-search-btn:active {
        transform: translateY(0) scale(0.97);
    }

/* SVG icon */

.hero-search-icon {
    width: 20px;
    height: 20px;
    display: block;
    stroke: url(#heroGradient);
}

/* fallback if gradient stroke not supported */

.hero-search-btn {
    color: #2563eb;
}



/* =========================
   VISA / CRUISE PANELS
========================= */

.hero-info-line {
    text-align: center;
    font-size: 16px;
    color: #0f172a;
    margin: 16px 0 22px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.hero-cta-btn {
    display: inline-block;
    margin: 0 auto;
    padding: 13px 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #22c55e);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .hero-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(37, 99, 235, 0.55);
    }

/* =========================
   FLIGHT WIDGET INSIDE HERO
========================= */

.hero-flight-wrapper {
    margin: 0;
    padding: 0;
}

    .hero-flight-wrapper .container {
        padding: 0;
        max-width: 100%;
    }

    .hero-flight-wrapper .filter-item-list {
        display: none;
    }

    .hero-flight-wrapper .filter-input-wrap {
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .hero-flight-wrapper .newsearch .frmfields {
        margin-top: 6px;
    }

    .hero-flight-wrapper .newsearch input[type="text"],
    .hero-flight-wrapper .newsearch select {
        border-radius: 10px;
    }

    .hero-flight-wrapper .newsearch input[type="submit"] {
        border-radius: 999px;
        background: linear-gradient(90deg, #2563eb, #22c55e);
        border: none;
        color: #fff;
        font-weight: 600;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

        .hero-flight-wrapper .newsearch input[type="submit"]:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
        }

    .hero-flight-wrapper .divMsg {
        z-index: 9999;
    }

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .hero-overlay-widget {
        top: 45%;
    }

    .hero-overlay-inner {
        padding: 18px 18px 20px;
    }

    .hero-tabs {
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .hero-tabs {
        flex-wrap: nowrap;
        gap: 10px 12px;
        padding: 8px;
    }

    .hero-holiday-search {
        border-radius: 16px;
        padding: 6px;
    }

        .hero-holiday-search button {
            width: 100%;
            border-radius: 12px;
        }
}
/* =========================
   VISA + CRUISE PANEL POLISH
========================= */

/* Shared panel layout */

.hero-panel#hero-visa,
.hero-panel#hero-cruise {
    text-align: center;
}

/* Inner glass card for info panels */

.hero-info-card {
    max-width: 520px;
    margin: 0 auto;
    padding: 22px 26px 26px;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

/* Optional subtle icon circle */

.hero-info-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #2563eb, #22c55e);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.45);
}

/* Headline text */

.hero-info-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

/* Supporting line */

.hero-info-line {
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
    margin: 0 0 18px;
}

/* CTA wrapper */

.hero-info-actions {
    display: flex;
    justify-content: center;
}

/* CTA button — refined */

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #22c55e);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .hero-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 34px rgba(37, 99, 235, 0.55);
    }

    /* Optional arrow inside button */

    .hero-cta-btn::after {
        content: "→";
        font-size: 16px;
        transition: transform 0.25s ease;
    }

    .hero-cta-btn:hover::after {
        transform: translateX(4px);
    }

/* =========================
   RESPONSIVE TWEAKS
========================= */

@media (max-width: 576px) {
    .hero-info-card {
        padding: 18px 18px 22px;
    }

    .hero-info-title {
        font-size: 16px;
    }

    .hero-info-line {
        font-size: 14px;
    }
}

/* PACKAGE OVERVIEW */
.package-overview-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.package-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* TABS */
.custom-tabs {
    border-bottom: none;
    margin-bottom: 15px;
}

    .custom-tabs .nav-link {
        border: none;
        padding: 12px 24px;
        font-weight: 600;
        color: #666;
    }

        .custom-tabs .nav-link.active {
            color: #0d6efd;
            border-bottom: 3px solid #0d6efd;
            background: transparent;
        }

/* SECTION HEADINGS */
.section-heading {
    font-weight: 700;
    margin-bottom: 20px;
    border-left: 4px solid #0d6efd;
    padding-left: 12px;
}

/* ICON LIST (INCLUSIONS / EXCLUSIONS) */
.icon-list {
    list-style: none;
    padding-left: 0;
}

    .icon-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 12px;
    }

        .icon-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #0d6efd;
            font-weight: bold;
        }

/* PRICE */
.price-box {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 12px;
    max-width: 350px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
}

.new-price {
    font-size: 32px;
    font-weight: 800;
    color: #0d6efd;
}

/* ITINERARY TIMELINE */
.timeline {
    position: relative;
    padding-left: 30px;
    border-left: 3px solid #0d6efd;
}

    .timeline h5,
    .timeline strong {
        color: #0d6efd;
    }

    .timeline p {
        margin-bottom: 25px;
    }

/* =========================================================
   CRUISE PAGE – HARD FIXES (PROMO + TABS + CARDS)
========================================================= */

/* -------------------------------
   1. PROMO BANNERS – FORCE HEIGHT
-------------------------------- */
.cruise-promo-banners {
    padding-top: 40px;
    padding-bottom: 60px; /* separation from tabs */
}

    .cruise-promo-banners .promo-banner-inner {
        height: 350px !important;
        min-height: 350px !important;
        max-height: 350px !important;
        border-radius: 16px;
        overflow: hidden;
    }

    .cruise-promo-banners img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Mobile stays SAME height as requested */
@media (max-width: 991.98px) {
    .cruise-promo-banners .promo-banner-inner {
        height: 350px !important;
    }
}

/* -------------------------------
   2. CATEGORY TAB SLIDER – NO OVERLAP
-------------------------------- */
.package-category-nav-section {
    margin-top: 0 !important;
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.tour-tab-slider {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Prevent slider buttons from floating over banners */
.slider-btn-grp4 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-btn {
    pointer-events: auto;
}

/* -------------------------------
   3. PACKAGE CARDS – FIXED LAYOUT
-------------------------------- */
.package-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card-img-wrap {
    height: 220px;
    min-height: 220px;
    overflow: hidden;
}

    .package-card-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Card body spacing consistency */
.package-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content-bottom {
    margin-top: auto;
}

/* Tablet */
@media (max-width: 991.98px) {
    .package-card-img-wrap {
        height: 200px;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .package-card-img-wrap {
        height: 180px;
    }
}
/* =====================================================
   FORCE-DISABLE MEGA MENU IN MOBILE MENU (HARD KILL)
===================================================== */

/* When mobile menu is open */
body.menu-open .mega-menu,
body.mobile-menu-active .mega-menu,
.main-menu.active .mega-menu,
.main-menu.show-menu .mega-menu {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
}

/* Also kill hover + JS toggles */
@media (max-width: 991px) {
    .menu-item-has-children:hover > .mega-menu,
    .menu-item-has-children.active > .mega-menu {
        display: none !important;
    }
}

/* Promo Ticker Styles */
.promo-ticker-wrapper {
    flex: 1;
    max-width: 600px;
    margin: 0 20px;
    margin-left: 100px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(255,107,53,0.1) 0%, rgba(0,123,255,0.1) 100%);
    border-radius: 25px;
    border: 1px solid rgba(255,107,53,0.3);
    position: relative;
}

.promo-ticker {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: ticker-scroll 20s linear infinite;
    padding-left: 100%;
}

.promo-ticker:hover .ticker-content {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .ticker-item:hover {
        transform: scale(1.05);
    }

    .ticker-item i {
        font-size: 16px;
    }

    /* Different highlight colors for different types */
    .ticker-item.hot {
        color: #e74c3c;
        text-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
    }

    .ticker-item.trend {
        color: #3498db;
    }

    .ticker-item.price-down {
        color: #27ae60;
        font-weight: 700;
    }

    .ticker-item.new {
        color: #9b59b6;
    }

    .ticker-item.limited {
        color: #f39c12;
        animation: pulse 2s infinite;
    }

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .promo-ticker-wrapper {
        max-width: 100%;
        margin: 10px 0;
        order: 3;
        width: 100%;
    }

    .ticker-item {
        font-size: 13px;
    }
}

/* Dark mode support if needed */
@media (prefers-color-scheme: dark) {
    .promo-ticker-wrapper {
        background: linear-gradient(90deg, rgba(255,107,53,0.2) 0%, rgba(0,123,255,0.2) 100%);
    }

    .ticker-item {
        color: #fff;
    }
}