:root {
    --primary-color: #f69e0a;
    --primary-color-hover: #d87605;
    --secondary-color: #b55308;
    --border-color-default: #999999;
    --divider-color-filter: #F2F2F2;
    --bg-pink100: #fef3c7;
    --teritary-color: #64748b;
    --light-gray-bg: #F2F2F2;
    --color-success: #37B90F;
    --transition-hover: all 0.3s ease;
    --black900: #000000;
    --black800: #333333;
    --black700: #4D4D4D;
    --black600: #666666;
    --black500: #808080;
    --black400: #999999;
    --black300: #B3B3B3;
    --black200: #CCCCCC;
    --black100: #E6E6E6;
    --black50: #F2F2F2;
    --danger-state: #D9043D;
    --sucess-state: #37B90F;
    --warning-state: #D9D904;
    --button-radius: 14px;
    --button-font-size: .95rem;
}

.bg-primary { background-color: var(--primary-color) !important; }
.text-primary { color: var(--primary-color) !important; }

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    border-radius: 14px;
    padding: 10px 16px;
    color: #ffffff;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    transition: var(--transition-hover);
}

    .btn-primary:hover {
        background-color: var(--primary-color-hover);
        color: #ffffff;
    }

/*hiding search ruby IDs*/
#hide-nav-search .nav3 {
    display: none !important;
}

#hide-nav-search .search-bg {
    display: none !important;
}

/* Override Bootstrap container max-width */
@media (min-width: 1400px) {
    .container {
        max-width: 1440px;
    }
}


.header-full-bg {
    width: 100%;
    background: #fff;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 9999;
}

    .menu-overlay.active {
        display: block;
    }

.menu-content {
    background: #fff;
    width: 300px;
    max-width: 90vw;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.08);
    padding: 2rem 1.5rem;
    animation: slideInMenu 0.3s ease;
}

.close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.menu-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.2rem;
    color: #d87605;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

    .menu-link:hover {
        color: #f69e0a;
    }

@keyframes slideInMenu {
    from {
        right: -320px;
        opacity: 0;
    }

    to {
        right: 0;
        opacity: 1;
    }
}

.logo-pink {
    font-size: 2rem;
    color: #f69e0a;
}

.logo-blue {
    font-size: 2rem;
    color: #d87605;
}

/* Logo image sizing */
.site-logo {
    /* height: 44px; */
    display: block;
}

/* Agent icon in header */
.icon-agent {
    /* height: 28px; */
    width: auto;
    margin-top: 2px;
}

.nav-btn-rounded {
    border-radius: 2rem !important;
    /*    font-size: 26px;*/
    font-size: clamp(18px, 2vw, 20px);
    justify-content: center;
}

/* .nav-icon {
    width: 20px;
    height: 20px;
} */

/* Button icon sizing (used by search button and nav icons) */
.btn-icon,
.nav-icon {
    width: 20px;
    height: 20px;
}

.contact-pink { color: var(--primary-color); font-size: 22px; line-height: 20px; }

/* ===== Vibrant phone number header styles ===== */
.header-phone-label { font-size: 11px; font-weight: 600; color: var(--color-primary-700); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1px; }

.header-phone-number { display: inline-flex; align-items: center; gap: 5px; font-size: 18px; font-weight: 800; text-decoration: none; background: linear-gradient(120deg, var(--color-primary-600) 0%, var(--color-primary-400) 60%, var(--color-primary-300) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.01em; transition: opacity 0.2s ease, transform 0.2s ease; }

.header-phone-number:hover { opacity: 0.85; transform: scale(1.04); }

.phone-icon { display: inline-block; font-size: 14px; -webkit-text-fill-color: var(--color-primary-500); animation: ring-phone 3s ease-in-out infinite; }

@keyframes ring-phone { 0%, 60%, 100% { transform: rotate(0deg); } 65% { transform: rotate(-12deg); } 70% { transform: rotate(12deg); } 75% { transform: rotate(-8deg); } 80% { transform: rotate(8deg); } 85% { transform: rotate(0deg); } }

.search-section {
    border-radius: 1rem;
    padding: 10px 0;
}

.search-btn {
    border-radius: 1rem;
    font-size: 1.2rem;
}

.banner-placeholder {
    background: #f7f7f7;
    border-radius: 2rem;
    height: 180px;
}

.assistance-pink {
    color: #f69e0a;
    font-weight: 600;
    font-size: 20px;
}

.heading-blue {
    color: #d87605;
    font-weight: 700;
}

.heading-pink {
    color: #f69e0a;
    font-weight: 700;
}

.stat-card {
    display: flex;
    gap: 24px;
    align-items: center;
}

.stat-icon {
    color: #d87605;
    font-size: 2rem;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
}

.stat-pink {
    color: #f69e0a;
    font-size: 20px;
}

.stat-title {
    font-size: 16px;
}

/* Custom styles */
html {
    background: #fff;
}

body {
    font-family: "Noto Sans", sans-serif;
}

/* Ensure all elements use Noto Sans for all font weights */
* {
    font-family: "Noto Sans", sans-serif;
}

.site-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    /* padding: 0 24px;
    background: #f9f9f9; */
    /* box-shadow: 0 0 24px 0 rgba(0,0,0,0.03); */
    border-radius: 1.5rem;
}

.header-full-bg .site-wrapper.header-inner {
    /* padding: 18px 24px; */
    border-bottom: 1px solid #eef4f8;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.bg-pink {
    background-color: #f69e0a !important;
}

.text-white {
    color: #fff !important;
}

.badge.bg-pink {
    font-weight: 600;
    font-size: 1rem;
    border-radius: 1rem;
    padding: 0.5em 1.2em;
}

header {
    background: #fff;
    border-radius: 1rem;
    margin: 1rem 0;
}

/* Make flight icon white on highlight */
.btn-primary .nav-icon {
    filter: brightness(0) invert(1);
}

