/* ============================================
   BOOKING FLOW REDESIGN V2
   Phase 1.1 - Horizontal Search Bar
   ============================================ */

/* --- Layout: Hero banner with overlapping search bar (Figma page_19) --- */
/* .home-page .intro-bg::before{
    background:transparent !important;
} */

@media (min-width: 992px) {
.main-intro-bg{
         background-position: center -100px !important;
    }
}
    .v2-main-text{
        margin-top: 6rem !important;
    }
@media (min-width: 992px) {
    /* Mobile summary footer must stay hidden on desktop */
    .mobile-baggage-summary-footer { display: none !important; }
    /* Hero banner: fixed height, search bar breaks out below */
    .v2-layout .intro-bg {
        height: calc(85vh - 100px) !important;
        min-height: 450px !important;
        max-height: 750px;
        padding-bottom: 0 !important;
        overflow: visible !important;
        /* background-image: url("../images/Jetty-Banner-desktop2.jpg"); */
        background-image: url("../images/desktop-banner.png");
        background-size: cover;
        background-position: center;
    }
    .v2-layout .careers-intro {
        flex-direction: column !important;
        align-items: flex-start;
        justify-content: flex-start !important;
        height: 100%;
        padding-top: 1.5rem;
        padding-bottom: 0 !important;
        position: relative;
        overflow: visible;
        gap: 0 !important;
        padding-top: 8vh !important;
    }
    /* Booking panel: flex-pushed to hero bottom, grows downward */
    .v2-layout .box-panle-main {
        max-width: 100%;
        width: 100%;
        left: 0;
        position: relative !important;
        margin-top: auto;
        margin-bottom: -60px;
        z-index: 10;
        border-radius: 0 !important;
        overflow: visible;
        box-shadow: none !important;
        min-height: unset !important;
        padding-bottom: 0 !important;
        background: transparent !important;
        border: none !important;
    }
    .v2-layout .booking-panel-container {
        padding: 0;
        background: transparent;
    }
    /* Tab strip: narrower white background, centered above the search card */
    .v2-layout .nav-scroll-wrapper {
        background: #FFFFFF;
        width: fit-content;
        min-width: 580px;
        border-radius: 12px 12px 0 0;
        position: relative;
        z-index: 2;
        box-shadow: -4px -4px 12px rgba(0,0,0,0.06);
        margin-left: auto;
        margin-right: auto;
        white-space: nowrap;
    }
    /* Override old sp.css border-bottom & background on tab list */
    .v2-layout .booking-panel-container ul.nav-pills {
        border-bottom: none !important;
        background-color: transparent !important;
    }
    /* Search card: full-width white card with rounded corners and shadow */
    .v2-layout .booking-panel-container > div:last-child {
        background: #FFFFFF;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        position: relative;
        z-index: 1;
        min-height: 110px;
    }
    .v2-layout .booking-panel-container .tab-content {
        background: transparent;
    }
    .v2-layout .mobile-panel {
        display: none !important;
    }
    .v2-layout .left-panel {
        display: none !important;
    }
}

/* --- V2 Hero Banner Text (overlaid on hero image, left-aligned) --- */
.v2-hero-text {
    color: #FFFFFF;
    align-self: flex-start;
    padding: 0;
    z-index: 5;
    margin-top: 0.5rem;
}
.v2-hero-headline {
    font-size: 4.7rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 0.35rem;
    font-style: normal;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.v2-hero-subline {
    font-size: 2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 0.5rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.v2-hero-divider {
    display: none;
}
.v2-hero-islands {
    font-size: 1.3rem;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    padding-top: 0.8rem;
    display: inline-block;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .v2-hero-headline {
        font-size: 2.6rem;
    }
}
/* v2-hero-text now shown on all screen sizes */

/* Spacer below hero so content clears the overlapping booking bar */
.v2-hero-spacer {
    height: 80px;
}

/* --- Fix: collapse inactive tab panes so panel stays compact --- */
.v2-layout .tab-content > .tab-pane:not(.show) {
    display: none !important;
}
/* Hide old vertical form content inside all tabs */
.v2-layout .tab-pane .flightSubHeading {
    display: none !important;
}
/* Hide old desktop content in Flight Status tab (old dropdowns, old buttons) */
.v2-layout #pills-flightstatus > div:not(.v2-search-bar):not(.flightSubHeading):not(.v2-checkin-results) {
    display: none !important;
}

/* --- V2 Inline Input (used inside horizontal tab bars) --- */
.v2-inline-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 17px;
    font-weight: 700;
    color: #1A1A2E;
    width: 100%;
    padding: 0;
    min-height: 24px;
    line-height: 1.2;
}
.v2-inline-input::placeholder {
    color: #6B7280;
    font-weight: 400;
    font-size: 15px;
}
.v2-inline-input:focus {
    outline: none;
    box-shadow: none;
}

/* V2 tab bar - same styling as search bar for non-flights tabs */
.v2-tab-bar .v2-search-row {
    min-height: 68px;
}
.v2-tab-bar .v2-field-input {
    flex: 1;
}

/* --- V2 Flight Status date dropdown click handler --- */
.v2-fs-date-option {
    cursor: pointer;
    padding: 4px 12px;
}
.v2-fs-date-option:hover {
    background: #f9fafb;
}

/* --- Tab bar redesign (overrides old sp.css / style.css with !important) --- */
@media (min-width: 992px) {
    .v2-layout .nav-scroll-wrapper {
        margin-bottom: 0 !important;
        /* Tab strip background is set in the layout section above */
    }
    .v2-layout .nav-scroll-wrapper .nav-pills {
        justify-content: center;
        gap: 0.5rem;
        padding: 10px 20px 0;
        border-bottom: none !important;
    }
    .v2-layout .nav-scroll-wrapper .nav-link {
        font-size: 13px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #374151 !important;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        border-bottom: 3px solid transparent !important;
        border-radius: 0 !important;
        padding: 8px 20px 12px !important;
        transition: color 0.2s, border-color 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .v2-layout .nav-scroll-wrapper .nav-link img {
        width: 18px;
        height: 18px;
        opacity: 0.7;
        filter: none !important;
    }
    .v2-layout .nav-scroll-wrapper .nav-link:hover {
        color: #E31837 !important;
        background: transparent !important;
        background-color: transparent !important;
    }
    .v2-layout .nav-scroll-wrapper .nav-link.active {
        color: #E31837 !important;
        background: transparent !important;
        background-color: transparent !important;
        border-bottom-color: #E31837 !important;
    }
    .v2-layout .nav-scroll-wrapper .nav-link.active img {
        filter: brightness(0) saturate(100%) invert(18%) sepia(90%) saturate(5000%) hue-rotate(350deg) brightness(95%) contrast(90%) !important;
        opacity: 1;
    }
}

/* --- Horizontal Search Bar (Desktop Only) --- */
.v2-search-bar {
    display: block;
    /* padding: 12px 24px 16px; */
    padding: 30px;
}

.v2-search-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 76px;
    position: relative;
    padding: 4px 0;
}

/* Individual field — no border, sits inside the white card */
.v2-search-field {
    flex: 1;
    position: relative;
    min-width: 0;
}

.v2-field-from {
    flex: 1.3;
}
.v2-field-to {
    flex: 1.3;
}
.v2-field-passengers {
    flex: 1.3;
}
.v2-field-passengers .v2-value-text {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    line-height: 1.3;
}
.v2-field-departure {
    flex: 1.1;
}
.v2-field-return {
    flex: 1.2;
    opacity: 1;
}

/* Hint under the search bar while no return date is chosen (one-way) */
.v2-return-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 5px;
    padding-right: 8px;
    font-size: 12px;
    line-height: 1.4;
    color: #198754;
}
.v2-return-hint .fa {
    font-size: 14px;
    flex-shrink: 0;
}
.v2-return-hint[hidden] {
    display: none !important;
}

/* Field button (clickable area inside bordered container) */
.v2-field-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 12px 18px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.15s;
    border-radius: 11px;
    outline: none;
    box-shadow: none;
    min-height: 60px;
}
.v2-field-btn:hover {
    background-color: #fafafa;
}
.v2-field-btn:focus {
    outline: none;
    box-shadow: none;
}

/* Field label */
.v2-field-label {
    font-size: 13px;
    font-weight: 400;
    /* color: #6B7280; */
    color: #6A6971;
    margin-bottom: 4px;
    white-space: nowrap;
    text-transform: none;
    line-height: 1;
}

/* Field value row */
.v2-field-value {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 24px;
}
.v2-field-value .v2-city-name,
.v2-field-value .v2-value-text {
    font-size: 17px;
    font-weight: 600;
    color: #1A1A2E;
    overflow: hidden;
    /* text-overflow: ellipsis; */
    white-space: nowrap;
    line-height: 1.2;
    max-width:8rem;
}
.v2-field-value .v2-placeholder {
    font-size: 15px;
    font-weight: 400;
    color: #6B7280;
}

/* City name editable span */
.v2-city-name {
    font-size: 17px;
    font-weight: 700;
    color: #1A1A2E;
    outline: none;
    border: none;
    min-width: 40px;
    line-height: 1.2;
}
.v2-city-name:empty::before {
    content: attr(data-placeholder);
    color: #6B7280;
    font-weight: 400;
    font-size: 15px;
}

/* City code badge (red pill) */
.v2-city-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #E31837;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    min-width: 36px;
    height: 20px;
    line-height: 1;
}

/* Hide the airport code pill entirely when it has no text — prevents an empty
   red badge (or any reserved space) from showing after clearing/swapping cities.
   Uses :empty + !important and the .v2-field-* parents to outrank the mobile
   override at the bottom of this file (which sets display:block !important). */
.v2-city-code:empty,
.v2-field-from .v2-city-code:empty,
.v2-field-to .v2-city-code:empty {
    display: none !important;
}

