/* Multi-Step Booking Form Styles */

/* Form Step Containers */
.form-step {
    display: none;
    margin-bottom: 2rem;
    animation: fadeIn 0.5s ease-in-out;
}

/* Service Selection Styles */
.service-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-option {
    position: relative;
    text-align: center;
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.service-option input[type="radio"]:checked + label {
    border-color: #029C7B;
    background-color: rgba(2, 156, 123, 0.1);
    box-shadow: 0 4px 12px rgba(2, 156, 123, 0.15);
    transform: translateY(-5px);
}

.service-option label i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #029C7B;
    transition: color 0.3s ease;
}

.service-option input[type="radio"]:checked + label i {
    color: #02899C;
}

.service-option label span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #01579B;
    font-size: 1.2rem;
}

/* Step Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
}

.next-btn, .prev-btn {
    padding: 0.75rem 1.5rem;
    background-color: #02899C;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.next-btn:hover, .prev-btn:hover {
    background-color: #029C7B;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Checkbox Groups */
.checkbox-group {
    margin-top: 1.5rem;
}

.checkbox-option {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.checkbox-option input[type="checkbox"] {
    margin-right: 0.75rem;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.checkbox-option label {
    cursor: pointer;
    color: #0A064A;
    font-weight: 600;
}

/* Booking Summary */
.booking-summary-container {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #029C7B;
}

.booking-summary-container h5 {
    color: #01579B;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.summary-details p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #0A064A;
}

.summary-details strong {
    color: #01579B;
    font-weight: 600;
}

/* Success Message Styling */
.success-container {
    text-align: center;
    padding: 3rem;
    background-color: rgba(2, 156, 123, 0.1);
    border-radius: 8px;
    animation: fadeIn 0.5s ease-in-out;
}

.success-container i {
    color: #029C7B;
    margin-bottom: 1.5rem;
}

.success-container h5 {
    color: #01579B;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.success-container p {
    color: #0A064A;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.success-container .cta-btn {
    display: inline-block;
}

/* Notification for Plan Selection */
.notification {
    background-color: rgba(2, 156, 123, 0.1);
    color: #029C7B;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
    border-left: 4px solid #029C7B;
    animation: fadeIn 0.5s ease-in-out;
}

/* Alternative Booking Methods */
.alternative-booking {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.alternative-booking h4 {
    margin-bottom: 1.5rem;
    color: #01579B;
    font-size: 1.5rem;
}

.alt-booking-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.alt-booking-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: #029C7B;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.alt-booking-btn:hover {
    background-color: #02899C;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.alt-booking-btn i {
    margin-right: 0.75rem;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-selection {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .prev-btn, .next-btn {
        width: 100%;
    }
    
    .alt-booking-buttons {
        flex-direction: column;
    }
    
    .alt-booking-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}