/* Premium Booking Flow Styles - Glassmorphism & High-End Design */

/* Standalone Page Container */
.booking-page-layout {
    min-height: 100vh;
    background: url('/assets/img/header-video/cover.webp') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.booking-page-layout::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1;
}

/* Modal Overlay */
.bm-page-container {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000000;
    /* Force above navbar (usually 999999) */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s;
    scroll-behavior: smooth;
    user-select: none;
}

.bm-page-container.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Content Wrapper */
.bm-content-wrapper {
    width: 100%;
    max-width: 1100px;
    max-height: 88svh;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    position: relative;
    z-index: 10;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    color: #fff !important;
    margin: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bm-page-container.active .bm-content-wrapper {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Header & Progress Indicator are fixed at the top due to flex-column */
.bm-header {
    background: linear-gradient(135deg, rgba(89, 98, 179, 0.8) 0%, rgba(174, 151, 255, 0.8) 100%);
    padding: 20px;
    text-align: center;
    flex-shrink: 0;
}

.bm-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -1px;
    color: #fff;
}

.bm-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* Progress Indicator */
.bm-steps-indicator {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.bm-step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.bm-step-dot::after {
    content: '';
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bm-step-dot span {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.4s ease;
}

.bm-step-dot:hover span {
    color: rgba(255, 255, 255, 0.9);
}

.bm-step-dot:hover::after {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.bm-step-dot.active span {
    color: #fff !important;
}

.bm-step-dot.active::after {
    background: #ae97ff;
    border-color: #ae97ff;
    box-shadow: 0 0 20px rgba(174, 151, 255, 0.6);
    transform: scale(1);
}

.bm-step-dot.active:hover::after {
    background: #c3b3ff;
    border-color: #c3b3ff;
}

/* Body */
.bm-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    color: #fff;
}

/* Custom Premium Scrollbar for Body */
.bm-body::-webkit-scrollbar {
    width: 6px;
}

.bm-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.bm-body::-webkit-scrollbar-thumb {
    background: rgba(174, 151, 255, 0.2);
    border-radius: 10px;
}

.bm-body::-webkit-scrollbar-thumb:hover {
    background: rgba(174, 151, 255, 0.4);
}

.bm-body h2,
.bm-body h3,
.bm-body h4,
.bm-body h5 {
    color: #fff !important;
}

.bm-body p,
.bm-body span,
.bm-body label {
    color: rgba(255, 255, 255, 0.95) !important;
}

.bm-steps-wrapper {
    position: relative;
    width: 100%;
    transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    cursor: grab;
}

.bm-steps-wrapper:active {
    cursor: grabbing;
}

.bm-step-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(120px);
    /* Come from right further */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        opacity 0.4s ease,
        visibility 0.4s;
    pointer-events: none;
    padding: 30px 40px;
}

/* Utility to disable transitions during drag */
.bm-step-content.dragging-step {
    transition: none !important;
}

.bm-step-content.slide-left {
    transform: translateX(-120px);
    /* Go to left further */
}

.bm-page-container.active .bm-step-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.bm-step-content h2 {
    color: #fff !important;
}

/* Summary Box */
.bm-summary-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: all 0.3s ease;
}

.bm-summary-box strong {
    color: #999;
}

.bm-summary-item {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 1.1rem;
    padding-top: 15px;
    /* Changed from padding-bottom */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Changed from border-bottom */
}

.bm-summary-item:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.bm-summary-item-value {
    width: 70%;
    text-align: end;
    font-weight: bold;
}


.bm-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Vehicle Selection Refined */
.bm-vehicle-grid {
    display: grid;
    gap: 25px;
    margin-top: 20px;
}

.bm-vehicle-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: row-reverse;
    gap: 15px;
}

.bm-vehicle-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(174, 151, 255, 0.4);
    transform: translateY(-5px);
}

.bm-vehicle-card.selected {
    background: rgba(174, 151, 255, 0.1);
    border-color: #ae97ff;
    box-shadow: 0 0 30px rgba(174, 151, 255, 0.2);
}

.bm-img-container {
    aspect-ratio: 5 / 2;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.bm-vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bm-vehicle-card:hover .bm-vehicle-img {
    transform: scale(1.05);
}

.bm-vehicle-info {
    position: relative;
    width: 100%;
}

.bm-vehicle-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff !important;
}

.bm-vehicle-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.bm-price-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(174, 151, 255, 0.2);
    border-radius: 12px;
    color: #ae97ff;
    font-weight: 800;
    font-size: 1.2rem;
}

/* Forms */
.bm-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.bm-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bm-input-group label {
    font-size: 14px;
    font-weight: 700;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bm-flex-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    width: 100%;
}

.bm-flex-main {
    flex: 1;
}

.bm-flex-side {
    flex: 0 0 auto;
}

.bm-input-group input,
.bm-input-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 15px 20px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    resize: none;
}

