/* Custom Animations for WOW Factor */

/* Floating Phone Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-1deg); }
}

.phone-float {
    animation: float 6s ease-in-out infinite;
}

/* Counter Animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.counter {
    animation: countUp 1s ease-out;
}

/* Enhanced Glow Animation */
@keyframes glow {
    0%, 100% { 
        filter: blur(40px) brightness(1);
        transform: scale(1);
    }
    50% { 
        filter: blur(60px) brightness(1.2);
        transform: scale(1.05);
    }
}

.animate-glow {
    animation: glow 4s ease-in-out infinite;
}

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

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

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

.animation-delay-4000 {
    animation-delay: 4s;
}

/* Card Lift on Hover */
.card-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Button Pulse Animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

/* Text Reveal Animation */
@keyframes reveal {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-text {
    animation: reveal 0.8s ease-out;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced Focus States */
.focus-ring:focus {
    outline: 2px solid #F5C542;
    outline-offset: 2px;
}

/* Loading Shimmer */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 200px 100%;
    animation: shimmer 2s infinite;
}
