/* Package details booking UI */
.booking-app-card {
    border: 1px solid #dff4f8;
    border-radius: 18px;
    background: #fff;
    padding: 16px;
    margin-top: 16px;
    position: relative;
}

.booking-app-title {
    font-size: 16px;
    font-weight: 700;
    color: #0b2230;
    margin-bottom: 12px;
}

/* Package details layout override for wider booking form */
.rts-tour-details-area .bottom-content-area.package-details-layout .left {
    max-width: 78%;
}

.rts-tour-details-area .bottom-content-area.package-details-layout .right {
    max-width: 22%;
    opacity: 0;
    pointer-events: none;
}

.booking-multi-step-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-stepper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.booking-step-trigger {
    border: 1px solid #d7f1f8;
    border-radius: 12px;
    background: #fff;
    color: #4f5d68;
    padding: 10px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.booking-step-trigger .step-no {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #eaf5fb;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.booking-step-trigger.is-active {
    border-color: var(--color-primary);
    background: #f2fdff;
    color: #0b2230;
}

/* Step Pane Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

.booking-step-pane {
    display: none;
    animation: fadeOutDown 0.3s ease-out forwards;
}

.booking-step-pane.is-active {
    display: block;
    animation: fadeInUp 0.4s ease-out;
}

.booking-step-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 10px;
}

.booking-step-actions .rts-btn {
    min-width: 220px;
}

/* Single Input Styling - Theme form fields */
.single-input {
    position: relative;
}

.single-input input,
.single-input textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    color: var(--color-heading-1);
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 400;
    transition: border-color 0.3s ease;
}

.single-input input {
    height: 54px;
}

.single-input textarea {
    height: 126px;
    padding-top: 13px;
    resize: vertical;
}

.single-input input::placeholder,
.single-input textarea::placeholder {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-body-1);
}

.single-input input:focus,
.single-input textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(17, 156, 230, 0.1);
}

/* Input Div - Form wrapper */
.input-div {
    background: transparent;
}

.input-div .row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 20px;
}

.booking-option-item {
    border: 1px solid #d7f1f8;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-option-item.is-selected {
    border-color: #00aecd;
    box-shadow: 0 10px 20px rgba(0, 174, 205, 0.15);
}

.booking-option-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    flex-shrink: 0;
}

.booking-option-content {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.booking-option-name {
    font-size: 12px;
    font-weight: 600;
    color: #13222f;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.booking-option-price {
    display: inline-block;
    background: #e7fbff;
    color: #00aecd;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    padding: 4px 10px;
}

/* Booking Selected Box - Package Details */
.booking-selected-box {
    border: 1px solid #d7f1f8;
    border-radius: 14px;
    background: #f2fdff;
    padding: 12px;
    margin-bottom: 12px;
}

.booking-selected-box h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-heading-1);
    margin-bottom: 8px;
}

.booking-selected-box .d-flex {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-heading-1);
}

.booking-selected-box strong {
    font-weight: 600;
}

/* Booking Label - Form labels */
.booking-label {
    font-size: 13px;
    color: #516270;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Booking Summary - Clean Layout */
.booking-summary-rows {
    margin-top: 8px;
}

.booking-summary-section-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-heading-1);
    padding: 8px 0 6px 0;
    margin-top: 10px;
    border-top: 1px solid #e8f1f7;
    display: flex;
    align-items: center;
    gap: 6px;
}

.booking-summary-section-title i {
    color: var(--color-primary);
    font-size: 14px;
}

.booking-summary-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e8f1f7;
    font-size: 13px;
}

.booking-summary-row:last-child {
    border-bottom: none;
}

.booking-summary-item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.booking-summary-item span.item-name {
    font-weight: 500;
    color: var(--color-heading-1);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Circular Icon Background */
.booking-summary-item span.item-name i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(17, 156, 230, 0.15);
    color: var(--color-primary);
    font-size: 12px;
    flex-shrink: 0;
}

.booking-summary-row strong {
    font-weight: 600;
    color: var(--color-heading-1);
    text-align: right;
    white-space: nowrap;
}

.booking-summary-row .remove-row-icon {
    background: none;
    border: none;
    color: #e5484d;
    cursor: pointer;
    padding: 4px 6px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    line-height: 1;
    flex-shrink: 0;
}

.booking-summary-row .remove-row-icon i {
    font-size: 16px;
}

.booking-summary-row .remove-row-icon:hover {
    opacity: 0.7;
}

/* Booking Total Box */
.booking-total-box {
    border: 1px solid #d7f1f8;
    border-radius: 14px;
    background: #f2fdff;
    padding: 12px;
    margin-top: 10px;
}

.booking-strong {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
}

.booking-input {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    height: 54px;
    padding: 14px 16px !important;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-heading-1);
    margin-bottom: 16px;
    transition: border-color 0.3s ease;
}

.booking-input::placeholder {
    font-size: 15px !important;
    font-weight: 300 !important;
    color: var(--color-body-1) !important;
}

