/* ==========================================
   WIZARD FORM STYLES
   ========================================== */

/* Progress Bar */
.wizard-progress {
    background: white;
    padding: 30px 0;
    margin-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 3px;
    background: #e0e0e0;
    z-index: 0;
}

.wizard-progress-line {
    position: absolute;
    top: 25px;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD900 0%, #f39c12 100%);
    transition: width 0.4s ease;
    z-index: 1;
}

.wizard-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.wizard-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 3px solid #f8f9fa;
}

.wizard-step.active .wizard-step-circle {
    background: #FFD900;
    color: white;
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.wizard-step.completed .wizard-step-circle {
    background: #28a745;
    color: white;
}

.wizard-step.completed .wizard-step-circle::after {
    content: '✓';
    font-size: 20px;
}

.wizard-step-label {
    font-size: 13px;
    font-weight: 500;
    color: #6c757d;
    display: block;
}

.wizard-step.active .wizard-step-label {
    color: #FFD900;
    font-weight: 600;
}

/* Form Content */
.wizard-content {
    display: none !important;
}

.wizard-content.active {
    display: block !important;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 40px;
    min-height: 400px;
}

.wizard-card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wizard-card-title i {
    font-size: 28px;
}

.wizard-actions {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.btn-wizard {
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-wizard-primary {
    background: #FFD900;
    border: none;
    color: white;
}

.btn-wizard-primary:hover:not(:disabled) {
    background: #FFD900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    color: white;
}

.btn-wizard-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-wizard-secondary {
    background: transparent;
    border: 2px solid #dee2e6;
    color: #6c757d;
}

.btn-wizard-secondary:hover {
    border-color: #FFD900;
    color: #FFD900;
    background: transparent;
}

.btn-wizard-success {
    background: #28a745;
    border: none;
    color: white;
}

.btn-wizard-success:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .wizard-card {
        padding: 25px;
    }
    
    .wizard-step-label {
        font-size: 11px;
    }
    
    .wizard-step-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .wizard-actions {
        flex-direction: column-reverse;
    }
    
    .wizard-actions button {
        width: 100%;
    }
}