/* Custom Glassmorphism Classes */
.glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-btn {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.8), rgba(185, 28, 28, 0.9));
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-btn:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 1), rgba(185, 28, 28, 1));
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

/* Hero Background Animation */
@keyframes heroZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero-bg {
    animation: heroZoom 20s infinite alternate ease-in-out;
}

/* Blob Animation */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* WhatsApp Pulse Animation */
@keyframes pulse-custom {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-pulse {
    animation: pulse-custom 2s infinite;
}

/* Scroll Reveal Utilities */
.reveal {
    opacity: 0;
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
}

.reveal.fade-up {
    transform: translateY(40px);
}

.reveal.fade-up.active {
    transform: translateY(0);
}

.reveal.slide-left {
    transform: translateX(-50px);
}

.reveal.slide-left.active {
    transform: translateX(0);
}

.reveal.slide-right {
    transform: translateX(50px);
}

.reveal.slide-right.active {
    transform: translateX(0);
}

/* Delay Utilities for Staggered Animations */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }