/* Booking Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-container {
    background-color: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}

.modal-content {
    padding: 0;
}

.rate-card-image {
    width: 100%;
    display: block;
    border-radius: 10px 10px 0 0;
}

.modal-footer {
    padding: 20px;
    text-align: center;
    background-color: #f8e9f0; /* Match the rate card background */
    border-radius: 0 0 10px 10px;
}

.whatsapp-booking-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-booking-btn i {
    margin-right: 8px;
}

.whatsapp-booking-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Service selection */
.service-selection {
    padding: 15px 20px;
    background-color: #f8e9f0;
    border-bottom: 1px solid #e0c8db;
}

.service-selection h3 {
    margin: 0 0 15px 0;
    color: #5d3f6a;
    font-size: 18px;
    text-align: center;
}

.service-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.service-option {
    display: flex;
    align-items: center;
}

.service-option input {
    margin-right: 5px;
}

.service-option label {
    color: #5d3f6a;
    font-size: 14px;
}

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

/* Mobile adjustments */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
    }
    
    .service-options {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-option {
        margin-bottom: 5px;
    }
}