/* Booking Page Styles */

.booking-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-light);
    transition: var(--transition);
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
}

.step.active .step-number,
.step.completed .step-number {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
}

.step.completed .step-number::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.step.active .step-label,
.step.completed .step-label {
    color: var(--primary-color);
}

.booking-form {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.form-step h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.form-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.form-actions .btn {
    flex: 1;
}

.payment-summary {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.payment-summary h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 10px;
    margin-top: 10px;
    border-top: 2px solid var(--primary-color);
    font-size: 20px;
}

.summary-total strong {
    color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.confirmation-message {
    text-align: center;
    padding: 60px 40px;
}

.confirmation-message i {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.confirmation-message h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.confirmation-message p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.confirmation-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .booking-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .booking-steps::before {
        display: none;
    }

    .step {
        flex-direction: row;
        width: 48%;
    }

    .booking-form {
        padding: 30px 20px;
    }

    .form-actions {
        flex-direction: column;
    }

    .confirmation-actions {
        flex-direction: column;
    }
}