.bm-input-group input:focus,
.bm-input-group textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ae97ff;
    box-shadow: 0 0 0 4px rgba(174, 151, 255, 0.1);
}

/* Footer & Buttons */
.bm-footer {
    padding: 28px 40px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.bm-btn {
    padding: 16px 45px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 1px;
}

.bm-btn-back {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.bm-btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bm-btn-next {
    background: linear-gradient(to right, #5962b3, #ae97ff);
    color: #fff;
    box-shadow: 0 10px 20px rgba(89, 98, 179, 0.3);
}

.bm-btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(89, 98, 179, 0.4);
}

.bm-btn:disabled {
    opacity: 0.3;
    pointer-events: none;
}

.bm-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bm-close:hover {
    background: #ff5e5e;
    transform: rotate(90deg);
}

/* Step 4: Final Confirmation & Payment Layout */
.bm-final-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
}

/* Accordion Summary */
.bm-summary-accordion {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bm-summary-header {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.2s ease;
}

.bm-summary-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.bm-summary-icon {
    width: 36px;
    height: 36px;
    background: rgba(174, 151, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.bm-accordion-chevron {
    font-size: 0.6rem;
    opacity: 0.5;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(-90deg);
    color: white;
}

.bm-summary-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
}

.bm-summary-body.active {
    max-height: 1000px;
    opacity: 1;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Payment Segment */
.bm-payment-segment {
    opacity: 1;
}

.bm-payment-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #5962b3, #ae97ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(89, 98, 179, 0.2);
}

.bm-payment-container {
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2);
}

#payment-element {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bm-flex-side label {
    text-align: center;
}

/* Suitcase Counter */
.bm-suitcase-counter {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 9px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: fit-content;
}

.bm-counter-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(174, 151, 255, 0.1);
    border: 1px solid rgba(174, 151, 255, 0.2);
    color: #ae97ff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bm-counter-btn:hover {
    background: #ae97ff;
    color: #fff;
    transform: scale(1.1);
}

.bm-counter-btn:active {
    transform: scale(0.95);
}

.bm-counter-value {
    font-size: 1.4rem;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 10px rgba(174, 151, 255, 0.3);
}

.bm-add-pax-btn {
    width: 36px;
    height: 36px;
    background: rgba(174, 151, 255, 0.1);
    border: 1px solid rgba(174, 151, 255, 0.2);
    color: #ae97ff;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bm-add-pax-btn:hover {
    background: #ae97ff;
    color: #fff;
    transform: scale(1.1);
}

.bm-add-pax-btn:active {
    transform: scale(0.95);
}

.bookingService-PassengerInputGroup {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding-right: 12px;
    transition: all 0.3s ease;
}

.bookingService-PassengerInputGroup:focus-within {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ae97ff;
    box-shadow: 0 0 0 4px rgba(174, 151, 255, 0.1);
}

.bookingService-PassengerInputGroup input {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    flex: 1;
}

/* Animations */
@keyframes bm-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* ── Custom Tour Selector ── */
.tour-select-wrapper {
    position: relative;
    width: 100%;
}

.tour-custom-select {
    background: transparent;
    border: 2px solid var(--bg-clr);
    outline: none;
    border-radius: 1rem;
    padding: 1.2rem 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 280px;
    height: 80px;
    transition: all 0.2s;
}

.tour-custom-select:hover {
    border-color: #cbd5e1;
}

.tour-selected-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-selected-img {
    width: 50px;
    height: 45px;
    border-radius: 6px;
    object-fit: cover;
    background: #f1f5f9;
}

.tour-selected-name {
    color: black;
}

.tour-dropdown-list {
    position: absolute;
    /* top, left set via JS */
    width: fit-content;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    max-height: 380px;
    overflow-y: auto;
    display: none;
    padding: 5px;
}

.tour-dropdown-list.active {
    display: block;
}

.tour-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    transition: background 0.2s;
    cursor: pointer;
    border-radius: calc(1rem - 5px);
    transition: ease background 0.2s, ease scale 0.2s;
}

.tour-option:hover {
    background: #cbd5e1;
}

.tour-option:active {
    scale: 0.95;
}

.tour-option-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-right: 1rem;
}

.tour-option-img {
    width: 50px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}

.tour-option-info {
    display: flex;
    flex-direction: column;
}

.tour-option-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
}

.tour-option-price {
    font-size: 0.8rem;
    color: #64748b;
}

.tour-link-btn {
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.tour-link-btn:hover {
    background: #f1f5f9;
    stroke: #5962b3;
    border-color: #e2e8f0;
}

/* ── Tour Slider in Booking Modal ── */
.tour-modal-slider-container {
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    display: none;
    /* Shown via JS when tour selected */
    position: relative;
}

.tour-modal-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    cursor: grab;
}

.tour-modal-slider:active {
    cursor: grabbing;
}

.tour-modal-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tour-modal-slide.active {
    opacity: 1;
}

.tour-modal-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.tour-modal-slider-nav {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.tour-modal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: ease-in-out 0.3s background, ease-in-out 0.3s transform;
}