.booking-input::-webkit-input-placeholder {
    font-size: 15px !important;
    font-weight: 300 !important;
    color: var(--color-body-1) !important;
}

.booking-input:-ms-input-placeholder {
    font-size: 15px !important;
    font-weight: 300 !important;
    color: var(--color-body-1) !important;
}

.booking-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(17, 156, 230, 0.1);
}

/* Pickup & Drop Group - Add spacing for transport form fields */
#pickup_drop_group {
    padding: 16px 0 !important;
    border-top: 1px solid #e8f1f7;
    margin-top: 8px;
}

#pickup_drop_group .booking-label:first-child {
    margin-top: 0;
}

.booking-textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    min-height: 126px;
    resize: vertical;
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-heading-1);
    margin-bottom: 10px;
    transition: border-color 0.3s ease;
}

.booking-textarea::placeholder {
    font-size: 15px !important;
    font-weight: 300 !important;
    color: var(--color-body-1) !important;
}

.booking-textarea::-webkit-input-placeholder {
    font-size: 15px !important;
    font-weight: 300 !important;
    color: var(--color-body-1) !important;
}

.booking-textarea:-ms-input-placeholder {
    font-size: 15px !important;
    font-weight: 300 !important;
    color: var(--color-body-1) !important;
}

.booking-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(17, 156, 230, 0.1);
}

.booking-input.is-invalid,
.guest-field.is-invalid,
.booking-textarea.is-invalid {
    border-color: #e5484d;
    box-shadow: 0 0 0 3px rgba(229, 72, 77, 0.12);
}

.qty-wrap {
    border: 1px solid #edf3f6;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
}

.qty-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #d7f1f8;
    border-radius: 12px;
    background: #fff;
    font-size: 24px;
    line-height: 1;
    color: #00aecd;
}

.qty-value {
    font-size: 28px;
    font-weight: 700;
    color: #0b2230;
}

.guest-field {
    width: 100%;
    border: 1px solid #d9e1e7;
    border-radius: 999px;
    height: 58px;
    padding: 0 18px;
    margin-bottom: 12px;
    font-size: 16px;
}

.booking-message {
    border-radius: 12px;
    padding: 10px 12px;
    margin-top: 12px;
    font-size: 14px;
}

.booking-message.is-success {
    border: 1px solid #9de4be;
    background: #ecfff4;
    color: #0f6b3a;
}

.booking-message.is-error {
    border: 1px solid #f3b3b5;
    background: #fff2f3;
    color: #9e1e24;
}

/* Includes and Excludes Styles */
.includes-excludes-area {
    padding: 20px 0;
}

.includes-excludes-area .title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-heading-1);
    margin-bottom: 30px;
    text-transform: capitalize;
}

.includes-list,
.excludes-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.includes-item,
.excludes-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.includes-item:last-child,
.excludes-item:last-child {
    border-bottom: none;
}

.includes-item p,
.excludes-item p {
    margin: 0;
    color: var(--color-heading-1);
    font-weight: 500;
    line-height: 1.6;
}

/* Icon Circle Styling */
.icon-circle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0;
}

.icon-circle i {
    font-size: 20px;
}

.include-icon {
    background: rgba(17, 156, 230, 0.1);
    color: var(--color-primary);
}

.exclude-icon {
    background: rgba(255, 107, 107, 0.1);
    color: #FF6B6B;
}

/* Gallery Section Heading */
.gallery-header {
    border-bottom: 1px solid var(--color-border);
}

.gallery-header .title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-heading-1);
}

/* Gallery Slider Navigation Container */
.gallery-nav-buttons {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    padding: 15px 20px !important;
    align-items: center !important;
}

/* Gallery Slider Navigation Buttons */
.swiper-btn-prev-gallery,
.swiper-btn-next-gallery {
    position: unset !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    border: 1px solid var(--color-primary) !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--color-primary) !important;
    background: transparent !important;
    transition: var(--transition) !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-size: 18px !important;
    padding: 0 !important;
    min-width: 40px !important;
    flex-shrink: 0 !important;
}

.swiper-btn-prev-gallery:hover {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
}

.swiper-btn-next-gallery {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    border-color: var(--color-primary) !important;
}

.swiper-btn-next-gallery:hover {
    opacity: 0.9 !important;
}

/* Package Card Pricing Section - Bottom Aligned (Like Buttons) */
.tour-wrapper .content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-wrapper .content .title {
    margin-bottom: 12px;
    flex-shrink: 0;
}

.tour-wrapper .content .meta-content {
    margin-top: 0;
    flex: 0 0 auto;
}

.tour-wrapper .content .button-area {
    margin-top: 0;
    padding-top:0 ;
}

.package-pricing-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: auto;
    margin-bottom: 12px;
    padding-bottom: 0;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0;
}

.price-label {
    flex: 0 0 auto;
}

.label-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-heading-1);
    text-transform: capitalize;
}

.price-value {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
}

.crossed-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.customer-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
}

