@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.3s ease-in-out forwards;
}

.faq-body > div {
    /* Ensure content is treated correctly for grid animation */
}

/* Itinerary reveal transition */
.c-itinerary {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.c-itinerary.is-visible {
    opacity: 1;
}