/* Swap icon between From/To — circular bordered */
.v2-swap-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    flex-shrink: 0;
    cursor: pointer;
    z-index: 2;
    border: 1.5px solid #d7d7d7;
    border-radius: 50%;
    background: #fff;
    transition: border-color 0.2s, transform 0.15s;
    align-self: center;
}
.v2-swap-icon:hover {
    border-color: #D1D5DB;
    transform: rotate(180deg);
}
.v2-swap-icon img {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

/* Vertical dividers between fields */
.v2-divider {
    width: 1px;
    background: #d7d7d7;
    margin: 14px 0;
    flex-shrink: 0;
    align-self: stretch;
}

/* Return date promo text */
.v2-return-promo {
    color: #6B7280;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

/* Return date clear button (inline with label) */
.v2-return-clear {
    font-size: 14px;
    font-weight: 700;
    color: #9CA3AF;
    cursor: pointer;
    margin-left: 4px;
    padding: 0 4px;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
    vertical-align: middle;
}
.v2-return-clear:hover {
    color: #E31837;
    background: #fef2f2;
}

/* Search button (red circle) */
.v2-search-btn {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #E31837;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 8px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(227,24,55,0.3);
    align-self: center;
}
.v2-search-btn:hover {
    background: #c91530;
    transform: scale(1.05);
}
.v2-search-btn:active {
    transform: scale(0.97);
}
.v2-search-btn-disabled,
.v2-search-btn-disabled:hover {
    background: #9CA3AF;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}
/* Search button text — hidden on desktop */
.v2-search-btn-text {
    display: none;
}

/* --- Dropdown overrides inside v2 search bar --- */
.v2-search-field.dropdown .dropdown-menu {
    min-width: 320px;
    border-radius: 12px;
    margin-top: 4px;
    /* Force all search field dropdowns to open downward */
    inset: auto !important;
    transform: none !important;
    top: 100% !important;
    left: 0 !important;
}
.v2-search-field.dropdown .dropdown-toggle::after {
    display: none;
}

/* Passenger dropdown inside search bar */
.v2-field-passengers .dropdown-menu {
    min-width: 340px;
    padding: 0;
}
.v2-field-passengers .passenger-selector {
    padding: 16px 20px;
}
.v2-field-passengers .passenger-selector .passenger-item {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}
.v2-field-passengers .passenger-selector .passenger-item:last-child {
    border-bottom: none;
}

/* V2 Passenger counter buttons (red circle outline) */
.v2-qty-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #E31837;
    background: transparent;
    color: #E31837;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s, opacity 0.15s;
    padding: 0;
    line-height: 1;
}
.v2-qty-btn:hover:not(:disabled) {
    background: rgba(227, 24, 55, 0.06);
}
.v2-qty-btn:disabled {
    border-color: #D1D5DB;
    color: #6B7280;
    background: #d7d7d7;
    cursor: not-allowed;
}
.v2-qty-count {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A2E;
    min-width: 28px;
    text-align: center;
}

/* Departure field needs relative for calendar popup */
.v2-search-field.v2-field-departure {
    position: relative;
    overflow: visible !important;
}

/* Date picker container — floating popup inside departure field */
.date-picker-container {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 200;
    width: 420px !important;
    min-width: 420px !important;
}
.date-picker-container .calendar-wrapper {
    position: relative !important;
    background: #FFFFFF;
    width: 420px !important;
    min-width: 420px !important;
}
/* Hide the triangle pointer */
.date-picker-container .triangle-pointer {
    display: none !important;
}

/* Date input hidden but functional */
.v2-date-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* ============================================
   Phase 1.2 - Airport Selector Component
   ============================================ */

/* Airport dropdown container */
.v2-search-field .dropdown-menu.v2-airport-dropdown {
    width: fit-content !important;
    min-width: 260px;
    max-height: 420px;
    overflow-y: auto;
    padding: 12px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    /* Force dropdown to always open downward, below the search card */
    inset: auto !important;
    transform: none !important;
    top: 100% !important;
    left: 0 !important;
    margin-top: 4px !important;
}

/* Dropdown header */
.v2-airport-dropdown .v2-airport-header {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A2E;
    padding: 8px 12px 12px;
    margin: 0;
}

/* Search input inside dropdown */
.v2-airport-dropdown .v2-airport-search {
    width: 100%;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    padding: 10px 14px 10px 36px;
    font-size: 14px;
    color: #1A1A2E;
    outline: none;
    margin-bottom: 8px;
    background: #F9FAFB url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239CA3AF' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242.156a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E") no-repeat 12px center;
    transition: border-color 0.2s;
}
.v2-airport-dropdown .v2-airport-search:focus {
    border-color: #E31837;
    background-color: #fff;
}
.v2-airport-dropdown .v2-airport-search::placeholder {
    color: #6B7280;
}

/* Airport list container */
.v2-airport-dropdown .v2-airport-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Airport item (card-based) — override .booking-panel-container li { text-align:center } from sp.css */
.v2-airport-item {
    display: flex !important;
    align-items: center !important;
    text-align: left !important;
    gap: 4px !important;
    padding: 8px 12px !important;
    border-radius: 10px !important;
    cursor: pointer;
    transition: background-color 0.15s;
    margin-bottom: 2px !important;
}
.v2-airport-item:hover {
    background-color: #FDE8E8 !important;
}
.v2-airport-item.v2-airport-selected {
    background-color: #FDE8E8 !important;
}

/* Wave icon */
.v2-airport-icon {
    width: 22px !important;
    height: 22px !important;
    flex-shrink: 0 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    line-height: 1 !important;
}

/* Airport text block */
.v2-airport-info {
    flex: 1;
    min-width: 0;
}
.v2-airport-name {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A2E;
    line-height: 1.3;
}
.v2-airport-code-line {
    font-size: 14px;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.4;
}

/* No results inside dropdown */
.v2-airport-dropdown .v2-no-results {
    text-align: center;
    padding: 24px 16px;
}
.v2-airport-dropdown .v2-no-results .v2-no-results-title {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A2E;
    margin-bottom: 4px;
}
.v2-airport-dropdown .v2-no-results .v2-no-results-sub {
    font-size: 14px;
    color: #6B7280;
}

/* Override scrollable-content inside v2 dropdown */
.v2-airport-dropdown .scrollable-content {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 0 !important;
    padding: 0;
}
.v2-airport-dropdown .scrollable-content::-webkit-scrollbar {
    width: 4px;
}
.v2-airport-dropdown .scrollable-content::-webkit-scrollbar-track {
    background: transparent;
}
.v2-airport-dropdown .scrollable-content::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 2px;
}

/* ============================================
   Phase 1.3 - Passenger Count Picker
   ============================================ */

/* Passenger dropdown container */
.v2-passenger-dropdown {
    min-width: 300px !important;
    padding: 18px 24px !important;
    border-radius: 12px !important;
    border: none !important;
}

/* Header */
.v2-passenger-header {
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

/* Passenger list */
.v2-passenger-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Each passenger row */
.v2-passenger-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Label block */
.v2-passenger-label {
    flex: 1;
}
.v2-passenger-title {
    font-size: 15px;
    font-weight: 600;
    color: #1A1A2E;
    display: flex;
    align-items: center;
    gap: 6px;
}
.v2-passenger-age {
    font-size: 12px;
    font-weight: 400;
    color: #6B7280;
    margin-top: 1px;
}

/* MAX badge */
.v2-max-badge {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    color: #E31837;
    background: #FDE8E8;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Controls */
.v2-passenger-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* --- Hide old desktop form, show new --- */
@media (min-width: 992px) {
    .v2-layout .old-desktop-form {
        display: none !important;
    }
}

/* --- Responsive: Below 992px use existing mobile form --- */
/* v2-search-bar now shown on all screen sizes — responsive styles below */
@media (max-width: 991px) {
    /* Let hero expand to fit search form on mobile */
    .v2-layout .intro-bg {
        height: auto !important;
        min-height: unset !important;
        max-height: none !important;
        overflow: visible !important;
        padding-bottom: 16px !important;
        /* background-image: url("../images/Jetty-Banner-ipad2.jpg") !important; */
        background-image: url("../images/mobile-banner.jpg") !important;
        background-size: cover !important;
        background-position: center !important;
    }
    /* Override sp.css red debug background */
    .v2-layout .box-panle-main {
        background-color: transparent !important;
        background: transparent !important;
        min-height: unset !important;
        position: relative !important;
        left: 0 !important;
        max-width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        padding-bottom: 0 !important;
    }
    .v2-layout .booking-panel-container > div:last-child {
        background: #FFFFFF;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    }
    /* Remove gap between tabs and form */
    .v2-layout .nav-scroll-wrapper {
        margin-bottom: 0 !important;
        border-radius: 12px 12px 0 0;
    }
    .v2-layout .booking-panel-container > div:last-child {
        border-radius: 0 0 12px 12px;
    }
    .v2-layout .booking-panel-container {
        padding-top: 0 !important;
    }
    .v2-search-bar {
        padding: 12px;
    }
    .v2-search-bar .v2-search-row {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        gap: 8px;
    }
    /* Row 1: From + Swap + To */
    .v2-search-bar .v2-field-from  { grid-column: 1; }
    .v2-search-bar .v2-swap-icon   { grid-column: 2; align-self: center; }
    .v2-search-bar .v2-field-to    { grid-column: 3;  display: flex !important;
    justify-content: flex-end !important; }
    .v2-field-to input,
.v2-field-to .v2-field-btn,
.v2-field-to .form-control {
    display: block !important;
    align-items: self-end !important;
}
    /* Row 2: Passengers (left half) + Departure Date (right half) */
    .v2-search-bar .v2-field-passengers { grid-column: 1 / 3; }
    .v2-search-bar .v2-field-departure  { grid-column: 3 / 4; }
    /* Row 3: Return Date + Search button in same row */
    .v2-search-bar .v2-field-return { grid-column: 1 / 3; }
    .v2-search-bar .v2-search-btn {
        grid-column: 3 / 4;
        width: 100%;
        border-radius: 20px;
        gap: 6px;
        font-size: 16px;
        min-width: unset;
        height: auto;
        min-height: 42px;
        margin-left: 0;
    }
    .v2-search-bar .v2-search-btn .v2-search-btn-text {
        display: inline;
        font-size: 14px;
        font-weight: 600;
    }
    /* Hide dividers on mobile */
    .v2-search-bar .v2-divider { display: none; }

    /* Return date hint: left-aligned under the Return + Search row, wraps on small phones */
    .v2-search-bar .v2-return-hint {
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 8px;
        padding: 0 4px;
        font-size: 12.5px;
        text-align: left;
    }
    .v2-search-bar .v2-return-hint .fa {
        font-size: 15px;
        margin-top: 1px;
    }

    /* Tab bars (Check-in, Manage Booking, Flight Status) — stack vertically on mobile */
    .v2-tab-bar .v2-search-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    .v2-tab-bar .v2-search-field {
        width: 100% !important;
    }
    .v2-tab-bar .v2-swap-icon {
        align-self: center;
        /* transform: rotate(90deg); */
    }
    /* Flight Status tab: From + To side by side with swap */
    .v2-tab-bar .v2-field-from,
    .v2-tab-bar .v2-field-to {
        flex: 1;
    }
    #pills-flightstatus .v2-tab-bar .v2-search-row {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        gap: 8px !important;
    }
    #pills-flightstatus .v2-tab-bar .v2-field-from { grid-column: 1; grid-row: 1; }
    #pills-flightstatus .v2-tab-bar .v2-swap-icon { grid-column: 2; grid-row: 1; align-self: center; }
    #pills-flightstatus .v2-tab-bar .v2-field-to { grid-column: 3; grid-row: 1; }
    #pills-flightstatus .v2-tab-bar .v2-field-departure { grid-column: 1 / 2; grid-row: 2; justify-self: start; }
    #pills-flightstatus .v2-tab-bar .v2-field-input { grid-column: 3 / 4; grid-row: 2; justify-self: end; text-align: right; }
    #pills-flightstatus .v2-tab-bar .v2-search-btn {
        grid-column: 1 / -1;
        grid-row: 3;
        width: 100%;
        border-radius: 20px;
        min-width: unset;
        height: auto;
        min-height: 42px;
        margin-left: 0;
    }
    /* Check-in & Manage Booking: simple stack */
    .v2-tab-bar .v2-search-btn {
        width: 100% !important;
        border-radius: 20px !important;
        min-width: unset !important;
        height: auto !important;
        min-height: 42px !important;
        margin-left: 0 !important;
        gap: 6px;
    }
    .v2-tab-bar .v2-search-btn .v2-search-btn-text {
        display: inline;
        font-size: 14px;
        font-weight: 600;
    }
    /* Calendar: keep below departure field, expand leftward to fit screen */
    .v2-search-bar .v2-field-departure {
        position: relative;
    }
    @media (max-width: 991px){
     .v2-field-departure .v2-field-btn , .v2-field-departure  .v2-field-value{
display: block !important;
text-align: right !important;
    }
    #v2FsDateDrop, #v2FsDateDrop .v2-field-value{
        text-align:left !important;
    }
     #pills-flightstatus .v2-tab-bar #v2FsFromDrop .v2-field-label {
text-align: left !important;
    }
    #pills-flightstatus .v2-tab-bar .v2-field-btn .v2-field-label, #pills-flightstatus .v2-tab-bar .v2-inline-input {
text-align: right !important;
    }
   
}
  
    .v2-search-bar .date-picker-container {
        left: auto !important;
        right: 0 !important;
        width: calc(100vw - 40px) !important;
        min-width: unset !important;
    }
    .v2-search-bar .date-picker-container .calendar-wrapper,
    .v2-search-bar .calendar-wrapper {
        width: 100% !important;
        min-width: unset !important;
    }
    /* Compact field buttons on mobile */
    .v2-search-bar .v2-field-btn {
        min-height: 48px;
        padding: 6px 10px;
    }
    .v2-search-bar .v2-field-label {
        font-size: 10px;
    }
    .v2-search-bar .v2-city-name {
        font-size: 14px;
    }
    .v2-hero-text {
        padding: 16px;
    }
    .v2-hero-headline {
        font-size: 1.8rem;
    }
    .v2-hero-subline {
        font-size: 0.9rem;
    }
    .v2-hero-spacer {
        height: 40px !important;
    }
    .nav-scroll-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    /* Override sp.css color: white on mobile */
    .v2-layout .box-panle-main,
    .v2-layout .box-panle-main .btn {
        color: inherit !important;
    }
    /* Tab strip on mobile */
    .v2-layout .nav-scroll-wrapper {
        background: #FFFFFF;
        border-radius: 12px 12px 0 0;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.06);
    }
    .v2-layout .nav-scroll-wrapper .nav-pills {
        justify-content: center;
        gap: 0;
        padding: 8px 8px 0;
        border-bottom: none !important;
        background-color: transparent !important;
        flex-wrap: nowrap;
    }
    .v2-layout .nav-scroll-wrapper .nav-link {
        font-size: 11px;
        font-weight: 500;
        text-transform: uppercase;
        color: #374151 !important;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        border-bottom: 3px solid transparent !important;
        border-radius: 0 !important;
        padding: 6px 10px 10px !important;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        white-space: nowrap;
    }
    .v2-layout .nav-scroll-wrapper .nav-link img {
        width: 16px;
        height: 16px;
        opacity: 0.7;
    }
    .v2-layout .nav-scroll-wrapper .nav-link.active {
        color: #E31837 !important;
        background: transparent !important;
        background-color: transparent !important;
        border-bottom-color: #E31837 !important;
    }
    .v2-layout .nav-scroll-wrapper .nav-link.active img {
        filter: brightness(0) saturate(100%) invert(18%) sepia(90%) saturate(5000%) hue-rotate(350deg) brightness(95%) contrast(90%) !important;
        opacity: 1;
    }
    /* Hide old mobile panel & left panel */
    .v2-layout .mobile-panel,
    .v2-layout .left-panel {
        display: none !important;
    }
    /* Collapse inactive tab panes on mobile too */
    .v2-layout .tab-content > .tab-pane:not(.show) {
        display: none !important;
    }
    /* Push booking modal downward so it sits half on the hero image,
       with its bottom landing just above the "Exclusive Island Stays" heading. */
    .v2-layout .intro-bg {
        padding-bottom: 0 !important;
    }
    .v2-layout .box-panle-main {
        margin-bottom: -130px !important;
    }
    .promo-partners-section {
        padding-top: 110px !important;
    }
}
/* @media (max-width: 576px) {
 .v2-layout .main-intro-bg {
        height: 250px !important;
        background-position: center -30px !important;
        margin-bottom: 5rem !important;

    }
     .v2-layout .main-careers-box {
        padding-top:8rem !important;
        
    }
} */
 @media (max-width: 375px) {
 .v2-layout .main-intro-bg {
     /* height:calc(46vh - 100px) !important;  */
        height: 220px !important;
        background-position: center -30px !important;
        margin-bottom: 5rem !important;

    }
     .v2-layout .main-careers-box {
        padding-top:6rem !important;
        
    }
}
@media (min-width: 376px) and (max-width: 767px) {
     .v2-layout .main-intro-bg {
     /* height:calc(50vh - 100px) !important; */
        height: 220px !important;
        background-position: center -30px !important;
        margin-bottom: 7rem !important;

    }
     .v2-layout .main-careers-box {
        padding-top:7.6rem !important;
        
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .v2-layout .main-intro-bg {
        background-position: center -60px !important;

        height: 440px !important;
        min-height: unset !important;
        max-height: none !important;
        overflow: visible !important;
        padding-bottom: 16px !important;
        background-image: url("../images/mobile-banner.jpg") !important;
        background-size: cover !important;
        margin-bottom: 5rem !important;
       
    
    }
    .v2-layout .main-careers-box {
        padding-top:25rem !important;
    }

}
@media (min-width: 1024px) and (max-width: 1280px) {
.v2-layout .main-intro-bg {
        background-position: center -70px !important;

        height: 345px !important;
        min-height: unset !important;
        max-height: none !important;
        overflow: visible !important;
        padding-bottom: 0px !important;
        background-image: url("../images/desktop-banner.png") !important;
        background-size: cover !important;
        margin-bottom: 5rem !important;
       
    
    }
    .v2-layout .main-careers-box {
        padding-top:21rem !important;
    }
}
@media (min-width: 1281px) and (max-width: 1599px) {
    .v2-layout .intro-bg {
        height: 450px !important;
        min-height: 450px !important;
        max-height: 750px;
        padding-bottom: 0 !important;
        overflow: visible !important;
        /* background-image: url(../images/Jetty-Banner-desktop2.jpg); */
        background-image: url(../images/desktop-banner.png);
        background-size: cover;
        background-position: center;
    }
    .v2-layout .main-careers-box {
        padding-top:15rem !important;
    }
}

/* ============================================
   Phase 1.4 - Fare Calendar (Price Calendar)
   ============================================ */

/* Calendar wrapper override inside v2 search bar */
.v2-search-bar .calendar-wrapper {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    transform: none;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    padding: 14px 16px;
    margin-top: 8px;
    z-index: 100;
    background: #FFFFFF;
    flex-direction: column !important;
    max-width: 420px;
}

/* Passenger info pill */
.v2-cal-passenger-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #D1D5DB;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    margin: 0 auto 10px;
    width: fit-content;
}
.v2-search-bar .calendar-wrapper .v2-cal-passenger-pill {
    display: flex;
    justify-content: center;
}

/* Single month calendar in V2 */
.v2-search-bar .calendar {
    display: block;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

/* Calendar header */
.v2-search-bar .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.v2-search-bar .calendar-header span {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A2E;
}
.v2-search-bar .calendar-header button {
    width: 28px;
    height: 28px;
    border: 1px solid #D1D5DB;
    border-radius: 50%;
    background: #fff;
    color: #6B7280;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s;
    box-shadow: none;
}
.v2-search-bar .calendar-header button:hover {
    background-color: #F3F4F6;
}

/* Calendar grid */
.v2-search-bar .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.v2-search-bar .calendar-grid div {
    width: auto;
    height: auto;
    min-height: 44px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3px 2px;
    font-size: 12px;
    cursor: pointer;
}
.v2-search-bar .calendar-grid .day-name {
    min-height: 24px;
    font-size: 11px;
    font-weight: 700;
    color: #6B7280;
    cursor: default;
    border-radius: 0;
}

/* V2 date cell inner elements */
.v2-day-num {
    font-size: 13px;
    font-weight: 700;
    color: #1A1A2E;
    line-height: 1.2;
}
.v2-day-price {
    font-size: 10px;
    font-weight: 500;
    line-height: 1.1;
}
.v2-day-price.v2-price-normal {
    color: #16A34A;
}
.v2-day-price.v2-price-na {
    color: #6B7280;
}
.v2-day-price.v2-price-loading {
    color: #D1D5DB;
    font-style: italic;
}
.v2-day-price.v2-price-lowseats {
    color: #6B7280;
}

/* Low-seats dates — greyed out, non-clickable, tooltip on hover */
.v2-search-bar .calendar-grid .date.v2-lowseats {
    background: #F3F4F6;
    opacity: 0.7;
    cursor: default;
    position: relative;
}
.v2-search-bar .calendar-grid .date.v2-lowseats .v2-day-num {
    color: #6B7280;
}
.v2-search-bar .calendar-grid .date.v2-lowseats:hover {
    opacity: 1;
}
.v2-search-bar .calendar-grid .date.v2-lowseats[data-v2-tip]:hover::after {
    content: attr(data-v2-tip);
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    background: #1F2937;
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 50;
    pointer-events: none;
}

/* Disabled dates */
.v2-search-bar .calendar-grid .date.disabled {
    color: #D1D5DB;
    cursor: not-allowed;
    text-decoration: none;
}
.v2-search-bar .calendar-grid .date.disabled .v2-day-num {
    color: #D1D5DB;
}

/* Selected (start) date */
.v2-search-bar .calendar-grid .date.selected,
.v2-search-bar .calendar-grid .date.start-date.selected {
    border: 2px solid #FF9800;
    background: #ff98003b;
    border-radius: 8px;
}
.v2-search-bar .calendar-grid .date.selected .v2-day-price,
.v2-search-bar .calendar-grid .date.start-date.selected .v2-day-price {
    color: #16A34A !important;
}
.v2-search-bar .calendar-grid .date.end-date.selected .v2-day-price {
    color: #16A34A !important;
}

/* End date in roundtrip */
.v2-search-bar .calendar-grid .date.end-date.selected {
    border: 2px solid #FF9800;
    background: #ff98003b;
    border-radius: 8px;
}

/* Hover on date */
.v2-search-bar .calendar-grid .date:not(.disabled):hover {
    background: #ff98003b;
    color: #1A1A2E;
    border-radius: 8px;
}

/* In-range dates */
.v2-search-bar .calendar-grid .date.in-range,
.v2-search-bar .calendar-grid .date.hover-in-range {
    background: #FEF2F2;
    color: #1A1A2E;
    border-radius: 0;
}
.v2-search-bar .calendar-grid .date.start-date {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.v2-search-bar .calendar-grid .date.end-date {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Legend */
.v2-cal-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #d7d7d7;
}
.v2-cal-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #374151;
}
.v2-cal-legend-note {
    color: #6B7280;
    font-style: italic;
}

/* Hide triangle pointer in V2 */
.v2-search-bar .triangle-pointer {
    display: none !important;
}

/* ============================================
   Phase 1.5 - Inline Flight Result Card
   ============================================ */

/* Result container — sits in normal document flow below hero */
.v2-flight-result {
    margin-top: 12px;
    padding: 0 4px;
    border: none !important;
    background: transparent !important;
}
.v2-flight-result.accordion-item {
    border: none !important;
    background: transparent !important;
}

/* Card wrapper */
.v2-flight-card {
    background: #F3F4F6 !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    overflow: visible;
    /* border: none !important; */
    border: 1px solid #DCDCDC
    /* border-left: 4px solid #E31837 !important; */
}
/* Collapse detail section inside v2 flight card */
.v2-flight-result .accordion-collapse.card {
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background: #FFFFFF !important;
    border-radius: 0 0 12px 12px !important;
}

/* Loading state */
.v2-flight-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px 24px;
    font-size: 15px;
    color: #6B7280;
}
.v2-flight-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #d7d7d7;
    border-top-color: #E31837;
    border-radius: 50%;
    animation: v2spin 0.7s linear infinite;
}
@keyframes v2spin {
    to { transform: rotate(360deg); }
}