/* Swiper Sliders - Addons & Transport */
.booking-options-slider {
    margin: 0;
    overflow: hidden;
}

.booking-options-slider .swiper-wrapper {
    display: flex;
}

.booking-options-slider .swiper-slide {
    padding: 0;
    height: auto;
}

.addons-slider,
.transport-slider {
    padding: 0;
}

.addons-slider .swiper-slide,
.transport-slider .swiper-slide {
    width: 50%;
}

/* Ensure cards fill available height */
.addons-slider .booking-option-item,
.transport-slider .booking-option-item {
    min-height: 220px;
}

/* Navigation Buttons */
.booking-slider-nav {
    position: static;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 10px;
    z-index: 10;
}

.booking-slider-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid #d7f1f8;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.booking-slider-nav button:hover:not(:disabled) {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.booking-slider-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 991px) {
    .rts-tour-details-area .bottom-content-area.package-details-layout {
        display: block;
    }

    .rts-tour-details-area .bottom-content-area.package-details-layout .left,
    .rts-tour-details-area .bottom-content-area.package-details-layout .right {
        max-width: 100%;
    }

    .rts-tour-details-area .bottom-content-area.package-details-layout .right {
        display: none;
    }

    .booking-stepper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-step-actions {
        flex-direction: column;
    }

    .booking-step-actions .rts-btn {
        width: 100%;
        min-width: 0;
    }
}

/* Auth Modal Styles */
#authModal .modal-content input[type=text],
#authModal .modal-content input[type=password],
#authModal .modal-content input[type=email],
#authModal .modal-content input[type=tel],
#authModal .modal-content textarea {
    height: 60px;
    color: var(--color-heading-1);
    background: var(--color-white);
    font-size: var(--font-size-b2);
    font-weight: 400;
    line-height: 28px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0 15px;
    outline: none;
}

#authModal .modal-content input[type=text]:focus,
#authModal .modal-content input[type=password]:focus,
#authModal .modal-content input[type=email]:focus,
#authModal .modal-content input[type=tel]:focus,
#authModal .modal-content textarea:focus {
    outline: none;
}

/* Auth Modal Label Styles */
#authModal .modal-content form label {
    line-height: 1;
    color: var(--color-heading-1);
    margin-bottom: 15px;
    font-weight: 600;
    display: inline-block;
}

/* Auth Modal Form Spacing */
#authModal .modal-content form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Auth Modal Tab Navigation */
#authModal .auth-nav-btn {
    border: none !important;
    color: var(--color-heading-1);
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

#authModal .auth-nav-btn:hover {
    color: var(--color-heading-1);
}

#authModal .auth-nav-btn.auth-tab-active {
    border-bottom: 2px solid var(--color-primary);
    color: var(--color-heading-1);
}

/* Remove rounded border from modal */
#authModal .modal-dialog {
    border-radius: 0 !important;
}

#authModal .modal-content {
    border-radius: 0 !important;
}

/* Style close button in auth modal */
#authModal .close {
    opacity: 1;
    color: var(--color-heading-1);
    font-size: 24px;
    width: auto;
    height: auto;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Package Details - Inline CSS Moved to Classes */

/* Feature List Icon Styles */
.feature-item .icon img {
    width: 50px;
    height: 50px;
}

/* Map iframe border reset */
iframe.radius-10 {
    border: 0;
}

/* Price Box - Row with pricing columns */
.booking-selected-box > div > div:last-child {
    min-width: 300px;
}

.price {
    width: auto;
}

/* Strikethrough Price Text */
.price .prev span {
    text-decoration: line-through;
    color: #999;
    display: block;
}

/* Price Label (Adult/Child) */
.price .current h6 {
    margin: 0;
    font-size: 12px;
    color: #666;
}

/* Price Value (Amount) */
.price .current h5 {
    margin: 5px 0 0 0;
}

/* Child Summary Row - Initially Hidden */
#child_summary_row {
    display: none;
}

