/* Custom animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(12deg); }
    50% { transform: translateY(-20px) rotate(12deg); }
}

@keyframes float-delay {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(45deg); }
    50% { transform: translateY(-10px) rotate(45deg); }
}

.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-delay { animation: float-delay 5s ease-in-out infinite; }
.animate-float-slow { animation: float-slow 6s ease-in-out infinite; }

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Service card hover glow */
.service-card:hover {
    box-shadow: 0 20px 60px -20px rgba(255, 92, 51, 0.15);
}

/* Review card hover */
.review-card:hover {
    box-shadow: 0 20px 60px -20px rgba(255, 92, 51, 0.1);
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0F0F11;
}
::-webkit-scrollbar-thumb {
    background: #3F3F46;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FF5C33;
}

/* Mobile menu transitions */
#mobileMenu {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Nav background on scroll */
nav.scrolled {
    background: rgba(8, 8, 9, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(63, 63, 70, 0.5);
}

/* Stat card hover */
.stat-card:hover {
    border-color: rgba(255, 92, 51, 0.3);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Selection color */
::selection {
    background: rgba(255, 92, 51, 0.3);
    color: white;
}
