/* styles/animations.css */
@keyframes sweep{
  0%{transform: translateX(-120%)} 100%{transform: translateX(120%)}
}
.glow-hover:hover{box-shadow: var(--glow)}


/* === Reduce Motion — extended site-wide (v33) === */
html.reduce-motion .marquee .track { animation: none !important; transform: none !important; }
html.reduce-motion .neon-sweep { animation: none !important; transform: none !important; }
html.reduce-motion .carousel-track { transition: none !important; }
html.reduce-motion * { scroll-behavior: auto !important; }
/* Optional: calm button and card hover effects */
html.reduce-motion .package-card,
html.reduce-motion .service-card,
html.reduce-motion .card,
html.reduce-motion .glow-hover,
html.reduce-motion [class*="hover"] {
  transition: none !important;
  animation: none !important;
  transform: none !important;
}
