/* Custom Scrollbar for better luxury feel */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0B132B; 
}
::-webkit-scrollbar-thumb {
    background: #475569; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FACC15; 
}

/* Glassmorphism utility */
.glass {
    background: rgba(11, 19, 43, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Glowing animation for CTA */
@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(250, 204, 21, 0.2); }
    50% { box-shadow: 0 0 20px rgba(250, 204, 21, 0.6), 0 0 40px rgba(250, 204, 21, 0.2); }
    100% { box-shadow: 0 0 5px rgba(250, 204, 21, 0.2); }
}

.glow-effect {
    animation: glow 2s infinite;
}

/* Smooth fade in for scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Accordion Transitions */
.faq-content {
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.faq-item.active .faq-content {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 1rem;
}

.faq-item .fa-chevron-down {
    transition: transform 0.3s ease;
}

.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
}
