: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;

   --color-primary-50: #fffbeb;
--color-primary-100: #fef3c7;
--color-primary-200: #fee789;
--color-primary-300: #fdd44c;
--color-primary-400: #fcbf23;
--color-primary-500: #f69e0a;
--color-primary-600: #d87605;
--color-primary-700: #b55308;
--color-primary-800: #93400d;
--color-primary-900: #78350f;
--color-primary-950: #451a03;



--color-secondary-50: #f8fafc;
--color-secondary-100: #f1f5f9;
--color-secondary-200: #e2e8f0;
--color-secondary-300: #cbd5e1;
--color-secondary-400: #94a3b8;
--color-secondary-500: #64748b;
--color-secondary-600: #475569;
--color-secondary-700: #334155;
--color-secondary-800: #1e293b;
--color-secondary-900: #0f172a;
--color-secondary-950: #020617;




}

.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 {
    width: 200px;
    height: auto;
    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 {
    min-width: 200px;
    background: #fffbeb;
    border-radius: 30px;
    width: 239px;
    padding: 20px;
    border: 1px solid #fee789;
}

.stat-icon {
    color: #d87605;
    font-size: 2rem;
}

.stat-icon img {
    filter: hue-rotate(180deg) saturate(2) brightness(0.95);
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
}

.stat-pink {
    color: #f69e0a;
    font-size: 20px;
}

.stat-title {
    font-size: 20px;
}

/* Custom styles */
html {
    background: #fff;
    line-height: 1.5;
    text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family);
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: Plus Jakarta Sans, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
    color: rgb(68, 68, 68);
    font-size: 0.875rem;
    scroll-behavior: smooth;
    line-height: 1.75;
}

/* Ensure all elements use Noto Sans for all font weights */


.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: #f69e0a;
}

    .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: #f69e0a;
        border-color: #f69e0a;
    }

/* 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-destinations {
    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-destinations::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;
    }

.flight-roots {
    position: relative;
    width: 100%;
    /* height: 600px; */
    background: linear-gradient(180deg, #fffbeb 0%, #fffbeb 100%);
    /* display: flex; */
    justify-content: center;
    overflow: hidden;
    padding: 56px 0;
    text-align: center;
}

    .flight-roots::before {
        content: "";
        position: absolute;
        top: 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;
        transform: scaleY(-1);
    }

.about-us-home {
    position: relative;
    width: 100%;
    /* height: 600px; */
    background: linear-gradient(180deg, #fffbeb 0%, #fffbeb 100%);
    /* display: flex; */
    justify-content: center;
    overflow: hidden;
    padding: 56px 6%;
    /* text-align: center; */
}

    .about-us-home .row {
        margin-top: 80px;
    }

    .about-us-home::before {
        content: "";
        position: absolute;
        top: 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;
        transform: scaleY(-1);
    }

.faq-home {
    position: relative;
    width: 100%;
    /* height: 600px; */
    background: linear-gradient(180deg, #fffbeb 0%, #fffbeb 100%);
    /* display: flex; */
    justify-content: center;
    overflow: hidden;
    padding: 6%;
    /* text-align: center; */
}

    .faq-home .row {
        margin-top: 80px;
    }

    .faq-home::before {
        content: "";
        position: absolute;
        top: 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;
        transform: scaleY(-1);
    }

.offers {
    margin: 0 5%;
}

.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: #f69e0a !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: 12px;
    flex-wrap: nowrap;        /* ek hi line me rakhega */
    overflow-x: auto;         /* mobile me scroll allow karega */
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.offer-buttons::-webkit-scrollbar {
    display: none;            /* optional: scrollbar hide */
}

.offer-buttons button {
    padding: 8px 16px;
    flex: 0 0 auto;           /* buttons shrink nahi honge */
}

.exclusive-offer-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;         /* ek hi line */
    justify-content: center; /* left align */
    overflow-x: auto;           /* mobile scroll */
    white-space: nowrap;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 30px;
    padding: 0px 15px;
}

.exclusive-offer-buttons::-webkit-scrollbar {
    display: none;              /* optional scrollbar hide */
}

ul.exclusive-offer-buttons li {
    list-style: none;
    flex: 0 0 auto;             /* shrink nahi honge */
}

ul.exclusive-offer-buttons li button {
    padding: 8px 16px;
}

.accordion-button {
    font-size: 14px;
    background: #fff;
    border-radius: 16px !important;
    margin-bottom: 6px;
    gap: 12px;
}


@media (max-width: 767.97px) {
    .exclusive-offer-buttons {
        justify-content: flex-start; /* mobile me left align */
    }
}

/* 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: #f69e0a;
    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;
    
    max-height:400px;
   
}

.flt-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border-radius: 18px;
    
    font-size: 13px;
    color: #444;
   width:100%;
    transition: .12s
}

    .flt-pill input[type=checkbox] {
        position: absolute;
        opacity: 0;
        pointer-events: none;
        width: 1px;
        height: 1px;
        left: -9999px
    }



    .flt-pill--active::before {
        content: "";
        width: 15px;
        height: 15px;
        border-radius: 100%;
        background: url("../images/icons/check-oval-checked.svg");
        /*        margin-right: 6px;*/
        flex: 0 0 15px;
        background-size: contain;
    }