/* Highlighted navigation link */
.nav-highlight {
    background-color: var(--primary-color);
    color: #fff;
    border-color: #0d6efd;
}

    .nav-highlight .nav-icon {
        filter: brightness(0) invert(1);
    }

    /* Disable hover when highlighted class is active */
    .nav-highlight:hover,
    .nav-highlight:focus {
        color: #fff;
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

/* Navigation button width */
.nav-btn {
    padding: 6px 16px;
    font-weight: 600;
}

/* Group contact + hamburger together */
.header-actions {
    gap: 12px;
    align-items: center;
}

/* Decorative after image for highlighted nav item */
.nav-highlight {
    position: relative;
}

    .after-nav::after {
        content: "";
        position: absolute;
        left: 52%;
        transform: translateX(-50%);
        top: calc(100% + 5px);
        /* 10px below the button */
        width: 151px;
        height: 28px;
        background-image: url("../images/navAfter.svg");
        background-repeat: no-repeat;
        background-size: contain;
        pointer-events: none;
    }

.t7BG {
    background: url(../images/24x7BG.svg) no-repeat center right;
}

/*.t7card div:nth-of-type(2) {
    margin-top: 20px;
}*/

.top-rental {
    position: relative;
    width: 100%;
    /* height: 600px; */
    background: linear-gradient(180deg, #fffbeb 0%, #fffbeb 100%);
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 56px 0;
    flex-direction: column;
}

    .top-rental::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 120px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120" preserveAspectRatio="none"><path d="M0,64 Q360,0 720,64 T1440,64 L1440,120 L0,120 Z" fill="%23FFFFFF"/></svg>') no-repeat bottom;
        background-size: cover;
    }

.td-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #333;
}

.main-title {
    font-size: 40px;
    line-height: 40px;
    color: #f69e0a;
    font-weight: 800;
    margin-bottom: 2.6rem;
}

    .main-title span {
        color: #64748b;
    }

.promotional-section {
    background: url('../images/SectionBG-1.png') no-repeat center center;
    background-size: cover;
    padding: 57px 0 57px 51px;
    color: #fff;
}
    .promotional-section h2.title-style-two {
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 20px;
    }
    .promotional-section h2.title-style-two span {
        background: #fff;
        color: var(--secondary-color);
        padding: 0 6px 6px;
        display: block;
        width: fit-content;
        margin-top: 6px;
    }

.statsCarRental {
    display: flex;
    column-gap: 100px;
    font-size: 35px;
    font-weight: 800;
    line-height: 33px;
}
    .statsCarRental small {
        font-size: 18px;
        font-weight: normal;
        display: block;
    }

    .offers {
        margin: 0 5%;
    }
.faq-home {
    margin-bottom: 46px;
}
.bg-primary { background-color: var(--primary-color) !important; }
.text-primary { color: var(--primary-color) !important; }

.btn-primary {
    background: var(--primary-color);
}

.radius-primary {
    border-radius: 2rem;
}

.badge-eo-active {
    background: #0d6efd !important;
    color: #fff !important;
    border: none;
}

    .badge-eo-active:hover {
        background: var(--primary-color-hover);
        color: #fff;
    }

.badge-eo {
    background: #fff0f5;
    color: #000;
}

.offer-buttons {
    display: flex;
    gap: 20px;
}

    .offer-buttons button {
        padding: 8px 16px;
    }

.exclusive-offer-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

ul.exclusive-offer-buttons li {
    list-style-type: none;
}

    ul.exclusive-offer-buttons li button {
        padding: 8px 16px;
    }

.accordion-button {
    font-size: 14px;
    background: #f2f2f2;
    border-radius: 16px !important;
    margin-bottom: 6px;
    gap: 12px;
}





/* footer css starts here */


/* Footer Styles */
.site-footer {
    background: #020617;  /* Darker, more sophisticated blue */
    color: #fff;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* Main Footer */
.footer-main {
    padding: 48px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Desktop Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.footer-col h6 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
    color: #fff;
    text-transform: uppercase;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(4px);
}

/* Mobile Accordion */
.footer-accordion {
    border-radius: 0;
}

.footer-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-accordion .accordion-header {
    margin: 0;
}

.footer-accordion .accordion-button {
    background: transparent !important;
    color: #fff !important;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-accordion .accordion-button:focus {
    box-shadow: none;
}

.footer-accordion .accordion-button i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.footer-accordion .accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.footer-accordion .accordion-body {
    padding: 0 0 20px 0;
}

.footer-accordion .accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
}

.footer-accordion .accordion-body li {
    margin-bottom: 8px;
}

.footer-accordion .accordion-body a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-accordion .accordion-body a:hover {
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    padding: 32px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-info {
    flex: 1;
    min-width: 280px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Payment Badges */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    gap: 4px;
}

.footer-badges img {
    height: 30px;
    width: auto;
    transition: opacity 0.2s ease;
}

.footer-badges img:hover {
    opacity: 1;
}

.flxble {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    padding-bottom: 10px;
    color: #9da7b1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-main {
        padding: 24px 0;
    }
    
    .footer-bottom-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-social {
        width: 100%;
        justify-content: flex-start;
    }
    
    .footer-badges {
        gap: 16px;
    }
    
    .footer-badges img {
        height: 25px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .footer-badges {
        justify-content: flex-start;
        gap: 12px;
    }
    
    .footer-badges img {
        height: 22px;
    }
    
    .accordion-body ul {
        grid-template-columns: 1fr;
    }
}


/* footer css ends here */

/* Filters CSS */
/* ---------- Card ---------- */
.flt-card {
    max-width: 360px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-color-default);
    /*    padding: 18px;*/
    font-family: system-ui;
    color: #222
}

.flt-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*    margin-bottom: 12px;*/
    padding: 11px;
    border-bottom: 1px solid var(--divider-color-filter);
}

.flt-title {
    color: #0b7be6;
    font-weight: 700;
    font-size: 22px;
    margin: 0
}

.flt-reset-btn {
    background: transparent;
    border: 0;
    /*    color: #8b8b8b;*/
    font-size: 13px;
    cursor: pointer;
    padding: 4px 8px
}

.flt-section {
    /*    margin-bottom: 16px;*/
    padding: 14px;
    border-bottom: 1px solid var(--divider-color-filter);
}

.flt-section__title {
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 10px;
    color: #222
}

