/* FAQ Section Styling */
#faq.faq-section-home {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* FAQ Image Animation */
.faq-image-animated {
    animation: slideInFromLeft 1.2s ease-out forwards;
    opacity: 0;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover effect for FAQ image */
.faq-image-animated:hover {
    transform: scale(1.05) rotate(2deg);
    transition: transform 0.4s ease;
}

/* FAQ items fade in animation */
.faq-item-animated {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delays for FAQ items */
.faq-item-animated:nth-child(1) {
    animation-delay: 0.2s;
}

.faq-item-animated:nth-child(2) {
    animation-delay: 0.4s;
}

.faq-item-animated:nth-child(3) {
    animation-delay: 0.6s;
}

.faq-item-animated:nth-child(4) {
    animation-delay: 0.8s;
}

.faq-item-animated:nth-child(5) {
    animation-delay: 1s;
}

/* Section title animation */
.faq-title-animated {
    animation: fadeInDown 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #faq.faq-section-home {
        padding: 40px 0;
    }
    
    @keyframes slideInFromLeft {
        0% {
            opacity: 0;
            transform: translateX(-50px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }
}
