/* Animation Enhancements & Multi-step Form Styles */

.fade-in {
    animation: fadeIn var(--transition-smooth) forwards;
}

.slide-up {
    animation: slideUp var(--transition-smooth) forwards;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.staggered-animation>* {
    opacity: 0;
    transform: translateY(10px);
    animation: slideUp 0.4s forwards;
}

.staggered-animation>*:nth-child(1) {
    animation-delay: 0.1s;
}

.staggered-animation>*:nth-child(2) {
    animation-delay: 0.2s;
}

.staggered-animation>*:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 134, 52, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(245, 134, 52, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 134, 52, 0);
    }
}

/* Multi-step Progress Bar */
.progress-bar {
    width: 100%;
    height: 4px;
    background-color: #eee;
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar .fill {
    height: 100%;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.hidden {
    display: none !important;
}

/* Checkbox Style */
.check-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}