.flt-pill:not(.flt-pill--active)::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: #fff;
    border: 1px solid #808080;
    /*    margin-right: 6px;*/
    flex: 0 0 15px;
}

/* 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: 3px;
    background: #f69e0a;
    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: #f69e0a;
        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: #f69e0a;
        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: nowrap;
}

.flt-time {
    flex: 1;                    /* Equal width */
    min-width: 0;
    position: relative;
    border-radius: 8px;
    padding: 8px;
    background: var(--color-secondary-100);
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    border: 1px solid transparent;
    font-weight:700;
}

.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: 2px 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: -2px;
    right: -3px;
    /*    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 {
    margin-top: 18px;
    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;
}

.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: 120px;
    max-width: 130px;
    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-price {
    color: var(--color-success);
    font-weight: 700;
    /*    margin-top: 6px;*/
    font-size: 14px;
}

.date-card .date-check {
    position: absolute;
    bottom: 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;
}

.filters-panel .form-check {
   display:flex;font-size:.875rem;
   align-items:center;
   gap:8px;
   align-items:center;
   padding-left:24px;
}
.filters-panel .form-check input { width:18px;height:18px; }

.btn-apply { background:var(--color-primary-800); color:#fff; border:0px; font-size:12px; font-weight:600; padding:5px 15px; border-radius:8px; transition:var(--transition-hover); }

    .btn-apply:hover { background:var(--color-primary-700); color:#fff; }

    .btn-clear { background:transparent; color:#666; border:0px; font-size:12px; font-weight:600; padding:5px 15px; border-radius:8px; transition:var(--transition-hover); }

        .btn-clear:hover { background:rgba(0,0,0,0.05); color:#666; }


/* 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%;*/
    }
}



.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: 1px solid var(--primary-color);
        box-shadow: 0 10px 25px rgb(0 0 0 / 14%);
    }

.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: 200px;
    width: 100%;
}

.min-max-arrival {
       min-width: 90px;
    max-width: 130px;
    width: 100%;
}
.row-airport-code {color: var(--color-primary-600);
    font-weight: bold;
    font-size: .875rem;}
.row-date {    font-size: 12px;
    font-weight: 600;}
.price-box {display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    }
    .price-details-btn {}
    .baggage-info-wrapper{}
/* Small screens */
@media (max-width:575.98px) {
    .flight-card-result {
        padding: 12px 12px;
    }

    .time-large {
        font-size: 1.05rem;
    }

    .price-big {
        font-size: 1rem;
    }

    .footer-air {
        font-size: .72rem;
    }

    .min-max-departure {    min-width: 140px;
    max-width: 140px;
    width: 100%;}
    .min-max-arrival {
    min-width: 90px;
        max-width: 90px;
        width: 100%;
}

.price-box {        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        background: #ECEFF1;
        border-radius: 12px;
        padding: 10px;
    }
    .price-details-btn {display: flex;
        flex-direction: column;}
    .baggage-info-wrapper{}
}

/*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: 980px;
}

.flight-details-modal .modal-content {
    border-radius: 0;
    border: none;
}

.flight-details-modal .modal-body {
    padding: 20px 18px 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: 18px;
    font-weight: 700;
    line-height: 1;
    color:#008236;
}

.fdm-price-label {
    font-size: 12px;
    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: 8px 24px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-hover);
    margin-left:15px;
}

    .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;
    }

    .fdm-top-section{}
    .flight-details-main {
       grid-template-columns: 1fr;
}.modal-features-grid {
   
    grid-template-columns: repeat(1, 1fr)!important;
   
}
}

@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-subsection { margin-top:30px}

.traveler-detail-section-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
}
.traveler-detail-subheading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-secondary-400);
}

.traveler-detail-subheading span {}

.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: 2px;
    right: 12px;
   
    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-pt-total {font-weight: 800;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 10px;
    padding-bottom: 5px;}

.traveler-detail-price-row {
        display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 4px 0;
    font-weight: 600;
}

.traveler-detail-price-tax {font-size: 12px;
    display: flex;
    justify-content: space-between;color: #767676;}

.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);
    font-size: 16px;
}

.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; /* responsive: slightly smaller on tablets */
    }

    .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: #f69e0a;
                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;
    }

    .page-loader {
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.9);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .page-loader.hidden {
            display: none;
        }

    .loader-card {
        text-align: center;
        background: #fff;
        padding: 30px 40px;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    }

    .spinner {
        width: 48px;
        height: 48px;
        border: 4px solid #e0e0e0;
        border-top-color: #f69e0a;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
        margin: 0 auto 15px;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

}

.accordion {
    --bs-accordion-bg: none;
}

.accordion-collapse {
    background: rgb(255, 255, 255);
    border-radius: 10px;
    margin-bottom: 10px;
}

.footer-accordion .accordion-collapse {
    background: #ffffff1a;
    padding:15px 15px 0px;
}



.loader-ctrl {
    position: relative;
}

/* Runway bar */

.runway {
    /*    position: relative;*/

    height: 10px;
    background: #ededed;
    border-radius: 20px;
    /*    overflow: hidden;*/

    margin-bottom: 18px;
}



/* Progress fill */

.page-loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}



    .page-loader.hidden {
        display: none;
    }



.loader-card {
    text-align: center;
    background: #fff;
    padding: 77px 83px 30px;
    width: 40%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}





.progress {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    overflow: visible;
    animation: fillBar 10s linear infinite;
}

    .progress::after {
        content: '';
        width: 56px;
        height: 28px;
        position: absolute;
        background: url('../images/icons/airPlaneLoader.svg') no-repeat center center;
        right: 0;
        top: -32px;
        text-align: right;
        /*    background-size: 36%;*/
    }



/* Airplane icon */

.airplane {
    position: absolute;
    top: -18px;
    left: 0;
    width: 32px;
    height: 32px;
    background-image: url("https://cdn-icons-png.flaticon.com/512/684/684908.png");
    background-size: contain;
    background-repeat: no-repeat;
    animation: planeMove 10s linear infinite;
}



@keyframes fillBar {

    0% {
        width: 0%;
    }



    100% {
        width: 100%;
    }
}



@keyframes planeMove {

    0% {
        left: 0%;
    }



    100% {
        left: calc(100% - 25px);
    }
}
.card-type-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}

    .card-type-icon.visa {
        background-image: url('/Flight/assets/images/cards/visa.svg');
    }

    .card-type-icon.mastercard {
        background-image: url('/Flight/assets/images/cards/mastercard.svg');
    }

    .card-type-icon.amex {
        background-image: url('/Flight/assets/images/cards/amex.svg');
    }
/* ===============================
   SEARCH SUMMARY BAR (RESULT PAGE)
   =============================== */

.search-summary-bar {
    background: #ffffff;
    border-radius: 32px;
    padding: 12px 20px;
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    width: fit-content;
}

    .search-summary-bar span {
        font-size: 14px;
        font-weight: 500;
        color: #222;
        white-space: nowrap;
    }

    .search-summary-bar .divider {
        color: #c7c7c7;
        margin: 0 6px;
    }

    .search-summary-bar button {
        border-radius: 20px;
        padding: 6px 16px;
        font-size: 13px;
        font-weight: 600;
        margin-left: 8px;
        white-space: nowrap;
    }

        /* Hover effect */
        .search-summary-bar button:hover {
            transform: translateY(-1px);
        }
@media (max-width: 768px) {
    .search-summary-bar {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 16px;
        display: none;
    }

        .search-summary-bar span {
            white-space: normal;
        }

        .search-summary-bar button {
            align-self: flex-end;
            margin-top: 8px;
        }
}
#fullSearchForm {
    transition: all 0.3s ease;
}


