:root {
    --primary-color: #f69e0a;
    --primary-color-hover: #d87605;
    --secondary-color: #b55308;
    --border-color-default: #999999;
    --divider-color-filter: #c5c5c5;
    --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 {
    /* 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 {
    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: Inter, 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: 400;
    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 #c5c5c5;
    /*    padding: 18px;*/
    font-family: system-ui;
    color: #222;
    /* position: sticky;
    top: 20px; */
}

.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:last-child {
    border-bottom: none;
}

.flt-section__title {
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 10px;
    color: #222
}

.flt-pill-list {
    display: flex;
    flex-direction: column; /* har item ek row me */
    gap: 8px;
    max-height: 400px;
   
}

.flt-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border-radius: 18px;
    font-size: 13px;
    color: #444;
    flex: 1; /* full width le */
    min-width: 0; /* IMPORTANT for ellipsis */
}

.flt-pill-item {
display: flex;
    align-items: center;
    justify-content: space-between; /* left text + right number */
    gap: 20px;
}

.flt-pill span {white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;}
.c-numbers {
    flex-shrink: 0; /* kabhi compress na ho */
    font-size: 12px;
    color: #666;
}
    .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 {
        flex-direction: column;
}.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;
    }

    .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: flex;
    gap: 20px;
    justify-content: space-between;}