.flt-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.flt-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border-radius: 18px;
    padding: 6px 12px;
    background: #fafafa;
    border: 1px solid #eee;
    font-size: 13px;
    color: #444;
    min-height: 34px;
    transition: .12s
}

    .flt-pill input[type=checkbox] {
        position: absolute;
        opacity: 0;
        pointer-events: none;
        width: 1px;
        height: 1px;
        left: -9999px
    }

.flt-pill--active {
    background: #F2F2F2;
    /*    border-color: #ffd0e8;
    color: #b00060*/
}

    .flt-pill--active::before {
        content: "";
        width: 18px;
        height: 18px;
        border-radius: 100%;
        background: url("../images/icons/check-oval-checked.svg");
        /*        margin-right: 6px;*/
        flex: 0 0 18px
    }

.flt-pill:not(.flt-pill--active)::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 100%;
    background: #fff;
    border: 1px solid #808080;
    /*    margin-right: 6px;*/
    flex: 0 0 18px;
}

/* Range */
.flt-range {
    position: relative;
    height: 46px;
    margin-top: 6px;
    margin-bottom: 6px;
    user-select: none
}

.flt-range-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 20px;
    height: 2px;
    background: #eee;
    border-radius: 6px
}

.flt-range-fill {
    position: absolute;
    top: 20px;
    height: 2px;
    background: #0b7be6;
    border-radius: 6px
}

.flt-range input[type=range] {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 42px;
    background: transparent;
    -webkit-appearance: none;
    pointer-events: none;
    margin: 0;
    z-index: 1
}

    .flt-range input[type=range]::-webkit-slider-thumb {
        pointer-events: auto;
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #0b7be6;
        border: 3px solid #fff;
        box-shadow: 0 2px 6px rgba(0,0,0,0.18)
    }

    .flt-range input[type=range]::-moz-range-thumb {
        pointer-events: auto;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #0b7be6;
        border: 3px solid #fff;
        box-shadow: 0 2px 6px rgba(0,0,0,0.18)
    }

    .flt-range input[type=range]::-webkit-slider-runnable-track,
    .flt-range input[type=range]::-moz-range-track {
        background: transparent
    }

.flt-range input.dragging {
    z-index: 3 !important
}

.flt-price-text {
    font-size: 13px;
    margin-top: 8px;
    color: #4a4a4a
}

/* Time boxes */
.flt-time-row {
    display: flex;
    gap: 2px;
    flex-wrap: wrap
}

.flt-time {
    position: relative;
    width: 69px;
    border-radius: 8px;
    padding: 8px;
    background: #FFF0F5;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    border: 1px solid transparent
}

.flt-time--active {
    /*    background: #c9f9d6;
    border-color: #a9e9b5*/
}

.flt-time__icon {
    font-size: 18px;
    /*    margin-bottom: 6px*/
}

.flt-time__label {
    line-height: 14px;
}

.flt-time__check {
    position: absolute;
    right: 3px;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    background: transparent;
    opacity: 0;
    transform: scale(.8);
    transition: .12s
}

.flt-time--active .flt-time__check {
    background: #0bbf5f;
    opacity: 1;
    transform: scale(1)
}

/*Sorting CSS*/

.sort-options-row {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.sort-option {
    display: flex;
    /*    gap: 14px;*/
    align-items: center;
    min-width: 270px;
    max-width: 340px;
    padding: 10px 20px;
    border-radius: 16px;
    background: var(--bg-pink100);
    border: 1px solid transparent;
    position: relative;
    cursor: pointer;
    user-select: none;
    transition: background .12s, border .12s;
    outline: none;
}

    .sort-option.selected {
        background: #ffffff;
        border: 2px solid var(--teritary-color);
    }

    .sort-option:focus {
        box-shadow: 0 0 0 4px rgba(255,94,149,0.08);
    }

.sort-option-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sort-option-title {
    font-weight: 700;
    font-size: 20px;
    color: #0b0b0b;
}

.sort-option-sub {
    color: #6b6b6b;
    font-size: 13px;
    /*    margin-top: 4px;*/
}

.more-filters {
    margin-left: auto;
    display: flex;
    gap: 8px;
    align-items: center;
    color: #101010;
    font-weight: 600;
    font-size: 15px;
}

.sort-selected-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    /*    width: 28px;
    height: 28px;*/
    border-radius: 6px;
    /*    background: #10b981;*/
    display: flex;
    align-items: center;
    justify-content: center;
    /*    box-shadow: 0 2px 6px rgba(16,185,129,0.18);*/
    color: white;
    font-size: 14px;
}

/* date carousel styles */
.dates-wrapper {
    background: var(--light-gray-bg);
    border-radius: 10px;
    /*    box-shadow: 0 6px 18px rgba(12,23,58,0.06);*/
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 0px;
}
.avg-cp-txt{font-size: 11px;}
.arrow-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.date-track {
    overflow: hidden;
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 0 5px;
}

.date-row {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 6px 4px;
    will-change: scroll-position;
    touch-action: pan-y; /* allow horizontal pan handling in JS */
}

.date-card {
    min-width: 152px;
    max-width: 146px;
    background: transparent;
    border-radius: 8px;
    padding: 10px 12px;
    text-align: center;
    /*    border: 1px solid rgba(12,23,58,0.04);*/
    position: relative;
    cursor: pointer;
    user-select: none;
    transition: transform .08s ease, border-color .12s;
    outline: none;
}

    .date-card:focus {
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(12,23,58,0.06);
    }

    .date-card.selected {
        background: #ffffff;
        border: 2px solid #ff9cbc;
    }

.date-month {
    font-size: 13px;
    font-weight: 700;
    color: #222;
}
.date-month img {
    width: 40px;
}
.date-price {
/*    color: var(--color-success);*/
    font-weight: 700;
    /*    margin-top: 6px;*/
    font-size: 14px;
}

.date-card .date-check {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 22px;
    height: 22px;
    border-radius: 5px;
    /*    background: #10b981;*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    /*    box-shadow: 0 2px 6px rgba(16,185,129,0.18);*/
    font-size: 12px;
    display: none;
}

.date-card.selected .date-check {
    display: flex;
}