/* Empty state */
.v2-flight-empty {
    text-align: center;
    padding: 40px 24px;
}
.v2-empty-icon {
    font-size: 36px;
    margin-bottom: 8px;
    opacity: 0.5;
}
.v2-empty-title {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 4px;
}
.v2-empty-sub {
    font-size: 14px;
    color: #6B7280;
}

/* Flight content - horizontal flex layout */
.v2-flight-content {
    display: flex;
    align-items: center;
        padding: 5px 20px 14px 20px;
    /* padding: 14px 20px; */
    gap: 24px;
}

/* Departure / Arrival sections */
.v2-fc-departure,
.v2-fc-arrival {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    min-width: 80px;
}
.v2-fc-label {
    font-size: 13px;
    font-weight: 400;
    color: #6B7280;
    margin-bottom: 4px;
}
.v2-fc-time {
    font-size: 28px;
    font-weight: 600;
    color: #1A1A2E;
    line-height: 1.2;
}

/* Center flight info */
.v2-fc-center {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 25rem;
    position: relative;
}
.v2-fc-line-container {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0;
}
.v2-fc-line {
    flex: 1;
    height: 2px;
    background: #D1D5DB;
}
.v2-fc-flight-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D1D5DB;
    border-radius: 14px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #1A1A2E;
    background: #fff;
    white-space: nowrap;
    flex-shrink: 0;
}
.v2-fc-duration {
    font-size: 14px;
    font-weight: 600;
    color: #E31837;
    margin-top: 6px;
}
.v2-fc-route {
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    color: #6B7280;
    margin-top: 2px;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 4px;
}
/* Inline route dropdown arrow */
.v2-fc-route-toggle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0;
    font-size: 9px;
    color: #6B7280;
    transition: transform 0.2s;
}
.v2-fc-route-toggle::after {
    display: none !important;
}
.v2-fc-route.v2-open .v2-fc-route-toggle i {
    transform: rotate(180deg);
}
.v2-fc-route-toggle i {
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}
.v2-route-clickable {
    cursor: pointer;
}
#passengersDropdown{
    background-image: none !important;
}

/* Price & action section — [pax+price stacked] + Continue side by side */
.v2-fc-action {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 125px;
    /* flex-shrink: 0; */
    margin-left: auto;
}
.v2-fc-price-block {
    display: flex;
    flex-direction: column;
}
.v2-fc-pax-label {
    font-size: 10px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.v2-fc-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
}
.v2-fc-price {
    font-size: 28px;
    font-weight: 600;
    color: #1A1A2E;
    line-height: 1.2;
    white-space: nowrap;
}
.v2-fc-continue-btn {
    background: #E31837;
    box-shadow: 0px 4px 6px -4px #0E093033;


    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 12px 40px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    white-space: nowrap;
}
.v2-fc-continue-btn:hover {
    background: #c91530;
    box-shadow: 0px 10px 15px -3px #0E093033;
    transform: scale(1.03);
}
.v2-fc-continue-btn:active {
    transform: scale(0.97);
}
.v2-fc-continue-btn:disabled {
    background: #D1D5DB;
    cursor: not-allowed;
    transform: none;
}

/* Round-trip: journey label on flight cards */
.v2-fc-journey-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0a8f3f;
    /* color: #6B7280; */
    padding: 8px 16px 0;
}

/* Round-trip: "Select Outbound" / "Select Return" button (same style as continue but slightly smaller) */
.v2-fc-select-btn {
    background: #E31837;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    white-space: nowrap;
}
.v2-fc-select-btn:hover {
    background: #c91530;
    transform: scale(1.03);
}
.v2-fc-select-btn:disabled {
    background: #16A34A;
    cursor: default;
    transform: none;
}
#v2-return-display{
    overflow: visible !important;
}
/* Round-trip: selected card gets a green border */
.v2-flight-card.v2-flight-selected {
    border: 2px solid #16A34A;
    opacity: 0.85;
}

/* Round-trip: combined bar at the bottom */
.v2-both-selected-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F9FAFB;
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    padding: 12px 20px;
    margin-top: 8px;
}
.v2-combined-summary {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
}
.v2-combined-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #6B7280;
    font-weight: 600;
}
.v2-combined-price {
    font-size: 28px;
    font-weight: 600;
    color: #0a8f3f;
}
.v2-combined-value-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.v2-fc-info-icon {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.v2-fc-info-icon svg { width: 18px; height: 18px; }
.v2-fc-price-popup {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    padding: 16px;
    min-width: 240px;
    z-index: 300;
}
.v2-fc-popup-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px;
}
.v2-fc-popup-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
}
.v2-fc-popup-label { font-size: 13px; color: #6B7280; }
.v2-fc-popup-value { font-size: 13px; font-weight: 600; color: #111827; }
.v2-fc-popup-divider {
    height: 1px;
    background: #E5E7EB;
    margin: 8px 0;
}
.v2-fc-popup-total .v2-fc-popup-label,
.v2-fc-popup-total .v2-fc-popup-value {
    font-weight: 700;
    color: #111827;
    font-size: 14px;
}

/* Round-trip: spacing between cards */
.v2-flight-result .v2-flight-card + .v2-flight-card {
    margin-top: 8px;
}

/* ============================================
   Flight list — ALL flights, selectable cards
   ============================================ */
/* Each journey (Departure / Return) is its own clearly bounded panel */
.v2-flight-list {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 4px 12px 14px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.05);
}
#v2-return-section.v2-flight-list {
    background: #FAFCFE;
}
/* Section header (DEPARTURE / RETURN FLIGHT) with direction icon + divider */
.v2-fc-journey-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #0a8f3f;
    padding: 12px 4px;
    margin-bottom: 8px;
    border-bottom: 1px solid #EEF0F2;
}
.v2-fc-journey-label::before {
    content: "\2708";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(10, 143, 63, 0.12);
    font-size: 12px;
    line-height: 1;
    transform: rotate(-45deg);
}
/* Return leg — distinct blue accent + "landing" icon */
#v2-return-section .v2-fc-journey-label {
    color: #1D6FE0;
}
#v2-return-section .v2-fc-journey-label::before {
    background: rgba(29, 111, 224, 0.12);
    transform: rotate(45deg) scaleX(-1);
}
.v2-flight-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/* Each selectable flight card */
.v2-selectable-card {
    background: #FFFFFF !important;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.v2-selectable-card:hover {
    border-color: #E31837 !important;
}
.v2-selectable-card.v2-card-selected {
    border: 2px solid #E31837 !important;
    box-shadow: 0 2px 10px -4px rgba(227, 24, 55, 0.35);
}
/* Price + radio action area inside a selectable card */
.v2-sel-action {
    gap: 20px !important;
}
/* Radio selector (right side of each card) */
.v2-fc-radio {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #C4C4C4;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.15s;
}
.v2-selectable-card:hover .v2-fc-radio {
    border-color: #E31837;
}
.v2-fc-radio.checked {
    border-color: #E31837;
}
.v2-fc-radio.checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E31837;
    transform: translate(-50%, -50%);
}

/* Summary: journey label in flight cards */
.v2-sf-journey-label {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #16A34A;
    margin-bottom: 2px;
}
.v2-summary-flights .v2-sf-card + .v2-sf-card {
    margin-top: 12px;
}

/* Multi-leg route section — floating popup */
.v2-flight-legs {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    margin-top: 8px;
    padding: 0;
}
.v2-legs-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 500;
    color: #E31837;
    cursor: pointer;
    transition: opacity 0.15s;
}
/* Override Bootstrap accordion-button defaults on the v2 toggle */
.v2-legs-toggle.accordion-button {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    color: #E31837 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 12px 0 !important;
    justify-content: center !important;
}
.v2-legs-toggle.accordion-button::after {
    display: none !important;
}
.v2-legs-toggle.accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
}
.v2-legs-toggle:hover {
    opacity: 0.8;
}
.v2-legs-toggle.v2-legs-open i {
    transform: rotate(180deg);
}
.v2-legs-toggle i {
    font-size: 11px;
    transition: transform 0.2s;
}

/* Legs container — popup card */
.v2-legs-container {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    min-width: 420px;
    white-space: nowrap;
}

/* Individual leg row */
.v2-leg-row {
    display: flex;
    align-items: center;
    padding: 16px 0;
    gap: 16px;
}
.v2-leg-row + .v2-leg-row {
    border-top: 1px dashed #d7d7d7;
}

/* Journey header (Outbound / Return) */
.v2-leg-journey-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 6px;
}
.v2-leg-journey-label {
    font-size: 15px;
    font-weight: 800;
    color: #16A34A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.v2-leg-journey-date {
    font-size: 14px;
    color: #16A34A;
    font-weight: 700;
}
.v2-leg-journey-divider {
    height: 1px;
    background: #1A1A2E;
    margin: 12px 0;
    opacity: 0.15;
}

/* Leg departure/arrival */
.v2-leg-dep,
.v2-leg-arr {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}
.v2-leg-dep .v2-leg-label,
.v2-leg-arr .v2-leg-label {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 2px;
}
.v2-leg-dep .v2-leg-time,
.v2-leg-arr .v2-leg-time {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A2E;
}

/* Leg center info */
.v2-leg-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.v2-leg-line-container {
    display: flex;
    align-items: center;
    width: 100%;
}
.v2-leg-line {
    flex: 1;
    height: 1px;
    background: #D1D5DB;
}
.v2-leg-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid #D1D5DB;
    border-radius: 12px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #1A1A2E;
    background: #fff;
    white-space: nowrap;
    flex-shrink: 0;
}
.v2-leg-duration {
    font-size: 12px;
    font-weight: 600;
    color: #E31837;
    margin-top: 4px;
}
.v2-leg-route {
    font-size: 10px;
    color: #6B7280;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ============================================
   Phase 2 - Passenger Details Page Redesign
   ============================================ */

/* Hide old stepper in V2 booking mode */
.v2-booking .v2-old-stepper {
    display: none !important;
}

/* V2 3-Step Stepper */
.v2-stepper-wrapper {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #d7d7d7;
}
.v2-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
}
.v2-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
    min-width: 100px;
}
.v2-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    transition: all 0.3s;
}
.v2-step-active .v2-step-circle {
    background: #10B981;
    color: #fff;
    border: 2px solid #10B981;
}
.v2-step-completed .v2-step-circle {
    background: #10B981;
    color: #fff;
    border: 2px solid #10B981;
}
.v2-step-pending .v2-step-circle {
    background: #fff;
    color: #6B7280;
    border: 2px solid #D1D5DB;
}
.v2-step-label {
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    white-space: nowrap;
}
.v2-step-active .v2-step-label {
    color: #10B981;
    font-weight: 600;
}
.v2-step-completed .v2-step-label {
    color: #10B981;
}
.v2-step-pending .v2-step-label {
    color: #6B7280;
}

/* Step connecting line */
.v2-step-line {
    position: absolute;
    top: 18px;
    left: calc(50% + 22px);
    width: 80px;
    height: 2px;
    z-index: 1;
}
.v2-line-completed {
    background: #10B981;
}
.v2-line-pending {
    background: #D1D5DB;
}

/* Hide old sidebar trip summary in V2 */
.v2-booking .col-lg-3.d-none.d-lg-block {
    display: none !important;
}
/* Make passenger form full-width in V2 */
.v2-booking .col-lg-9 {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    float: none;
}

/* V2 form card styling */
.v2-booking .card {
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: none;
    padding: 28px 32px;
}

/* V2 form title */
.v2-booking .card h4.bold {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A2E;
}

/* V2 form labels */
.v2-booking .font-xsm.semibold {
    font-size: 12px;
    color: #6B7280;
    font-weight: 500;
}

/* V2 form inputs */
.v2-booking .form-control,
.v2-booking .form-select {
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: #1A1A2E;
    transition: border-color 0.2s;
}
.v2-booking .form-control:focus,
.v2-booking .form-select:focus {
      border-color: #d7d7d7 !important;
      box-shadow: none !important;
    /* border-color: #E31837;
    box-shadow: 0 0 0 3px rgba(227, 24, 55, 0.08); */
}

/* V2 accordion passenger items */
.v2-booking .accordion-item {
    border: 1px solid #d7d7d7;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 12px;
}
.v2-booking .accordion-button {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A2E;
    background: #FAFAFA;
    padding: 16px 20px;
    border-radius: 12px;
}
.v2-booking .accordion-button:not(.collapsed) {
    background: #FAFAFA;
    color: #1A1A2E;
    box-shadow: none;
}
.v2-booking .accordion-button:focus {
    box-shadow: none;
}
.v2-booking .accordion-button img {
    width: 28px;
    height: 28px;
    margin-right: 4px;
}

/* V2 hide baggage section inside passenger form (Phase 3 will have separate) */
.v2-booking .baggage {
    display: none !important;
}
.v2-booking .additional-baggage-btn,
.v2-booking .add-baggage-btn {
    display: none !important;
}
.v2-booking .d-flex.justify-content-start.gap-2.mt-2.align-items-start {
    display: none !important;
}

/* V2 "Next" button inside accordion */
.v2-booking .btn-next {
    background: #E31837;
    border: none;
    border-radius: 24px;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: background-color 0.2s;
}
.v2-booking .btn-next:hover {
    background: #c91530;
}

/* V2 checkbox */
.v2-booking .custom-checkbox:checked {
    background-color: #10B981;
    border-color: #10B981;
}

/* ============================================
   V2 Bottom Sticky Bar
   ============================================ */
.v2-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FBF0E4;
    border-top: 2px solid #E8D5Be;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}
/* Left group: the 3 data sections side by side, no dividers */
.v2-sticky-sections {
    display: flex;
    align-items: center;
    gap: 48px;
    flex: 1;
}
.v2-sticky-section {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.v2-sticky-label {
    font-size: 10px;
    font-weight: 700;
    color: #1A1A2E;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.v2-sticky-value-row {
    display: flex;
    align-items: center;
    gap: 6px;
}
.v2-sticky-value {
    font-size: 18px;
    font-weight: 700;
    color: #166534;
    white-space: nowrap;
    line-height: 1.2;
}
.v2-sticky-info-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
}
.v2-sticky-info-icon svg {
    width: 16px;
    height: 16px;
}
/* Right group: Back + Proceed buttons */
.v2-sticky-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.v2-sticky-btn-back {
    background: transparent;
    color: #E31837;
    border: 2px solid #E31837;
    border-radius: 50px;
    padding: 11px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
}
.v2-sticky-btn-back:hover {
    background: rgba(227,24,55,0.06);
}
.v2-sticky-btn {
    background: #E31837;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 13px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s, transform 0.1s;
}
.v2-sticky-btn:hover {
    background: #c91530;
    transform: scale(1.02);
}
.v2-sticky-btn:active {
    transform: scale(0.98);
}

/* iPad: prevent sticky bar button clipping */
@media (min-width: 992px) and (max-width: 1199px) {
    .v2-sticky-bar {
        padding: 0 16px;
    }
    .v2-sticky-sections {
        gap: 20px;
    }
    .v2-sticky-btn {
        padding: 11px 20px;
        font-size: 14px;
    }
    .v2-sticky-btn-back {
        padding: 9px 18px;
        font-size: 14px;
    }
}

/* ---- GST popup on sticky bar ---- */
.v2-sticky-gst-section {
    align-self: center;
}
.v2-sticky-gst-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.v2-sticky-gst-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #E31837;
    cursor: pointer;
}
.v2-sticky-gst-label {
    font-size: 13px;
    font-weight: 600;
    color: #1A1A2E;
    white-space: nowrap;
}
.bd-gst-popup {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    z-index: 1001;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    padding: 20px 24px 16px;
    min-width: 320px;
    width: 340px;
}
.bd-gst-popup-title {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 0 0 14px;
}
.bd-gst-popup-field {
    margin-bottom: 12px;
}
.bd-gst-popup-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.bd-gst-popup-input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
/* .bd-gst-popup-input:focus {
    border-color: #E67E22;
} */
.v2-sticky-gst-err {
    display: block;
    color: #E31837;
    font-size: 11px;
    margin-top: 3px;
}
.bd-gst-popup-note {
    font-size: 12px;
    color: #92400E;
    margin-top: 4px;
}
.bd-gst-hover-trigger {
    position: relative;
    display: inline-block;
    margin-left: 2px;
    cursor: pointer;
    font-size: 15px;
    color: #E67E22;
    vertical-align: middle;
}
.bd-gst-hover-tip {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    padding: 10px 14px;
    border-radius: 8px;
    white-space: nowrap;
    z-index: 1100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    pointer-events: none;
}
.bd-gst-hover-tip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1e293b;
}
.bd-gst-hover-trigger:hover .bd-gst-hover-tip {
    display: block;
}

