/**
 * Star Cleaning Services - Subtle Premium Animations
 */

@keyframes scsFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scsPulseSoft {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

.scs-animate-up {
  animation: scsFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.scs-pulse-hover:hover {
  animation: scsPulseSoft 0.4s ease-in-out;
}

/* Reduced Motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
