/* Custom Scrollbar for Luxury Vibe */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}

/* Base resets & selections */
html {
    scroll-behavior: smooth;
}

::selection {
    background: #D4AF37;
    color: #050505;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glowing text effect for Hero */
.text-glow {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Pulse animation slow */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

.animate-pulse-slow {
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* FAQ transitions */
.faq-content {
    transition: all 0.3s ease-in-out;
}

.faq-btn i {
    transition: transform 0.3s ease-in-out;
}

.faq-btn.active i {
    transform: rotate(45deg);
    color: white;
}