/* Summary Divider Line */
.booking-total-box > div:last-child {
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

/* Bold Label for Subtotal */
.booking-label-strong {
    font-weight: 600;
}

/* Gallery Slider Side Height */
.gallery-slider-side {
    height: 320px;
}

/* Gallery Slide Width */
.gallery-slider-side .swiper-slide {
    width: 100%;
}

/* Gallery Image Link */
.gallery-image {
    display: block;
    width: 100%;
    height: 100%;
}

/* Gallery Image Styling */
.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Pricing Note Disclaimer */
.pricing-note {
    font-size: 12px;
    color: #999;
    margin: 10px 0 0 0;
    text-align: center;
}

/* Toast Notification Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(400px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}

/* Toast Container */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

/* Toast Message Box */
.toast-notification {
    background: #fff;
    border-left: 4px solid var(--color-primary);
    border-radius: 4px;
    padding: 16px 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.4s ease-out;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-notification.is-success {
    border-left-color: #27ae60;
}

.toast-notification.is-success .toast-icon {
    color: #27ae60;
    font-weight: bold;
}

.toast-notification.is-info {
    border-left-color: var(--color-primary);
}

.toast-notification.is-info .toast-icon {
    color: var(--color-primary);
    font-weight: bold;
}

.toast-notification.is-removing {
    animation: slideOutRight 0.3s ease-in forwards;
}

.toast-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
}

.toast-text {
    flex: 1;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Selection Highlight Animation */
@keyframes scaleHighlight {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.booking-option-item.is-selected {
    animation: scaleHighlight 0.4s ease-out;
}

/* Item Removal Animation */
@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

.booking-summary-row.is-removing {
    animation: slideOutLeft 0.3s ease-out forwards;
}

/* ========================================
   PAYMENT METHOD SELECTION STYLES
   ======================================== */

.payment-methods-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.payment-method-card {
    margin-bottom: 0;
}

.payment-method-label {
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.payment-method-label input[type="radio"] {
    display: none !important;
}

.payment-card-wrapper {
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 130px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #d0d0d0;
    background: #fafafa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.payment-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

/* Hover State - Optional, for non-selected cards */
.payment-method-label:hover .payment-card-wrapper:not(.payment-selected) {
    border-color: #b0d4ff !important;
    background: #f5f9ff !important;
    box-shadow: 0 4px 16px rgba(13, 156, 230, 0.12) !important;
    transform: translateY(-2px) !important;
}

/* ============================================
   SELECTED STATE - Custom Payment Selected Class
   ============================================ */
.payment-card-wrapper.payment-selected {
    border: 2px solid #0dcaf0 !important;
    background: #e0f8ff !important;
    box-shadow: 0 6px 24px rgba(13, 202, 240, 0.2) !important;
}

/* Radio Circle Styling */
.radio-circle {
    min-width: 28px;
    width: 28px;
    height: 28px;
    border: 2.5px solid #c0c0c0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: white;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.payment-card-wrapper.border-primary .radio-circle {
    border-color: #0dcaf0 !important;
    background: white !important;
    box-shadow: 0 0 0 1px #0dcaf0 !important;
}

.radio-circle > div {
    width: 12px;
    height: 12px;
    background: #0dcaf0;
    border-radius: 50%;
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.6);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Payment Details Section */
.payment-details {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.payment-details h6 {
    font-size: 18px;
    font-weight: 700;
    color: #0b2230;
    margin: 0 0 6px 0;
    line-height: 1.3;
    display: inline;
}

.payment-details p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.payment-details .features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
}

/* Badge Styling */
.payment-details .badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 12px;
    background: #d4edda;
    color: #155724;
    display: inline-block;
    text-transform: uppercase;
    margin-left: 10px;
}

.payment-details .badge.bg-light {
    background: #f0f4f8;
    color: #556475;
    font-weight: 600;
    letter-spacing: normal;
    text-transform: none;
    margin-left: 0;
}

.payment-details .badge.bg-light:nth-of-type(1) {
    background: linear-gradient(135deg, #fff9e6 0%, #ffe8cc 100%);
    color: #c67a04;
}

.payment-details .badge.bg-light:nth-of-type(2) {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #4eade3;
}

/* Payment Method Name with Recommended Badge */
.payment-card-wrapper.border-primary h6 {
    color: #4eade3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-card-wrapper {
        min-height: 120px;
        padding: 16px;
        gap: 12px;
    }
    
    .payment-details h6 {
        font-size: 16px;
    }
    
    .payment-details p {
        font-size: 13px;
    }
    
    .radio-circle {
        min-width: 24px;
        width: 24px;
        height: 24px;
    }
}

/* Booking Confirmation & Failed Pages */
.booking-success-card {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.booking-success-card .success-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    margin-bottom: 15px;
}

.booking-success-card h2 {
    color: #155724;
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.booking-success-card p {
    color: #155724;
    margin: 10px 0 0 0;
    font-size: 16px;
}

.booking-error-card {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 2px solid #dc3545;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.booking-error-card .error-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    margin-bottom: 15px;
}

.booking-error-card h2 {
    color: #721c24;
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.booking-error-card p {
    color: #721c24;
    margin: 10px 0 0 0;
    font-size: 16px;
}

.booking-details-section {
    padding: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.booking-details-section h3 {
    font-size: 20px;
    margin: 0 0 20px 0;
    color: #333;
}

.booking-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.booking-detail-item {
    display: flex;
    flex-direction: column;
}

.booking-detail-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.booking-detail-value {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.booking-detail-value.highlight {
    font-size: 18px;
    color: #0dcaf0;
    font-weight: 600;
}

.booking-amount-section {
    padding: 30px;
    background: #f8f9fa;
}

.amount-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.amount-row.total {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ddd;
}

.amount-row label {
    font-size: 16px;
    color: #666;
}

.amount-row.total label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.amount-row .value {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.amount-row.total .value {
    font-size: 24px;
    font-weight: 700;
    color: #0dcaf0;
}

.booking-note {
    font-size: 13px;
    color: #999;
    margin: 0;
    font-style: italic;
}

.error-details-box {
    background: #fff5f5;
    border-left: 4px solid #dc3545;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.error-details-box p {
    margin: 0;
    font-size: 16px;
    color: #721c24;
    font-weight: 500;
}

.info-issues-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.info-issues-box h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
}

.info-issues-box ul {
    margin: 0;
    padding-left: 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

.info-box {
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.info-box.success {
    background: #e3f2fd;
    border-left: 4px solid #2196F3;
}

.info-box.warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.info-box h4 {
    margin: 0 0 10px 0;
    color: #1976D2;
    font-size: 16px;
}

.info-box.warning h4 {
    color: #856404;
}

.info-box ul {
    margin: 0;
    padding-left: 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

.info-box.warning ul {
    color: #856404;
}

.booking-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.support-box {
    background: #e8f4f8;
    border: 1px solid #b3d9e8;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}

.support-box h4 {
    margin: 0 0 10px 0;
    color: #01579b;
    font-size: 16px;
}

.support-box p {
    margin: 0 0 15px 0;
    color: #0277bd;
    font-size: 14px;
}

.support-box .btn {
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 8px;
    display: inline-block;
}

/* Payment Confirmation Modal Styles */
#paymentMethodsModal .modal-backdrop {
    display: none !important;
}

#paymentMethodsModal::backdrop {
    display: none !important;
}

#paymentConfirmationModal .modal-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

#paymentConfirmationModal .modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #0b2230;
}

#paymentConfirmationModal .modal-body {
    background: #fff;
    padding: 24px;
}

#paymentConfirmationModal .modal-body p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

#paymentConfirmationModal .modal-footer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

#paymentConfirmationModal .btn-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

/* Ensure modals are properly stacked */
.modal-backdrop {
    z-index: 1040;
}

.modal {
    z-index: 1050;
}

#paymentConfirmationModal {
    z-index: 1060;
}

#paymentConfirmationModal .modal-backdrop {
    z-index: 1055;
}

/* ========================================
   Dashboard & My Account Styles
   ======================================== */

.rts-dashboard-area {
    background: #f8f9fb;
    min-height: 600px;
}

/* Profile Card */
.rts-dashboard-profile-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(11, 34, 48, 0.08);
    text-align: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    border: 1px solid #e8f0f5;
}

.rts-dashboard-profile-card:hover {
    box-shadow: 0 4px 16px rgba(11, 34, 48, 0.12);
}

.rts-profile-avatar {
    font-size: 64px;
    color: var(--color-primary, #006b9e);
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(0, 107, 158, 0.1) 0%, rgba(0, 107, 158, 0.05) 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.rts-profile-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: #0b2230;
    margin-bottom: 4px;
}

.rts-profile-info p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 0;
    word-break: break-all;
}

.rts-profile-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e7ff, transparent);
    margin: 16px 0;
}

.rts-profile-phone {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 0;
}

.rts-profile-phone i {
    color: var(--color-primary, #006b9e);
    font-size: 12px;
}

/* Dashboard Menu */
.rts-dashboard-menu {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(11, 34, 48, 0.08);
    border: 1px solid #e8f0f5;
}

.rts-nav-pills-vertical {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.rts-dashboard-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #4f5d68;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.rts-dashboard-nav-item i {
    font-size: 16px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.rts-dashboard-nav-item span {
    flex: 1;
}

.rts-dashboard-nav-item:hover {
    background-color: #f0f7fc;
    color: var(--color-primary, #006b9e);
    border-left-color: var(--color-primary, #006b9e);
}

.rts-dashboard-nav-item.active {
    background: linear-gradient(135deg, rgba(0, 107, 158, 0.1) 0%, rgba(0, 107, 158, 0.05) 100%);
    color: var(--color-primary, #006b9e);
    border-left-color: var(--color-primary, #006b9e);
    font-weight: 600;
}

/* Dashboard Cards */
.rts-dashboard-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(11, 34, 48, 0.08);
    border: 1px solid #e8f0f5;
    transition: all 0.3s ease;
}

.rts-dashboard-card:hover {
    box-shadow: 0 4px 16px rgba(11, 34, 48, 0.12);
}

.card-header-custom {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, #f0f7fc 0%, #e8f0f5 100%);
    border-bottom: 1px solid #e0e7ff;
}

.header-icon {
    font-size: 28px;
    color: var(--color-primary, #006b9e);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-header-custom h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0b2230;
    margin-bottom: 4px;
}

.card-header-custom p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 0;
}

.card-body-custom {
    padding: 32px;
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: #0b2230;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border: 1px solid #e0e7ff;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    border-color: var(--color-primary, #006b9e);
    box-shadow: 0 0 0 3px rgba(0, 107, 158, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-text {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #9ca3af;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 20px;
}

/* Button Styles */
.btn-primary-custom,
.btn-secondary-custom {
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--color-primary, #006b9e) 0%, #004d78 100%);
    color: white;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 107, 158, 0.3);
}

.btn-primary-custom:active {
    transform: translateY(0);
}

.btn-secondary-custom {
    background: #f0f7fc;
    color: var(--color-primary, #006b9e);
    border: 1px solid #e0e7ff;
}

.btn-secondary-custom:hover {
    background: #e8f0f5;
    border-color: var(--color-primary, #006b9e);
}

.btn-warning-custom {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-warning-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-warning-custom:active {
    transform: translateY(0);
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #e8f0f5;
}

/* Alert Container */
.alert-container {
    margin-bottom: 20px;
}

.alert-container .alert {
    border: none;
    border-radius: 8px;
    border-left: 4px solid;
    padding: 14px 16px;
    font-size: 13px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    border-left-color: #10b981;
    background: #f0fdf4;
    color: #047857;
}

.alert-danger {
    border-left-color: #ef4444;
    background: #fef2f2;
    color: #dc2626;
}

.alert-info {
    border-left-color: var(--color-primary, #006b9e);
    background: #f0f7fc;
    color: #0b2230;
}

/* Password Info Box */
.password-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: linear-gradient(135deg, #f0fdf4 0%, #f0f7fc 100%);
    border: 1px solid #e0e7ff;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #0b2230;
}

.password-info i {
    color: var(--color-primary, #006b9e);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.password-info p {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-header-custom {
        flex-direction: column;
    }

    .rts-dashboard-card {
        border-radius: 8px;
    }

    .card-body-custom {
        padding: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }

    .rts-profile-avatar {
        width: 80px;
        height: 80px;
        font-size: 48px;
    }
}

/* ========================================
   Booking History Grid & Cards
   ======================================== */

.rts-bookings-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.rts-booking-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(11, 34, 48, 0.08);
    border: 1px solid #e8f0f5;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.rts-booking-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(11, 34, 48, 0.12);
}

.rts-booking-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: #f0f7fc;
}

.rts-booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rts-booking-card:hover .rts-booking-image img {
    transform: scale(1.05);
}

.rts-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rts-badge-paid {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.rts-badge-pending {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.rts-badge-cancelled {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.rts-booking-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rts-booking-content h5 {
    font-size: 15px;
    font-weight: 700;
    color: #0b2230;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.rts-package-name {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.3;
}

.rts-booking-details {
    margin-bottom: 12px;
    flex-grow: 1;
}

.rts-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
    gap: 8px;
}

.rts-detail-row:last-child {
    border-bottom: none;
}

.rts-detail-row .rts-label {
    color: #6b7280;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.rts-detail-row .rts-label i {
    font-size: 11px;
    flex-shrink: 0;
}

.rts-detail-row .rts-value {
    color: #0b2230;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

.rts-detail-row .rts-value.rts-price {
    color: var(--color-primary, #006b9e);
    font-weight: 700;
    font-size: 13px;
}

.rts-booking-actions {
    display: flex;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.rts-booking-actions .btn-sm {
    flex: 1;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.rts-booking-actions .btn-sm i {
    font-size: 12px;
}

.rts-empty-state {
    background: linear-gradient(135deg, #f0f7fc 0%, #e8f0f5 100%);
    border: 1px solid #e0e7ff;
    border-radius: 12px;
    padding: 60px 24px;
}

.rts-empty-state i {
    color: #9ca3af;
}

.rts-empty-state h5 {
    font-size: 20px;
    font-weight: 700;
    color: #0b2230;
    margin-top: 16px;
}

.rts-empty-state p {
    font-size: 14px;
    color: #6b7280;
}

/* Responsive Grid */
@media (max-width: 1400px) {
    .rts-bookings-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .rts-bookings-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .rts-bookings-grid-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rts-booking-image {
        height: 140px;
    }

    .rts-booking-content {
        padding: 16px;
    }

    .rts-booking-actions {
        flex-direction: column;
    }

    .rts-booking-actions .btn-sm {
        width: 100%;
    }

    .rts-detail-row {
        padding: 5px 0;
        font-size: 11px;
    }
}

/* ========================================
   Booking Details Modal Styles
   ======================================== */

.modal-header-custom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(135deg, #f0f7fc 0%, #e8f0f5 100%);
    border-bottom: 1px solid #e0e7ff;
    border-radius: 12px 12px 0 0;
}

.header-content h5 {
    margin-bottom: 4px;
    font-weight: 700;
    color: #0b2230;
    font-size: 18px;
}

.booking-id-label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 0;
}

.close-btn {
    font-size: 24px;
    font-weight: 300;
    color: #6b7280;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #0b2230;
}

.modal-body-custom {
    padding: 24px;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-footer-custom {
    padding: 16px 24px;
    background: #f8f9fb;
    border-top: 1px solid #e0e7ff;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    border-radius: 0 0 12px 12px;
}

.btn-primary-modal,
.btn-secondary-modal,
.btn-info-modal {
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-primary-modal {
    background: linear-gradient(135deg, var(--color-primary, #006b9e) 0%, #004d78 100%);
    color: white;
}

.btn-primary-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 107, 158, 0.3);
}

.btn-secondary-modal {
    background: white;
    color: #6b7280;
    border: 1px solid #e0e7ff;
}

.btn-secondary-modal:hover {
    background: #f0f7fc;
}

.btn-info-modal {
    background: #f0f7fc;
    color: var(--color-primary, #006b9e);
    border: 1px solid #e0e7ff;
}

.btn-info-modal:hover {
    background: #e8f0f5;
    border-color: var(--color-primary, #006b9e);
}

/* Booking Details Modal Content */
.booking-details-modal {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.details-section {
    background: #f8f9fb;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e0e7ff;
}

.section-title {
    font-weight: 700;
    color: #0b2230;
    margin-bottom: 16px;
}

.section-title i {
    color: var(--color-primary, #006b9e);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.details-grid.two-col {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item.flex-grow {
    flex: 1;
}

.detail-image {
    width: 100%;
    max-width: 200px;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
}

.detail-item h5 {
    margin-bottom: 4px;
    font-weight: 700;
    color: #0b2230;
}

.text-muted {
    color: #6b7280;
    font-size: 13px;
}

.info-group {
    margin-top: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #e0e7ff;
}

.info-row .label {
    color: #6b7280;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-row .label i {
    color: var(--color-primary, #006b9e);
    font-size: 12px;
    width: 14px;
}

.info-row .value {
    color: #0b2230;
    font-weight: 600;
}

.status-badge-inline {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.status-badge-inline.badge-paid {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.status-badge-inline.badge-pending {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.status-badge-inline.badge-cancelled {
    background: #ef4444;
}

.detail-box {
    background: white;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #e0e7ff;
}

.detail-box h6 {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #0b2230;
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-box h6 i {
    color: var(--color-primary, #006b9e);
}

.detail-box p {
    margin-bottom: 0;
    color: #4f5d68;
    font-size: 13px;
}

/* Selected Options */
.options-group {
    margin-bottom: 16px;
}

.options-group:last-child {
    margin-bottom: 0;
}

.options-group h6 {
    font-size: 13px;
    font-weight: 700;
    color: #0b2230;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.options-group h6 i {
    color: var(--color-primary, #006b9e);
}

.options-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.options-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e7ff;
    font-size: 13px;
}

.options-list li:last-child {
    border-bottom: none;
}

.options-list li i {
    color: #10b981;
    margin-right: 8px;
    flex-shrink: 0;
}

.options-list li strong {
    color: #0b2230;
    flex: 1;
}

.options-list li .price {
    color: var(--color-primary, #006b9e);
    font-weight: 700;
}

/* Price Breakdown */
.price-section {
    background: white;
    border: 2px solid #e0e7ff;
}

.price-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 14px;
    color: #4f5d68;
    border-bottom: 1px solid #e0e7ff;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row-divider {
    height: 1px;
    background: #e0e7ff;
    margin: 8px 0;
}

.price-row.total {
    padding: 14px 0;
    font-size: 15px;
    font-weight: 700;
    color: #0b2230;
}

.price-row.total strong:last-child {
    color: var(--color-primary, #006b9e);
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--color-primary, #006b9e);
    font-size: 16px;
    font-weight: 500;
}

.loading-spinner i {
    margin-right: 12px;
    font-size: 24px;
}

/* Tour Card Enhancements */
.tour-wrapper .content .title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
    max-height: 48px;
    line-height: 1.3;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
}

.tour-wrapper .content .meta-content {
    gap: 16px !important;
    margin-bottom: 8px;
}

.tour-wrapper .content .meta-content li {
    gap: 8px !important;
}

/* Package Pricing Section - Reduced Spacing */
.package-pricing-section {
    margin: 0;
    padding: 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    gap: 12px;
    font-size: 13px;
}

.price-label {
    flex: 0 0 auto;
}

.label-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-heading-1);
}

.price-value {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
}

.crossed-price {
    font-size: 11px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.customer-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
}

/* Tour Details - Packages Grid Layout */
.packages-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.package-grid-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-grid-item .tour-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.package-grid-item .tour-wrapper .image-area {
    margin-bottom: 12px;
}

.package-grid-item .tour-wrapper .content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-top: 0;
    margin-bottom: 0;
}

.package-grid-item .tour-wrapper .content .button-area {
    margin-top: auto;
    padding-top: 12px;
}

@media (max-width: 1200px) {
    .packages-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .packages-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .packages-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .packages-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile Menu Background */
.side-bar.header-eight {
    background: white !important;
}

.side-bar.header-eight .mobile-menu-main nav ul li a.main {
    color: var(--color-heading-1);
}

.side-bar.header-eight .mobile-menu-main nav ul li a.main:hover {
    color: var(--color-primary);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 20px;
    }

    .modal-body-custom {
        padding: 16px;
    }

    .modal-header-custom {
        padding: 16px;
    }

    .modal-footer-custom {
        flex-direction: column;
    }

    .btn-primary-modal,
    .btn-secondary-modal,
    .btn-info-modal {
        width: 100%;
        justify-content: center;
    }

    .details-grid.two-col {
        grid-template-columns: 1fr;
    }

    .detail-image {
        max-width: 100%;
        height: 200px;
    }
}

/* Fix destination card to have consistent height */
.destination-wrapper-4 {
    height: 300px !important;
    min-height: 300px !important;
}

.destination-wrapper-4 .image-area {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.destination-wrapper-4 .image-area img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

.destination-wrapper-4 .image-area a {
    width: 100%;
    height: 100%;
}

/* Larger cards (col-lg-6) get taller height */
.col-lg-6 .destination-wrapper-4 {
    height: 300px !important;
    min-height: 300px !important;
}

/* Fix destination card overlay - extend only at bottom */
.destination-wrapper-4 .image-area a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.9) 100%) !important;
    z-index: 1;
    pointer-events: none;
}

/* Header Logo Styling */
.header-style-one-wrapper .logo-area .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    height: auto;
}

.header-style-one-wrapper .logo-area .logo img {
    max-width: 100px;
    height: auto;
    width: auto;
}

/* ========================================
   Booking Confirmation Modal
   ======================================== */
.rts-confirm-modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.rts-confirm-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 16px;
    background: #fff;
    border-bottom: 2px solid var(--color-primary, #119CE6);
}

.rts-confirm-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-heading-1, #0b2230);
    margin: 0;
    letter-spacing: 0.3px;
}

.rts-confirm-close-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    transition: all 0.2s ease;
}
.rts-confirm-close-btn:hover {
    background: #f3f4f6;
    color: #0b2230;
}

.rts-confirm-modal-body {
    padding: 22px 24px;
    background: #fff;
}

.rts-confirm-section {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f2f4;
}
.rts-confirm-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.rts-confirm-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 6px 0;
    font-size: 13.5px;
}

.rts-confirm-label {
    color: #6b7280;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.rts-confirm-label i {
    font-size: 13px;
    color: var(--color-primary, #119CE6);
    width: 14px;
    text-align: center;
}

.rts-confirm-value {
    color: var(--color-heading-1, #0b2230);
    font-weight: 600;
    text-align: right;
    max-width: 55%;
    word-wrap: break-word;
    line-height: 1.4;
}

.rts-confirm-items {
    background: #f5fbff;
    border-radius: 6px;
    padding: 10px 12px;
    border-left: 3px solid var(--color-primary, #119CE6);
}
.rts-confirm-items-text {
    font-size: 12px;
    color: #374151;
    margin: 0;
    line-height: 1.6;
}

.rts-confirm-traveler-label {
    font-size: 10px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.rts-confirm-traveler {
    background: #f9fafb;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #e5e7eb;
}
.rts-confirm-traveler strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0b2230;
    margin-bottom: 3px;
}
.rts-confirm-traveler small {
    display: block;
    font-size: 12px;
    color: #6b7280;
}

.rts-confirm-total-section {
    background: var(--color-primary, #119CE6);
    border-radius: 10px;
    padding: 18px 16px;
    margin: 16px 0;
    text-align: center;
}
.rts-confirm-total-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}
.rts-confirm-total-amount {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
}

.rts-confirm-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.rts-confirm-actions .btn-primary-custom {
    display: block;
    width: 100%;
    background: var(--color-primary, #119CE6);
    border: 1.5px solid var(--color-primary, #119CE6);
    color: #fff;
    padding: 13px 14px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    letter-spacing: 0.3px;
}
.rts-confirm-actions .btn-primary-custom:hover {
    opacity: 0.9;
    box-shadow: 0 4px 14px rgba(17, 156, 230, 0.35);
}
.rts-confirm-actions .btn-secondary-custom {
    display: block;
    width: 100%;
    background: transparent;
    border: 1.5px solid #d1d5db;
    color: #6b7280;
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}
.rts-confirm-actions .btn-secondary-custom:hover {
    border-color: #9ca3af;
    color: #374151;
    background: #f9fafb;
}

@media (max-width: 480px) {
    .rts-confirm-modal-header { padding: 16px 18px 14px; }
    .rts-confirm-modal-body { padding: 18px; }
    .rts-confirm-total-amount { font-size: 26px; }
}


/* ============================================================
   Google Reviews Badge - Footer
   ============================================================ */
.google-review-area {
    margin-top: 16px;
}
.google-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 10px 14px;
    text-decoration: none;
    transition: background 0.2s;
}
.google-review-badge:hover {
    background: rgba(255,255,255,0.12);
    text-decoration: none;
}
.google-g {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 4px;
    justify-content: center;
}
.google-review-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.google-stars {
    color: #FBBC05;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1;
}
.google-label {
    color: rgba(255,255,255,0.75);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}

/* Header Destination Menu - Tour Card Titles */
.destination-wrapper-3 .content {
    max-width: inherit;
}