/* =========================================================
   BRITISH PROPOLIS TOILI - ANIMATIONS & TRANSITIONS
   AOS extensions, floating effects, pulse glows
   ======================================================== */

@keyframes floatBadges {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating-badge.badge-1 {
  animation: floatBadges 4s ease-in-out infinite;
}

.floating-badge.badge-2 {
  animation: floatBadges 5s ease-in-out infinite 1s;
}

.floating-badge.badge-3 {
  animation: floatBadges 4.5s ease-in-out infinite 0.5s;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

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

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

@keyframes goldShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.gold-text-shimmer {
  background: linear-gradient(90deg, #D4AF37 0%, #FFFBEB 50%, #D4AF37 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: goldShimmer 3s linear infinite;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