/* flight details modal starts here */

.flight-details-main {display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));}
.departure-section{position: relative;}
.return-section {position: relative;}
.slay-div {border-radius: 100px;
    color: var(--color-primary-700);
    display: inline-block;
    font-weight: 700; position: relative; margin-left:5px;}
.slay-div::before {     content: '';
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translate(0%, -50%);
    width: 5px;
    height: 5px;
    border-radius: 100px;
    background: var(--color-primary-700);
    animation: pulse 2s infinite;}

.heading-section {margin-bottom: 20px; margin-top:10px;}
.modal-flight-heading {     font-size: 1rem;
    font-weight: 700;
    letter-spacing: -.0095rem;}

.dep-dest-names{       color: #5a5a5a;
    font-weight: 600;
    display: flex;
    gap: 5px;
    align-items: center;}    
.stops-time {     font-size: .775rem;
    font-weight: 600;
    color: var(--color-secondary-600);
    display: flex;
    align-items: center;}

.modal-flight-grid {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  
}

/* TIMELINE */
.modal-timeline {
  position: relative;
}

.modal-time {
  font-size: 12px;
  font-weight: 800;
}

.modal-date {
  font-size: 12px;
  color: #6c757d;
  font-weight:600;
}

.modal-timeline-line {
  position: absolute;
  top: 40px;
  left: 10px;
  height: calc(100% - 30px);
  border-left: 1px solid #d1d5db;
}

.modal-timeline-dot {
  position: absolute;
  top: 35px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-secondary-500); 
  background: #ffffff;
}

/* TOP DOT */
.modal-timeline-dot-top {
  position: absolute;
  top: -24px;     /* -top-6 equivalent */
  left: 4px;      /* left-[2px] approx */
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-secondary-500); 
}

/* CONTENT */
.modal-airport-title {
  font-weight: 700;
  font-size: 14px;
  color: #111827;
}

.modal-airport-sub {
  font-size: 12px;
  color: #6b7280;
}

.modal-airline-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.modal-airline-logo {
  height: 20px;
}

.modal-airline-name {
  font-weight: 500;
}

.modal-flight-tags {
  margin-top: 8px;
}

.modal-tag {
  display: inline-block;
  background: #f3f4f6;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 5px;
}

/* FEATURES GRID */
.modal-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
  font-size: 14px;
  color: #374151;
}

.modal-feature-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size:12px;
}
.modal-feature-item img { width:16px;height:16px; opacity: 0.6;}
.modal-feature-item span {     flex: 0 0 auto;
    width: 100%; max-width: 160px;}
.modal-feature-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.mt-8 {
    margin-top: 32px;
}






.scrollbar {overflow:auto;}
.scrollbar::-webkit-scrollbar{
    width: 4px;
}

.scrollbar::-webkit-scrollbar-thumb{
    background: rgb(193, 193, 193);
    border-radius: 2px;
}

.scrollbar::-webkit-scrollbar-track{
    background: rgb(241, 241, 241);
}





/* CARD CONTAINER */
.stop-card {
  margin: 24px 0;                 /* my-6 */
  padding: 16px;                 /* p-4 */
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* Gradient bg-gradient-to-r from-yellow-50 to-white */
  background: linear-gradient(
    to right,
    #fef9c3,   /* yellow-50 */
    #ffffff
  );
}

/* LEFT SECTION */
.stop-left {
  max-width: 75%;
}

.stop-title {
  font-weight: 600;
  color: #111827;   /* gray-900 */
 
}

/* INFO ROW */
.stop-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #374151;   /* gray-700 */
}

/* CHECK ICON */
.check-icon {
  margin-top: 2px;      /* mt-1 */
  color: #d97706;       /* amber-600 */
}

/* TEXT */
.stop-text {
  line-height: 1.4;
}

.stop-sub {
  color: #6b7280;       /* gray-500 */
  font-size: 13px;
}

/* RIGHT DURATION */
.stop-duration {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;       /* gray-800 */
}
/* flight details modal ends here */


/* modal baggage starts here */

/* Wrapper */
.fare-wrapper {
  position: relative;
  display: inline-block;
}

/* Trigger */
.baggage-info {
  list-style: none;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 8px 10px;

  border: 1px solid #f1f1f1;
  background: #fafafa;
  border-radius: 6px;
  cursor: pointer;

  font-size: 12px;
  font-weight: 500;
  color: #404040;
    margin-bottom:0px;
  transition: background 0.2s ease;
}

