/* Custom styles and animations */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
}

@keyframes shimmer {
    100% { transform: translateX(100%); }
}

/* Carousel animations */
.carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.carousel-track.ltr {
    animation: scroll-ltr 25s linear infinite;
}

.carousel-track.rtl {
    animation: scroll-rtl 25s linear infinite;
}

@keyframes scroll-ltr {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@keyframes scroll-rtl {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* FAQ Animations */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out, padding 0.4s ease-out;
    opacity: 0;
}

.faq-answer.open {
    max-height: 500px;
    opacity: 1;
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
}