.filters-panel {
    min-width: 260px;
    max-width: 360px;
    padding: 12px;
}

    .filters-panel .form-check {
        padding: 8px 6px;
        margin: 0;
    }

.filters-actions {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    padding-top: 8px;
}

/* hide actual inputs visually but keep them in DOM for forms */
.hidden-input {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width:720px) {
    .sort-option {
/*        min-width: 230px;
        max-width: 100%;*/
    }
}

.filters-panel .form-check .form-check-input {
    margin-left: 0;
    margin-right: 10px;
}

.flight-card-result {
    background: #ffffff;
    border: 1px solid var(--border-color-default);
    border-radius: 18px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 0 0 rgba(0,0,0,0.2);
    cursor: pointer;
}

    .flight-card-result:hover {
        border: 2px solid var(--primary-color);
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgb(0 0 0 / 36%);
    }

.segment-row {
    padding: 12px 0;
}

    .segment-row + .segment-row {
        border-top: 1px solid #e6e6e6;
    }

.logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.time-large {
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.1;
}

.small-muted {
    font-size: .82rem;
    color: #666;
}

.flight-mid {
    text-align: center;
    color: #111;
}

.dur {
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 2px;
}

/* Route dynamic line + dots */
.route {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 6px;
    margin-bottom: 2px;
}

.route-side {
    flex: 1;
    border-bottom: 2px dashed #ff6fae;
    height: 0;
}

.route-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;
    gap: 14px;
    padding: 0 8px;
}

.route-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000;
}

/* PLANE NOW ABSOLUTE → DOES NOT PUSH DOTS */
.route-plane {
    position: absolute;
    right: -2px; /* adjust as needed */
    top: 50%;
    transform: translateY(-50%);
    font-size: 19px;
    color: #ff6fae;
    pointer-events: none;
}

.footer-air {
    font-size: .78rem;
    color: #666;
    margin-top: 8px;
}

.price-big {
    font-weight: 700;
    font-size: 1.5rem;
}

.btn-view {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 8px 22px;
    font-weight: 600;
    font-size: .95rem;
    white-space: nowrap;
    transition: var(--transition-hover);
}

    .btn-view:hover {
        background: var(--primary-color-hover);
    }

.bags-icon svg {
    display: block;
}

.pbb {
    /*    border*/
}

.min-max-departure {
    min-width: 140px;
    max-width: 140px;
}

.min-max-arrival {
    min-width: 90px;
    max-width: 90px;
}


/* Small screens */
@media (max-width:575.98px) {
    .flight-card-result {
        padding: 12px 12px;
    }

    .time-large {
        font-size: 1.05rem;
    }

    .price-big {
        font-size: 1.35rem;
    }

    .footer-air {
        font-size: .72rem;
    }
}

/*Unpublished Deals Block CSS*/
.callback-box {
    background: #f5faff;
    border-radius: 18px;
}
.callback-box-home {
    background:url("../images/promotionalBanner.png") no-repeat center center !important;
    background-size:contain;
}
.callback-heading {
    font-size: 22px;
    line-height: 1.3;
}

.callback-box p {
    font-size: 14px;
    margin-bottom: 4px;
}

.callback-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

/* Phone + Country input */
.callback-input {
    min-width: 260px;
    max-width: 340px;
}

    .callback-input .country-btn,
    .callback-input input.form-control {
        height: 50px;
        font-size: 14px;
    }

    .callback-input .country-btn {
        border-radius: 8px 0 0 8px;
        border-right: 0;
        background-color: #ffffff;
    }

    .callback-input input.form-control {
        border-radius: 0 8px 8px 0;
    }

    .callback-input .dropdown-menu {
        max-height: 220px;
        overflow-y: auto;
        font-size: 14px;
    }

    .callback-input .country-flag {
        font-size: 16px;
    }

    .callback-input .country-code {
        font-weight: 500;
    }

.callback-btn {
    height: 50px;
    border-radius: 14px;
    font-size: .95rem;
    white-space: nowrap;
}

.callback-avatar img {
    max-height: 170px;
}

/* Small screens */
@media (max-width: 767.98px) {
    .callback-heading {
        font-size: 18px;
    }

    .callback-box {
        text-align: center;
    }

    .callback-actions {
        justify-content: center;
    }

    .callback-avatar {
        display: none; /* hide image on small screens like original style */
    }
}


/* --------- Flight Detail Modal ---------- */
.flight-details-modal .modal-dialog {
    max-width: 860px;
}

.flight-details-modal .modal-content {
    border-radius: 0;
    border: none;
}

.flight-details-modal .modal-body {
    padding: 20px 24px 0;
    font-size: 12px;
    line-height: 1.4;
}

/* HEADER */
.fdm-header-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
}

.fdm-main-title {
    font-size: 20px;
    font-weight: 600;
}