.baggage-info:hover {
  background: #f1f1f1;
}

.baggage-info li {
  display: flex;
  align-items: center;
}

/* Tooltip */
.fare-tooltip {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;

  width: 280px;
  padding: 16px;

  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);

  font-size: 14px;
  color: #374151;
  z-index: 50;
}



/* Tooltip Content */
.tooltip-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tooltip-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  color: #111827;
}

/* Row */
.bag-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bag-text {
  font-size: 12px;
  color: #4b5563;
}

/* Status */
.bag-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

/* Included */
.bag-status.included {
  color: #16a34a;
}

/* Excluded */
.bag-status.excluded {
  color: #737373;
}

/* Status Icon */
.status-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.bag-status.included .status-icon {
  background: #16a34a;
}

.bag-status.excluded .status-icon {
  background: #737373;
}

/* Fare Rules */
.fare-rules {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  background: #fafafa;
  font-size: 12px;
  color: #525252;
}

.rules-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.fare-rules ul {
  padding-left: 18px;
  margin: 0;
}

.fare-tooltip {
  display: none;        /* default hidden */
}

.fare-tooltip.show {
  display: block;
}
.included-check, .exclude-check { position: relative;
}
.exclude-check {padding-left: .65rem;}

.included-check::after {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    height: 12px;
    width: 12px;
    --tw-translate-x: calc(1 / 2 * 100%);
    --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
    border-radius: 100px;
    border-style: solid;
    border-width: 2px;
    border-color: #fff;
    background-color: #00a63e;
    background-size: 8px 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.baggage-info li:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 4px;
    width: 1px;
    background-color: #6a7282;
}.exclude-check::after {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    height: 12px;
    width: 12px;
    --tw-translate-x: calc(1 / 2 * 100%);
    --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
    border-radius: 100px;
    border-style: solid;
    border-width: 2px;
    border-color: #fff;
    background-color: #4a5565;
    background-size: 8px 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='M6 6 18 18'/%3E%3C/svg%3E");
}


@media screen and (max-width: 767px) {
    .fare-tooltip {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        box-shadow: 0 12px 36px rgb(0 0 0 / 26%);
    }
}


.modal-title { font-size: 1rem!important;
    font-weight: 700;
    color: #111827;
   
}





/* modal baggage ends here */

/* summery flight details starts here*/

.trip-flight-card {
  width: 100%;
  flex:auto;
}

.trip-flight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.trip-flight-body {
  display: flex;
  flex-direction: column; /* Mobile default */
  gap: 20px;
 
}

/* Desktop Layout */
@media (min-width: 768px) {
  .trip-flight-body {
    flex-direction: row;
  }

  .trip-flight-section {
    flex: 1 1 0;
  }
}

/* Section */
.trip-flight-section {
  background: #ffffff;
  padding: 14px;
  border-radius: 12px;
}

/* Badge */
.flight-badge {
     font-size: 10px;
    font-weight: bold;
    background: #fffbeb;
    padding: 4px 8px;
    border-radius: 999px;
    display: inline-flex;
    margin-bottom: 12px;
    color: #d87605;
    gap: 4px;
}

/* Inner Layout */
.trip-flight-row {
  display: flex;
  justify-content: space-between;
}

.trip-flight-left .time {
  font-weight: bold;
  color: var(--color-secondary-600);
}

.trip-flight-left .date,
.trip-flight-right .duration,
.trip-flight-right .cabin {
  font-size: 12px;
  color: #6b7280;
}

.trip-flight-right {
  text-align: right;
}
.trip-flight-right .route {    display: block;
    font-weight: 700; color:var(--color-primary-800)}
.airline {display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;}
.-rotate-135 {
    rotate: -135deg;
}.rotate-45 {
    rotate: 45deg;
}
/* summery flight details ends here */

.smry-fto-text {    font-size: 16px;
    font-weight: 600;}
.smry-fto-text span {
    color: var(--color-primary-700);
}
.trip-details {font-size: 14px;
    color: var(--color-primary-600);
    text-decoration: underline; cursor: pointer; font-weight: 500;}
    .trip-details:hover {color: var(--color-primary-800);}


    .flatpickr-day.hidden {
        display: block!important;
        visibility: visible!important;
    }
/* 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;
    }
}