/* =============================================================================
   SIMPLE CSS ANIMATIONS - Replace AOS for Performance
   Lightweight animations using only CSS
   ============================================================================= */

/* Fade-in animation for elements on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Auto-animate elements with .animate class */
.service-card,
.about-text,
.about-visual,
.contact-info,
.contact-form,
.testimonial-card,
.faq-image,
.faq-content,
.disclosure-card {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-play-state: running;
}

/* Stagger animations */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.15s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.25s; }
.service-card:nth-child(5) { animation-delay: 0.3s; }
.service-card:nth-child(6) { animation-delay: 0.35s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.disclosure-card:nth-child(1) { animation-delay: 0.1s; }
.disclosure-card:nth-child(2) { animation-delay: 0.2s; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
