/* Fade In Up */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade In */
.animate-fade {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.animate-fade.visible {
  opacity: 1;
}

/* Fade In Left */
.animate-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade In Right */
.animate-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Micro interactions */
.hover-lift {
  transition: transform 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.floating {
  animation: float 4s ease-in-out infinite;
}

/* Pulse animation for CTA */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(224, 93, 54, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(224, 93, 54, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(224, 93, 54, 0); }
}

.pulse-animation {
  animation: pulse 2s infinite;
}