/* Hide old Continue button in sidebar when V2 bar is present */
.v2-booking .btn-secondary.white-text.w-100 {
    display: none;
}

/* Add bottom padding to page content so sticky bar doesn't overlap */
.v2-booking .container.d-none.d-lg-block {
    padding-bottom: 90px;
}

/* V2 step section centering */
.v2-step-section {
    max-width: 100%;
    margin: 0 auto;
    float: none;
}

/* ============================================
   Phase 3 - Baggage Selection Step
   ============================================ */

.v2-free-text {
    color: #10B981;
    font-weight: 600;
    font-style: italic;
}

/* Per-passenger baggage block */
.v2-bag-passenger {
    margin-bottom: 28px;
}
.v2-bag-passenger:last-child {
    margin-bottom: 0;
}

/* Passenger header */
.v2-bag-pax-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #f5f5f5;
    border-radius: 12px;
    justify-content: space-between;
}
.v2-bag-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1A1A2E;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}
.v2-bag-profile {
    display: flex;
    align-items: center;
}

.v2-bag-pax-info {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.v2-bag-pax-name {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A2E;
    display: block;
}
.v2-bag-pax-type {
    font-size: 15px;
    color: #10B981;
    font-weight: 500;
    margin-left: 0;
    display: block;
}
.v2-bag-pax-dropdown-icon {
    display: flex;
    align-items: center;
}
.v2-bag-pax-selection {
    margin-left: auto;
    font-size: 15px;
    font-weight: 600;
    color: #10B981;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ECFDF5;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1.5px solid #A7F3D0;
    margin-right: 10px;
}
.v2-bag-sel-icon {
    font-size: 18px;
}

/* Thick divider line below passenger header */
.v2-bag-pax-divider {
    height: 4px;
    /* background: #E5245B; */
    border-radius: 2px;
    margin: 0 0 20px 0;
}

/* Savings banner */
.v2-bag-savings {
    background: #FEF3C7;
    border: 1px solid #FDE68A;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 0;
    font-size: 13px;
    color: #92400E;
    line-height: 1.5;
}
.v2-bag-savings-amt {
    background: #FDE68A;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Suitcase + right column row */
.v2-bag-content-row {
    display: flex;
    gap: 32px;
    align-items: stretch;
    margin-bottom: 20px;
}
.v2-bag-suitcase {
    flex-shrink: 0;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v2-bag-suitcase-wrap {
    background: #FFF5F7 url('/assets/images/bag-background.svg') no-repeat center center;
    background-size: contain;
    border-radius: 16px;
    padding: 47px 70px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.v2-bag-right {
    flex: 1;
    max-width: calc(100% - 302px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.v2-bag-suitcase svg {
    width: 100%;
    height: 242px;
    margin-left: -1.8rem;
}
.v2-bag-fill {
    transition: y 0.4s ease, height 0.4s ease;
    opacity: 0.8;
}

/* Baggage tier cards column */
.v2-bag-tiers {
    display: flex;
    gap: 16px;
    flex: 1;
}

/* Individual tier card */
.v2-bag-card {
    flex: 1;
    border: 1px solid #d7d7d7;
    border-radius: 16px;
    padding: 24px;
    background: #FFFFFF;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
    display: flex;
    flex-direction: column;
}
.v2-bag-card:hover {
    border-color: #D1D5DB;
}
.v2-bag-card.v2-bag-selected {
    border: 2px solid #10B981;
    background: #ECFDF5;
}

/* Radio indicator (top-right) */
.v2-bag-radio {
    position: absolute;
    top: 28px;
    right: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #D1D5DB;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.v2-bag-selected .v2-bag-radio {
    border-color: #10B981;
    background: #10B981;
    color: #fff;
}
.v2-bag-radio::after {
    content: '';
}
.v2-bag-selected .v2-bag-radio::after {
    content: '\2713';
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

/* Most Popular tag — top-right corner ribbon */
.v2-bag-card { position: relative; overflow: hidden; }
.v2-bag-popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: #16A34A;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 0 12px 0 8px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    line-height: 1;
    z-index: 1;
}

/* Card content */
.v2-bag-weight {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 6px;
}
.v2-bag-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 10px;
}
.v2-bag-desc {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 18px;
}

/* Price badge */
.v2-bag-price {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-radius: 16px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
}
.v2-bag-price-free {
    border: 1.5px solid #10B981;
    color: #10B981;
    background: transparent;
}
.v2-bag-selected .v2-bag-price-free {
    background: #A7F3D0;
}
.v2-bag-price-paid {
    border: 1.5px solid #F59E0B;
    color: #F59E0B;
    background: transparent;
}
.v2-bag-selected .v2-bag-price-paid {
    border-color: #10B981;
    color: #10B981;
    background: #A7F3D0;
}

/* Island tip / notice */
.v2-bag-notice {
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    color: #6B7280;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}
.v2-bag-notice-island {
    background: #FFF1EE;
    border: 1px solid #FDDDD6;
}
.v2-bag-island-heading {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 4px;
}
.v2-bag-notice-island strong {
    color: #1A1A2E;
    font-size: 13px;
}
.v2-bag-notice-island span{
 font-size: 13px;   
}
.v2-bag-notice-icon {
    font-size: 40px !important;
    flex-shrink: 0;
}

/* Baggage passenger accordion */
.v2-bag-accordion-toggle {
    cursor: pointer;
}
.v2-bag-accordion-arrow {
    margin-left: auto;
    font-size: 14px;
    color: #6B7280;
    transition: transform 0.25s ease;
    padding-left: 12px;
}
.v2-bag-accordion-open > .v2-bag-accordion-toggle .v2-bag-accordion-arrow {
    transform: rotate(180deg);
}

/* Gentle pulse animation for closed passenger accordions to remind user */
@keyframes v2BagPulse {
    0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.45); }
    70%  { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.v2-bag-passenger:not(.v2-bag-visited) .v2-bag-pax-selection.v2-bag-nudge {
    animation: v2BagPulse 1.8s ease-in-out infinite;
}
/* Stop animation once passenger accordion has been opened */
.v2-bag-passenger.v2-bag-visited .v2-bag-pax-selection.v2-bag-nudge {
    animation: none;
}

/* Baggage journey tabs (round-trip) */
.v2-bag-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.v2-bag-tab {
    flex: 1;
    max-width: 50%;
    padding: 14px 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #6B7280;
    background: #F3F4F6;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.v2-bag-tab:hover {
    color: #1A1A2E;
    background: #E8F5E9;
    border-color: #4CAF50;
}
.v2-bag-tab.v2-bag-tab-active {
    color: #fff;
    background: #2E7D32;
    border-color: #2E7D32;
    box-shadow: 0 2px 8px rgba(46,125,50,.35);
}
.v2-bag-tab-content {
    display: none;
}
.v2-bag-tab-content.v2-bag-tab-visible {
    display: block;
}

/* ============================================
   Phase 4 - Trip Summary Step
   ============================================ */

/* Section header + Modify button */
.v2-ss-section { margin-bottom: 24px; }
.v2-ss-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.v2-ss-title {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A2E;
}
.v2-ss-modify-btn {
    border: 1.5px solid #E31837;
    background: transparent;
    color: #E31837;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 28px;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.2s;
}
.v2-ss-modify-btn:hover {
    background: #FEF2F2;
}

/* Bordered box for flight info & payment */
.v2-ss-box {
    border: 1px solid #d7d7d7;
    border-radius: 16px;
    padding: 24px;
}

.v2-ss-box .v2-sf-card {
    padding-bottom: 14px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}
.v2-ss-box .v2-sf-card:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

/* Flight info card (single combined card) */
.v2-sf-card { }
.v2-sf-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 17px;
}

.v2-sf-airline {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A2E;
}
.v2-sf-flightno {
    font-size: 15px;
    color: #6B7280;
    margin-top: 2px;
}
.v2-sf-date {
    font-size: 13px;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 6px;
}
.v2-sf-times {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.v2-sf-endpoint {
    flex-shrink: 0;
}
.v2-sf-right { text-align: right; }
.v2-sf-time {
    font-size: 29px;
    font-weight: 600;
    color: #1A1A2E;
    line-height: 1;
    margin-bottom: 4px;
}
.v2-sf-code {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A2E;
}
.v2-sf-name {
    font-size: 14px;
    color: #6B7280;
}
.v2-sf-middle {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 16px 0;
}
.v2-sf-line {
    width: 100%;
    height: 2px;
    background: #D1D5DB;
    margin-bottom: -15px;
}
.v2-sf-dur {
    font-size: 14px;
    font-weight: 700;
    color: #E31837;
    background: #F9FAFB;
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    padding: 2px 12px;
    margin-bottom: 4px;
}
.v2-sf-route {
    font-size: 13px;
    color: #6B7280;
}

/* Payment details rows */
.v2-sp-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 16px;
}
.v2-sp-label {
    color: #1A1A2E;
    font-weight: 600;
}
.v2-sp-amount {
    color: #1A1A2E;
    font-weight: 600;
}
.v2-sp-total {
    border-top: 2px solid #1A1A2E;
    margin-top: 8px;
    padding-top: 14px;
    font-size: 18px;
    font-weight: 700;
}
.v2-sp-total .v2-sp-label,
.v2-sp-total .v2-sp-amount {
    font-weight: 800;
}
/* Summary price breakdown popup (i icon) */
.v2-sp-info-icon {
    display: inline-block;
    margin-left: 6px;
}
.v2-sp-breakdown {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 12px;
}
.v2-sp-bd-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #374151;
    padding: 4px 0;
}
.v2-sp-bd-divider {
    border-top: 1px solid #D1D5DB;
    margin: 8px 0;
}
.v2-sp-bd-total {
    font-weight: 700;
    font-size: 15px;
    color: #1A1A2E;
}

/* === Passenger & Baggage Detail cards (Summary step) === */
.v2-spd-heading {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 20px;
}
.v2-spd-card {
    border: 1px solid #d7d7d7;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
}
.v2-spd-bar {
    background: #F3F4F6;
    padding: 14px 24px;
    font-size: 18px;
    font-weight: 700;
    color: #1A1A2E;
    text-transform: capitalize;
}
.v2-spd-bar-type {
    font-size: 13px;
    font-weight: 500;
    color: #6B7280;
}
.v2-spd-body {
    padding: 20px 24px;
}
.v2-spd-fields {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
    padding-bottom: 16px;
}
.v2-spd-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.v2-spd-field .v2-spd-icon {
    background: #F1F5F9;
    padding: 12px;
    border-radius: 5px;
}
.v2-spd-icon {
    font-size: 20px;
    color: #6B7280;
    margin-top: 2px;

}
.v2-spd-label {
    display: block;
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 2px;
}
.v2-spd-value {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #1A1A2E;
}
@media (max-width: 991px) {
    .v2-spd-value {
    font-size: 15px;
}
}
.v2-spd-edit {
    margin-left: auto;
    flex-shrink: 0;
    border: none;
    background: none;
    color: #E31837;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}
.v2-spd-edit:hover {
    text-decoration: underline;
}
/* Inline edit form */
.v2-spd-edit-form {
    padding: 20px 24px;
}
.v2-spd-edit-grid {
    display: grid;
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex-wrap: wrap;
}
.v2-spd-edit-field {
    flex: 0 0 auto;
}
.v2-spd-edit-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
    margin-bottom: 4px;
}
.v2-spd-edit-field-wide {
    flex: 1 1 180px;
}
.v2-spd-input {
    width: 100%;
    padding: 8px 12px;
    border: 1.5px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    color: #1A1A2E;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.v2-spd-input:focus {
    border-color: #16A34A;
}
select.v2-spd-input {
    appearance: auto;
}
.v2-spd-edit-actions {
    display: flex;
    gap: 10px;
    margin-top: 0;
    align-items: flex-end;
}
.v2-spd-save-btn {
    background: #16A34A;
    color: #fff;
    border: none;
    padding: 8px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}
.v2-spd-save-btn:hover { background: #15803D; }
.v2-spd-cancel-btn {
    background: none;
    color: #6B7280;
    border: 1.5px solid #D1D5DB;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.v2-spd-cancel-btn:hover { border-color: #9CA3AF; color: #374151; }
.v2-spd-bag-row {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    padding-top: 16px;
    flex-wrap: wrap;
    border-top: 1px solid #d7d7d7;
}

/* Highlight animation for Edit navigation */
@keyframes v2HighlightPulse {
    0%   { box-shadow: 0 0 0 0 rgba(227, 24, 55, 0.4); }
    40%  { box-shadow: 0 0 0 12px rgba(227, 24, 55, 0.15); }
    100% { box-shadow: 0 0 0 0 rgba(227, 24, 55, 0); }
}
.v2-pax-highlight {
    animation: v2HighlightPulse 1s ease-out 2;
    border-color: #E31837 !important;
    transition: border-color 0.3s;
}

/* ============================================
   Phase 5 - Modify Modals & Edit Icons
   ============================================ */

/* Sticky bar edit icons */
.v2-sticky-edit {
    font-size: 11px;
    color: #10B981;
    cursor: pointer;
    margin-left: 4px;
    transition: color 0.15s;
}
.v2-sticky-edit:hover {
    color: #059669;
}

/* Modal overlay */
.v2-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: v2FadeIn 0.2s ease;
}
@keyframes v2FadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modal container */
.v2-modal {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    width: 480px;
    max-width: 90vw;
    padding: 24px 28px;
    animation: v2SlideUp 0.25s ease;
}
@keyframes v2SlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.v2-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.v2-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 0;
}
.v2-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #6B7280;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
.v2-modal-close:hover {
    color: #6B7280;
}
.v2-modal-divider {
    height: 1px;
    background: #d7d7d7;
    margin-bottom: 20px;
}
.v2-modal-body {
    margin-bottom: 24px;
}

/* Modal field groups */
.v2-modal-field-group {
    margin-bottom: 20px;
}
.v2-modal-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.v2-modal-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 16px;
    color: #1A1A2E;
    background: #FFFFFF;
    outline: none;
    transition: border-color 0.15s;
}
.v2-modal-input:focus {
    border-color: #E31837;
}

/* Quick select date pills */
.v2-modal-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.v2-modal-pill {
    padding: 10px 20px;
    border: 1px solid #D1D5DB;
    border-radius: 24px;
    background: #FFFFFF;
    color: #374151;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}
.v2-modal-pill:hover {
    border-color: #E31837;
    color: #E31837;
}
.v2-modal-pill.v2-pill-active {
    border-color: #E31837;
    background: #FEF2F2;
    color: #E31837;
    font-weight: 600;
}

/* Modal action buttons */
.v2-modal-actions {
    display: flex;
    gap: 12px;
}
.v2-modal-btn-cancel {
    flex: 1;
    padding: 14px;
    border: 1px solid #D1D5DB;
    border-radius: 28px;
    background: #FFFFFF;
    color: #374151;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}
.v2-modal-btn-cancel:hover {
    background: #F9FAFB;
    border-color: #6B7280;
}
.v2-modal-btn-primary {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 28px;
    background: #E31837;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
}
.v2-modal-btn-primary:hover {
    background: #C81530;
}

/* Passengers modal - counter card */
.v2-modal-pax-card {
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    padding: 16px 20px;
}
.v2-modal-pax-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.v2-modal-pax-row + .v2-modal-pax-row {
    border-top: 1px solid #F3F4F6;
}
.v2-modal-pax-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.v2-modal-pax-name {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A2E;
}
.v2-modal-pax-sub {
    font-size: 13px;
    color: #6B7280;
}
.v2-modal-pax-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #E31837;
    background: #FEF2F2;
    padding: 2px 8px;
    border-radius: 10px;
    width: fit-content;
}
.v2-modal-pax-counter {
    display: flex;
    align-items: center;
    gap: 16px;
}
.v2-modal-pax-minus,
.v2-modal-pax-plus {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #D1D5DB;
    background: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    padding: 0;
}
.v2-modal-pax-minus:hover,
.v2-modal-pax-plus:hover {
    border-color: #E31837;
    color: #E31837;
}
.v2-modal-pax-minus:disabled,
.v2-modal-pax-plus:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.v2-modal-pax-count {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A2E;
    min-width: 24px;
    text-align: center;
}
.v2-modal-pax-total {
    text-align: center;
    padding-top: 14px;
    border-top: 1px solid #d7d7d7;
    margin-top: 4px;
    font-size: 15px;
    color: #6B7280;
}
.v2-modal-pax-total strong {
    color: #1A1A2E;
}

/* ============================================
   Phase 6 - Payment Page Redesign
   ============================================ */

/* Hide old stepper & content on payment page */
.v2-payment .v2-old-stepper { display: none !important; }

/* Page heading */
.v2-pay-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 28px 0 20px;
}

/* Card base */
.v2-pay-card {
    background: #FFFFFF;
    border: 1px solid #d7d7d7;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
}
.v2-pay-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 0 0 16px;
}

/* Flight details */
.v2-pay-flight-row {
    padding-bottom: 12px;
}
.v2-pay-flight-row-border {
    border-bottom: 1px solid #F3F4F6;
    margin-bottom: 12px;
}
.v2-pay-flight-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.v2-pay-flight-badge {
    background: #FEF2F2;
    color: #E31837;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 16px;
}
.v2-pay-flight-date {
    font-size: 14px;
    color: #6B7280;
}
.v2-pay-flight-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.v2-pay-flight-end {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}
.v2-pay-flight-time {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A2E;
}
.v2-pay-flight-city {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A2E;
}
.v2-pay-flight-cityname {
    font-size: 12px;
    color: #6B7280;
}
.v2-pay-flight-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.v2-pay-flight-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #D1D5DB 0%, #E31837 50%, #D1D5DB 100%);
    border-radius: 1px;
}
.v2-pay-flight-duration {
    font-size: 13px;
    color: #6B7280;
}

/* Contact info */
.v2-pay-contact-name {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A2E;
    margin-bottom: 12px;
}
.v2-pay-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
}
.v2-pay-contact-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.v2-pay-contact-label {
    font-size: 12px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.v2-pay-contact-value {
    font-size: 14px;
    font-weight: 500;
    color: #1A1A2E;
}

/* Travellers list */
.v2-pay-pax-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.v2-pay-pax-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #F3F4F6;
}
.v2-pay-pax-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.v2-pay-pax-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #10B981;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}
.v2-pay-pax-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.v2-pay-pax-name {
    font-size: 15px;
    font-weight: 600;
    color: #1A1A2E;
}
.v2-pay-pax-infant-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #E31837;
    background: #FEF2F2;
    padding: 1px 8px;
    border-radius: 10px;
    margin-left: 8px;
}
.v2-pay-pax-bag {
    font-size: 13px;
    color: #6B7280;
}
.v2-pay-pax-bag i {
    margin-right: 4px;
}

