/* Custom Styles */

.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.2, 1, 0.3, 1);
}

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

/* Pulse Animation for CTA */
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(255, 216, 77, 0.7); }
    70% { box-shadow: 0 0 0 25px rgba(255, 216, 77, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 216, 77, 0); }
}

.btn-pulse {
    animation: pulse-gold 2s infinite;
}

/* FAQ logic */
.faq-content.open {
    max-height: 500px;
    padding-top: 10px;
}

.faq-item button.active .faq-icon {
    transform: rotate(45deg);
}

.faq-icon {
    transition: transform 0.3s ease;
}

/* Sticky Header padding */
html {
    scroll-padding-top: 90px;
}