/* Multi-Step Form Styles */
.form-wizard {
    position: relative;
}

/* Progress Steps */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.wizard-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.wizard-step.active .step-number {
    background-color: #002F6C;
    color: white;
    transform: scale(1.1);
}

.wizard-step.completed .step-number {
    background-color: #198754;
    color: white;
}

.wizard-step.completed .step-number::before {
    content: '✓';
}

.step-title {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.wizard-step.active .step-title {
    color: #002F6C;
    font-weight: bold;
}

.wizard-step.completed .step-title {
    color: #198754;
}

/* Step Content */
.step-content {
    display: none;
}

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

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

/* Navigation Buttons */
.wizard-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.btn-wizard {
    min-width: 120px;
}

/* Section Headers */
.section-header {
    background-color: #002F6C;
    color: white;
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .wizard-steps {
        flex-wrap: wrap;
    }
    
    .wizard-step {
        flex-basis: 50%;
        margin-bottom: 20px;
    }
    
    .step-title {
        font-size: 10px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}
