/* Multi-Step Form Styles */

/* Form Steps - Clean and Simple */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* Ensure only the active step is visible */
.form-step:not(.active) {
    display: none !important;
}

/* Initial step display */
.form-step[data-step="1"]:not(.active) {
    display: none !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Step Indicators */
.step-indicator.active .step-circle {
    background-color: #f97316 !important;
    color: white !important;
}

.step-indicator.completed .step-circle {
    background-color: #16a34a !important;
    color: white !important;
}

.step-indicator.active .step-label {
    color: #f97316 !important;
    font-weight: 600;
}

.step-indicator.completed .step-label {
    color: #16a34a !important;
    font-weight: 600;
}

/* Step Options */
.step-option {
    transition: all 0.3s ease;
}

.step-option.selected {
    border-color: #f97316;
    background-color: #fff7ed;
}

.step-option:hover {
    border-color: #f97316;
    background-color: #fff7ed;
}

/* Progress Lines */
.progress-line {
    background-color: #e5e7eb;
    transition: background-color 0.3s ease;
}

.progress-line.completed {
    background-color: #16a34a;
}

/* Error States */
.border-red-500 {
    border-color: #ef4444 !important;
}

.field-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Button Styles */
.btn-primary {
    background-color: #f97316;
    color: white;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #ea580c;
}

.btn-secondary {
    background-color: #6b7280;
    color: white;
    border: 1px solid #6b7280;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #4b5563;
    border-color: #4b5563;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .form-step {
        padding: 1rem;
    }

    .step-option {
        margin-bottom: 1rem;
    }

    .grid.md\\:grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.p-4 { padding: 1rem; }
.rounded-lg { border-radius: 0.5rem; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
