/**
 * Simple & Clean Booking Wizard Progress Bar
 */

.wizard-progress-container {
    width: 100%;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
}

/* Steps Container */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

/* Progress Line Background */
.wizard-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

/* Progress Line Fill */
.wizard-progress-track {
    position: absolute;
    top: 20px;
    left: 60px;
    height: 2px;
    background: var(--primary-red);
    z-index: 2;
    transition: width 0.4s ease;
}

/* Individual Step */
.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 3;
}

/* Step Circle */
.wizard-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    transition: var(--transition-base);
    font-family: var(--font-heading);
}

/* Step Label */
.wizard-step-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    font-family: var(--font-body);
}

/* Active Step */
.wizard-step.active .wizard-step-circle {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
    box-shadow: var(--shadow-sm);
}

.wizard-step.active .wizard-step-label {
    color: var(--primary-red);
    font-weight: 600;
}

/* Completed Step */
.wizard-step.completed .wizard-step-circle {
    background: #28a745;
    border-color: #28a745;
    color: white;
}

.wizard-step.completed .wizard-step-label {
    color: #28a745;
}

/* Responsive */
@media (max-width: 576px) {
    .wizard-steps::before {
        left: 40px;
        right: 40px;
    }

    .wizard-progress-track {
        left: 40px;
    }

    .wizard-step-circle {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .wizard-step-label {
        font-size: 0.75rem;
    }
}