/* =====================================================
   AirDuctVet - Animations & Fade-in
   ===================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid children */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

/* Pulse for CTA */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(26,111,196,0.4); }
  70%  { box-shadow: 0 0 0 12px rgba(26,111,196,0); }
  100% { box-shadow: 0 0 0 0 rgba(26,111,196,0); }
}
.pulse { animation: pulse-ring 2.2s infinite; }

/* Floating icon animation */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.float-anim { animation: float 3s ease-in-out infinite; }

/* Badge bounce */
@keyframes badge-bounce {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
.badge-bounce { animation: badge-bounce 2.5s ease-in-out infinite; }
