/* Urgency Badge Animation */
@keyframes pulse-urgency {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgb(220 38 38 / 40%);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgb(220 38 38 / 60%);
  }
}

.hero-urgency {
  animation: pulse-urgency 2s ease-in-out infinite;
}

/* Responsive Hero Badges */
@media (max-width: 768px) {
  .ts-hero__badges {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .ts-hero__eyebrow,
  .hero-social-proof,
  .hero-urgency {
    font-size: 0.875rem !important;
    padding: 0.5rem 1rem !important;
  }

  .hero-social-proof span:first-child,
  .hero-urgency span:first-child {
    font-size: 1rem !important;
  }
}

/* CTA Urgency Badge */
.cta-urgency-badge {
  animation: badge-bounce 3s ease-in-out infinite;
}

@keyframes badge-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* Trust Indicators */
.trust-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgb(255 255 255 / 95%);
  border-radius: 50px;
  border: 2px solid var(--tiller-color-emerald, #00a35c);
  font-weight: 700;
  font-size: 0.875rem;
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
}

.trust-indicator__icon {
  font-size: 1.25rem;
}

/* Booking Status Indicator */
.booking-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 50px;
  border: 3px solid #ffffff;
  font-weight: 900;
  font-size: 1rem;
  color: #000000;
  box-shadow: 0 4px 12px rgb(251 191 36 / 50%);
  animation: status-glow 3s ease-in-out infinite;
}

@keyframes status-glow {
  0%,
  100% {
    box-shadow: 0 4px 12px rgb(251 191 36 / 50%);
  }

  50% {
    box-shadow: 0 6px 20px rgb(251 191 36 / 80%);
  }
}

/* Limited Availability Badge */
.limited-availability {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgb(220 38 38 / 95%);
  border-radius: 8px;
  border: 2px solid #fca5a5;
  font-weight: 800;
  font-size: 0.875rem;
  color: #ffffff;
  box-shadow: 0 2px 8px rgb(220 38 38 / 40%);
}

.limited-availability::before {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  background: #dc2626;
  border: 2px solid #ffffff;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 100%;
  }

  50% {
    transform: scale(1.3);
    opacity: 70%;
  }
}

/* Response Time Badge */
.response-time {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgb(16 185 129 / 95%);
  border-radius: 50px;
  border: 2px solid #6ee7b7;
  font-weight: 700;
  font-size: 0.875rem;
  color: #ffffff;
  box-shadow: 0 2px 8px rgb(16 185 129 / 30%);
}

.response-time__icon {
  font-size: 1.125rem;
}
