/* Animation styles - Modified to ensure elements are visible by default */
.usp-card, .service-card, .step, .pricing-card {
    opacity: 1 !important; /* Start visible by default */
    transform: translateY(0) !important; /* Start in final position by default */
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* FAQ styles - Ensure FAQ answers are visible when active */
.faq-item.active .faq-answer {
    padding: 1.5rem !important;
    max-height: 500px !important;
}

/* Success Popup - Ensure visibility */
.success-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--card-bg);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-width: 400px;
    width: 90%;
    text-align: center;
    border: 2px solid var(--primary-color);
    animation: fadeIn 0.3s ease;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
