/* Global Animation Styles */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Animation Classes */
.animate {
  opacity: 0;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-scale {
  animation: scaleIn 0.5s ease-out forwards;
}

/* Staggered Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Section Animation */
.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Content Animations */
.animate-content > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-content.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.animate-content.visible > *:nth-child(1) { transition-delay: 0.1s; }
.animate-content.visible > *:nth-child(2) { transition-delay: 0.2s; }
.animate-content.visible > *:nth-child(3) { transition-delay: 0.3s; }
.animate-content.visible > *:nth-child(4) { transition-delay: 0.4s; }
.animate-content.visible > *:nth-child(5) { transition-delay: 0.5s; }
.animate-content.visible > *:nth-child(6) { transition-delay: 0.6s; }
.animate-content.visible > *:nth-child(7) { transition-delay: 0.7s; }
.animate-content.visible > *:nth-child(8) { transition-delay: 0.8s; }