.tour-modal-dot.active {
    background: #ae97ff;
    transform: scale(1.3);
}

.tour-modal-link-wrap {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.tour-modal-link-text {
    font-size: 0.9rem;
    color: #aab;
    font-weight: 500;
}

.tour-modal-external-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ae97ff;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s, scale 0.2s;
}

.tour-modal-external-link:hover {
    opacity: 0.8;
}

.tour-modal-external-link:active {
    scale: 0.95;
}

/* Responsive */
@media (max-width: 1100px) {
    .bm-page-container {
        padding: 0;
        align-items: flex-start;
    }

    .bm-content-wrapper {
        max-width: none;
        width: 100%;
        height: 100vh;
        max-height: none;
        border-radius: 0;
        margin: 0;
        transform: none;
        border: none;
    }

    .bm-page-container.active .bm-content-wrapper {
        transform: none;
        /* Disable scale/translate animation for mobile fullscreen for speed */
    }

    .bm-header {
        padding: 30px 20px;
    }

    .bm-header h1 {
        font-size: 1.4rem;
        letter-spacing: -0.5px;
    }

    .bm-header p {
        font-size: 13px;
    }

    .bm-steps-indicator {
        width: 100%;
        gap: 30px;
        padding: 20px 10px;
        justify-content: center;
        /* Centered layout */
        background: rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .tour-modal-slider {
        aspect-ratio: 16 / 8;
    }

    .tour-modal-slider-nav {
        bottom: 65px;
    }

    .bm-close {
        top: 10px;
        right: 10px;
    }

    .bm-summary-box {
        padding: 15px;
    }

    .bm-summary-box h2 {
        font-size: 1.2rem;
    }

    .bm-summary-item {
        font-size: 14px;
        padding-top: 10px;
        margin-top: 10px;
    }

    .bm-summary-item-value {
        width: 60%;
    }

    /* Step Content Full Width */
    .bm-step-content {
        width: 100%;
        padding: 20px;
    }

    .bm-form-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        /* Side padding for content */
    }

    .bm-flex-row {
        flex-direction: column;
        /* Stacked fields */
        gap: 20px;
    }

    /* Fixed Passenger Names Input Group */
    .bm-input-group.bm-flex-main {
        width: 100%;
    }

    .bm-add-pax-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .bm-pax-input-row {
        width: 100%;
        display: flex;
        gap: 10px;
    }

    .bm-pax-input-row input {
        flex: 1;
    }

    /* Suitcase Counter Mobile */
    .bm-input-group.bm-flex-side {
        width: 100% !important;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, 0.03);
        padding: 15px;
        border-radius: 12px;
    }

    /* Vehicle Card Mobile Overhaul */
    .bm-vehicle-grid {
        gap: 15px;
        padding: 0 15px;
    }

    .bm-vehicle-card {
        flex-direction: column;
        /* Vertical stack */
        padding: 15px;
        gap: 15px;
        border-radius: 16px;
    }

    .bm-img-container {
        height: auto;
        aspect-ratio: 16 / 9;
        width: 100%;
    }

    .bm-vehicle-info h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .bm-vehicle-specs {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 50px;
        /* Space for absolute price badge */
        font-size: 13px;
    }

    .bm-price-badge {
        padding: 6px 15px;
        font-size: 1rem;
        bottom: -5px;
    }

    .bm-body {
        padding: 0;
        /* Let step components handle padding */
    }

    .bm-footer {
        padding: 20px 15px;
    }

    .bm-btn {
        padding: 14px 25px;
        font-size: 14px;
    }
}

/* Tour Durations on Slider */
.tour-modal-durations {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.tour-modal-duration-tag {
    background: rgba(7, 7, 26, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e8e8f0;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    /* Added */
}

.tour-modal-duration-tag:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.tour-modal-duration-tag svg {
    opacity: 0.6;
}

.tour-modal-duration-tag.active {
    background: rgba(89, 98, 179, 0.9);
    border-color: #ae97ff;
    color: #fff;
    transform: scale(1.05);
}

.tour-modal-duration-tag.active svg {
    opacity: 1;
    color: #ae97ff;
}

/* Enhanced Address Selection Display */
.bm-address-display {
    position: absolute;
    inset: 1px;
    background: #fff;
    border-radius: 1rem;
    padding: 8px 15px;
    display: none;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
    border: 1px solid #e2e8f0;
}

.bm-address-display.active {
    display: flex;
}

.bm-address-main-text {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    width: 85%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bm-address-sub-text {
    font-size: 0.72rem;
    color: #64748b;
    width: 85%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 1px;
}

.bm-address-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}

.bm-address-clear:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: translateY(-50%) scale(1.1);
}

.bm-address-clear.active {
    display: flex;
}

/* Hide input text when card is shown */
.bookingService-Input.is-picked {
    color: transparent !important;
}

.bookingService-Input.is-picked::placeholder {
    color: transparent !important;
}