/* ==================== BOOKING SYSTEM ==================== */
.booking-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-info {
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    color: white;
    padding: 40px;
    border-radius: 20px;
    height: fit-content;
}

.booking-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.booking-info > p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 30px;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.booking-features .feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
}

.booking-features .feature i {
    font-size: 24px;
    color: var(--gold);
}

.booking-features .feature strong {
    display: block;
    font-size: 16px;
}

.booking-features .feature span {
    font-size: 13px;
    opacity: 0.8;
}

.booking-contact {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 25px;
}

.booking-contact h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
}

.phone-link:hover {
    color: var(--gold);
}

/* Form Container */
.booking-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.form-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

/* Services Selection */
.services-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.service-option {
    cursor: pointer;
}

.service-option input {
    display: none;
}

.service-card-select {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid #eee;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-option input:checked + .service-card-select {
    border-color: var(--red-primary);
    background: rgba(227, 30, 36, 0.05);
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.15);
}

.service-card-select:hover {
    border-color: #ccc;
}

.service-card-select i {
    font-size: 28px;
    color: var(--red-primary);
    width: 40px;
}

.service-info {
    flex: 1;
}

.service-info strong {
    display: block;
    font-size: 15px;
    color: var(--black);
    margin-bottom: 3px;
}

.service-duration {
    font-size: 12px;
    color: #888;
}

.service-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--red-primary);
}

/* Date & Time Selection */
.datetime-selection {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 30px;
}

.date-picker label,
.time-slots-container > label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.date-picker input {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

.date-picker input:focus {
    border-color: var(--red-primary);
    outline: none;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-height: 250px;
    overflow-y: auto;
    padding: 5px;
}

.slots-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    color: #888;
    padding: 30px;
}

.time-slot {
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.time-slot:hover {
    border-color: var(--red-primary);
}

.time-slot.selected {
    background: var(--red-primary);
    border-color: var(--red-primary);
    color: white;
}

.time-slot.unavailable {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--red-primary);
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--red-primary);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Booking Summary */
.booking-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 4px solid var(--gold);
}

.booking-summary h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--black);
}

.summary-content p {
    margin-bottom: 8px;
    color: #555;
}

.summary-content strong {
    color: var(--black);
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-prev {
    background: #eee;
    color: #333;
}

.btn-prev:hover {
    background: #ddd;
}

.btn-next {
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    color: white;
    margin-left: auto;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.3);
}

.btn-submit {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    flex: 1;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
}

/* Progress Bar */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.progress-dot {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #eee;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.progress-step.active .progress-dot,
.progress-step.completed .progress-dot {
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    color: white;
}

.progress-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.progress-step.active .progress-label {
    color: var(--black);
}

.progress-line {
    width: 60px;
    height: 3px;
    background: #eee;
    margin: 0 15px 25px;
}

/* Success Message */
.booking-success {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.success-icon i {
    font-size: 50px;
    color: white;
}

.booking-success h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--black);
    margin-bottom: 15px;
}

.booking-success > p {
    color: #666;
    margin-bottom: 10px;
}

.success-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    text-align: left;
}

.success-details p {
    margin-bottom: 10px;
    color: #555;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--red-primary), var(--blue-primary));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* Responsive */
@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
    }
    
    .booking-info {
        order: 2;
    }
    
    .services-selection {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .datetime-selection {
        grid-template-columns: 1fr;
    }
    
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .btn-prev,
    .btn-next,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .booking-progress {
        display: none;
    }
}
