﻿.site-header {
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0px 3px 6px #00000029;
    padding: 5px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 18px;
}

.logo-img {
    width: 190px;
    margin-left: -10px;
}

.mob_call {
    display: none;
}

nav.main-nav {
    flex: 1;
    margin-left: 26px;
}

.nav-list {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .nav-list .active_link {
        border-bottom: 3px solid orange;
    }

.mobile-nav-list .active_link_mob a {
    color: orange !important;
}

.mobile-nav-list .moblogouttab {
    font-weight: 700;
    padding: 5px 10px;
    display: block;
    color: #fb5d4d;
}

.nav-list a {
    text-decoration: none;
    font-size: 15px;
    color: #263853; /* var(--muted);*/
    font-weight: 500;
    padding: 6px 8px;
    white-space: nowrap;
}

.nav-list li:last-child a {
    padding-right: 0;
}

.nav-list a:hover {
    color: #222;
}

.header-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.country-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #20595E;
    padding: 6px 10px;
    border-radius: 10px;
    min-width: 90px;
    cursor: pointer;
    user-select: none;
    background: #F8F8F8;
}

    .country-dropdown img,
    .country-menu img {
        width: 30px;
    }

    .country-dropdown .caret {
        font-size: 12px;
        color: var(--muted)
    }

.country-menu {
    display: none;
    position: absolute;
    margin-top: 8px;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 6px 14px rgba(20, 20, 20, 0.06);
    border-radius: 8px;
    overflow: hidden;
    min-width: 180px;
    z-index: 1;
}
    .country-menu .item {
        padding: 10px 12px;
        display: flex;
        gap: 8px;
        align-items: center;
        cursor: pointer;
        font-weight: 500;
    }

        .country-menu .item:hover {
            background: #f7f7f7;
        }
    .country-menu a {
        text-decoration: none;
        color: #20595E !important;
    }

        .country-menu a:hover {
            color: #20595E !important;
        }


.help-bubble {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 24px;
    border: 1px solid #20595E;
    padding: 8px 12px;
    white-space: nowrap;
    background: #F8F8F8;
    background-image: url("../images/callback.png");
    background-size: 42px;
    background-repeat: no-repeat;
    min-width: 225px;
    background-position: 0 0;
    justify-content: flex-end;
}
    .help-bubble a {
        text-decoration: none;
    }

    .help-bubble .phone-icon {
        font-weight: 700;
        color: var(--muted);
        font-size: 14px;
    }

    .help-bubble .phone-number {
        font-weight: 600;
        font-size: 16px;
        color: #20595E;
    }

    .help-bubble small {
        display: block;
        font-size: 11px;
        color: var(--muted);
        margin-top: -2px;
    }

.callback-img {
    width: 10px;
}



.mobile-menu-btn {
    display: none;
    border: 0;
    background: transparent;
}

    .mobile-menu-btn .hamburger {
        display: inline-block;
        width: 26px;
        height: 18px;
        position: relative
    }

        .mobile-menu-btn .hamburger span {
            position: absolute;
            left: 0;
            right: 0;
            height: 3px;
            background: #111;
            border-radius: 3px;
            transition: transform .18s ease, top .18s ease, opacity .18s ease
        }

            .mobile-menu-btn .hamburger span:nth-child(1) {
                top: 0
            }

            .mobile-menu-btn .hamburger span:nth-child(2) {
                top: 7.5px
            }

            .mobile-menu-btn .hamburger span:nth-child(3) {
                top: 15px
            }

.mobile-menu {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 110;
}

    .mobile-menu .mobile-menu-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        transition: opacity .22s ease;
    }

.mobile-menu-panel {
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: #fff;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
    transform: translateX(110%);
    z-index: 9;
    transition: transform .28s cubic-bezier(.2, .9, .2, 1);
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    padding: 18px;
}

.mobile-menu .mobile-nav-list {
    list-style: none;
    padding: 12px 6px;
    /*  margin: 36px 0 0 0;*/
    display: flex;
    flex-direction: column;
    /*  gap: 10px*/
}

    .mobile-menu .mobile-nav-list a {
        text-decoration: none;
        color: #111;
        font-weight: 700;
        padding: 5px 10px;
        display: block;
        border-radius: 8px
    }

.mobile-nav-list .link-like {
    color: #111;
    background-color: #fff;
    border: none;
    font-weight: 700;
    padding: 5px 10px;
    display: block;
}

.mobile-menu .mobile-menu-close {
    align-self: flex-end;
    background: transparent;
    border: 0;
    font-size: 22px;
    cursor: pointer
}

.mobile-menu.open {
    pointer-events: auto
}

    .mobile-menu.open .mobile-menu-backdrop {
        opacity: 1
    }

    .mobile-menu.open .mobile-menu-panel {
        transform: translateX(0)
    }

/** Login - signup css starts * */
.dropdown-item-icons {
    width: 24px;
}

.spn_accountstatus {
    font-size: 14px;
    color: #343a40;
}

.error_fields {
    border: 1px solid red !important;
}