/* Payment options */
.v2-pay-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.v2-pay-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.15s;
}
.v2-pay-option:hover {
    border-color: #E31837;
}
.v2-pay-option input[type="radio"] {
    display: none;
}
.v2-pay-option-radio {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #D1D5DB;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.15s;
    position: relative;
}
.v2-pay-option input[type="radio"]:checked ~ .v2-pay-option-radio {
    border-color: #E31837;
}
.v2-pay-option input[type="radio"]:checked ~ .v2-pay-option-radio::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #E31837;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
}
.v2-pay-option input[type="radio"]:checked ~ .v2-pay-option-label {
    color: #E31837;
}
.v2-pay-option-label {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A2E;
    display: block;
}
.v2-pay-option-desc {
    font-size: 13px;
    color: #6B7280;
    display: block;
    margin-top: 2px;
}

/* Fare summary sidebar */
.v2-pay-summary-card {
    background: #FFFFFF;
    border: 1px solid #d7d7d7;
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 20px;
}
.v2-pay-summary-title {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 0 0 4px;
}
.v2-pay-summary-hint {
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 16px;
}
.v2-pay-summary-flight-block {
    border-bottom: 1px solid #F3F4F6;
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.v2-pay-summary-route {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #E31837;
    margin-bottom: 4px;
}
.v2-pay-summary-route-amt {
    color: #1A1A2E;
    font-weight: 700;
}
.v2-pay-summary-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 10px;
}
.v2-pay-summary-fares {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.v2-pay-summary-fare-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #6B7280;
}
.v2-pay-summary-fare-row span:last-child {
    font-weight: 500;
    color: #1A1A2E;
}
.v2-pay-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: #1A1A2E;
    padding-top: 12px;
    border-top: 2px solid #1A1A2E;
    margin-top: 12px;
}
.v2-pay-summary-tax-note {
    font-size: 11px;
    color: #6B7280;
    margin-top: 2px;
    margin-bottom: 20px;
}

/* Pay buttons */
.v2-pay-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 28px;
    background: #E31837;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
    margin-bottom: 10px;
}
.v2-pay-btn:hover {
    background: #C81530;
}
.v2-pay-btn-secondary {
    background: #FFFFFF;
    color: #374151;
    border: 1px solid #D1D5DB;
}
.v2-pay-btn-secondary:hover {
    background: #F9FAFB;
    border-color: #6B7280;
}

/* Stepper reuse on payment page */
.v2-payment .v2-stepper-wrapper {
    display: block;
}

/* Popups anchored to their section — absolute so they sit above it */
.v2-sticky-bar {
    overflow: visible !important;
}
.bd-popup-anchor {
    position: relative;
}
/* Flight legs popup — anchored to JOURNEY section */
.bd-legs-popup {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    z-index: 1001;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    padding: 8px 0;
    min-width: 360px;
    max-width: 520px;
}

/* =============================================
   Booking Detail Hero (Location Pages)
   ============================================= */
.bd-detail-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    padding-bottom: 100px; /* leaves room for stepper to pull up into */
    background-position: center;
    background-size: cover;
}
.bd-hero-content {
    padding: 50px 0 20px;
    text-align: center;
}
.bd-hero-label-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}
.bd-hero-rule {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: rgba(255,255,255,0.6);
    display: block;
}
.bd-hero-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
}
.bd-hero-headline {
    font-size: 3.5rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.bd-hero-headline em {
    font-style: italic;
    font-weight: 700;
    display: block;
    font-size: 4rem;
}
/* ── Panel wrapper: pulls the whole block up over the hero ── */
#booking-detail-panel .bd-panel-wrapper {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}
/* ── Stepper card: narrow, flat bottom — mirrors homepage tabs card ── */
#booking-detail-panel .bd-stepper-card {
    background: #fff;
    width: fit-content;
    min-width: 520px;
    border-radius: 14px 14px 0 0;
    box-shadow: -4px -4px 12px rgba(0,0,0,0.06);
    margin: 0 auto;
    padding: 12px 36px;
    position: relative;
    z-index: 2;
    border-bottom: none;
}
/* ── Form card: not full-width, gaps on both sides — mirrors homepage search card ── */
#booking-detail-panel .bd-form-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: calc(100% - 40px);
}
/* ── Form body: padding inside the form card ── */
#booking-detail-panel .bd-form-body {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 24px 32px 0px;
    margin-top: 0;
    max-width: 1400px;
}
@media (max-width: 1200px) {
    .bd-detail-hero { min-height: 320px; }
    .bd-hero-headline { font-size: 2.8rem; }
    .bd-hero-headline em { font-size: 3.2rem; }
}
@media (max-width: 991px) {
    .bd-detail-hero { min-height: 240px; padding-bottom: 40px; }
    .bd-hero-headline { font-size: 2.2rem; }
    .bd-hero-headline em { font-size: 2.6rem; }

    /* Booking detail panel: no hero overlap on mobile */
    #booking-detail-panel .bd-panel-wrapper {
        margin-top: 0;
    }
    /* Stepper: shrink for mobile */
    #booking-detail-panel .bd-stepper-card {
        min-width: unset;
        width: 100%;
        border-radius: 0;
        padding: 10px 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    #booking-detail-panel .v2-stepper {
        gap: 0;
        width: 100%;
        justify-content: center;
    }
    #booking-detail-panel .v2-step {
        gap: 4px;
        flex: 0 1 auto;
    }
    #booking-detail-panel .v2-step-label {
        font-size: 0.75rem;
        font-weight: 600;
    }
    #booking-detail-panel .v2-step-circle {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    #booking-detail-panel .v2-step-active .v2-step-circle {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    #booking-detail-panel .v2-step-line {
        min-width: 0;
        width: auto;
        flex: 1 1 30px;
        margin: 0 2px;
    }
    /* Hide desktop passenger section on mobile (mobile has its own UI) */
    #bd-step-passengers {
        display: none !important;
    }
    /* Sticky bar: compact on mobile */
    .v2-sticky-bar {
        padding: 0 12px;
        min-height: 56px;
    }
    .v2-sticky-sections {
        display: none !important;
    }
    .v2-sticky-actions {
        width: 100%;
        justify-content: space-between;
    }
    /* Mobile floating bar: ensure fixed positioning wins over Bootstrap .card */
    .fixed-bottom-bar-mobile {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1051 !important;
    }
    /* Mobile journey section inside price modal */
    .mobile-journey-section .v2-legs-container {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 12px;
    }
    .mobile-journey-section .v2-leg-row {
        gap: 8px;
    }
    .mobile-journey-section .v2-leg-center {
        min-width: 0;
        flex: 1;
    }
    .mobile-journey-section .v2-leg-route {
        font-size: 10px;
    }
    /* Baggage section: stack vertically, hide suitcase SVG */
    .v2-bag-content-row {
        flex-direction: column;
        gap: 16px;
    }
    .v2-bag-suitcase {
        display: none;
    }
    .v2-bag-right {
        max-width: 100%;
    }
    .v2-bag-tiers {
        flex-direction: column;
        gap: 12px;
    }
    .v2-bag-card {
        padding: 16px;
    }
    .v2-bag-savings {
        font-size: 0.85rem;
    }
    .v2-bag-notice {
        font-size: 0.85rem;
    }
    /* Form card: reduce padding on mobile */
    .bd-form-card {
        padding: 0;
    }
    .bd-form-body {
        margin-top: 25px !important;
        padding: 0 12px !important;
    }
    /* Ensure baggage/summary sections have proper padding */
    #v2-step-baggage {
        padding-bottom: 130px;
    }
    #v2-step-summary {
        padding-bottom: 140px;
        padding-left: 0;
        padding-right: 0;
    }
    .v2-spd-fields {
        gap: 16px;
        padding-bottom: 16px;
    }
    .v2-spd-body {
        padding: 15px;
    }
}
@media (max-width: 576px) {
    .bd-detail-hero { min-height: 180px; }
    .bd-hero-headline { font-size: 1.8rem; }
    .bd-hero-headline em { font-size: 2rem; }
}

/* Price breakdown popup — anchored to TOTAL AMOUNT section */
.bd-price-popup {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    z-index: 1001;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    padding: 24px 28px 20px;
    min-width: 320px;
    max-width: 420px;
}
.bd-price-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A1A2E;
    margin: 0 0 20px 0;
}
.bd-price-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.bd-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.bd-price-label {
    font-size: 0.95rem;
    color: #6B7280;
    font-weight: 400;
}
.bd-price-value {
    font-size: 0.95rem;
    color: #1A1A2E;
    font-weight: 400;
    text-align: right;
    white-space: nowrap;
}
.bd-price-divider {
    border: none;
    border-top: 1px solid #d7d7d7;
    margin: 16px 0;
}
.bd-price-total .bd-price-label {
    font-size: 0.95rem;
    color: #6B7280;
    font-weight: 400;
}
.bd-price-total .bd-price-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A1A2E;
}

/* ── Stepper: inline horizontal layout (circle + label on same line) ── */
#booking-detail-panel .v2-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    max-width: 100%;
}
#booking-detail-panel .v2-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    min-width: unset;
    position: static;
}
/* Reorder: circle → label → line */
#booking-detail-panel .v2-step-circle { order: 1; }
#booking-detail-panel .v2-step-label  { order: 2; margin-top: 0; }
#booking-detail-panel .v2-step-line   { order: 3; }

/* Connecting line: static, horizontal, flexible width */
#booking-detail-panel .v2-step-line {
    position: static;
    display: inline-block;
    width: 80px;
    height: 2px;
    top: unset;
    left: unset;
    background: #E5245B;
    margin: 0 10px;
    flex-shrink: 0;
}
#booking-detail-panel .v2-line-pending,
#booking-detail-panel .v2-line-completed {
    background: #10B981;
}

/* Circle: smaller */
#booking-detail-panel .v2-step-circle {
    width: 26px;
    height: 26px;
    font-size: 12px;
    flex-shrink: 0;
}
/* Label: compact, inline */
#booking-detail-panel .v2-step-label {
    font-size: 13px;
    white-space: nowrap;
}

/* Colors */
#booking-detail-panel .v2-step-active .v2-step-circle {
    background: #F97316;
    border-color: #F97316;
    color: #fff;
    font-size: 16px;
}
#booking-detail-panel .v2-step-active .v2-step-label {
    color: #F97316;
    font-weight: 700;
}
#booking-detail-panel .v2-step-pending .v2-step-circle {
    background: #fff;
    border-color: #E5245B;
    color: #E5245B;
    font-weight: 700;
}
#booking-detail-panel .v2-step-pending .v2-step-label {
    color: #1A1A2E;
    font-weight: 600;
}

/* ====== Passenger flat-row design ====== */
.bd-pax-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 4px;
}
.bd-pax-card-sub {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 4px;
}
.bd-pax-rows {
    margin-top: 16px;
}
.bd-pax-row {
    padding: 28px 0;
    border-bottom: 1px solid #d7d7d7;
}
.bd-pax-row:last-child {
    border-bottom: none;
    padding-bottom: 8px;
}
.bd-pax-grid {
    display: grid;
    grid-template-columns: 120px 1fr 1fr 1fr 1fr;
    align-items: start;
}
.bd-pax-grid-infant {
    display: grid;
    grid-template-columns: 120px 1fr 1fr 1fr 1fr;
    align-items: stretch;
}
/* DOB: hidden native date input + calendar icon button */
.dob-hidden-picker {
    position: absolute;
    width: 0; height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
    z-index: -1;
}
.dob-hidden-picker::-webkit-calendar-picker-indicator {
    display: none !important;
}
.dob-wrap { border:none; position: relative; display: flex; align-items: center; }
.dob-wrap input[type="text"] { flex: 1; padding-right: 36px; }
.dob-cal-btn {
    position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer; padding: 4px;
    font-size: 16px; color: #6B7280; z-index: 2;
}
/* Calendar icon (non-interactive, sits behind the overlay) */
.dob-cal-icon {
    position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
    font-size: 16px; color: #6B7280; pointer-events: none; z-index: 1;
}
/* Date input overlaying the calendar icon area — transparent, tappable on mobile */
.dob-cal-picker-overlay {
    position: absolute; right: 0; top: 0;
    width: 40px; height: 100%;
    opacity: 0; cursor: pointer; z-index: 3;
    -webkit-appearance: none; appearance: none; border: none; background: none;
}
.dob-cal-picker-overlay::-webkit-calendar-picker-indicator {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0; cursor: pointer;
}

/* T&C Modal: must escape parent stacking context */
#termConditionModal {
    z-index: 1060 !important;
}

