/* ==========================================================================
   VoltRide EV — Animations & Micro-Interactions (Clean Light Theme)
   ========================================================================== */

@keyframes badgePing {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(15, 169, 88, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(15, 169, 88, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(15, 169, 88, 0);
  }
}

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

.float-animation {
  animation: floatCard 5s ease-in-out infinite;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--volt-primary);
  border-radius: 50%;
  display: inline-block;
  animation: badgePing 2s infinite cubic-bezier(0, 0, 0.2, 1);
}

.live-dot-blue {
  width: 8px;
  height: 8px;
  background-color: #0284C7;
  border-radius: 50%;
  display: inline-block;
}

/* Subtle clean grid background */
.clean-hero-bg {
  background-color: #FFFFFF;
  position: relative;
}
