/* Full-screen loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
	display:none;
}

/* Spinning circle */
.loader::before {
    content: '';
    width: 60px;
    height: 60px;
    border: 5px solid #f3f4f6;
    border-top-color: #EF3829;
    border-right-color: #FCB31C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Spinning animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Main container */
.tour-booking-list-con {
    margin-top: 2rem;
}

/* List container */
.tour-booking-list-con .tour-booking-without-img-list-con {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Individual booking card */
.tour-booking-list-con .tour-booking-without-img-list-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tour-booking-list-con .tour-booking-without-img-list-box:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    border-color: #EF3829;
}

/* Date box */
.tour-booking-list-con .tour-booking-list-date-box {
    margin-bottom: 16px;
}

.tour-booking-list-con .tour-booking-date-txt {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Title */
.tour-booking-list-con .tour-booking-list-title {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

/* Time and location container */
.tour-booking-list-con .tour-booking-list-time-location-con {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.tour-booking-list-con .tour-booking-list-time-location-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-booking-list-con .tour-booking-list-time-location-box .time-txt {
    margin: 0;
    font-size: 15px;
    color: #4b5563;
}
/*
.tour-booking-list-con .booking-time-txt::before {
    content: '🕐';
    margin-right: 6px;
}

.tour-booking-list-con .booking-location-txt::before {
    content: '📍';
    margin-right: 6px;
}
*/
/* Button box container */
.tour-booking-list-con .tour-booking-btn-box {
    margin-top: 20px;
    align-items: center;
}

/* Places left box */
.tour-booking-list-con .places-left-box {
    background: #f3f4f6;
    padding: 10px 16px;
    border-radius: 6px;
    text-align: center;
}

.tour-booking-list-con .places-left-box span {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.5px;
}

/* Book Now button */
.tour-booking-list-con .tour-booking-btn {
    text-align: right;
}

.tour-booking-list-con .transparent-bg-link-txt {
    display: inline-block;
    background: linear-gradient(135deg, #EF3829 0%, #d32f1f 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.tour-booking-list-con .transparent-bg-link-txt:hover {
    background: linear-gradient(135deg, #d32f1f 0%, #EF3829 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 56, 41, 0.3);
    color: #ffffff;
    text-decoration: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .tour-booking-list-con .tour-booking-without-img-list-box {
        padding: 20px;
    }
    
    .tour-booking-list-con .tour-booking-list-title {
        font-size: 20px;
    }
    
    .tour-booking-list-con .tour-booking-list-time-location-con {
        flex-direction: column;
        gap: 12px;
    }
    
    .tour-booking-list-con .tour-booking-btn-box {
        flex-direction: column;
        gap: 12px;
    }
    
    .tour-booking-list-con .tour-booking-btn {
        text-align: center;
        width: 100%;
    }
    
    .tour-booking-list-con .transparent-bg-link-txt {
        width: 100%;
        text-align: center;
    }
    
    .tour-booking-list-con .places-left-box {
        width: 100%;
    }
}



/* Modal container */
.tour-booking-without-img-modal .modal-dialog {
    max-width: 800px;
}

.tour-booking-without-img-modal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Modal header */
.tour-booking-without-img-modal .modal-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #e5e7eb;
    padding: 24px 32px;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.tour-booking-without-img-modal .modal-header-img-content-box {
    flex: 1;
}

/* Date display */
.tour-booking-without-img-modal .modal-img-detail-box {
    margin-bottom: 16px;
}

.tour-booking-without-img-modal .tour-booking-date-txt {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Time and location */
.tour-booking-without-img-modal .tour-booking-list-time-location-con {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 16px;
}

.tour-booking-without-img-modal .tour-booking-list-time-location-box {
    display: flex;
    align-items: center;
}

.tour-booking-without-img-modal .tour-booking-list-time-location-box .time-txt {
    margin: 0;
    font-size: 15px;
    color: #4b5563;
    font-weight: 500;
}
/*
.tour-booking-without-img-modal .booking-time-txt .time-txt::before {
    content: '🕐';
    margin-right: 8px;
}

.tour-booking-without-img-modal .booking-location-txt .time-txt::before {
    content: '📍';
    margin-right: 8px;
}
*/
/* Add to calendar button */
.tour-booking-without-img-modal .addeventatc {
    margin-top: 12px;
    display: inline-block;
}

.tour-booking-without-img-modal .addeventatc .add-to-calendar-txt {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
}

.tour-booking-without-img-modal .addeventatc .add-to-calendar-txt:hover {
    background: #f3f4f6;
    border-color: #EF3829;
    color: #EF3829;
}

/* Close button */
.tour-booking-without-img-modal .modal-close-btn-box {
    position: absolute;
    top: 20px;
    right: 20px;
}

.tour-booking-without-img-modal .close-icon {
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.tour-booking-without-img-modal .close-icon:hover {
    background: #EF3829;
    color: #ffffff;
}

.tour-booking-without-img-modal .close-icon i {
    font-size: 18px;
    color: #6b7280;
}

.tour-booking-without-img-modal .close-icon:hover i {
    color: #ffffff;
}

/* Modal body */
.tour-booking-without-img-modal .modal-body {
    padding: 32px;
}

/* Places left box */
.tour-booking-without-img-modal .modal-body-btn-con {
    margin-bottom: 24px;
}

.tour-booking-without-img-modal .places-left-box {
    background: #f3f4f6;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
}

.tour-booking-without-img-modal .places-left-box span {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.5px;
}

/* Titles */
.tour-booking-without-img-modal .modal-body-title {
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.tour-booking-without-img-modal .modal-body-sub-title {
    font-size: 18px;
    font-weight: 400;
    color: #6b7280;
    margin: 0 0 24px 0;
}

/* Form styling */
.tour-booking-without-img-modal .web-form-section {
    margin-top: 24px;
}

.tour-booking-without-img-modal .form-label {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

.tour-booking-without-img-modal .form-label .req {
    color: #EF3829;
    margin-left: 4px;
}

.tour-booking-without-img-modal .form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: #ffffff;
    color: #1f2937;
}

.tour-booking-without-img-modal .form-control:focus {
    outline: none;
    border-color: #EF3829;
    box-shadow: 0 0 0 3px rgba(239, 56, 41, 0.1);
}

.tour-booking-without-img-modal .form-control:hover {
    border-color: #9ca3af;
}

/* Select dropdown */
.tour-booking-without-img-modal select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    appearance: none;
}

/* Form fields spacing */
.tour-booking-without-img-modal .flds {
    margin-bottom: 20px;
}

/* reCAPTCHA */
.tour-booking-without-img-modal .g-recaptcha {
    margin: 20px 0;
}

/* Submit button */
.tour-booking-without-img-modal .form-submit-btn,
.tour-booking-without-img-modal .booking-submit-btn {
    background: linear-gradient(135deg, #EF3829 0%, #d32f1f 100%);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 8px;
}

.tour-booking-without-img-modal .form-submit-btn:hover,
.tour-booking-without-img-modal .booking-submit-btn:hover {
    background: linear-gradient(135deg, #d32f1f 0%, #EF3829 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 56, 41, 0.3);
}

.tour-booking-without-img-modal .form-submit-btn:active,
.tour-booking-without-img-modal .booking-submit-btn:active {
    transform: translateY(0);
}

.tour-booking-without-img-modal .form-submit-btn:focus,
.tour-booking-without-img-modal .booking-submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(239, 56, 41, 0.2), 0 4px 12px rgba(239, 56, 41, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .tour-booking-without-img-modal .modal-dialog {
        margin: 10px;
    }
    
    .tour-booking-without-img-modal .modal-header {
        padding: 20px;
    }
    
    .tour-booking-without-img-modal .modal-body {
        padding: 24px 20px;
    }
    
    .tour-booking-without-img-modal .modal-body-title {
        font-size: 22px;
    }
    
    .tour-booking-without-img-modal .tour-booking-list-time-location-con {
        flex-direction: column;
        gap: 12px;
    }
    
    .tour-booking-without-img-modal .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}