/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
@keyframes float-delayed {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}
@keyframes float-delayed2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-delayed { animation: float-delayed 3.5s ease-in-out 0.5s infinite; }
.animate-float-delayed2 { animation: float-delayed2 3s ease-in-out 1s infinite; }

/* ===== SCROLL REVEAL (below the fold only, progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .testimonial-card {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #fdf9f3; }
::-webkit-scrollbar-thumb { background: #f9cdd7; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #ec7496; }

/* ===== FOCUS STYLES ===== */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid #ec7496;
    outline-offset: 2px;
}

/* ===== MOBILE MENU TRANSITION ===== */
#mobileMenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
#mobileMenu.open {
    max-height: 400px;
    padding: 1.5rem 0;
}

/* ===== NAVBAR SCROLL EFFECT ===== */
nav.scrolled {
    box-shadow: 0 1px 20px rgba(159, 32, 65, 0.08);
}
