/* Booking Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in-out;
}

.booking-modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease-out;
    position: relative;
    scrollbar-width: none;
}

.booking-modal-header {
    background: linear-gradient(135deg, #5ba17a 0%, #4a9268 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.booking-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.booking-modal-header p {
    margin: 5px 0 0 0;
    opacity: 0.9;
    font-size: 1rem;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.booking-modal-body {
    padding: 30px;
}

.booking-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5ba17a;
    box-shadow: 0 0 0 3px rgba(91, 161, 122, 0.1);
}

.auto-calculated {
    background-color: #f8f9fa !important;
    border-color: #28a745 !important;
}

.auto-calculated:focus {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1) !important;
}

.manually-changed {
    background-color: #fff3cd !important;
    border-color: #ffc107 !important;
}

.manually-changed:focus {
    border-color: #ffc107 !important;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1) !important;
}

.validation-error {
    border: 2px solid #dc3545 !important;
    background-color: #f8d7da !important;
}

.validation-error:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.accommodation-options.validation-error {
    border: 2px solid #dc3545;
    border-radius: 8px;
    padding: 10px;
    background-color: #f8d7da;
}

.program-selection.validation-error {
    border: 2px solid #dc3545;
    border-radius: 8px;
    padding: 10px;
    background-color: #f8d7da;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.program-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.program-option {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.program-option:hover {
    border-color: #5ba17a;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(91, 161, 122, 0.1);
}

.program-option.selected {
    border-color: #5ba17a;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
    box-shadow: 0 5px 15px rgba(91, 161, 122, 0.2);
}

.program-option input[type="radio"] {
    display: none;
}

.program-title {
    font-weight: 600;
    color: #5ba17a;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.program-duration {
    background: #5ba17a;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 10px;
}

.program-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.accommodation-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.accommodation-option {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.accommodation-option:hover {
    border-color: #5ba17a;
    background: #f8fffe;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(91, 161, 122, 0.1);
}

.accommodation-option.selected {
    border-color: #28a745 !important;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%) !important;
    transform: scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2) !important;
    position: relative;
}

.accommodation-option.selected::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 15px;
    background: #28a745;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    z-index: 2;
}

.accommodation-option input[type="radio"] {
    display: none;
}

.price-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #5ba17a;
}

.price-summary h4 {
    color: #5ba17a;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.price-breakdown {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.total-amount {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.3rem;
    color: #5ba17a;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #5ba17a;
}

.booking-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-end;
}

.btn-book {
    background: linear-gradient(135deg, #5ba17a 0%, #4a9268 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91, 161, 122, 0.3);
}

.btn-book:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.btn-cancel {
    background: #6c757d;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: #5a6268;
}

.loading-spinner {
    display: none;
    text-align: center;
    padding: 20px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #5ba17a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.success-message {
    display: none;
    text-align: center;
    padding: 30px;
    color: #5ba17a;
}

.success-message i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #28a745;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    display: none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .booking-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .booking-modal-header {
        padding: 20px;
    }
    
    .booking-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .booking-modal-body {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .program-selection {
        grid-template-columns: 1fr;
    }
    
    .accommodation-options {
        grid-template-columns: 1fr;
    }
    
    .booking-actions {
        flex-direction: column;
    }
    
    .btn-book,
    .btn-whatsapp,
    .btn-cancel {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .booking-modal-content {
        width: 98%;
        margin: 2% auto;
    }
    
    .booking-modal-header {
        padding: 15px;
    }
    
    .booking-modal-body {
        padding: 15px;
    }
    
    .close-modal {
        right: 15px;
        top: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
    
    .btn-book,
    .btn-whatsapp,
    .btn-cancel {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0 !important;
        margin-left: 0 !important;
        text-align: center;
    }
}
/*
 Read More Button Styles */