.login-signup-button {
    position: relative;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    color: #333 !important;
    border: solid 1px #376d72;
    border-radius: 10px;
    padding: 6px 10px !important;
}

    .login-signup-button img {
        margin-left: 0;
        padding-bottom: 2px
    }

.model-content-auth {
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.modal-body-auth {
    display: flex;
    flex-direction: row;
    padding: 0;
    min-height: 480px;
}

/* Custom Modal Styling */
.modal-dialog.modal-wider-auth {
    max-width: 900px;
}


/* Left form section */
.login-form {
    flex: 1;
    padding: 40px 30px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .login-form h5 {
        font-weight: 700;
        margin-bottom: 25px;
        color: #333;
    }

    .login-form button {
        border-radius: 8px;
        font-weight: 500;
    }

.otp-form {
    flex: 1;
    padding: 40px 30px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertically center form */
}

    .otp-form h5 {
        font-weight: 700;
        margin-bottom: 25px;
        color: #333;
    }

    .otp-form button {
        border-radius: 8px;
        font-weight: 500;
    }

.btn-google, .btn-facebook {
    border: 1px solid #abaeb6 !important;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.social-btn-auth {
    background: none;
    color: #73767f;
    border: .124rem solid #c4c6ce;
    padding: .6rem .5rem;
    margin: 5px;
}

    .social-btn-auth spn-fb {
        color: #3b5998;
        font-weight: 700;
    }

    .social-btn-auth .spn-google {
        color: #696767;
        font-weight: 700;
    }

.divider-auth {
    text-align: center;
    margin: 20px 0;
    font-size: 0.9rem;
    color: #888;
    position: relative;
}

    .divider-auth::before,
    .divider-auth::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 40%;
        height: 1px;
        background: #ddd;
    }

    .divider-auth::before {
        left: 0;
    }

    .divider-auth::after {
        right: 0;
    }

.btn-custom-auth {
    background: #f60;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s ease;
}

    .btn-custom-auth:hover {
        background: #e45b00;
        transform: scale(1.007);
        color: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

/* Right promo section - full height image */
.promo-section-auth {
    flex: 1;
    background: linear-gradient(rgb(27, 54, 57), rgb(42 39 37 / 66%)), url('/Content/assets/images/airplane-mid-flight2-auth.jpg') center no-repeat; /*center/cover*/
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 30px;
}

    .promo-section-auth h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .promo-section-auth p {
        font-size: 1rem;
        opacity: 0.9;
    }

#btn_save_auth {
    font-weight: 700 !important;
}

.earn-points {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px;
    font-size: 0.95rem;
}

    .earn-points button {
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.learn-link-auth {
    color: #ffd700;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

    .learn-link-auth:hover {
        text-decoration: underline;
        color: #ffd700;
    }

.modal-wider-auth .modal-dialog {
    max-width: 900px;
}

.promo-section-auth .close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.custom-input-auth {
    padding: .6rem 1rem;
    line-height: 1.5;
    width: 100%;
    border: 1px solid #abaeb6;
    border-radius: .3125rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

    .custom-input-auth:focus {
        outline: none !important;
    }

.promo-section-auth .close-btn:hover {
    background: rgba(255,255,255,0.4);
}

.spn_auth_company {
    color: #376d72;
}

.user-card {
    position: absolute;
    top: 100%;
    right: 353px;
    margin-top: 5px;
    z-index: 1;
    width: 230px;
}

    .user-card .card {
        border-radius: 5px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        font-size: 14px;
    }

    .user-card .dropdown-item {
        display: block;
        padding: 6px 10px;
        color: #333;
        text-decoration: none;
        border: 1px solid #fff;
    }

.dropdown-item.drpdown {
    box-shadow: 0 6px 8px -7px rgba(0, 0, 0, 0.15);
}

.user-card .dropdown-item:hover {
    background-color: #bcd9e6;
    border-radius: 6px;
}

.dropdown-item-icons {
    margin-right: 6px;
    font-size: 17px;
}

    .dropdown-item-icons.ropdown-item-ic {
        color: #6e6b6b;
    }

#spn_username {
    cursor: pointer;
    font-size: small;
}

/* Popup overlay */
.confirm-popup {
    display: none; /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent background */
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Popup box */
.confirm-popup-content {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    max-width: 400px;
    width: 90%;
    font-family: Arial, sans-serif;
}

/* Buttons container */
.confirm-popup-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Yes button */
.btn-confirm {
    background-color: #f60;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

    .btn-confirm:hover {
        background-color: #FF5722;
    }

.btn-cancel {
    background-color: #39893c;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

    .btn-cancel:hover {
        background-color: #2a6d2c;
    }


.loader_container_p {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    z-index: 9999;
    text-align: center;
}

    .loader_container_p img {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        max-width: 150px;
    }

/*After Logged In mobile view side bars end*/
.mobile_menufd_loggedIn {
    margin-top: 0 !important;
    padding: 0 !important;
}

.exploreLink_loggedIn {
    padding: 6px;
    position: relative;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.user-info-card_loggedIn {
    text-align: center;
    color: #fff;
    padding: 20px;
    background: #0a656b;
    border-radius: 7px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.member-badge_loggedIn {
    background: #fb5d4d;
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 13px;
}

#mobinav_close_loggedIn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.nav-link-profile-loggedIn {
    text-decoration: none;
}

/*After Logged In mobile view side bars end*/

/*Cookies acceptance policy css on mobile view start*/

.cookies-stripdiv-mob {
    width: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, .9);
    color: white;
    padding: 10px 0;
}

    .cookies-stripdiv-mob p {
        margin: 0px;
        display: block;
        font-size: 12px;
        color: #fff;
        text-align: center;
    }

    .cookies-stripdiv-mob button {
        background-color: #f60;
        color: #fff;
        padding: 7px 10px;
        margin-top: 5px;
        font-size: 12px;
        line-height: 12px;
        border-radius: 35px;
        border: none;
    }

    .cookies-stripdiv-mob .cookie-accept-mob {
        background-color: #4CAF50;
    }

/*Cookies acceptance policy css on mobile view end*/

/* --- Responsive: Mobile & Tablets --- */

@media (max-width: 1024px) {
    .model-content-auth {
        max-width: 96%;
        margin: auto;
    }
}

@media (max-width: 768px) {

    .modal-dialog .modal-wider-auth {
        max-width: 95%;
        margin: 1rem auto;
    }

    .modal-body-auth {
        flex-direction: column; /* stack vertically */
        min-height: auto;
    }

    .login-form {
        padding: 32px 15px;
        min-width: 100%;
    }

    .otp-form {
        padding: 20px 15px;
        min-width: 100%;
    }

    .promo-section-auth {
        padding: 20px 15px;
        min-width: 100%;
        order: 2; /* keep promo below login form (set order:-1 if you want it on top) */
        text-align: center;
        min-height: 350px;
    }

        .promo-section-auth h2 {
            font-size: 1.4rem;
            margin-bottom: 8px;
        }

        .promo-section-auth p {
            font-size: 0.9rem;
        }

    .earn-points {
        font-size: 0.85rem;
        padding: 10px;
    }

        .earn-points span {
            font-size: 0.8rem;
        }

    .social-btn-auth {
        font-size: 0.85rem;
        padding: 0.5rem;
        margin: 3px;
    }

    .custom-input-auth {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }

    .btn-custom-auth {
        font-size: 0.95rem;
        padding: 10px;
    }

    .promo-section-auth .close-btn {
        position: absolute;
        top: -397px;
        right: 12px;
        border: none;
        background: rgb(24 22 22 / 65%);
        color: #fff;
        font-size: 18px;
        line-height: 1;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        cursor: pointer;
        transition: background 0.3s ease;
    }
}

@media(max-width:400px) {
    .promo-section-auth .close-btn {
        top: -425px;
    }
}

@media(max-width:260px) {
    .promo-section-auth .close-btn {
        top: -445px;
    }
}


@media (max-width: 1023px) {
    nav.main-nav {
        display: none
    }

    .mobile-menu-btn {
        /*display: inline-flex;
    align-items: center;
    justify-content: center*/
        display: block;
        position: absolute !important;
        right: 11px;
    }

    .logo-img {
        width: 140px
    }

    .header-inner {
        padding: 8px 12px
    }

    .help-bubble {
        display: none
    }

    .country-dropdown {
        display: none
    }
}
@media (max-width:880px) {
    .nav-list {
        display: none;
    }

    .header-inner {
        padding: 2px 12px;
    }

    .country-dropdown {
        min-width: 90px;
        padding: 6px 8px;
    }

    .help-bubble {
        display: none;
    }
}
@media (max-width:767px){
    .logo-img {
        width: 130px;
        margin-left: 0;
    }
    .mob_call {
        border-radius: 5px;
        border: 1px solid #ff7a00;
        background-color: #ff7a00;
        width: 58px;
        height: 29px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        position: absolute !important;
        right: 55px;
        top: 10px;
    }

        .mob_call span {
            font-size: 12px;
            font-weight: 600;
            line-height: 18px;
            color: #fff;
        }

    .mob-side {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .help-bubble {
        display: none;
    }
}
@media (min-width: 740px) and (max-width: 766px) { /*740px 750px*/
    .header-inner, .cheapfare .container {
        max-width: 100%;
    }

    #flightBookingPanel .field, #flightBookingPanel .date-field {
        width: 341px !important;
    }

    #flightBookingPanel .btn-swap {
        left: 334px !important;
    }

    .deal-sectionnew .wrap {
        width: 96% !important;
    }

    .budget .wrap, .events .wrap, .travelsection .wrap {
        width: 96% !important;
    }

    .app-banner {
        flex-direction: row !important;
    }

    .budget .grid {
        gap: 14px !important;
    }

    .mobile-menu .mobile-nav-list {
        margin: 0 !important;
    }
}

@media (max-width:480px) {
    .mobile-menu-panel {
        width: 280px
    }
}