.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;
    }



    /* hotel guest box css stars here */

    .guest-wrapper {}
    .guest-box {}


    .room-wrap{padding:1rem 0}
  .room-card{background:#f7f7f7;border:0.5px solid #ebebeb;border-radius:16px;padding:15px;margin-bottom:12px}
  .room-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}
  .room-label{display:flex;align-items:center;gap:8px}
  .room-icon{width:28px;height:28px;border-radius:8px;background:#fef3c7;display:flex;align-items:center;justify-content:center}
  .room-icon svg{width:15px;height:15px;fill:#d87605}
  .room-title{font-size:14px;font-weight:600;color:var(--color-text-primary);letter-spacing:0.02em}
  .room-sub{font-size:11px;color:var(--color-text-secondary);margin-top:2px}
  .remove-btn{width:28px;height:28px;border-radius:8px;border:0.5px solid #ebebeb;background:transparent;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--color-text-secondary);font-size:16px;transition:all 0.15s}
  .remove-btn:hover{background:#FCEBEB;border-color:#F09595;color:#A32D2D}
  .guest-row{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:18px}
  .field-box{display:flex;flex-direction:column;gap:5px}
  .field-label{font-size:11px;font-weight:600;color:var(--color-text-secondary);text-transform:uppercase;letter-spacing:0.06em}
  .stepper{display:flex;align-items:center;border:0.5px solid #ebebeb;border-radius:10px;overflow:hidden;background:var(--color-background-secondary)}
  .step-btn{width:36px;height:36px;border:none;background:transparent;cursor:pointer;font-size:18px;color:var(--color-text-primary);display:flex;align-items:center;justify-content:center;transition:background 0.1s;flex-shrink:0}
  .step-btn:hover:not(:disabled){background:var(--color-border-tertiary)}
  .step-btn:disabled{color:var(--color-text-secondary);cursor:not-allowed;opacity:0.4}
  .step-val{flex:1;text-align:center;font-size:15px;font-weight:600;color:var(--color-text-primary)}
  .ages-section{border-top:0.5px solid var(--color-border-tertiary);padding-top:16px}
  .ages-header{font-size:11px;font-weight:600;color:var(--color-text-secondary);text-transform:uppercase;letter-spacing:0.06em;margin-bottom:12px;display:flex;align-items:center;gap:6px}
  .ages-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:5px}
  .age-chip{display:flex;flex-direction:column;gap:4px}
  .age-chip-label{font-size:11px;color:var(--color-text-secondary);text-align:center}
  .age-select{width:100%;border:0.5px solid #ebebeb;border-radius:8px;padding:7px 6px;font-size:13px;font-weight:500;color:var(--color-text-primary);background:var(--color-background-secondary);cursor:pointer;text-align:center;appearance:none;-webkit-appearance:none;text-align-last:center}
  .age-select:focus{outline:none;border-color:#d87605;box-shadow:0 0 0 2px rgba(216,118,5,0.12)}
  .add-room-btn{width:100%;padding:11px;border:0.5px dashed #ebebeb;border-radius:12px;background:transparent;cursor:pointer;font-size:13px;font-weight:500;color:var(--color-text-secondary);display:flex;align-items:center;justify-content:center;gap:6px;transition:all 0.15s}
  .add-room-btn:hover{border-color:#d87605;color:#d87605;background:#fef3c710}
  .plus-circle{width:20px;height:20px;border-radius:50%;border:1.5px solid currentColor;display:flex;align-items:center;justify-content:center;font-size:14px;line-height:1}

#rooms-container {
  max-height: 520px; /* ~2 rooms ki height */
  overflow-y: auto;
  padding-right: 4px; /* scrollbar ke liye gap */
}

#rooms-container::-webkit-scrollbar {
  width: 4px;
}
#rooms-container::-webkit-scrollbar-track {
  background: transparent;
}
#rooms-container::-webkit-scrollbar-thumb {
  background: #b9b9b9;
  border-radius: 4px;
}





    /* hotel guest box css ends here */


    /* hotel hote deals starts here  */

    
    /* hotel deals section */
    .hotel-deals-section {
      padding: 80px 0 100px;
      background: linear-gradient(135deg, #ffffff 0%, var(--color-primary-50) 100%);
    }

    /* header area */
    .section-badge {
      background: var(--color-secondary-100);
      color: var(--color-secondary-800);
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.5px;
      padding: 6px 18px;
      border-radius: 40px;
      display: inline-block;
      margin-bottom: 1rem;
      border: 1px solid var(--color-secondary-200);
    }

    .section-header h2 {
      font-size: 2.6rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--black800) 0%, var(--primary-color) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.02em;
    }

    .section-header p {
      color: var(--black600);
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
    }

    /* swiper container */
    .hotel-swiper {
      padding: 20px 10px 40px 10px;
    }

    .hotel-card {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
      transition: var(--transition-hover);
      border: 1px solid rgba(0, 0, 0, 0.04);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .hotel-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 45px rgba(0, 123, 255, 0.12);
      border-color: var(--color-primary-200);
    }

    /* image container with badge */
    .card-img-top-wrapper {
      position: relative;
      overflow: hidden;
    }

    .hotel-img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .hotel-card:hover .hotel-img {
      transform: scale(1.05);
    }

    .deal-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--danger-state);
      color: white;
      font-weight: 700;
      font-size: 0.8rem;
      padding: 5px 12px;
      border-radius: 30px;
      z-index: 2;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .wishlist-icon {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(255,255,255,0.9);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition-hover);
      color: var(--black500);
      backdrop-filter: blur(2px);
    }

    .wishlist-icon:hover {
      background: var(--color-secondary-100);
      color: var(--color-secondary-700);
      transform: scale(1.05);
    }

    /* card body */
    .card-body-custom {
      padding: 1.4rem 1.2rem 1.2rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .hotel-location {
      font-size: 0.85rem;
      color: var(--primary-color);
      font-weight: 600;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .hotel-location svg {
      color: var(--color-primary-600);
      width:1rem;
       height:1rem;
    }

    .hotel-name {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--black800);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .rating {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }

    .stars {
      color: #ffb800;
      letter-spacing: 2px;
      font-size: 0.85rem;
    }
    .stars svg {
      width: 14px;
      height: 14px;
    }

    .review-count {
      font-size: 0.75rem;
      color: var(--black500);
      font-weight: 500;
    }

    .amenities {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 16px;
      border-top: 1px solid var(--black100);
      padding-top: 12px;
    }

    .amenity {
      background: var(--color-primary-50);
      padding: 4px 10px;
      border-radius: 30px;
      font-size: 0.7rem;
      font-weight: 500;
      color: var(--color-primary-800);
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .price-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-top: auto;
      border-top: 1px dashed var(--black100);
      padding-top: 14px;
    }

    .price {
      display: flex;
      align-items: baseline;
      gap: 5px;
      flex-wrap: wrap;
    }

    .current-price {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--color-secondary-700);
      letter-spacing: -0.5px;
    }

    .old-price {
      font-size: 0.9rem;
      color: var(--black400);
      text-decoration: line-through;
    }

    .book-btn {
      background: var(--primary-color);
      color: white;
      border: none;
      padding: 8px 18px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.85rem;
      transition: var(--transition-hover);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .book-btn:hover {
      background: var(--primary-color-hover);
      transform: scale(0.97);
      color: white;
    }

    /* hot deals ribbon + extra badge */
    .hot-tag {
      background: var(--color-secondary-500);
      color: white;
      font-size: 0.7rem;
      padding: 3px 10px;
      border-radius: 20px;
      font-weight: 700;
    }

    .hot-tag svg { color: white;
      width: 1rem;
       height: 1rem;
    }

    /* swiper custom navigation */
    .swiper-button-next,
    .swiper-button-prev {
      background: white;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      transition: all 0.2s;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
      font-size: 1.2rem;
      font-weight: bold;
      color: var(--primary-color);
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      background: var(--primary-color);
    }
    .swiper-button-next:hover:after,
    .swiper-button-prev:hover:after {
      color: white;
    }

    .swiper-pagination-bullet-active {
      background: var(--primary-color) !important;
    }

    /* responsive */
    @media (max-width: 768px) {
      .hotel-deals-section {
        padding: 50px 0 70px;
      }
      .section-header h2 {
        font-size: 2rem;
      }
      .hotel-name {
        font-size: 1.2rem;
      }
      .current-price {
        font-size: 1.3rem;
      }
    }


    /* hotel hot deals ends here */


    /* testimonials starts here */
/* ========== TESTIMONIALS SECTION STYLES ========== */
.testimonials-section {
    background: white;
    position: relative;
}

.testimonial-card {
    background: white;
    border: none;
    border-radius: 28px;
    padding: 2rem;
    transition: var(--transition-hover);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--color-secondary-300);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--black600);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black800);
    margin-bottom: 0.25rem;
}

.author-info .stars {
    font-size: 0.8rem;
}

/* Testimonial Slider Styles */
.testimonial-swiper {
    padding: 20px 0 40px;
}

.testimonial-swiper .swiper-pagination-bullet {
    background: var(--black400);
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Animation for cards */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: slideInUp 0.5s ease-out forwards;
    opacity: 0;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .quote-icon {
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
}
    /* testimonials ends here */


    /* features starts here */
    /* ========== FEATURES SECTION STYLES ========== */
.features-section {
    background: var(--color-secondary-50);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-secondary-200) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-primary-200) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
}

.feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    transition: var(--transition-hover);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: var(--color-primary-50);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition-hover);
    flex-shrink: 0;
}

.feature-item:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05) rotate(5deg);
}

.feature-item h6 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--black800);
}

.feature-item small {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--black500);
}

.feature-image {
    border-radius: 24px;
    transition: var(--transition-hover);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .feature-item {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .feature-item h6 {
        font-size: 1rem;
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-8px);
        }
    }
}
    /* features ends here */


    /* destinations css starts here */
    /* ========== DESTINATIONS SECTION STYLES ========== */
.destinations-section {
    background: white;
}

.destination-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: var(--transition-hover);
    z-index: 1;
    border-radius: 24px;
}

.destination-card:hover::before {
    opacity: 1;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.destination-img {
    height: 240px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-img {
    transform: scale(1.05);
}

.destination-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background: white;
}

.destination-info h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black800);
    margin-bottom: 0.5rem;
    transition: var(--transition-hover);
}

.destination-card:hover .destination-info h5 {
    color: var(--primary-color);
}

.destination-info p {
    color: var(--black500);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.destination-badge {
    display: inline-block;
    background: var(--color-primary-50);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-hover);
}

.destination-card:hover .destination-badge {
    background: var(--primary-color);
    color: white;
}

/* Animation for destination cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destination-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.destination-card:nth-child(1) { animation-delay: 0.1s; }
.destination-card:nth-child(2) { animation-delay: 0.2s; }
.destination-card:nth-child(3) { animation-delay: 0.3s; }
.destination-card:nth-child(4) { animation-delay: 0.4s; }

@media (max-width: 768px) {
    .destination-img {
        height: 200px;
    }
    
    .destination-info {
        padding: 1.2rem;
    }
    
    .destination-info h5 {
        font-size: 1.1rem;
    }
}


    /* destinations css ends here */

    /* /* ========== SECTION COMMON STYLES ========== */
.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    background: var(--color-secondary-100);
    color: var(--color-secondary-800);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 6px 18px;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid var(--color-secondary-200);
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--black800) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--black600);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

/* ========== HOTEL CARD STYLES (for hot deals section) ========== */
.hotel-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: var(--transition-hover);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 123, 255, 0.12);
    border-color: var(--color-primary-200);
}

.card-img-top-wrapper {
    position: relative;
    overflow: hidden;
}

.hotel-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-img {
    transform: scale(1.05);
}

