/* Custom animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
/* Hero section height adjustment for mobile */
@media (max-width: 640px) {
    section.relative {
        height: 80vh;
    }
}

/* Sticky call button animation */
@keyframes pulse {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

.fixed {
    animation: pulse 2s infinite;
}

/* Benefit cards hover effect */
.bg-gray-50:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