.fdm-close-x {
    border: none;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

/* TOP SECTION – segments stacked */
.fdm-top-section {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 52px;
}

/* Each flight segment row: left timeline + right airline details */
.fdm-segment {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    /*    margin-bottom: 40px;*/
}

.fdm-segment-left {
    flex: 1 1 auto;
    min-width: 0;
}

.fdm-segment-right {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fdm-flight-block-title {
    font-size: 16px;
    font-weight: 600;
}

.fdm-flight-duration {
    font-size: 14px;
    color: var(--black700);
}

/* FLIGHT STOPS: DOTS + CONNECTING LINE (DOT TO DOT) */
.fdm-flight-list {
    margin-top: 20px;
}

.fdm-flight-time-row {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 18px; /* vertical gap between stops */
}

    .fdm-flight-time-row:last-child {
        padding-bottom: 0;
    }

.fdm-flight-point {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--black700);
    background: #fff;
    margin-top: 4px;
    position: relative;
    z-index: 1;
}

.fdm-flight-time-row::after {
    content: "";
    position: absolute;
    left: 6px; /* center of dot */
    top: 16px; /* just under this dot */
    bottom: -14px; /* ends near next dot */
    width: 1px;
    background: var(--black700);
}

.fdm-flight-time-row:last-child::after {
    content: none;
}

.fdm-flight-time-text-top {
    font-size: 14px;
    color: var(--black700);
    margin-bottom: 1px;
}

.fdm-flight-time-text-bottom strong {
    font-size: 16px;
    font-weight: 600;
}

/* Airline logo + text (inside same row) */
.fdm-airline-logo {
    width: 40px;
    height: 40px;
}


.fdm-airline-name {
    font-size: 16px;
    /*    font-weight: 600;*/
}

.fdm-airline-meta {
    font-size: 16px;
    /*    color: var(--border-color-default);*/
}

/* DIVIDER */
hr.fdm-divider {
    border-color: var(--divider-color-filter);
    margin: 22px 0 0;
}

/* BAGGAGE SECTION */
.fdm-middle-section {
    padding-top: 20px;
    border-top: 1px solid var(--border-color-default);
}

.fdm-baggage-col-left {
    border-right: 1px solid var(--border-color-default);
    padding: 0 18px 18px 0;
}

.fdm-baggage-title {
    font-size: 16px;
    font-weight: 600;
}

.fdm-baggage-subtitle {
    font-size: 14px;
    color: var(--black700);
}

.fdm-baggage-col {
    padding: 0 18px;
}

.fdm-section-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.fdm-bag-row {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.fdm-icon-bag {
    width: 18px;
    height: 14px;
    border-radius: 3px;
    border: 1px solid var(--border-color-default);
    position: relative;
    margin-top: 3px;
}

    .fdm-icon-bag::before {
        content: "";
        position: absolute;
        top: -4px;
        left: 3px;
        right: 3px;
        height: 5px;
        border-radius: 4px 4px 0 0;
        border: 1px solid var(--border-color-default);
        border-bottom: none;
    }

.fdm-bag-text-label {
    font-size: 14px;
    /*    font-weight: 600;*/
}

.fdm-bag-text-meta {
    font-size: 14px;
    display: block;
}

.fdm-bag-included {
    margin-left: auto;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-success);
}

/* EXTRA BAGGAGE */
.fdm-extra-section {
    border-top: 1px solid var(--border-color-default);
    margin-top: 16px;
    padding-top: 12px;
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.fdm-extra-title {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.fdm-extra-bag {
    display: flex;
    gap: 10px;
    font-size: 14px;
    align-items: center;
}

.fdm-extra-sub {
    font-size: 11px;
    color: var(--border-color-default);
}

.fdm-extra-right {
    margin-left: auto;
    font-size: 11px;
    color: var(--border-color-default);
}

/* FOOTER */
.fdm-modal-footer {
    padding: 12px 24px 18px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.fdm-price-amount {
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
}

.fdm-price-label {
    font-size: 11px;
    color: var(--black700);
    display: block;
}

.flight-detail-price {
    text-align: right;
}

.fdm-btn-primary {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 11px 32px;
    font-size: 20px;
    font-weight: 600;
    transition: var(--transition-hover);
}

    .fdm-btn-primary:hover {
        background: var(--primary-color-hover);
        color: #ffffff;
    }

/* RESPONSIVE */
@media (max-width: 767.98px) {
    .flight-details-modal .modal-dialog {
        margin: 0.75rem;
        max-width: 100%;
    }

    .flight-details-modal .modal-body {
        padding: 16px 16px 0;
    }

    .fdm-segment {
        flex-direction: row;
        gap: 8px;
    }

    .fdm-segment-right {
        align-items: flex-start;
    }

    .fdm-baggage-col-left {
        border-right: none;
        border-bottom: 1px solid var(--divider-color-filter);
        padding-right: 0;
        margin-bottom: 10px;
    }

    .fdm-baggage-col {
        padding: 10px 0;
    }

    .fdm-modal-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .fdm-btn-primary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .flight-details-modal .modal-body {
        padding: 14px 12px 0;
    }

    .fdm-main-title {
        font-size: 14px;
    }

    .fdm-flight-time-text-bottom strong {
        font-size: 11px;
    }
}

/*Travelers details page*/

.traveler-detail-page-wrapper {
    margin: 24px 0;
}

.traveler-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px 22px;
    box-shadow: 0 0 0 1px #00000012;
    margin-bottom: 18px;
}

.traveler-detail-section-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
}

.traveler-detail-flight-header {
    background-color: #F2F7FF;
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.traveler-detail-flight-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.traveler-detail-airline-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #FF6F3C;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
}

.traveler-detail-input-icon {
    position: relative;
}

    .traveler-detail-input-icon .form-control {
        padding-right: 42px;
    }

.traveler-detail-field-icon {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--black200);
}

/* Danger State */
.traveler-detail-field-error .form-control {
    border-color: var(--danger-state) !important;
}

.traveler-detail-field-error .traveler-detail-field-icon {
    color: var(--danger-state) !important;
}

.traveler-detail-error-text {
    font-size: 0.82rem;
    color: var(--danger-state);
    margin-top: 4px;
}

@media (max-width: 576px) {
    .traveler-detail-flight-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.form-label {
    font-weight: 600;
}

.form-control, .form-select {
    padding: .675rem .75rem;
}

.traveler-detail-info-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 0 0 1px #0000000f;
    margin-top: 18px;
}

.traveler-detail-info-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.traveler-detail-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.traveler-detail-info-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    margin-top: 6px;
    flex-shrink: 0;
}

.traveler-detail-info-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition-hover);
}

    .traveler-detail-info-link:hover {
        color: var(--primary-color-hover);
    }

.traveler-detail-info-sublist {
    margin: 4px 0 0 18px;
    padding-left: 0;
    font-size: 0.95rem;
}

/* Small screens – keep nice padding */
@media (max-width: 576px) {
    .traveler-detail-info-card {
        padding: 18px 16px;
    }
}

.traveler-detail-price-summary {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px 22px 22px;
    box-shadow: 0 0 0 1px #00000012;
}

/* sticky only on desktop */

@media (min-width: 992px) {
    .traveler-detail-price-summary {
        position: sticky;
        top: 16px; /* adjust according to your header height */
        margin: 24px 0;
    }
}

.traveler-detail-price-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.traveler-detail-price-block {
    border-radius: 10px;
    background-color: #fff;
}

.traveler-detail-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.95rem;
    padding: 4px 0;
}

