/* Custom styles for AGORA AGENCY landing page */

/* Header transparency handling */
#header {
    background-color: rgba(15, 23, 42, 0.9); /* slate-900 with opacity */
    padding: 1rem 0;
}

#header[data-transparent="true"] {
    background-color: transparent;
    padding: 1.25rem 0;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Pulse effect for CTA buttons */
@keyframes soft-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

.main-cta {
    animation: soft-pulse 2s infinite;
}

/* Scroll to top button */
#scrollToTop {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

#scrollToTop.visible {
    opacity: 1;
    visibility: visible;
}

/* Testimonial cards */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* FAQ accordion */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item .faq-icon:before {
    content: '+';
}

.faq-item.active .faq-icon:before {
    content: '-';
}
