/*
 * InstaFluid Booking – Animations
 */

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

.ifb-step.is-active {
  animation: ifbFadeIn 0.3s ease-out forwards;
}

@keyframes ifbPop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.ifb-success-icon {
  animation: ifbPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
