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

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeInUp 0.5s ease-out forwards;
}

.fade-in-delayed {
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 0.2s forwards;
}

.scale-up {
    animation: scaleUp 0.5s ease-out 0.1s forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom styles */
::selection {
    background-color: #00C16E;
    color: white;
}

/* Smooth scrolling behavior is handled by HTML class scroll-smooth */

/* FAQ interaction */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-content.show {
    max-height: 500px;
    padding-bottom: 24px;
}