.traveler-detail-price-divider {
    margin: 6px 0;
    border-top: 1px solid var(--border-color-default);
}

.traveler-detail-price-subtotal {
    font-weight: 700;
    margin-top: 4px;
    padding-top: 6px;
    border-top: 1px solid var(--border-color-default);
}

.traveler-detail-price-note {
    font-size: 0.84rem;
    color: var(--black700);
}

.traveler-detail-price-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition-hover);
}

    .traveler-detail-price-link:hover {
        color: var(--primary-color-hover);
    }

.traveler-detail-price-btn {
    background-color: var(--primary-color);
    border: none;
    border-radius: 14px;
    padding: 10px 16px;
    color: #ffffff;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    transition: var(--transition-hover);
}

    .traveler-detail-price-btn:hover {
        background-color: var(--primary-color-hover);
    }


.traveler-detail-wrapper {
    /*    max-width: 960px;*/
    margin: 24px auto;
}

.traveler-detail-summary-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 0 0 1px #00000012;
    margin-bottom: 14px;
}

.traveler-detail-summary-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.traveler-detail-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.traveler-detail-summary-main {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.traveler-detail-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-pink100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--black800);
    flex-shrink: 0;
}

.traveler-detail-name {
    font-weight: 700;
    color: var(--black900);
    font-size: 0.95rem;
}

.traveler-detail-meta {
    font-size: 0.85rem;
    color: var(--black600);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.traveler-detail-edit-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    flex-shrink: 0;
}

    .traveler-detail-edit-link:hover {
        color: var(--primary-color-hover);
        text-decoration: underline;
    }

/* Contact rows */
.traveler-detail-contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
}

.traveler-detail-contact-main {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.traveler-detail-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--black50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black900);
    flex-shrink: 0;
}

.traveler-detail-contact-text {
    font-size: 0.9rem;
    color: var(--black800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.traveler-detail-contact-divider {
    border-top: 1px solid var(--divider-color-filter);
    margin: 4px 0;
}

@media (max-width: 576px) {
    .traveler-detail-summary-row,
    .traveler-detail-contact-row {
        flex-direction: row;
        align-items: flex-start;
    }
}

.payment-box {
    background: #fff;
    border-radius: 18px;
    padding: 16px 20px;
    border: 1px solid var(--black100);
}

.payment-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/*.accordion-button {
    background: transparent;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none !important;
    gap: 12px;
}

    .accordion-button:not(.collapsed) {
        background: transparent;
    }*/

.payment-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border-color: var(--primary-color);
}

    .payment-radio:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

.payment-divider {
    border-top: 1px solid var(--black50);
    margin: 8px 0;
}

.input-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.payment-input {
    border: 1px solid var(--black200);
    border-radius: 10px;
    padding-left: 14px;
    padding-right: 42px;
    height: 50px;
    font-size: 15px;
}

    .payment-input:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 1px rgba(1, 123, 226, .15);
    }

.input-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--black600);
    font-size: 18px;
}

@media (max-width: 767px) {
    .payment-box {
        padding: 24px 18px;
    }
}

/*Booking Confirmation*/
.booking-status-section {
    margin: 16px 0 0;
}

.booking-status-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.booking-status-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #E6FFE9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-success);
    font-size: 20px;
}

.booking-status-text {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--color-success);
}

.booking-meta {
    font-size: 18px;
    color: var(--black700);
    text-align: right;
}

/* pill section */
.booking-pill {
    margin-top: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #ffffff;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 0 0 1px #00000012;
}

.booking-pill-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(1,123,226,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}

.booking-pill-title {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.booking-pill-sub {
    font-size: 13px;
    color: var(--black700);
}

@media(max-width: 767px) {
    .booking-meta {
        margin-top: 6px;
        text-align: left;
    }
}

/*Booking Confirmation CSS*/

.itin-card {
    margin: 24px auto;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--black100);
    overflow: hidden;
}

.itin-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--black100);
    font-size: 1.35rem;
}

.itin-header-title {
    font-weight: 700;
    color: var(--primary-color);
}

.itin-header-sub {
    font-size: 13px;
    color: var(--black600);
}

/* summary strip */
.itin-summary {
    padding: 16px 20px;
    background: #f5fbff;
    border-bottom: 1px solid #fff;
}

.itin-airline-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--bg-pink100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--teritary-color);
    margin-right: 10px;
}

.itin-airline-name {
    font-weight: 600;
}

.itin-airline-sub {
    color: var(--black700);
}

.itin-time-main {
    font-size: 22px;
    font-weight: 700;
}

.itin-time-sub {
    font-size: 12px;
    color: var(--black700);
}

.itin-duration {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4px;
}

.itin-route-line {
    position: relative;
    border-top: 2px dashed var(--secondary-color);
    margin: 0 12px;
    height: 0;
}

    .itin-route-line::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -2px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--black600);
    }

    .itin-route-line::after {
        content: '\e539'; /* flight icon */
        font-family: 'Material Icons';
        position: absolute;
        top: -13px;
        right: -3px;
        font-size: 18px;
        color: var(--secondary-color);
    }

.itin-stop-text {
    font-size: 11px;
    color: var(--black700);
}

/* accordion sections */
.itin-section-title {
    font-weight: 700;
    font-size: 15px;
    padding: 12px 20px;
}

.itin-accordion .accordion-item {
    border: none;
    border-top: 1px solid var(--black50);
}

.itin-accordion .accordion-button {
    padding: 10px 20px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: none;
    background: var(--black100);
    border-radius: 0 !important;
    margin-bottom: 0;
}

    .itin-accordion .accordion-button::after {
        margin-left: auto;
    }

.itin-accordion .accordion-body {
    padding: 0;
}

/* segment rows */
.itin-segment {
    padding: 14px 20px;
    /*    display: flex;*/
    align-items: stretch;
    gap: 14px;
    background: #fff;
}

    .itin-segment:nth-child(even) {
        background: #fbfdff;
    }

.itin-layover {
    text-align: center;
    font-size: 12px;
    color: var(--black700);
    padding: 6px 20px;
    background: #f9fbff;
    border-top: 1px dashed var(--black100);
    border-bottom: 1px dashed var(--black100);
}