/* Check-in results: white card section below the search bar */
.v2-checkin-results {
    position: relative;
    z-index: 10;
    background: #fff;
    /* padding: 24px 20px; */
    padding:10px;
    border-radius: 12px;
    margin-top: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
/* When check-in results are visible, let hero grow but keep banner image */
.v2-layout .intro-bg.v2-checkin-expanded {
    height: auto ;
    max-height: none !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

/* ===== Inline Check-In Results (Figma design) ===== */
.v2-ci-flight-card {
    background: #fff;
    border-radius: 12px;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.06); */
    overflow: hidden;
}
.v2-ci-flight-strip {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 20px 28px;
    background: #F0F1F5;
    border-radius: 10px;
    margin: 16px;
}
.v2-ci-col { display: flex; flex-direction: column; align-items: center; }
.v2-ci-col-dep, .v2-ci-col-arr { min-width: 90px; }
.v2-ci-col-route { flex: 1; min-width: 120px; }
.v2-ci-col-date { min-width: 140px; }
.v2-ci-col-pnr { min-width: 140px; align-items: flex-end; }
.v2-ci-label { font-size: 12px; color: #6B7280; font-weight: 500; margin-bottom: 4px; }
.v2-ci-time { font-size: 28px; font-weight: 700; color: #1a1a2e; line-height: 1; }
.v2-ci-value { font-size: 15px; font-weight: 600; color: #1a1a2e; }
.v2-ci-pnr { font-size: 20px; font-weight: 800; letter-spacing: 0.5px; }
.v2-ci-route-line { display: flex; align-items: center; width: 100%; margin-bottom: 4px; }
.v2-ci-line { flex: 1; height: 2px; background: #C5C7CD; }
.v2-ci-flight-badge {
    padding: 3px 12px; border: 1.5px solid #C5C7CD; border-radius: 14px;
    font-size: 12px; font-weight: 600; color: #1a1a2e; background: #F0F1F5; white-space: nowrap;
}
.v2-ci-duration { font-size: 13px; font-weight: 700; color: #D32F2F; }
.v2-ci-sector { font-size: 11px; color: #6B7280; margin-top: 1px; }
/* Passenger table */
.v2-ci-pax-table { margin: 0 16px 16px; border: 1px solid #E5E7EB; border-radius: 8px; overflow: hidden; }
.v2-ci-pax-header { display: flex; background: #F0F1F5; border-bottom: 1px solid #E5E7EB; }
.v2-ci-pax-header .v2-ci-pax-cell { font-weight: 700; font-size: 14px; color: #1a1a2e; padding: 12px 16px; }
.v2-ci-pax-row { display: flex; border-bottom: 1px solid #F0F1F5; align-items: center; }
.v2-ci-pax-row:last-child { border-bottom: none; }
.v2-ci-pax-cell { padding: 12px 16px; font-size: 14px; color: #374151; }
.v2-ci-pax-name { flex: 2; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.v2-ci-pax-status { flex: 1; text-align: center; }
.v2-ci-pax-action { flex: 1; text-align: right; }
.v2-ci-checkbox { width: 18px; height: 18px; accent-color: #1a1a2e; cursor: pointer; flex-shrink: 0; }
.v2-ci-infant-note { width: 100%; font-size: 12px; color: #9CA3AF; margin-left: 24px; }
.v2-ci-checked { color: #16A34A; font-weight: 600; }
.v2-ci-notchecked { color: #374151; font-weight: 500; }
.v2-ci-resend-btn {
    background: none; border: 1.5px solid red; border-radius: 20px;
    padding: 5px 16px; font-size: 13px; font-weight: 600; color: red; cursor: pointer; white-space: nowrap;
}
.v2-ci-resend-btn:hover { background: red; color: #fff; }
.v2-ci-checkin-btn {
    background: #D32F2F; color: #fff; border: none; border-radius: 24px;
    padding: 10px 36px; font-size: 16px; font-weight: 700; cursor: pointer;
    box-shadow: 0 2px 8px rgba(211,47,47,0.25);
}
.v2-ci-checkin-btn:hover { background: #B71C1C; }
.v2-ci-all-done { color: #16A34A; font-size: 16px; font-weight: 700; }
@media (max-width: 991px) {
    .v2-ci-flight-strip {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        gap: 12px 8px;
        padding: 14px 16px;
        position: relative;
    }
    /* Single dashed line between row 1 and row 2 */
    .v2-ci-flight-strip::after {
        content: '';
        grid-column: 1 / -1;
        grid-row: 2;
        border-top: 1px dashed #D1D5DB;
        align-self: start;
        pointer-events: none;
    }
    /* Row 1: Dep | Route line | Arr */
    .v2-ci-col-dep {
        grid-column: 1; grid-row: 1;
        min-width: auto;
        align-items: flex-start;
    }
    .v2-ci-col-route {
        grid-column: 2; grid-row: 1;
        min-width: 0;
    }
    .v2-ci-col-arr {
        grid-column: 3; grid-row: 1;
        min-width: auto;
        align-items: flex-end;
    }
    /* Row 2: Date (left) + PNR (right) */
    .v2-ci-col-date {
        grid-column: 1 / 3; grid-row: 2;
        min-width: auto;
        align-items: flex-start;
        margin-top: 10px;
        padding-top: 10px;
    }
    .v2-ci-col-pnr {
        grid-column: 3; grid-row: 2;
        min-width: auto;
        align-items: flex-end;
        margin-top: 10px;
        padding-top: 10px;
    }
    /* Row 2 alt: Status (for flight status tab) */
    .v2-ci-col-status {
        grid-column: 1 / -1; grid-row: 2;
        min-width: auto;
        justify-content: center;
        margin-top: 10px;
        padding-top: 10px;
    }
    .v2-ci-time { font-size: 22px; }
    .v2-ci-label { font-size: 11px; }
    .v2-ci-flight-badge { font-size: 11px; padding: 2px 8px; }
    .v2-ci-duration { font-size: 12px; }
    .v2-ci-sector { font-size: 10px; }
    .v2-ci-pax-header { display: none; }
    .v2-ci-pax-row { flex-wrap: wrap; padding: 10px 12px; gap: 4px; }
    .v2-ci-pax-name { flex: 1 1 100%; }
    .v2-ci-pax-status { flex: 1 1 50%; text-align: left; font-size: 13px; }
    .v2-ci-pax-action { flex: 1 1 50%; text-align: right; }
    /* Hide action cell on mobile when button not shown */
    .v2-ci-pax-action-hidden { display: none !important; }
    .v2-ci-connecting-badge { font-size: 12px; padding: 4px 10px; }
}

/* Flight Status: scheduled time (struck-through) + status dot/text */
.v2-ci-sched-time { font-size: 13px; color: #9CA3AF; text-decoration: line-through; margin-top: 2px; }
.v2-ci-col-status { display: flex; align-items: center; gap: 6px; min-width: 130px; justify-content: flex-end; }
.v2-fs-status-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.v2-fs-status-text { font-size: 15px; font-weight: 700; }

.v2-ci-connecting-badge {
    display: inline-block;
    background: #FEF3C7;
    color: #92400E;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.v2-ci-connecting-badge i { margin-right: 4px; }
.v2-ci-leg-border { border-bottom: 1px dashed #E5E7EB; margin-bottom: 8px; padding-bottom: 8px; }

/* ============================================================
   WCI — Web Check-In Portal Page Redesign
   ============================================================ */
.wci-section {
    padding: 32px 0 48px;
    background: #F9FAFB;
    min-height: 100vh;
}
.wci-page-header {
    margin-bottom: 24px;
}
.wci-title {
    font-size: 26px;
    font-weight: 800;
    color: #1A1A2E;
    margin: 0 0 6px;
}
.wci-subtitle {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

/* Search Card */
.wci-search-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 24px 28px;
    margin-bottom: 28px;
}
.wci-search-row {
    display: flex;
    align-items: flex-end;
    gap: 16px;
}
.wci-search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.wci-field-label {
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.wci-input {
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #1A1A2E;
    background: #F9FAFB;
    outline: none;
    transition: border-color 0.2s;
}
.wci-input:focus {
    border-color: #2E7D32;
    background: #fff;
}
.wci-search-btn {
    background: #2E7D32;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.wci-search-btn:hover {
    background: #1B5E20;
}

/* Flight Segment Card */
.wci-flight-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 20px;
}

/* Journey Strip (label + date/duration) */
.wci-journey-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px 0;
}
.wci-journey-label {
    font-size: 20px;
    font-weight: 800;
    color: #2E7D32;
}
.wci-journey-label.wci-journey-return {
    color: #D32F2F;
}
.wci-flight-card.wci-return-card .wci-city-code {
    background: #D32F2F;
}
.wci-flight-nos {
    font-size: 20px;
    font-weight: 700;
    margin-left: 8px;
    letter-spacing: 0.3px;
}
.wci-header-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.wci-header-date {
    font-size: 14px;
    font-weight: 700;
    color: #1A1A2E;
}

/* Flight Header Strip (route + PNR) */
.wci-flight-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px 1px;
    /* border-bottom: 1px solid #F0F1F5; */
}
.wci-route-info {
    display: flex;
    align-items: center;
    gap: 8px;
}
.wci-city-name {
    font-size: 26px;
    font-weight: 800;
    color: #1A1A2E;
}
.wci-city-code {
    display: inline-block;
    background: #2E7D32;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    vertical-align: middle;
}
.wci-route-arrow {
    color: #6B7280;
    font-size: 16px;
    margin: 0 4px;
}
.wci-pnr-info {
    display: flex;
    align-items: center;
    gap: 6px;
}
.wci-pnr-value {
    font-size: 26px;
    font-weight: 800;
    color: #1A1A2E;
    letter-spacing: 0.5px;
}
.wci-pnr-label {
    font-size: 26px;
    color: #6B7280;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Via Route */
.wci-via-route {
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;
    padding: 0 28px 8px;
}

/* Detail Separator & Duration (reused) */
.wci-detail-sep {
    color: #D1D5DB;
    margin: 0 4px;
}
.wci-detail-duration {
    font-size: 14px;
    font-weight: 600;
    color: #D32F2F;
}

/* Passenger Table */
.wci-pax-table {
    margin: 0 20px 20px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
}
.wci-pax-header {
    display: flex;
    background: #F0F1F5;
    border-bottom: 1px solid #E5E7EB;
}
.wci-pax-header .wci-pax-cell {
    font-weight: 700;
    font-size: 13px;
    color: #1A1A2E;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 12px 20px;
}
.wci-pax-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #F0F1F5;
    transition: background 0.15s;
}
.wci-pax-row:last-child {
    border-bottom: none;
}
.wci-pax-row:hover {
    background: #F9FAFB;
}
.wci-pax-cell {
    padding: 4px 20px;
    font-size: 14px;
    color: #374151;
}
.wci-pax-name-col {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.wci-pax-status-col {
    flex: 1;
    text-align: center;
}
.wci-pax-action-col {
    flex: 1;
    text-align: right;
}
.wci-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #2E7D32;
    cursor: pointer;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}
.wci-pax-name {
    font-weight: 600;
    color: #1A1A2E;
    cursor: pointer;
}
.wci-infant-note {
    width: 100%;
    font-size: 12px;
    color: #9CA3AF;
    margin-left: 26px;
}
.wci-status-checked {
    color: #2E7D32;
    font-weight: 600;
    font-size: 14px;
}
.wci-status-checked i {
    margin-right: 4px;
}
.wci-status-pending {
    color: #9CA3AF;
    font-weight: 500;
    font-size: 14px;
}
.wci-status-pending i {
    margin-right: 4px;
}
.wci-resend-btn {
    background: none;
    border: 1.5px solid #2E7D32;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #2E7D32;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}
.wci-resend-btn:hover {
    background: #2E7D32;
    color: #fff;
}

/* Check-in Action Button */
.wci-action-row {
    text-align: right;
    margin: 24px 0;
}
.wci-checkin-btn {
    background: #2E7D32;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 48px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(46,125,50,0.3);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.wci-checkin-btn:hover {
    background: #1B5E20;
    box-shadow: 0 6px 16px rgba(46,125,50,0.4);
}

/* ===== WCI Tablet Responsive ===== */
@media (max-width: 991px) {
    .wci-search-row {
        flex-wrap: wrap;
        gap: 12px;
    }
    .wci-search-field {
        flex: 1 1 calc(50% - 6px);
        min-width: 200px;
    }
    .wci-search-btn {
        width: 100%;
        justify-content: center;
    }
    .wci-journey-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 12px 20px 0;
    }
    .wci-flight-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 20px 12px;
    }
    .wci-header-right {
        flex-wrap: wrap;
    }
    .wci-pnr-value, .wci-pnr-label {
        font-size: 16px;
    }
}

/* ===== WCI Mobile Responsive ===== */
@media (max-width: 767px) {
    .wci-section {
        padding: 16px 0 32px;
    }
    .wci-page-header {
        margin-bottom: 16px;
    }
    .wci-title {
        font-size: 20px;
    }
    .wci-subtitle {
        font-size: 13px;
    }

    /* Search Card */
    .wci-search-card {
        padding: 14px;
        border-radius: 12px;
    }
    .wci-search-row {
        flex-direction: column;
        gap: 10px;
    }
    .wci-search-field {
        flex: 1 1 100%;
    }
    .wci-input {
        padding: 10px 14px;
        font-size: 14px;
    }
    .wci-search-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }

    /* Flight Card */
    .wci-flight-card {
        border-radius: 12px;
        margin-bottom: 14px;
    }
    .wci-journey-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 14px 0;
    }
    .wci-journey-label {
        font-size: 14px;
        display: flex;
    }
    .wci-flight-nos {
        font-size: 14px;
    }
    .wci-via-route {
        padding-left: 12px;
        padding-right: 12px;
    }
    .wci-flight-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 8px 14px 10px;
    }
    .wci-route-info {
        gap: 6px;
        flex-wrap: wrap;
    }
    .wci-city-name {
        font-size: 16px;
    }
    .wci-city-code {
        font-size: 10px;
        padding: 2px 8px;
    }
    .wci-route-arrow {
        font-size: 14px;
    }
    .wci-pnr-value, .wci-pnr-label {
        font-size: 15px;
    }
    .wci-header-right {
        flex-wrap: wrap;
        gap: 4px;
    }
    .wci-header-date {
        font-size: 12px;
    }
    .wci-detail-duration {
        font-size: 12px;
    }
    .wci-detail-sep {
        display: none;
    }
    .wci-flight-nos {
        font-size: 12px;
        display: block;
        margin-left: 0;
        margin-top: 2px;
    }

    /* Passenger Table — card layout on mobile */
    .wci-pax-table {
        margin: 0 14px 14px;
        border: none;
        border-radius: 0;
    }
    .wci-pax-header {
        display: none;
    }
    .wci-pax-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 14px;
        gap: 8px;
        border-bottom: 1px solid #F0F1F5;
        background: #FAFAFA;
        border-radius: 10px;
        margin-bottom: 8px;
    }
    .wci-pax-row:last-child {
        margin-bottom: 0;
    }
    .wci-pax-name-col {
        flex: 1 1 100%;
        gap: 6px;
    }
    .wci-pax-name {
        font-size: 14px;
    }
    .wci-pax-status-col {
        flex: 1 1 100%;
        text-align: left;
    }
    .wci-status-checked, .wci-status-pending {
        font-size: 13px;
    }
    .wci-pax-action-col {
        flex: 1 1 100%;
        text-align: left;
    }
    .wci-resend-btn {
        font-size: 12px;
        padding: 6px 14px;
        width: 100%;
        text-align: center;
    }
    .wci-infant-note {
        margin-left: 0;
    }

    /* Check-in Button */
    .wci-action-row {
        text-align: center;
        margin: 16px 0;
    }
    .wci-checkin-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 32px;
        font-size: 15px;
        border-radius: 10px;
    }
}

/* ===== WCI Small Mobile (< 400px) ===== */
@media (max-width: 400px) {
    .wci-city-name {
        font-size: 14px;
    }
    .wci-pnr-value, .wci-pnr-label {
        font-size: 13px;
    }
    .wci-route-info {
        gap: 4px;
    }
    .wci-journey-strip {
        padding: 8px 12px 0;
    }
    .wci-flight-strip {
        padding: 8px 12px 8px;
    }
    .wci-pax-row {
        padding: 10px 12px;
    }
    .wci-pax-table {
        margin: 0 10px 12px;
    }
}

.bd-pax-cell {
    padding: 0 24px;
    border-right: 1px solid #d7d7d7;
}
.bd-pax-cell:first-child { padding-left: 4px; }
.bd-pax-cell:last-child  { border-right: none; }
.bd-pax-label {
    font-size: 15px;
    color: #6B7280;
    font-weight: 500;
    margin-bottom: 0px;
    display: block;
}
.bd-pax-select {
    border: none;
    border-bottom: 1px solid #D1D5DB;
    outline: none;
    font-size: 16px;
    color: #1A1A2E;
    font-weight: 400;
    background: transparent;
    cursor: pointer;
    width: 100%;
    padding: 4px 0;
    border-radius: 0;
    -webkit-appearance: auto;
}
.bd-pax-select:focus { outline: none; border-bottom-color: #E67E22; }
.bd-pax-input {
    border: none;
    border-bottom: 1px solid #D1D5DB;
    outline: none;
    font-size: 16px;
    color: #1A1A2E;
    font-weight: 400;
    width: 100%;
    background: transparent;
    padding: 4px 0;
    border-radius: 0;
}
.bd-pax-input:focus { outline: none; border-bottom-color: #E67E22; }
.bd-pax-contact-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}
.bd-pax-dial-select {
    border: none;
    outline: none;
    font-size: 16px;
    color: #1A1A2E;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    width: 60px;
    flex-shrink: 0;
    padding: 0;
    -webkit-appearance: auto;
}
.bd-pax-contact-wrap .bd-pax-input { flex: 1; }
.bd-pax-err {
    font-size: 11px;
    color: #EF4444;
    margin-top: 3px;
    display: block;
}

/* Completed step line also uses brand red in booking detail panel */
#booking-detail-panel .v2-line-completed {
    background: #10B981;
}
#booking-detail-panel .v2-step-completed .v2-step-circle {
    background: #10B981;
    border-color: #10B981;
    color: #fff;
    font-size: 16px;
}
#booking-detail-panel .v2-step-completed .v2-step-label {
    color: #10B981;
    font-weight: 700;
}

/* Cards inside the form body — flat, no extra shadow (bd-form-body is the outer card) */
#booking-detail-panel .bd-form-body .card {
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #F3F4F6;
    border-radius: 0;
    padding: 28px 0;
}
#booking-detail-panel .bd-form-body .card:last-child {
    border-bottom: none;
}

/* ============================================
   MOBILE OVERRIDES — must come last to win cascade
   ============================================ */
@media (max-width: 991px) {
    /* Stepper: fit within mobile screen */
    #booking-detail-panel .bd-stepper-card {
        min-width: unset !important;
        width: 100% !important;
        border-radius: 0 !important;
        padding: 10px 8px !important;
    }
    #booking-detail-panel .v2-stepper {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
    }
    #booking-detail-panel .v2-step {
        flex: 0 1 auto !important;
        gap: 4px !important;
        min-width: unset !important;
    }
    #booking-detail-panel .v2-step-line {
        width: auto !important;
        min-width: 0 !important;
        flex: 1 1 20px !important;
        margin: 0 2px !important;
    }
    #booking-detail-panel .v2-step-label {
        font-size: 0.72rem !important;
    }
    #booking-detail-panel .v2-step-circle {
        width: 26px !important;
        height: 26px !important;
        font-size: 12px !important;
    }
    #booking-detail-panel .v2-step-active .v2-step-circle {
        width: 28px !important;
        height: 28px !important;
        font-size: 13px !important;
    }
    /* v2-sticky-bar: hidden on mobile by default, JS shows it on steps 2/3 */
    .v2-sticky-bar {
        display: none !important;
        padding: 8px 16px;
        min-height: 52px;
    }
    /* Show it when JS adds this class */
    .v2-sticky-bar.v2-sticky-mobile-show {
        display: flex !important;
    }
}
/* Desktop: sticky bar always visible */
@media (min-width: 992px) {
    .v2-sticky-bar {
        display: flex !important;
    }
}

/* ============================================
   Mobile & iPad: Fixed Bottom Tab Navigation
   ============================================ */
@media (max-width: 991px) {

  
    /* Fixed bottom tab bar */
    .v2-layout .nav-scroll-wrapper {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1050 !important;
        background: #FFFFFF !important;
        border-radius: 0 !important;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1) !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    .v2-layout .nav-scroll-wrapper .nav-pills {
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 8px 0 6px !important;
        margin: 0 !important;
        flex-wrap: nowrap !important;
        border-bottom: none !important;
        background-color: transparent !important;
    }
    .v2-layout .nav-scroll-wrapper .nav-pills .nav-item {
        /* flex: 1 !important; */
        text-align: center !important;
    }
    .v2-layout .nav-scroll-wrapper .nav-link {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        padding: 4px 2px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        text-transform: none !important;
        color: #6B7280 !important;
        background: transparent !important;
        border: none !important;
        border-bottom: none !important;
        border-radius: 0 !important;
        white-space: nowrap !important;
        line-height: 1.2 !important;
    }
    .v2-layout .nav-scroll-wrapper .nav-link img {
        width: 22px !important;
        height: 22px !important;
        opacity: 0.6 !important;
        display: block !important;
    }
    .v2-layout .nav-scroll-wrapper .nav-link.active {
        color: #E31837 !important;
        background: transparent !important;
        border-bottom: none !important;
    }
    .v2-layout .nav-scroll-wrapper .nav-link.active img {
        opacity: 1 !important;
        filter: brightness(0) saturate(100%) invert(18%) sepia(90%) saturate(5000%) hue-rotate(350deg) brightness(95%) contrast(90%) !important;
    }

    /* Booking form card: remove top border-radius since tabs are now at bottom */
    .v2-layout .booking-panel-container > div:last-child {
        border-radius: 12px !important;
    }

    /* --- From / To fields: stacked layout (Label → Code → City) --- */
    .v2-field-from .v2-field-btn,
    .v2-field-to .v2-field-btn {
        padding: 10px 12px !important;
    }
    .v2-field-from .v2-field-value,
    .v2-field-to .v2-field-value {
        flex-direction: column !important;
        gap: 2px !important;
         align-items: flex-end !important;
        display: flex !important;   
        justify-content: flex-end !important;
    }
    .v2-field-from .v2-field-value {
        align-items: flex-start !important;
    }
    /* Right-align entire "To" field — works on all Safari/WebKit versions */
    .v2-field-to .v2-field-btn {
        text-align: right !important;
        -webkit-text-align: right !important;
    }
    .v2-field-to .v2-field-value {
        align-items: flex-end !important;
        -webkit-align-items: flex-end !important;
        justify-content: flex-end !important;
        text-align: right !important;
    }
    /* All children in "To" field: full-width + text-align right (Safari-safe) */
    .v2-field-to .v2-field-value > * {
        display: block !important;
        width: 100% !important;
        text-align: right !important;
        -webkit-text-align: right !important;
    }
    .v2-field-to .v2-field-label {
        display: block !important;
        text-align: right !important;
        width: 100% !important;
    }
    .align-right-to{
        text-align: right !important;
        -webkit-text-align: right !important;
        align-items: flex-end !important;
    }
     .align-right-to #spnArrival, .align-right-to #spnArrivalCode{
        text-align: right !important;
        -webkit-text-align: right !important;
        margin-left: auto !important;
        /* width: auto !important; */
        display: block !important;
        direction: rtl;
     }
    /* Show the airport code (override Bootstrap d-none) */
    .v2-field-from .v2-city-code.d-none,
    .v2-field-to .v2-city-code.d-none,
    .v2-field-from .v2-city-code,
    .v2-field-to .v2-city-code {
        display: block !important;
        order: -1 !important;
        font-size: 22px !important;
        font-weight: 700 !important;
        color: #1A1A2E !important;
        background: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
        min-width: unset !important;
        height: auto !important;
        letter-spacing: 0.5px !important;
        line-height: 1.2 !important;
    }
    /* City name: smaller gray subtitle below code */
    .v2-field-from .v2-city-name,
    .v2-field-to .v2-city-name {
        font-size: 12px !important;
        font-weight: 400 !important;
        color: #6B7280 !important;
        order: 1 !important;
        line-height: 1.3 !important;
    }
    .v2-field-to .v2-city-name {
        text-align: right !important;
        -webkit-text-align: right !important;
    }
    /* Label: small gray on top */
    .v2-field-from .v2-field-label,
    .v2-field-to .v2-field-label {
        font-size: 11px !important;
        color: #6B7280 !important;
        margin-bottom: 4px !important;
    }
    /* Where to? dropdown opens from right */
    .v2-field-to .dropdown-menu.v2-airport-dropdown {
        left: auto !important;
        right: 0 !important;
    }
    #arrivalcitysDropdown {
        margin-left: 0 !important;
        /* width: 100% !important; */
    }
    /* Hero text on top, booking panel below */
    .v2-layout .careers-intro {
        flex-direction: column !important;
    }
    .v2-layout .v2-hero-text {
        order: -1 !important;
    }
    .v2-layout .box-panle-main {
        order: 1 !important;
    }

    /* ============================================
       Flight Result Cards — Mobile/iPad Responsive
       ============================================ */
    .v2-flight-result {
        padding: 0 !important;
    }
    .v2-flight-card {
        border-radius: 10px !important;
    }

    /* Stack flight content vertically */
    .v2-flight-content {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 12px 14px !important;
        gap: 10px !important;
    }

    /* Departure & Arrival in a row */
    .v2-flight-content .v2-fc-departure,
    .v2-flight-content .v2-fc-arrival {
        min-width: unset !important;
    }
    .v2-fc-time {
        font-size: 22px !important;
    }
    .v2-fc-label {
        font-size: 11px !important;
    }

    /* Center section (flight line, badge, duration, route) */
    .v2-fc-center {
        min-width: unset !important;
        width: 100% !important;
    }

    /* Dep + Center + Arrival in a horizontal row */
    .v2-flight-content {
        display: grid !important;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        align-items: center !important;
    }
    .v2-flight-content .v2-fc-departure {
        grid-column: 1;
        grid-row: 1;
        text-align: left !important;
        align-items: flex-start !important;
    }
    .v2-flight-content .v2-fc-center {
        grid-column: 2;
        grid-row: 1;
    }
    .v2-flight-content .v2-fc-arrival {
        grid-column: 3;
        grid-row: 1;
        text-align: right !important;
        align-items: flex-end !important;
    }
    /* Action row full width below */
    .v2-flight-content .v2-fc-action {
        grid-column: 1 / -1;
        grid-row: 2;
        margin-left: 0 !important;
        gap: 12px !important;
        justify-content: space-between !important;
        border-top: 1px solid #E5E7EB;
        padding-top: 10px;
    }
    .v2-fc-price {
        font-size: 20px !important;
    }
    .v2-fc-pax-label {
        font-size: 9px !important;
    }

    /* Flight badge & line */
    .v2-fc-flight-badge {
        font-size: 11px !important;
        padding: 2px 10px !important;
    }
    .v2-fc-duration {
        font-size: 12px !important;
    }
    .v2-fc-route {
        font-size: 10px !important;
        text-align: center;
    }

    /* Journey label */
    .v2-fc-journey-label {
        font-size: 10px !important;
        padding: 6px 14px 0 !important;
    }

    /* Continue / Select buttons */
    .v2-fc-select-btn {
        padding: 8px 20px !important;
        font-size: 13px !important;
    }
    .v2-fc-continue-btn {
        padding: 10px 28px !important;
        font-size: 14px !important;
    }

    /* Combined total bar */
    .v2-both-selected-bar {
        flex-direction: row !important;
        align-items: center !important;
        padding: 10px 14px !important;
        gap: 10px !important;
    }
    .v2-combined-price {
        font-size: 20px !important;
    }
    .v2-combined-label {
        font-size: 10px !important;
    }

    /* Price popup on mobile */
    .v2-fc-price-popup {
        left: 0 !important;
        right: auto !important;
        min-width: 220px !important;
    }
    /* --- Leg details responsive --- */
    .v2-flight-legs {
        max-width: 96vw;
        width: 100%;
        min-width: 24rem;
    }
    .v2-legs-container {
        padding: 10px 8px !important;
        min-width: unset !important;
        max-width: 100% !important;
        white-space: normal !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
        border-radius: 10px !important;
    }
    .v2-leg-row {
        display: grid !important;
        grid-template-columns: auto 1fr auto;
        gap: 8px !important;
        padding: 10px 0 !important;
        align-items: center !important;
    }
    .v2-leg-dep {
        grid-column: 1;
        min-width: unset !important;
        align-items: flex-start !important;
    }
    .v2-leg-center {
        grid-column: 2;
        min-width: 0 !important;
    }
    .v2-leg-arr {
        grid-column: 3;
        min-width: unset !important;
        align-items: flex-end !important;
    }
    .v2-leg-dep .v2-leg-time,
    .v2-leg-arr .v2-leg-time {
        font-size: 16px !important;
    }
    .v2-leg-dep .v2-leg-label,
    .v2-leg-arr .v2-leg-label {
        font-size: 10px !important;
    }
    .v2-leg-badge {
        font-size: 9px !important;
        padding: 2px 6px !important;
    }
    .v2-leg-duration {
        font-size: 10px !important;
    }
    .v2-leg-route {
        font-size: 9px !important;
        white-space: normal !important;
    }
}

/* ============================================
   Booking Detail Page — Mobile/iPad Responsive
   ============================================ */
@media (max-width: 991px) {
    /* Stepper: compact horizontal on mobile */
    .v2-booking .v2-stepper-wrapper {
        padding: 12px 0 !important;
        border-bottom: 1px solid #e5e7eb;
    }
    .v2-booking .v2-stepper {
        max-width: 100% !important;
        padding: 0 16px;
        gap: 0 !important;
    }
    .v2-booking .v2-step {
        min-width: 70px !important;
    }
    .v2-booking .v2-step-circle {
        width: 30px !important;
        height: 30px !important;
        font-size: 13px !important;
    }
    .v2-booking .v2-step-label {
        font-size: 11px !important;
    }
    .v2-booking .v2-step-line {
        width: 50px !important;
        left: calc(50% + 18px) !important;
        top: 15px !important;
    }

    /* Main content area: full width, proper padding */
    .v2-booking .col-lg-9 {
        max-width: 100% !important;
        padding: 0 12px !important;
    }

    /* Cards: compact padding on mobile */
    .v2-booking .card {
        padding: 16px !important;
        border-radius: 12px !important;
        margin-bottom: 12px !important;
    }
    .v2-booking .card h4.bold {
        font-size: 18px !important;
    }

    /* Accordion passenger items */
    .v2-booking .accordion-button {
        padding: 12px 14px !important;
        font-size: 14px !important;
    }
    .v2-booking .accordion-item {
        border-radius: 10px !important;
        margin-bottom: 8px !important;
    }

    /* Form fields: slightly smaller */
    .v2-booking .form-control,
    .v2-booking .form-select {
        padding: 8px 12px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
    }
    .v2-booking .form-label,
    .v2-booking .font-xsm.semibold {
        font-size: 11px !important;
    }

    /* Baggage inputs row */
    .v2-booking .baggage {
        flex-direction: column !important;
        gap: 8px !important;
    }
    .v2-booking .baggage .w-10 {
        width: 100% !important;
    }

    /* Next / Continue button */
    .v2-booking .btn-next {
        width: 100% !important;
        padding: 10px !important;
        font-size: 14px !important;
    }

    /* V2 Sticky bar on mobile */
    .v2-booking .v2-sticky-bar {
        display: flex !important;
        padding: 8px 12px !important;
        min-height: 56px !important;
        flex-wrap: wrap !important;
        gap: 0 !important;
    }
    /* Hide journey/date/pax details, show only price + button */
    .v2-booking .v2-sticky-bar .v2-sticky-section:not(:last-of-type),
    .v2-booking .v2-sticky-bar .v2-sticky-divider {
        display: none !important;
    }
    /* Price section: show */
    .v2-booking .v2-sticky-bar .v2-sticky-section:last-of-type {
        display: flex !important;
        flex: 1;
    }

    .v2-booking .v2-sticky-bar .v2-sticky-value {
        font-size: 20px !important;
    }
    .v2-booking .v2-sticky-bar .v2-sticky-label {
        font-size: 9px !important;
    }
    .v2-booking .v2-sticky-btn, .v2-booking .v2-sticky-btn-back {
        padding: 10px 24px !important;
        font-size: 14px !important;
        width:50% !important;
        border-radius: 24px !important;
    }
    .v2-booking .v2-sticky-btn{
        width: 60% !important;
    }

    /* Add bottom padding so content isn't hidden behind sticky bar */
    /* .v2-booking .booking-container,
    .v2-booking .container {
        padding-bottom: 80px !important;
    } */

    /* GST toggle section */
    .v2-booking .form-check-input {
        width: 20px;
        height: 20px;
    }

    /* ====== Baggage Step (Step 2) — Mobile/iPad ====== */

    /* Baggage step section */
    #v2-step-baggage {
        padding: 0 4px !important;
    }
    #v2-step-baggage .card {
        padding: 14px 12px !important;
    }
    #v2-step-baggage .card h4 {
        font-size: 20px !important;
    }

    /* Journey tabs: compact */
    .v2-bag-tabs {
        margin-bottom: 14px !important;
    }
    .v2-bag-tab {
        padding: 10px 8px !important;
        font-size: 13px !important;
    }

    /* Passenger header: compact */
    .v2-bag-pax-header {
        padding: 10px 12px !important;
        gap: 10px !important;
        border-radius: 10px !important;
        /* flex-wrap: wrap; */
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }
    .v2-bag-avatar {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    .v2-bag-pax-name {
        font-size: 16px !important;
    }
    .v2-bag-pax-type {
        font-size: 13px !important;
    }
    .v2-bag-pax-selection {
        padding: 6px 12px !important;
        font-size: 13px !important;
        margin-right: 0 !important;
    }

    /* Suitcase + tiers: stack vertically */
    .v2-bag-content-row {
        flex-direction: column !important;
        gap: 14px !important;
    }
    .v2-bag-suitcase {
        display: none !important;
    }
    .v2-bag-right {
        max-width: 100% !important;
        gap: 12px !important;
    }

    /* Tier cards: stack vertically */
    .v2-bag-tiers {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .v2-bag-card {
        padding: 16px !important;
        border-radius: 12px !important;
    }
    .v2-bag-weight {
        font-size: 20px !important;
    }
    .v2-bag-subtitle {
        font-size: 12px !important;
    }
    .v2-bag-desc {
        font-size: 12px !important;
        margin-bottom: 12px !important;
    }
    .v2-bag-radio {
        width: 24px !important;
        height: 24px !important;
        top: 12px !important;
        right: 12px !important;
    }
    .v2-bag-price {
        font-size: 13px !important;
        padding: 5px 12px !important;
    }

    /* Savings banner */
    .v2-bag-savings {
        padding: 10px 14px !important;
        font-size: 12px !important;
        border-radius: 8px !important;
    }

    /* Notice / island tip */
    .v2-bag-notice {
        padding: 12px 14px !important;
        font-size: 12px !important;
        border-radius: 10px !important;
        gap: 8px !important;
    }
    .v2-bag-notice-icon {
        font-size: 28px !important;
    }
    .v2-bag-island-heading {
        font-size: 13px !important;
    }

    /* Passenger block spacing */
    .v2-bag-passenger {
        margin-bottom: 20px !important;
    }
    .v2-bag-pax-divider {
        margin: 0 0 14px 0 !important;
    }

    /* Flight summary card — prevent overflow on mobile */
    .v2-sf-top {
        flex-wrap: wrap;
        gap: 4px;
    }
    .v2-sf-times {
        flex-wrap: nowrap;
        overflow: hidden;
    }
    .v2-sf-endpoint {
        flex-shrink: 1;
        min-width: 0;
    }
    .v2-sf-time {
        font-size: 20px !important;
    }
    .v2-sf-code {
        font-size: 13px !important;
    }
    .v2-sf-name {
        font-size: 12px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 90px;
    }
    .v2-sf-middle {
        padding: 10px 8px 0 !important;
    }
    .v2-sf-dur {
        margin-top: 25px !important;
        font-size: 12px !important;
        padding: 2px 8px !important;
    }
    .v2-sf-route {
        font-size: 11px !important;
    }
    .v2-sf-flightno {
        font-size: 13px !important;
    }
    .v2-sf-date {
        font-size: 14px !important;
    }
    #booking-detail-panel .bd-form-card {
        border-radius: 0;
        box-shadow: none;
        z-index: 1;
        width: 100%;
    }

    /* ====== Mobile Summary Footer (Baggage + Trip Summary) ====== */
    .mobile-baggage-summary-footer {
        position: fixed;
        bottom: 61px;
        left: 0;
        width: 100%;
        z-index: 1050;
        background: #fff;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
        border-top: 1px solid #e5e7eb;
        flex-wrap: wrap;
        gap: 0;
        overflow: visible;
    }
    .mobile-baggage-summary-item {
        display: flex !important;
        flex-direction: column;
        gap: 2px;
    }
    .mobile-baggage-summary-label {
        font-size: 10px;
        font-weight: 600;
        color: #065f46;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    .mobile-baggage-summary-value {
        font-size: 14px;
        font-weight: 700;
        color: #1A1A2E;
    }

    /* Total Amount with info icon */
    .mobile-summary-amount-wrap {
        text-align: right;
        position: relative;
    }
    .mobile-summary-amount-row {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 6px;
    }
    .mobile-summary-amount-wrap .mobile-baggage-summary-value {
        color: #065f46;
    }
    .mobile-summary-info-icon {
        cursor: pointer;
        display: inline-flex;
        align-items: center;
    }
    .mobile-summary-info-icon svg {
        width: 18px;
        height: 18px;
    }

    /* Mobile price breakdown popup */
    .mobile-price-popup {
        position: absolute;
        bottom: calc(100% + 10px);
        right: 0;
        z-index: 1060;
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 8px 40px rgba(0,0,0,0.18);
        padding: 18px 20px 14px;
        min-width: 280px;
        max-width: 340px;
    }
    .mobile-price-popup-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 14px;
    }
    .mobile-price-popup-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1A1A2E;
        margin: 0;
    }
    .mobile-price-popup-close {
        font-size: 22px;
        cursor: pointer;
        color: #6B7280;
        line-height: 1;
        padding: 0 4px;
    }

    /* GST section in mobile footer */
    .mobile-summary-gst-wrap {
        flex-basis: 100%;
        border-top: 1px solid #e5e7eb;
        margin-top: 8px;
        padding-top: 8px;
        position: relative;
    }
    .mobile-summary-gst-check {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        margin: 0;
    }
    .mobile-summary-gst-check input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: #065f46;
        cursor: pointer;
    }
    .mobile-summary-gst-label {
        font-size: 13px;
        font-weight: 500;
        color: #1A1A2E;
    }

    /* Mobile GST popup */
    .mobile-gst-popup {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1060;
        background: #fff;
        border-radius: 14px 14px 0 0;
        box-shadow: 0 -4px 40px rgba(0,0,0,0.18);
        padding: 18px 20px calc(80px + env(safe-area-inset-bottom));
        max-height: 80vh;
        overflow-y: auto;
    }
    .mobile-gst-popup .bd-gst-popup-field {
        margin-bottom: 12px;
    }
    .mobile-gst-popup .bd-gst-popup-field label {
        font-size: 12px;
        font-weight: 600;
        color: #6B7280;
        margin-bottom: 4px;
        display: block;
    }
    .mobile-gst-popup .bd-gst-popup-input {
        width: 100%;
        padding: 8px 12px;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        font-size: 14px;
        outline: none;
    }
    .mobile-gst-popup .bd-gst-popup-input:focus {
        border-color: #065f46;
    }
    .mobile-gst-popup .bd-gst-popup-note {
        font-size: 11px;
        color: #6B7280;
        margin-top: 8px;
    }

    /* Increase padding for summary step too */
    #v2-step-summary {
        padding-bottom: 140px !important;
    }

    /* Mobile traveller validation error styles */
    .mobile-input-error,
    .mobile-input-error.form-control,
    .mobile-input-error.input-underlined {
        border-color: Red !important;
        border-bottom-color: Red !important;
    }
    .mobile-field-error {
        color: Red;
        font-size: 12px;
        display: block;
        margin-top: 4px;
    }
    .v2-bag-popular-tag{
        right: 57px;
        border-radius: 0 0 8px 8px;
    }
}

