/* Booking Page Styles */
.booking-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 30px;
}

.booking-container h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 40px;
}

.booking-form-wrapper {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
}

/* Service Selection */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-option {
    display: block;
    cursor: pointer;
}

.service-option input[type="radio"] {
    display: none;
}

.service-card {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-option input[type="radio"]:checked + .service-card {
    border-color: #000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    margin-bottom: 15px;
}

.service-card .price {
    font-size: 24px;
    font-weight: 300;
}

/* Calendar */
.calendar-container {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h3 {
    font-size: 20px;
    font-weight: 400;
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 15px;
    transition: opacity 0.3s;
}

.calendar-nav:hover {
    opacity: 0.6;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.calendar-day:hover:not(.disabled) {
    background: #e8e8e8;
}

.calendar-day.selected {
    background: #000;
    color: #fff;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #f0f0f0;
}

.calendar-day.today {
    border: 2px solid #000;
}

.day-label {
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    padding: 10px 0;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 30px;
}

.time-slot {
    background: #fff;
    border: 2px solid #ddd;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover:not(.disabled) {
    border-color: #000;
}

.time-slot.selected {
    background: #000;
    color: #fff;
    border-color: #000;
}

.time-slot.disabled {
    background: #f0f0f0;
    color: #ccc;
    cursor: not-allowed;
}

/* Form Fields */
.form-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

/* Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #f8f8f8;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: #333;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Confirmation */
.confirmation-message {
    text-align: center;
    padding: 60px 20px;
}

.confirmation-message h2 {
    color: #4caf50;
    margin-bottom: 20px;
}

/* Booking Closed */
.booking-closed {
    text-align: center;
    padding: 60px 20px;
}

.booking-closed h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}

.booking-closed p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-form-wrapper {
        padding: 20px;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .form-fields {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column-reverse;
        gap: 10px;
    }
    
    .form-navigation .btn {
        width: 100%;
        text-align: center;
    }
}