/* responsive */
@media (max-width: 767px) {
    .itin-segment {
        flex-direction: column;
        align-items: flex-start;
    }

    .itin-summary {
        padding: 14px 14px;
    }
}

/* Card wrapper */
.travellers-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--black100);
    padding: 18px 20px;
}

/* Header */
.travellers-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.travellers-title {
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--primary-color);
}

.travellers-count {
    font-size: 13px;
    color: var(--black700);
}

.travellers-divider {
    border-top: 1px dashed var(--black100);
    margin: 6px 0 12px;
}

/* Row Labels Bar */
.trav-row-labels {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr 0.5fr;
    font-size: 13px;
    font-weight: 600;
    color: var(--black600);
    padding: 10px 14px;
    background: #f8fbff;
    border-radius: 8px;
}

/* Traveller rows */
.trav-item {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr 0.5fr;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid var(--black50);
}

.trav-name {
    font-weight: 700;
}

.trav-gender {
    font-size: 12px;
    color: var(--black700);
    margin-left: 3px;
}

.trav-item:last-child {
    border-bottom: none;
}

.trav-request {
}

    .trav-request .material-icons {
        font-size: 22px;
        color: var(--black900);
    }

/* disclaimer */
.trav-disclaimer {
    margin-top: 12px;
    background: var(--black50);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12px;
    color: var(--black700);
}

/* responsive */
@media(max-width: 767px) {
    .trav-row-labels,
    .trav-item {
        grid-template-columns: 1fr 1fr;
        row-gap: 6px;
    }

    .trav-request {
        text-align: left;
    }
}


/* Term Card Confirmatio Page */
.terms-card {
    margin: 24px auto;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--black100);
    padding: 18px 22px 22px;
}

/* Header */
.terms-header-title {
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--primary-color);
}

.terms-header-sub {
    font-size: 13px;
    color: var(--black700);
    margin-top: 4px;
}

.terms-divider {
    border-top: 1px dashed var(--black100);
    margin: 10px 0 16px;
}

/* Content */
.terms-section-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.terms-subheading {
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 4px;
}

/* Bullet list */
.terms-bullet-list {
    list-style: none;
    padding-left: 18px;
    margin-bottom: 12px;
}

    .terms-bullet-list li {
        position: relative;
        padding-left: 22px;
        margin-bottom: 6px;
        font-size: 14px;
    }

        .terms-bullet-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 7px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--primary-color);
        }

/* Responsive tweaks */
@media (max-width: 575.98px) {
    .terms-card {
        padding: 14px 14px 18px;
    }

    .terms-header-title {
        font-size: 18px;
    }
}

.btn-ham {
    line-height: 0;
}
/* Pill button */
.lang-currency-btn {
    border-radius: var(--button-radius);
    border: 1px solid var(--black200);
    background-color: #fff;
    padding: 0.7rem 0.9rem;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s ease;
}

    .lang-currency-btn:hover {
        border-color: var(--primary-color);
    }

    .lang-currency-btn .material-symbols-outlined {
        font-size: 1.1rem;
    }

@media (min-width: 576px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    .search-btn {
        width: 100%;
        font-size: 20px !important;
        line-height: 20px;
    }

    .search-form-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mobile-hide {
        display: none !important;
    }

    .lang-currency-btn {
        padding: 8px;
    }

    .search-bg {
        /*            background: none !important;*/
    }

    .site-logo {
        width: 160px;
    }

    .trip-type {
        flex-direction: row !important;
    }

    .search-section {
        padding: 0;
    }

    .form-field {
        padding: var(--space-4) var(--space-8);
    }

    .stat-card {
        width: 100%;
    }
}

.smallScr-nav {
    display: none !important;
}

.largeScr-nav {
    display: flex !important;
}

@media (max-width: 1150px) {
    .smallScr-nav {
        display: flex !important;
        justify-content: center;
    }

    .largeScr-nav {
        display: none !important;
    }

    .nav-highlight::after {
        bottom: calc(98% + -2px);
        width: 100%;
        top: auto;
    }
}

.airport-input {
    height: 0px;
}
/*  .nav-highlight::after {
    bottom: calc(98% + -2px);
    width: 100%;
}*/


@media (min-width: 992px) {
    .container {
        max-width: 1150px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1340px;
    }
}



/*Filters Result Page*/
@media (max-width: 990.98px) {
    .flt-card.desktop-visible {
        display: none !important;
    }
}

.flt-card.mobile-overlay.active {
    display: block;
}

.flt-card.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: 1050;
    overflow-y: auto;
    padding: 0 1rem;
    max-width: 100%;
}

@media (max-width: 990.98px) {
    .mobile-sticky-title {
        position: sticky;
        top: 0;
        z-index: 1060;
        background-color: #fff;
        padding: 0.9rem;
        /*        margin-bottom: 1rem;
        border-bottom: 1px solid #ddd;*/
        width: 100%;
        left: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 991px) {
    .mobile-sticky-title {
        display: none;
    }
}

.filter-apply-btn {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem;
    border-top: 1px solid #ddd;
    z-index: 1060;
    display: flex;
    gap: 16px;
}

@media (min-width: 991px) {
    .filter-apply-btn {
        display: none !important;
    }
}

.filter-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 990.98px) {
    .filter-toggle {
        display: flex;
        font-size: 18px;
        padding: 10px 20px;
        border: 2px solid #f69e0a;
        border-radius: 16px;
        margin-bottom: 20px;
        justify-content: center;
        gap: 10px;
        align-items: center;
    }
}
@media (max-width: 768px) {
    .sort-option-icon {
        display:none;
    }
    .sort-option {
        min-width: auto;
        max-width: auto;
    }
    .sort-options-row {
        flex-wrap: nowrap;
    }
    .more-filters {
        display:none;
    }
    .flatpickr-calendar {
    max-height: 340px;              /* adjust depending on month height */
    overflow-y: auto;               /* vertical scroll */
    -webkit-overflow-scrolling: touch; /* smooth iOS scrolling */
}
}
@media (max-width: 425px) {
    .sorting-mob-handling {
        flex-direction: row;
        display: flex;
        justify-content: flex-start;
        gap: 20px;
        align-items: center;
    }
    .sort-options-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .sort-option {
        max-width: 100%;
    }
}
@media (min-width: 427px) and (max-width: 1286px) {
    .sort-option {
        min-width:auto;
    }
}

