/* Booking Page Styles (shared basics in forms.css) */
.booking-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--light-gold) 100%);
    min-height: 100vh;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-form {
    padding: 3rem;
    margin-top: 2rem;
}


.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-option {
    position: relative;
}

.service-option input {
    position: absolute;
    opacity: 0;
}

.service-option-card {
    padding: 2rem;
    border-radius: 22px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-option input:checked+.service-option-card {
    transform: translateY(-6px) scale(1.03);
}

/* hover handled globally */

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-price {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.time-slot {
    position: relative;
}

.time-slot input {
    position: absolute;
    opacity: 0;
}

.time-slot-label {
    display: block;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
}

.time-slot input:checked+.time-slot-label {
    border-color: var(--primary-gold);
    background: var(--primary-gold);
    color: var(--white);
}

.time-slot-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.time-slot.unavailable .time-slot-label {
    background: var(--beige-medium);
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.6;
}

/* Submit button sizing tweak for booking page */
.booking-form .submit-btn {
    padding: 1.5rem;
    font-size: 1.2rem;
    margin-top: 2rem;
}

.booking-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--beige-light);
    border-radius: 10px;
}

.info-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .booking-container {
        margin: 0 20px;
    }

    .booking-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .time-slots {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}