/* Form Wizard Styles */
.form-wizard {
    padding: 1rem 0;
}

.wizard-steps {
    padding: 0 1rem;
    position: relative;
}

.wizard-progress-bar {
    position: absolute;
    top: 20px;
    left: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary, #667eea), var(--color-secondary, #764ba2));
    transition: width 0.4s ease;
    z-index: 1;
    max-width: 80%;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
    flex: 1;
}

.wizard-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    background: #e9ecef;
    color: #6c757d;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.wizard-step.active .wizard-step-circle {
    background: var(--color-primary, #667eea);
    color: white;
    border-color: var(--color-primary, #667eea);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
    transform: scale(1.1);
}

.wizard-step.completed .wizard-step-circle {
    background: var(--color-success, #10b981);
    color: white;
    border-color: var(--color-success, #10b981);
}

.wizard-step-label {
    margin-top: 0.5rem;
    text-align: center;
    color: #6c757d;
    font-weight: 500;
}

.wizard-step.active .wizard-step-label {
    color: var(--color-primary, #667eea);
    font-weight: 600;
}

.wizard-step.completed .wizard-step-label {
    color: var(--color-success, #10b981);
}

.wizard-content {
    min-height: 200px;
    padding: 1.5rem 0;
}

.wizard-footer {
    padding: 1rem 0;
}

.wizard-section {
    animation: fadeIn 0.3s ease;
}

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

/* Step section cards */
.wizard-section-card {
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: white;
}

.wizard-section-card h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-primary, #667eea);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}