.deal-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--danger-state);
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.wishlist-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.9);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-hover);
    color: var(--black500);
    backdrop-filter: blur(2px);
    z-index: 2;
}

.wishlist-icon:hover {
    background: var(--color-secondary-100);
    color: var(--color-secondary-700);
    transform: scale(1.05);
}

.card-body-custom {
    padding: 1.4rem 1.2rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hotel-location {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hotel-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--black800);
    margin-bottom: 8px;
    line-height: 1.3;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.stars {
    color: #ffb800;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.review-count {
    font-size: 0.75rem;
    color: var(--black500);
    font-weight: 500;
}

.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
    border-top: 1px solid var(--black100);
    padding-top: 12px;
}

.amenity {
    background: var(--color-primary-50);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-primary-800);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.amenity svg {
    color: var(--primary-color);
    width: 0.8rem;
    height: 0.8rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: auto;
    border-top: 1px dashed var(--black100);
    padding-top: 14px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-secondary-700);
    letter-spacing: -0.5px;
}

.old-price {
    font-size: 0.9rem;
    color: var(--black400);
    text-decoration: line-through;
}

.book-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-hover);
    display: flex;
    align-items: center;
    gap: 6px;
}

.book-btn:hover {
    background: var(--primary-color-hover);
    transform: scale(0.97);
    color: white;
}

.hot-tag {
    background: var(--color-secondary-500);
    color: white;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
}

/* ========== SWIPER STYLES ========== */
.hotel-swiper {
    padding: 20px 10px 40px 10px;
}

.swiper-button-next,
.swiper-button-prev {
    background: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    color: white;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .current-price {
        font-size: 1.3rem;
    }
    
    .hotel-name {
        font-size: 1.2rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 0.9rem;
    }
} */


/* star rating css starts here */