/* ===== Desktop: Passenger Cards with Colored Headers ===== */
.bd-pax-card {
    border: 1px solid #E5E7EB;
    /* border-radius: 12px; */
    overflow: hidden;
    margin-bottom: 20px;
}
.bd-pax-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #FFF7ED;
    border-bottom: 1px solid #E5E7EB;
}
.bd-pax-card-header.bd-pax-header-child {
    background: #F0FDF4;
}
.bd-pax-card-header.bd-pax-header-infant {
    background: #F0FDF4;
}
.bd-pax-card-header-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}
.bd-pax-card-header-icon.bd-icon-adult {
    background: #FA890718;
}
.bd-pax-card-header-icon.bd-icon-child {
    background: #13D20918;
}
.bd-pax-card-header-icon.bd-icon-infant {
    background: #8B5CF618;
}
.bd-pax-card-header-info {
    display: flex;
    flex-direction: column;
}
.bd-pax-card-header-title {
    font-size: 16px;
    font-weight: 700;
}
.bd-pax-card-header-title.bd-title-adult {
    color: #E67E22;
}
.bd-pax-card-header-title.bd-title-child {
    color: #22C55E;
}
.bd-pax-card-header-title.bd-title-infant {
    color: #8B5CF6;
}
.bd-pax-card-header-sub {
    font-size: 12px;
    color: #6B7280;
    font-weight: 400;
}
.bd-pax-card-body {
    padding: 16px 20px;
}
.bd-pax-card-body .bd-pax-grid,
.bd-pax-card-body .bd-pax-grid-infant {
    /* border: 1px solid #E5E7EB; */
    border-radius: 8px;
    overflow: hidden;
}
.bd-pax-card-body .bd-pax-cell {
    padding: 0px 16px;
    border-right: 1px solid #E5E7EB;
}
.bd-pax-card-body .bd-pax-cell:last-child {
    border-right: none;
}