.read-more-btn {
    background: linear-gradient(135deg, #5ba17a 0%, #4a9268 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    align-self: flex-start;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #4a9268 0%, #5ba17a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(91, 161, 122, 0.3);
}

.program-option {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Program Details Modal Styles */
.program-details-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-details-content {
    background-color: #fff;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    animation: slideIn 0.4s ease-out;
    position: relative;
}

.program-details-header {
    background: linear-gradient(135deg, #5ba17a 0%, #4a9268 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.program-details-header h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
}

.close-details {
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.close-details:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.program-details-body {
    padding: 30px;
}

.program-overview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid #5ba17a;
}

.program-overview h4 {
    color: #5ba17a;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.program-overview p {
    margin: 8px 0;
    font-size: 1rem;
}

.program-description,
.program-benefits {
    margin-bottom: 25px;
}

.program-description h4,
.program-benefits h4,
.program-pricing h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid #5ba17a;
    padding-bottom: 8px;
}

.program-description ul,
.program-benefits ul {
    list-style: none;
    padding: 0;
}

.program-description li,
.program-benefits li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.program-description li:before,
.program-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5ba17a;
    font-weight: bold;
    font-size: 1.1rem;
}

.program-pricing {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.price-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.price-item:hover {
    border-color: #5ba17a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(91, 161, 122, 0.1);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.price-amount {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #5ba17a;
}

.program-actions {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.btn-select-program {
    background: linear-gradient(135deg, #5ba17a 0%, #4a9268 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-select-program:hover {
    background: linear-gradient(135deg, #4a9268 0%, #5ba17a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91, 161, 122, 0.3);
}

/* Mobile Responsive for Program Details */
@media (max-width: 768px) {
    .program-details-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .program-details-header {
        padding: 20px;
    }
    
    .program-details-header h3 {
        font-size: 1.4rem;
    }
    
    .program-details-body {
        padding: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .close-details {
        right: 15px;
        top: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .program-details-content {
        width: 98%;
        margin: 2% auto;
    }
    
    .program-details-header {
        padding: 15px;
    }
    
    .program-details-body {
        padding: 15px;
    }
    
    .program-overview {
        padding: 15px;
    }
    
    .program-pricing {
        padding: 15px;
    }
    
    .btn-select-program {
        width: 100%;
        padding: 15px 20px;
    }
}
/* Int
elligent Booking Styles */
.program-option.pre-selected {
    border: 2px solid #28a745 !important;
    background-color: #f8fff9 !important;
    position: relative;
}

.program-option.pre-selected::before {
    content: "✓ Selected";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.program-selection-note {
    background: #e8f5e8 !important;
    border: 1px solid #28a745 !important;
    border-radius: 8px !important;
    padding: 12px !important;
    margin-bottom: 15px !important;
    color: #155724 !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.program-selection-note .btn-change-program {
    margin-left: auto !important;
    background: none !important;
    border: 1px solid #28a745 !important;
    color: #28a745 !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.program-selection-note .btn-change-program:hover {
    background: #28a745 !important;
    color: white !important;
}

/* Enhanced program option styling */
.program-option {
    transition: all 0.3s ease;
}

.program-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.program-option.selected {
    border-color: #28a745;
    background-color: #f8fff9;
}

/* Accommodation Selection - Clean Date Selection Style */
.accommodation-option {
    position: relative;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.accommodation-option:hover {
    border-color: #5ba17a;
    background: #f0f8f4;
}

.accommodation-option.selected {
    border-color: #5ba17a;
    background: linear-gradient(135deg, #f0f8f4 0%, #e8f5e8 100%);
}

/* Radio button is hidden, using custom checkmark instead */

.accommodation-option input[type="radio"] {
    display: none;
}

/* Program Selection - Clean Date Selection Style */
.program-option {
    position: relative;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.program-option:hover {
    border-color: #5ba17a;
    background: #f8fffe;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(91, 161, 122, 0.1);
}

.program-option.selected {
    border-color: #28a745 !important;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%) !important;
    transform: scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2) !important;
    position: relative;
}

.program-option.selected::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 15px;
    background: #28a745;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    z-index: 2;
}

/* Radio button is hidden, using custom checkmark instead */

.program-option input[type="radio"] {
    display: none;
}

.program-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.program-duration {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 8px;
}

.program-price {
    font-size: 1rem;
    font-weight: 600;
    color: #5ba17a;
    margin-bottom: 12px;
}

.read-more-btn {
    background: #5ba17a;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #4a8c6a;
    transform: translateY(-1px);
}



/* Toast Notification System for Booking Modal */
.booking-toast-notification {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    margin-bottom: 10px;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    min-width: 280px;
    position: relative;
    overflow: hidden;
}

.booking-toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.booking-toast-notification.hide {
    transform: translateX(400px);
    opacity: 0;
}

.booking-toast-notification .toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.booking-toast-notification .toast-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.booking-toast-notification .toast-text {
    flex: 1;
}

.booking-toast-notification .toast-title {
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 2px 0;
}

.booking-toast-notification .toast-message {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

.booking-toast-notification .toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.booking-toast-notification .toast-close:hover {
    opacity: 1;
}

.booking-toast-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: toastShimmer 2s ease-in-out;
}

@keyframes toastShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Mobile responsive toast */
@media (max-width: 768px) {
    #bookingToastContainer {
        top: 10px !important;
        right: 10px !important;
        left: 10px !important;
    }
    
    .booking-toast-notification {
        min-width: auto;
        margin: 0 0 10px 0;
    }
}

.accommodation-option {
    transition: all 0.3s ease;
}

.accommodation-option:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/* Date 
Selection Options Styles */
.date-selection-options {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.date-option {
    flex: 1;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: #f8f9fa;
}

.date-option:hover {
    border-color: #5ba17a;
    background: #f0f8f4;
}

.date-option.selected {
    border-color: #5ba17a;
    background: linear-gradient(135deg, #f0f8f4 0%, #e8f5e8 100%);
}

/* Simple Radio Button Indicator */
.date-option::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
}

.date-option.selected::before {
    border-color: #5ba17a;
}

.date-option.selected::after {
    content: '';
    position: absolute;
    top: 19px;
    right: 19px;
    width: 12px;
    height: 12px;
    background: #5ba17a;
    border-radius: 50%;
}

.date-option input[type="radio"] {
    display: none;
}

.date-option-content {
    margin-right: 30px;
}

.date-option-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.date-option-desc {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
}

/* Custom Date Section Styles */
.custom-date-section {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.custom-date-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.custom-date-icon {
    background: linear-gradient(135deg, #5ba17a, #4a9268);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.custom-date-content {
    flex: 1;
}

.custom-date-content h4 {
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.custom-date-content p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.5;
}

.custom-date-content .form-group {
    margin-bottom: 20px;
}

.custom-date-content .form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    display: block;
}

.custom-date-content textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.custom-date-content textarea:focus {
    outline: none;
    border-color: #5ba17a;
    box-shadow: 0 0 0 3px rgba(91, 161, 122, 0.1);
}

.custom-date-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-custom-date {
    background: linear-gradient(135deg, #5ba17a, #4a9268);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-custom-date:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 161, 122, 0.3);
    background: linear-gradient(135deg, #4a9268, #3d7a56);
}

.btn-call-custom {
    background: transparent;
    color: #5ba17a;
    border: 2px solid #5ba17a;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-call-custom:hover {
    background: #5ba17a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 161, 122, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .date-selection-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .date-option {
        padding: 15px;
    }
    
    .custom-date-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .custom-date-icon {
        align-self: center;
    }
    
    .custom-date-actions {
        justify-content: center;
        flex-direction: column;
    }
    
    .btn-custom-date,
    .btn-call-custom {
        justify-content: center;
        width: 100%;
    }
}
/* Intelligent Selection Styles */
.intelligent-selection-note {
    animation: slideInFromTop 0.5s ease-out;
}

.intelligent-selection-note .btn-change-program-intelligent:hover {
    background: #1976d2 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(25, 118, 210, 0.3);
}

.program-option.pre-selected {
    border: 2px solid #28a745 !important;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%) !important;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2);
    animation: pulseGreen 0.6s ease-in-out;
}

.program-option.pre-selected::before {
    content: "✓ SELECTED";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Smooth hide/show animations for program options */
.program-option {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.program-option[style*="display: none"] {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    margin: 0;
    padding: 0;
    height: 0;
}

/* Keyframe animations */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Enhanced program selection section hiding */
.form-group[style*="display: none"] {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    height: 0;
    overflow: hidden;
}

/* Focused booking experience */
.booking-modal.intelligent-mode .booking-modal-header {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

.booking-modal.intelligent-mode .booking-modal-header::after {
    content: "🎯 Focused Booking";
    position: absolute;
    bottom: -15px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .intelligent-selection-note {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .intelligent-selection-note .btn-change-program-intelligent {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .program-option.pre-selected::before {
        font-size: 9px;
        padding: 3px 6px;
    }
}
/* Enhanced program option transitions */
.program-option {
    transition: all 0.3s ease;
}

.program-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Reset animation support */
.program-option.resetting {
    animation: fadeInUp 0.4s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Change program button enhanced styling */
.btn-change-program-intelligent {
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-change-program-intelligent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-change-program-intelligent:hover::before {
    left: 100%;
}

/* Success feedback for reset */
.reset-success {
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Day Validation Styles */
.day-validation-message {
    animation: slideInValidation 0.4s ease-out;
}

@keyframes slideInValidation {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced date input styling for day restrictions */
.form-group input[type="date"]:invalid {
    border-color: #dc3545 !important;
    background-color: #fff5f5 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

/* Day restriction helper text styling */
.form-text.day-restriction {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 6px;
    padding: 8px 10px;
    margin-top: 6px;
    color: #1565c0;
    font-size: 13px;
    line-height: 1.4;
}

/* Toast notification styles for different types */
.booking-toast-notification {
    background: #f0fff4;
    border: 1px solid #9ae6b4;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    pointer-events: auto;
    max-width: 350px;
}

.booking-toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.booking-toast-notification.hide {
    opacity: 0;
    transform: translateX(100%);
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-icon i {
    font-size: 18px;
    color: #28a745;
}

.toast-text {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: #333;
}

.toast-message {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

/* Error toast specific styling */
.booking-toast-notification[style*="fff5f5"] .toast-icon i {
    color: #dc3545;
}

/* Warning toast specific styling */
.booking-toast-notification[style*="fffbeb"] .toast-icon i {
    color: #f39c12;
}

/* Info toast specific styling */
.booking-toast-notification[style*="eff6ff"] .toast-icon i {
    color: #2196f3;
}

/* Program day restriction indicator */
.program-day-restriction {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 12px 15px;
    margin-top: 10px;
    color: #1565c0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInRestriction 0.5s ease-out;
}

@keyframes fadeInRestriction {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.program-day-restriction i {
    color: #2196f3;
    font-size: 16px;
}

/* Enhanced program selection with day info */
.program-option .program-days {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .day-validation-message {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .booking-toast-notification {
        max-width: 300px;
        margin-right: 10px;
    }
    
    .program-day-restriction {
        padding: 10px 12px;
        font-size: 12px;
    }
}
/* Program Schedule Section Styles */
.program-schedule-info {
    margin-bottom: 20px;
}

.schedule-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.schedule-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #5ba17a;
    font-size: 1.1rem;
    font-weight: 600;
}

.schedule-header i {
    color: #5ba17a;
    font-size: 1.2rem;
}

.schedule-details {
    display: grid;
    gap: 10px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-label {
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.schedule-value {
    color: #333;
    font-size: 14px;
    text-align: right;
}

.schedule-value.next-date {
    color: #5ba17a;
    font-weight: 600;
}

.schedule-note {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 12px;
    margin-top: 15px;
    color: #1565c0;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.schedule-note i {
    color: #2196f3;
    margin-top: 2px;
    flex-shrink: 0;
}

.custom-date-request {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.custom-date-request p {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.custom-date-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-custom-date {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-custom-date:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.btn-call-custom {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-call-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive adjustments for schedule section */
@media (max-width: 768px) {
    .schedule-card {
        padding: 15px;
    }
    
    .schedule-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .schedule-value {
        text-align: left;
    }
    
    .custom-date-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-custom-date,
    .btn-call-custom {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
/* Date Selection Section Styles */
.selected-date-display {
    margin-bottom: 20px;
}

.date-selector {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.date-selector:hover {
    border-color: #5ba17a;
    box-shadow: 0 4px 12px rgba(91, 161, 122, 0.1);
}

.date-selector.selected {
    border-color: #5ba17a;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
}

.date-selector-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 15px;
}

.date-icon {
    background: #f8f9fa;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5ba17a;
    font-size: 20px;
}

.date-selector.selected .date-icon {
    background: #5ba17a;
    color: white;
}

.date-info {
    flex: 1;
}

.date-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.date-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.date-selector.selected .date-value {
    color: #5ba17a;
}

.date-arrow {
    color: #999;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.date-selector:hover .date-arrow {
    transform: translateY(2px);
}

.custom-date-option {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin-top: 15px;
}

.custom-date-option p {
    margin-bottom: 12px;
    color: #666;
    font-size: 14px;
}

/* Date Selection Popup Styles */
.date-selection-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.date-selection-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.date-selection-popup.show .popup-content {
    transform: translateY(0) scale(1);
}

.popup-header {
    background: linear-gradient(135deg, #5ba17a 0%, #4a9268 100%);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.popup-body {
    padding: 25px;
    max-height: 60vh;
    overflow-y: auto;
}

.program-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.program-info strong {
    display: block;
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
}

.program-info span {
    color: #666;
    font-size: 14px;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.popup-date-option {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.popup-date-option:hover {
    border-color: #5ba17a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 161, 122, 0.15);
}

.popup-date-option.selected {
    border-color: #5ba17a;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
    box-shadow: 0 8px 25px rgba(91, 161, 122, 0.2);
}

.popup-date-option.recommended {
    border-color: #2196f3;
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9ff 100%);
}

.popup-date-option.recommended:hover,
.popup-date-option.recommended.selected {
    border-color: #1976d2;
}

.popup-date-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.popup-date-day {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-date-number {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.popup-date-month {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}

.popup-date-year {
    font-size: 11px;
    color: #999;
}

.popup-date-option.selected .popup-date-number {
    color: #5ba17a;
}

.popup-date-option.recommended .popup-date-number {
    color: #2196f3;
}

.recommended-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.this-month-badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff3cd;
    color: #856404;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.popup-footer {
    background: #f8f9fa;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.btn-cancel-popup {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel-popup:hover {
    background: #5a6268;
}

.btn-confirm-popup {
    background: linear-gradient(135deg, #5ba17a 0%, #4a9268 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-confirm-popup:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91, 161, 122, 0.3);
}

.btn-confirm-popup:disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .dates-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
    }
    
    .popup-date-option {
        padding: 12px 8px;
    }
    
    .popup-date-number {
        font-size: 20px;
    }
    
    .popup-footer {
        flex-direction: column;
    }
    
    .btn-cancel-popup,
    .btn-confirm-popup {
        width: 100%;
    }
}