/* ==========================================================================
   ALO GHALYOON - ANIMATIONS
   ========================================================================== */

@keyframes aloFadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes aloFadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes aloFadeInLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes aloFadeInRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes aloZoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.alo-anim {
  opacity: 0;
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.alo-anim-visible {
  animation-name: aloFadeInUp;
  opacity: 1;
}

.alo-delay-1 { animation-delay: 0.1s; }
.alo-delay-2 { animation-delay: 0.2s; }
.alo-delay-3 { animation-delay: 0.3s; }
.alo-delay-4 { animation-delay: 0.4s; }

body.alo-page-loaded .alo-hero-badge {
  animation: aloZoomIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

body.alo-page-loaded .alo-hero-title {
  animation: aloFadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

body.alo-page-loaded .alo-hero-subtitle {
  animation: aloFadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

body.alo-page-loaded .alo-hero-actions {
  animation: aloFadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

body.alo-page-loaded .alo-hero-stats {
  animation: aloFadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}