/* ===== Mobile: Grouped Passenger List ===== */
.mob-pax-list {
    padding: 0;
}
.mob-pax-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 0 8px 0;
    text-align: center;
}
.mob-pax-section-title::before,
.mob-pax-section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #E5E7EB;
}
.mob-pax-item {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #F3F4F6;
    gap: 12px;
}
.mob-pax-item:last-child {
    border-bottom: none;
}
.mob-pax-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    color: #4CAF50;
    background: #F3F4F6;
    border: 1px solid #D1D5DB
}
.mob-pax-avatar.mob-pax-avatar-filled {
    background: #E8F5E9;
}
.mob-pax-avatar img {
    width: 28px;
    height: 28px;
    /* opacity: 0.7;
    filter: brightness(0) invert(1); */
}
.mob-pax-info {
    flex: 1;
    min-width: 0;
}
.mob-pax-name {
    font-size: 15px;
    font-weight: 600;
    color: #1A1A2E;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mob-pax-type {
    font-size: 12px;
    color: #9CA3AF;
    margin-top: 2px;
}
.mob-pax-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}
.mob-pax-status-done {
    background: #F0FDF4;
    color: #22C55E;
    border: 1px solid #BBF7D0;
}
.mob-pax-status-done::before {
    content: "\2713";
    font-size: 11px;
}
.mob-pax-status-pending {
    background: #FFFBEB;
    color: #D97706;
    border: 1px solid #FDE68A;
}
.mob-pax-edit-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
}
.mob-pax-edit-btn img {
    width: 16px;
    height: 16px;
}

/* Prevent iOS Safari auto-zoom on input focus (requires font-size >= 16px) */
@media screen and (max-width: 991px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    input[type="password"],
    input[type="url"],
    input[type="search"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* ============================================
   Promotional Partners Section (Home Page)
   ============================================ */
.promo-partners-section {
    padding: 40px 0 40px;
    background-color: #fff !important;
    position: relative;
    z-index: 1;
}
.promo-partners-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #ED1C24;
    margin-bottom: 32px;
    text-align: center;
}
.promo-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.promo-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
}
.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}
.promo-card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 1.9;
    object-fit: cover;
    display: block;
}
.promo-card-body {
    padding: 14px 18px 16px;
    text-align: center;
}
.promo-hotel-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px;
}
.promo-island-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}
/* .promo-cards-carousel-container {
    position: relative;
    width: 100%;
} */
.promo-cards-carousel-container .custom-nav-1 {
    z-index: 100;
}
#promo-partners-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
      width: 100%;
    padding-top: 18px;
    padding-bottom: 30px;
    margin-top: -18px;
    margin-bottom: -30px;
}
#promo-partners-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}
#promo-partners-carousel .owl-item {
    display: flex;
    height: auto;
}
.promo-card-slide {
    width: 100%;
    height: 100%;
    display: flex;
}
.promo-card-slide .promo-card-link {
    width: 100%;
}
.promo-card-slide .promo-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
@media (max-width: 767px) {
    .promo-partners-section { padding: 36px 0 32px; }
    .promo-partners-section .container { padding-left: 16px !important; padding-right: 0 !important; }
}

/* ============================================
   Hotel Landing Pages (GoL Hotels)
   ============================================ */
.gol-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.gol-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.20) 60%, transparent 100%);
}
.gol-hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 16px 48px;
    width: 100%;
}
.gol-hero-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 10px;
    display: block;
}
.gol-hero-badge {
    display: inline-block;
    background: #ED1C24;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.gol-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
    margin: 0 0 8px;
    line-height: 1.1;
}
.gol-hero-sub {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
    margin: 0;
}
.gol-desc-section {
    padding: 40px 0 28px;
    text-align: center;
}
.gol-desc-text {
    font-size: 1.1rem;
    color: #555;
    max-width: 680px;
    margin: 0 auto 16px;
    line-height: 1.7;
}
.gol-price-badge {
    display: inline-block;
    background: #ED1C24;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 24px;
}
/* Tab navigation */
.gol-tabs-wrapper {
    background: #fff;
    border-bottom: 2px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.gol-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.gol-tab-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 14px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gol-tab-btn:hover { color: #ED1C24; }
.gol-tab-btn.active {
    color: #ED1C24;
    border-bottom-color: #ED1C24;
    font-weight: 600;
}
/* Tab content panels */
.gol-tab-panel {
    display: block;
    padding:3rem 0 1.5rem;
    /* border-bottom: 1px solid #f0f0f0; */
    scroll-margin-top: 60px;
}

@media (max-width: 768px) {
  .gol-tab-panel {
  padding:1.5rem 0 1.5rem;
    
}  
.gol-price-badge {
    margin-top: 5px;
}
#tab-contact{
    padding-bottom:0px !important;
}
.gol-desc-section{
  padding:1.5rem 0 1.5rem;
}
.gol-contact-card {
    padding:0px !important;
}
.gol-contact-item {
    margin-bottom: 5px !important;
}
.gol-desc-section .hero-text2-paragraph{
    padding-right: 0px !important;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
}
.hero-text2-paragraph{
    padding-right: 0rem !important;
    padding-left: 0rem !important;
}
}
.gol-tab-panel:last-child { border-bottom: none; }
/* Highlights */
/* Highlights: 2-col layout — collage left, list right */
.gol-highlights-row {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: center;
    max-width: 850px;
    margin: 0 auto;
}
/* 2×2 image collage */
.gol-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    border-radius: 14px;
    overflow: hidden;
}
.gol-collage-img {
    width: 100%;
    height: 105px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
/* .gol-collage-img:hover { transform: scale(1.04); } */
.gol-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.gol-highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: black;
    border-bottom: 1px solid #f0f0f0;
}
.gol-highlights-list li:last-child { border-bottom: none; }
.gol-highlight-icon {
    color: #ED1C24;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .gol-highlights-row { grid-template-columns: 1fr; gap: 24px; }
    .gol-collage-img { height: 140px; }
}
/* Activity cards */
.gol-activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gol-activity-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #fff;
}
.gol-activity-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.gol-activity-name {
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}
/* Amenities */
.gol-amenities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 720px;
    margin: 0 auto;
}
.gol-amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 10px;
    border-radius: 12px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    text-align: center;
    width: 155px;
}
.gol-amenity-icon {
    font-size: 1.6rem;
    color: #ED1C24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.gol-amenity-icon img {
    width: 1.6rem;
    height: 1.6rem;
    object-fit: contain;
    filter: invert(15%) sepia(100%) saturate(7000%) hue-rotate(350deg) brightness(95%) contrast(120%);
}
.gol-amenity-label {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
}
.gol-desc-section .container{
    max-width: 57rem;
}
/* Package inclusions */
.gol-package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 640px;
    margin: 0 auto;
}
.gol-package-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 10px;
    background: #fff8f8;
    border: 1px solid #fde8e8;
    font-size: 0.9rem;
    color: #333;
}
.gol-package-item i { color: #ED1C24; font-size: 1rem; flex-shrink: 0; }
/* Brochure */
.gol-brochure-section {
    text-align: center;
    padding: 0 20px 0;
}
.gol-brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ED1C24;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
}
.gol-brochure-btn:hover {
    background: #c91530;
    color: #fff;
    transform: translateY(-2px);
}
/* Contact */
.gol-contact-card {
    max-width: 420px;
    margin: 0 auto;
    background: #fff;
    /* border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07); */
    text-align: center;
}
.gol-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 1rem;
}
.gol-contact-item:last-child { margin-bottom: 0; }
.gol-contact-icon { color: #ED1C24; font-size: 1.2rem; }
.gol-contact-link { color: #1a1a1a; text-decoration: none; font-weight: 500; }
.gol-contact-link:hover { color: #ED1C24; }
.gol-contact-phones { flex-wrap: nowrap; gap: 8px; white-space: nowrap; }
.gol-contact-phones .gol-contact-sep { color: #c4c4c4; font-weight: 400; }
.gol-phone-entry { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 767px) {
    .gol-contact-phones { flex-direction: column; align-items: center; gap: 10px; white-space: normal; }
    .gol-contact-phones .gol-contact-sep { display: none; }
}
@media (max-width: 575px) {
    .gol-contact-phones { font-size: 1rem; }
    .gol-contact-phones .gol-contact-icon { font-size: 1rem; }
}
/* Section headings */
.gol-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ED1C24;
    text-align: center;
    margin-bottom: 28px;
}
/* Gallery */
.gol-gallery-section {
    padding: 40px 0 56px;
    background: #f9f9f9;
}
.gol-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.gol-gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: transform 0.2s;
    cursor: pointer;
    /* cursor: zoom-in; */
}
.gol-gallery-img:hover { transform: scale(1.02); }

/* Gallery Lightbox */
.gol-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 40px;
}
.gol-lightbox.is-open { display: flex; }
.gol-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    user-select: none;
}
.gol-lightbox-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
}
.gol-lightbox-btn:hover { background: rgba(255, 255, 255, 0.25); transform: scale(1.05); }
.gol-lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.gol-lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.gol-lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.gol-lightbox-next:hover { transform: translateY(-50%) scale(1.05); }
.gol-lightbox-close { top: 20px; right: 20px; font-size: 26px; }
.gol-lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
@media (max-width: 767px) {
    .gol-lightbox { padding: 12px; }
    .gol-lightbox-btn { width: 42px; height: 42px; font-size: 22px; }
    .gol-lightbox-prev { left: 8px; }
    .gol-lightbox-next { right: 8px; }
    .gol-lightbox-close { top: 10px; right: 10px; font-size: 22px; }
}

/* Responsive */
@media (max-width: 991px) {
    .gol-hero { height: 60vh; }
    .gol-hero-title { font-size: 2.2rem; }
    .gol-activity-grid { grid-template-columns: repeat(2, 1fr); }
    .gol-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .gol-tabs-wrapper { display: none; }
    .gol-hero { height: 50vh; min-height: 320px; }
    .gol-hero-title { font-size: 1.6rem; }
    .gol-hero-sub { font-size: 0.95rem; }
    .gol-activity-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gol-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .gol-gallery-img { height: 140px; }
    .gol-contact-card { padding: 24px 20px; }
    .gol-desc-text { font-size: 1rem; }
    .gol-section-title { font-size: 1.2rem; }
}