.filter-wrap { padding: 1.5rem 0; font-family: var(--font-sans); }
  .filter-label { font-size: 13px; color: var(--color-text-secondary); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px; }
  .star-row { display: flex; flex-direction: column; gap: 6px; }
  .star-item { display: flex; align-items: center; gap: 10px; cursor: pointer; user-select: none; }
  .star-item input[type="checkbox"] { display: none; }
  .custom-check {
    width: 18px; height: 18px; border-radius: 5px;
    border: 1.5px solid #cfcfcf;
    background: #ffffff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background 0.15s, border-color 0.15s;
  }
  .star-item input:checked ~ .custom-check {
    background: #EF9F27; border-color: #EF9F27;
  }
  .check-mark { display: none; width: 10px; height: 10px; }
  .star-item input:checked ~ .custom-check .check-mark { display: block; }
  .stars { display: flex; gap: 2px; }
  .star { font-size: 16px; line-height: 1; }
  .star.filled { color: #EF9F27; }
  .star.empty { color: #c5c5c5; }
 
  .star-item:hover .custom-check { border-color: #EF9F27; }
 
  .filter-actions { display: flex; gap: 8px; margin-top: 14px; }

  .result-text { font-size: 13px; color: var(--color-text-secondary); margin-top: 10px; min-height: 18px; }


  /* star rating css ends here */


  /* select dropdown starts here */
  .show-data-box {    display: flex;
    justify-content: space-between;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 12px;
    align-items: center;}
  .show-data-box-1 {display: flex;
    align-items: center;
    gap: 4px;}
  .show-data-box-2 {display: flex;
    align-items: center;
    gap: 12px;}
.show-data-box-1 span { color: #f69e0a;     font-size: 14px;
    font-weight: 800;
    background: #dce7f1;
    padding: 0px 6px;
    border-radius: 100px;
    border: 1px solid #f69e0a38 }
  .s-dropdown { position: relative; width: 100px; user-select: none; }
  .s-dropdown-selected {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px;
    background: #e7e7e7;
    border: 0.5px solid #e1e1e1;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    color: var(--color-text-primary);
    transition: border-color 0.15s;
    border-radius: 8px;
   
  }
  .s-dropdown-selected:hover { border-color: #f69e0a; }
  .s-dropdown-selected.open { border-color: #f69e0a; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
  .s-arrow { width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
  .s-arrow.open { transform: rotate(180deg); }
  .s-dropdown-list {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    border: 0.5px solid #e7e7e7;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    display: none; z-index: 10;
    max-height: 220px; overflow-y: auto;
  }
  .s-dropdown-list.open { display: block; }
  .s-dropdown-item {
    padding: 10px 14px; font-size: 15px;
    color: var(--color-text-primary); cursor: pointer;
    transition: background 0.1s;
  }
  .s-dropdown-item:hover { background: #f0f0f0; }
  .s-dropdown-item.active { background: #f69e0a; color: #fff; font-weight: 500; }

  /* select dropdown ends here */


  

  /* result details box section starts here */
  .result-hotel-card {padding: 0px 12px;
    border: 1px solid #ffffff;
    box-shadow: 0px 0px 10px #0000001a;
    border-radius: 16px;margin-bottom: 20px !important;}
    .card-hotel-image {max-width: 100%;
    object-fit: cover;
    border-radius: 12px; margin-top: 12px; margin-bottom: 12px;}
.hotel-name-box { padding:15px 0px;}
.hotel-title { color: var(--color-primary-950); font-size: 18px; font-weight: 700; margin-bottom: 6px;}
.star-hotel {display:flex; align-items: center; gap: 8px;}
.hotel-icon {width: 20px; height: 20px; background: var(--color-primary-100); display: flex; align-items: center; justify-content: center; border-radius: 6px; color: var(--color-primary-800);}
.hotel-icon svg {width: 16px; height: 16px;}
.star-ratings { line-height: 1;
    color: #FF9800;
    gap: 2px;
    display: flex;
    align-items: center; }
.star-ratings svg {    width: 12px;}
.card-hotel-details {}
.hotel-address{ display: flex; gap: 6px; color: var(--color-text-secondary); font-size: 12px; margin-bottom: 10px; font-weight: 400; }
.hotel-address svg { width: 16px; height: 16px; color: var(--color-primary-800);}
.hotel-features{ display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 12px;}
.hotel-features span  {background: #ededed;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 10px;}
.hotel-policy{font-size:12px;     margin-bottom: 12px;}
.show-on-map{ text-decoration: none; color: var(--color-primary-800); font-size: 12px; cursor: pointer;}
.show-on-map:hover { text-decoration: underline; }
.show-on-map svg { width: 14px; height: 14px; color: var(--color-primary-800); }
.star-rating-txt{background:var(--color-primary-800);
    color: #fff;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 12px;
    display: inline-block;
    margin-left: 6px; margin-top: 12px;}
.rating-nums{font-size: 12px; color: var(--color-text-secondary); margin-left: 6px;}
.was-price{ margin-top:20px; text-decoration: line-through; color: var(--color-text-secondary); font-size: 12px;}
.current-price{font-size: 18px; font-weight: 700;     color: var(--color-secondary-700);}
.price-per-night { font-size: 12px; color: var(--color-text-secondary); line-height:1; margin-bottom:10px;}
.card-total-price{font-size: 12px; color: var(--color-text-secondary); margin-top: 4px;}
.card-price-info{font-size: 12px; color: var(--color-text-secondary); margin-top: 4px;}

  /* result details box section ends here */

/* hotel results polish */
.flt-card {
    border-radius: 20px;
    border: 1px solid #eef3f8;
    box-shadow: 0 14px 34px rgba(14, 55, 93, 0.08);
    overflow: hidden;
}

.flt-header {
    padding-bottom: 14px;
    border-bottom: 1px solid #edf2f7;
    margin-bottom: 18px;
}

.flt-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--color-primary-950);
}

.flt-reset-btn {
    color: var(--color-primary-700);
    font-weight: 700;
}

.flt-section {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #f2f5f8;
}

.flt-section:last-of-type {
    border-bottom: none;
    margin-bottom: 10px;
}

.flt-section__title {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7f93;
    margin-bottom: 12px;
}

.flt-pill-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flt-pill-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.flt-pill {
    margin-bottom: 0 !important;
    font-size: 12px;
    font-weight: 600;
}

.c-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: #eef5fb;
    border: 1px solid rgba(1, 123, 226, 0.14);
    color: var(--color-primary-700);
    font-size: 11px;
    font-weight: 700;
}

.hotel-price-range {
    padding: 12px 0 4px;
}

.hotel-price-range__values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.hotel-price-range__value {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.hotel-price-range__value--right {
    text-align: right;
}

.hotel-price-range__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7b8ba1;
}

.hotel-price-range__value strong {
    font-size: 14px;
    font-weight: 800;
    color: var(--color-primary-950);
}

.hotel-price-range__slider {
    margin: 6px 4px 12px;
}

.hotel-price-range__slider.noUi-target {
    height: 8px;
    border: 0;
    box-shadow: none;
    background: #e8eef5;
    border-radius: 999px;
}

.hotel-price-range__slider .noUi-connect {
    background: linear-gradient(90deg, #f69e0a 0%, #fcbf23 100%);
}

.hotel-price-range__slider .noUi-handle {
    width: 20px;
    height: 20px;
    right: -10px;
    top: -6px;
    border: 2px solid #f69e0a;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(1, 123, 226, 0.22);
}

.hotel-price-range__slider .noUi-handle::before,
.hotel-price-range__slider .noUi-handle::after {
    display: none;
}

.show-data-box {
    background: linear-gradient(135deg, #f6f9fc, #eef4f9);
    border: 1px solid #e7edf3;
    border-radius: 16px;
    padding: 16px 18px;
}

.show-data-box-2 span {
    font-size: 13px;
    font-weight: 600;
    color: #5c7188;
}

.s-dropdown {
    width: 92px;
}

.s-dropdown-selected {
    background: white;
    border: 1px solid #dbe5ef;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary-950);
}

.s-dropdown-list {
    border-color: #dbe5ef;
    box-shadow: 0 14px 28px rgba(14, 55, 93, 0.12);
}

.result-hotel-card {
    padding: 0 16px;
    border: 1px solid #edf1f6;
    box-shadow: 0 12px 32px rgba(14, 55, 93, 0.08);
    border-radius: 20px;
}

.card-hotel-image {
    width: 100%;
    max-width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.hotel-name-box {
    padding: 18px 0 14px;
}

.hotel-title {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.card-hotel-details .hotel-address {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 14px;
}

.hotel-features {
    gap: 6px;
    margin-bottom: 14px;
}

.hotel-features span {
    background: #f3f6f9;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}

.hotel-policy {
    font-size: 13px;
    font-weight: 700;
}

.show-on-map {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
}

.star-rating-txt {
    margin-top: 18px;
    font-weight: 700;
}

.rating-nums {
    margin-left: 0;
    margin-top: 6px;
    line-height: 1.45;
}

.was-price {
    margin-top: 28px;
}

.current-price {
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.price-per-night,
.card-total-price,
.card-price-info {
    font-size: 12px;
    line-height: 1.5;
}

.callback-box {
    border: 1px solid #e8edf3;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(14, 55, 93, 0.06);
}

.hotel-results-filter-actions .btn {
    border-radius: 12px;
    font-weight: 700;
    padding: 11px 14px;
}

.hotel-results-pager-wrap {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.hotel-results-pager {
    gap: 8px;
}

.hotel-results-pager .page-item .page-link {
    border: 1px solid #dce5ef;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary-900);
    background: white;
    box-shadow: none;
}

.hotel-results-pager .page-item.active .page-link {
    background: var(--color-primary-700);
    border-color: var(--color-primary-700);
    color: white;
}

.hotel-results-pager .page-item.disabled .page-link {
    opacity: 0.45;
    pointer-events: none;
}

@media (max-width: 991px) {
    .card-hotel-image {
        height: 190px;
    }

    .result-hotel-card {
        padding: 0 14px;
    }
}

.searching-stage {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 180px);
    padding: 48px 0;
    background: #f0f4ff;
}

.searching-bg {
    position: fixed;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    animation: searching-drift var(--sd, 12s) ease-in-out infinite alternate;
    z-index: 0;
}

.searching-bg--one {
    width: 500px;
    height: 500px;
    top: -120px;
    left: -80px;
    background: #c7d7fe;
    opacity: 0.55;
    --sd: 13s;
}

.searching-bg--two {
    width: 380px;
    height: 380px;
    top: 5%;
    right: -60px;
    background: #fbc8e0;
    opacity: 0.45;
    --sd: 10s;
}

.searching-bg--three {
    width: 440px;
    height: 360px;
    bottom: -80px;
    left: 15%;
    background: #bae6fd;
    opacity: 0.5;
    --sd: 15s;
}

.searching-bg--four {
    width: 300px;
    height: 300px;
    right: 8%;
    bottom: 8%;
    background: #ddd6fe;
    opacity: 0.4;
    --sd: 11s;
}

.searching-waiting-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    max-width: 992px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 36px;
    box-shadow: 0 30px 70px rgba(99, 102, 241, 0.13), 0 8px 24px rgba(99, 102, 241, 0.09);
    animation: searching-card-appear 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.searching-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(240, 244, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.searching-modal-overlay.active {
    display: flex;
}

.searching-waiting-card--modal {
    max-width: 1024px;
    min-height: 620px;
}

.searching-waiting-card__title--modal {
    font-size: 2rem;
}

.searching-waiting-card__content {
    flex: 0 0 565px;
    padding: 2.4rem 2.2rem 2.2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-right: none;
    border-radius: 36px 0 0 36px;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
}

.searching-waiting-card__visual {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 0 36px 36px 0;
    background: linear-gradient(160deg, #dbeafe 0%, #ede9fe 50%, #fce7f3 100%);
}

.searching-waiting-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.searching-waiting-card__icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.searching-waiting-card__ring {
    position: absolute;
    border-radius: 50%;
    animation: searching-ring-breathe 2.6s ease-in-out infinite;
}

.searching-waiting-card__ring--outer {
    inset: -18px;
    background: rgba(165, 180, 252, 0.1);
    border: 1px solid rgba(165, 180, 252, 0.18);
    animation-delay: 0.8s;
}

.searching-waiting-card__ring--mid {
    inset: -9px;
    background: rgba(165, 180, 252, 0.14);
    border: 1px solid rgba(165, 180, 252, 0.28);
    animation-delay: 0.4s;
}

.searching-waiting-card__ring--inner {
    inset: 0;
    background: linear-gradient(145deg, #eef2ff, #f5f3ff);
    border: 1px solid rgba(165, 180, 252, 0.4);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.searching-waiting-card__icon-core {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 2rem;
    animation: searching-bob 3.5s ease-in-out infinite;
}

.searching-waiting-card__eyebrow {
    margin-bottom: 0.45rem;
    color: #78350f;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    animation: searching-fade-up 0.5s 0.2s both;
}

.searching-waiting-card__title {
    margin-bottom: 0.35rem;
    color: #451a03;
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1.1;
    animation: searching-fade-up 0.5s 0.25s both;
}

.searching-waiting-card__title em {
    font-style: italic;
    background: linear-gradient(135deg, #f69e0a, #fcbf23, #d87605);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.searching-waiting-card__tagline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 1.5rem;
    color: #93400d;
    font-size: 0.875rem;
    font-weight: 500;
    animation: searching-fade-up 0.5s 0.3s both;
}

.searching-waiting-card__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #8ecaf4;
}

.searching-trip-strip {
    display: flex;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(165, 180, 252, 0.25);
    border-radius: 18px;
    background: #f8faff;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.06);
    animation: searching-fade-up 0.5s 0.45s both;
}

.searching-trip-strip__cell {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.18rem;
    padding: 0.85rem 0.4rem;
    transition: background 0.2s ease;
}

.searching-trip-strip__cell:hover {
    background: rgba(99, 102, 241, 0.04);
}

.searching-trip-strip__cell + .searching-trip-strip__cell::before {
    content: "";
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 0;
    width: 1px;
    background: rgba(165, 180, 252, 0.3);
}

.searching-trip-strip__icon {
    color: #93400d;
    font-size: 1rem;
}

.searching-trip-strip__label {
    color: #d87605;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.searching-trip-strip__value {
    color: #78350f;
    font-size: 0.9rem;
    font-weight: 700;
}

.searching-trip-strip__meta {
    color: #78350f;
    font-size: 0.65rem;
    font-weight: 500;
}

.searching-steps {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
    text-align: left;
    animation: searching-fade-up 0.5s 0.55s both;
}

.searching-step {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.8rem;
    border: 1px solid transparent;
    border-radius: 13px;
    background: transparent;
    color: #94a3b8;
    font-size: 0.875rem;
    transition: all 0.4s ease;
}

.searching-step--done {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.searching-step--active {
    background: linear-gradient(135deg, #eef2ff, #fdf4ff);
    border-color: #c4b5fd;
    color: #4c1d95;
    box-shadow: 0 3px 12px rgba(139, 92, 246, 0.1);
}

.searching-step__icon {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
}

.searching-step__text {
    flex: 1;
}

.searching-step__status {
    margin-left: auto;
    color: #16a34a;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.searching-step__spinner {
    width: 12px;
    height: 12px;
    margin-left: auto;
    flex-shrink: 0;
    border: 2px solid #c4b5fd;
    border-top-color: #7c3aed;
    border-radius: 50%;
    animation: searching-spin 0.7s linear infinite;
}

.searching-progress-wrap {
    animation: searching-fade-up 0.5s 0.6s both;
}

.searching-progress-track {
    height: 5px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    border-radius: 8px;
    background: #fef3c7;
}

.searching-progress-fill {
    width: 0%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(90deg, #f69e0a, #fcbf23, #d87605, #f69e0a);
    background-size: 300% 100%;
    animation: searching-fill-prog 5.2s ease-out forwards, searching-shimmer-fill 2.5s linear infinite;
}

.searching-progress-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 500;
}

.searching-progress-label__blink {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ec4899;
    animation: searching-blink 1s ease-in-out infinite;
    flex-shrink: 0;
}

.searching-footer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.3rem;
    color: #78350f;
    font-size: 0.875rem;
    font-weight: 500;
    animation: searching-fade-up 0.5s 0.75s both;
}

.searching-footer-meta__sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #c7d2fe;
}

.searching-manual-link {
    margin-top: 0.9rem;
    color: #48617e;
    font-size: 0.85rem;
}

.searching-manual-link a {
    margin-left: 4px;
    color: #78350f;
    font-weight: 700;
    text-decoration: none;
}

.searching-manual-link a:hover {
    color: #d87605;
}

.searching-visual-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    color: #78350f;
    box-shadow: 0 8px 24px rgba(246, 158, 10, 0.12);
    animation: searching-badge-float var(--sb, 3s) ease-in-out infinite alternate;
}

.searching-visual-badge i {
    font-size: 1rem;
    color: #78350f;
}

.searching-visual-badge strong,
.searching-visual-badge span {
    display: block;
}

.searching-visual-badge strong {
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.25;
}

.searching-visual-badge span {
    color: #5b6680;
    font-size: 0.69rem;
    line-height: 1.25;
}

.searching-visual-badge--top {
    top: 24px;
    right: 24px;
    --sb: 3.4s;
}

.searching-visual-badge--middle {
    top: 44%;
    left: 18px;
    transform: translateY(-50%);
    --sb: 2.8s;
}

.searching-visual-badge--bottom {
    right: 18px;
    bottom: 24px;
    --sb: 3.1s;
}

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

    100% {
        transform: translate(25px, 35px) scale(1.07);
    }
}

@keyframes searching-card-appear {
    from {
        opacity: 0;
        transform: translateY(36px) scale(0.96);
    }

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

@keyframes searching-ring-breathe {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.04);
        opacity: 0.75;
    }
}

@keyframes searching-bob {
    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes searching-fade-up {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

@keyframes searching-badge-float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-7px);
    }
}

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

@keyframes searching-fill-prog {
    0% {
        width: 0%;
    }

    20% {
        width: 30%;
    }

    55% {
        width: 64%;
    }

    100% {
        width: 88%;
    }
}

@keyframes searching-shimmer-fill {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 300% 0;
    }
}

@keyframes searching-blink {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.75);
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}

@media (max-width: 991.98px) {
    .searching-stage {
        padding: 36px 0;
    }

    .searching-waiting-card {
        flex-direction: column;
        width: calc(100vw - 1.5rem);
        border-radius: 28px;
    }

    .searching-waiting-card__content {
        flex: none;
        border-right: 1px solid rgba(255, 255, 255, 0.9);
        border-bottom: none;
        border-radius: 28px 28px 0 0;
        padding: 2rem 1.4rem 1.8rem;
    }

    .searching-waiting-card__visual {
        height: 260px;
        border-radius: 0 0 28px 28px;
    }
}

@media (max-width: 575.98px) {
    .searching-trip-strip {
        flex-direction: column;
    }

    .searching-trip-strip__cell + .searching-trip-strip__cell::before {
        display: none;
    }

    .searching-visual-badge {
        padding: 0.45rem 0.75rem;
    }

    .searching-visual-badge--top {
        top: 16px;
        right: 16px;
    }

    .searching-visual-badge--middle {
        left: 12px;
    }

    .searching-visual-badge--bottom {
        right: 12px;
        bottom: 16px;
    }
}

@media (max-width: 767px) {
    .show-data-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .card-hotel-image {
        height: 200px;
    }

    .hotel-title {
        font-size: 20px;
    }

    .current-price {
        font-size: 24px;
    }
}

/* Override hotel name styling for deals carousel to make it more compact and avoid overlap */
h3.hotel-name {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin-top: 10px !important;
    margin-bottom: 8px !important;
    line-height: 1.35 !important;
    color: var(--black800) !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;
    }
}