.other-page-heading-bg {
    background:#fffbeb;
}
.other-page-heading-icon {
    background: #fee789;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}
.other-page-heading {
    display: flex;
    align-items: center;
    gap: 20px;
}

/*Footer Tabs*/

.footer-accordion {
    background:none;
}
.footer-accordion .accordion-item {
    background: none;
    border: 0;
}
.footer-accordion .accordion-button {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
    .footer-accordion .accordion-body, .footer-accordion .accordion-body ul li a {
        color: #fff;
    }

    .footer-accordion .accordion-button i {
        font-size: 1.1rem;
    }

footer.simple-footer {
    background: #fff;
    padding: 12px 0;
}

/* DESKTOP / TABLET: vertical tabs (left nav, right content) */
@media (min-width: 768px) {
    .footer-accordion {
        position: relative;
        display: flex;
        flex-direction: column;
        border-radius: 0.5rem;
        padding: 0;
    }

        .footer-accordion .accordion-item {
            border: 0;
            background: transparent;

        }

        .footer-accordion .accordion-header {
            flex: 0 0 auto;
        }

        .footer-accordion .accordion-button {
            border-radius: 0;
            box-shadow: none !important;
            background-color: transparent;
            padding-left: 1rem;
            padding-right: 1rem;
            font-weight: bold;
            font-size: 16px;
            color: #fff;
        }

            .footer-accordion .accordion-button.collapsed {
                background-color: transparent;
            }

            .footer-accordion .accordion-button:not(.collapsed) {
                background-color: #0d6efd;
                color: #fff;
            }

            .footer-accordion .accordion-button::after {
                display: none;
                /* remove arrow on desktop */
            }

        /* Make headers form a vertical nav on the left */
        .footer-accordion::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 260px;
            width: 1px;
/*            background-color: #dee2e6;*/
        }

        .footer-accordion .accordion-item {
            display: block;
        }

        .footer-accordion .accordion-header {
            width: 260px;
        }

        /* Right side content area */
        .footer-accordion .accordion-collapse {
            position: absolute;
            top: 0;
            left: 260px;
            right: 0;
            bottom: 0;
            display: block;
/*            overflow: auto;*/ /*But it shows scroller*/
        }

            .footer-accordion .accordion-collapse.collapse:not(.show) {
                display: none;
            }

        .footer-accordion .accordion-body {
            padding: 0 1.5rem;
            min-height: 220px;
            color: #fff;
        }
        .footer-accordion .accordion-body ul li a{
            color:#fff;
        }

    /* Put the accordion at a reasonable height based on content */
    .footer-accordion {
        min-height: 260px;
    }
}

/*Belong stop flight portal*/
.calendar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    /* padding: var(--space-20); */
}
.car-detail {
    background: #ffffff;
    border: 1px solid var(--border-color-default);
    border-radius: 18px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 18px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
}
.car-card {
    background: #ffffff;
    border: 1px solid var(--border-color-default);
    border-radius: 18px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
    .car-card:hover {
        border: 2px solid var(--primary-color);
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgb(0 0 0 / 36%);
    }

.car-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--black900);
}

.car-subtitle a {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: underline;
}

.car-meta i {
    color: var(--black700);
    font-size: 1rem;
}

.car-meta span {
    font-size: 0.9rem;
    color: var(--black700);
}

.divider-vertical {
    border-left: 1px solid var(--border-color-default);
    height: 100%;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black900);
}

.price-sub {
    font-size: 0.85rem;
    color: var(--black500);
}

.btn-primary-custom {
    background: var(--primary-color);
    border-radius: var(--button-radius);
    border: none;
    padding: 10px 20px;
    font-weight: 600;
}

    .btn-primary-custom:hover {
        background: var(--primary-color-hover);
    }

.vendor-logo {
    max-height: 28px;
}

.pickup-dropoff-card {
    background: #f3fbff;
    border-radius: 16px;
    padding: 24px 28px;
}

.pickup-dropoff-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pickup-time {
    font-weight: 600;
    color: var(--black900);
}

.pickup-location {
    color: var(--black700);
    margin-bottom: 6px;
}

.pickup-link {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-decoration: underline;
}

/* Connector */
.pickup-connector {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 200px;
}

.pickup-dot,
.dropoff-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.pickup-dot {
    background: var(--black600);
}

.dropoff-dot {
    border: 2px solid var(--black600);
    background: #fff;
}

.pickup-line {
    flex: 1;
    height: 2px;
    background: repeating-linear-gradient( to right, var(--secondary-color) 0, var(--secondary-color) 6px, transparent 6px, transparent 12px );
}

@media (max-width: 767px) {
    .pickup-connector {
        display: none;
    }
}
/* Need Help Banner Component styling */
.need-help-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f69e0a 0%, #d87605 100%);
    border-radius: 20px;
    padding: 24px 32px;
    color: #fff;
    gap: 24px;
    box-shadow: 0 8px 24px rgba(216, 118, 5, 0.15);
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    text-align: left;
}

.agent-icon-wrap {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.agent-icon-wrap svg {
    color: #fff;
    width: 32px;
    height: 32px;
}

.banner-text h3 {
    margin: 0 0 6px 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff !important;
}

.banner-text p {
    margin: 0;
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.4;
    color: #fff !important;
}

.banner-right {
    display: flex;
    align-items: center;
}

.banner-phone-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #fff !important;
    background: rgba(0, 0, 0, 0.15);
    padding: 12px 24px;
    border-radius: 16px;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-phone-link:hover {
    background: rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.phone-icon-wrap svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.phone-text-wrap {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.phone-text-wrap small {
    font-size: 12px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-text-wrap .phone-number {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff !important;
}

/* Responsive need-help-banner */
@media (max-width: 991px) {
    .need-help-banner {
        flex-direction: column;
        padding: 24px;
        text-align: center;
    }
    
    .banner-left {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .banner-phone-link {
        width: 100%;
        justify-content: center;
    }
}