/* Keyframe Animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGold {
0% { box-shadow: 0 0 0 0 rgba(200, 164, 93, 0.4); }
70% { box-shadow: 0 0 0 15px rgba(200, 164, 93, 0); }
100% { box-shadow: 0 0 0 0 rgba(200, 164, 93, 0); }
}

.hero-slide.active .hero-title {
animation: fadeIn 0.8s ease forwards 0.2s;
}

.hero-slide.active .hero-desc {
animation: fadeIn 0.8s ease forwards 0.4s;
}

.hero-slide.active .hero-btns {
animation: fadeIn 0.8s ease forwards 0.6s;
}

.whatsapp-float {
animation: pulseGold 2s infinite;
}