/* ====================================
   BOOKING STATISTICS CSS
   ==================================== */

/* Hero Section Counter - ENHANCED FOR PROMINENCE */
.hero-stats-banner {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  margin: 25px 0;
  transition: all 0.3s ease;
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero-stats-banner:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.hero-stats-banner i {
  font-size: 32px;
  color: #fff;
  animation: bounce-icon 2s ease-in-out infinite;
}

.hero-stats-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-stats-banner .stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.5px;
}

.hero-stats-banner .stat-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Animations */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(102, 126, 234, 0.6);
  }
}

@keyframes bounce-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Trust Badges Section */
.trust-badges-section {
  background: #f8f9fa;
  padding: 60px 0 !important;
}

.trust-badges-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.trust-badge:hover {
  transform: translateY(-8px);
  border-color: #667eea;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.trust-badge-icon {
  font-size: 48px;
  color: #667eea;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.trust-badge:hover .trust-badge-icon {
  transform: scale(1.1);
  color: #764ba2;
}

.trust-badge-content {
  text-align: left;
}

.trust-badge-number {
  font-size: 42px;
  font-weight: 800;
  color: #333;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-badge-text {
  font-size: 13px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Package Booking Badge */
.package-booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(245, 87, 108, 0.3);
}

.package-booking-badge i {
  font-size: 14px;
  animation: flicker 2s infinite;
}

@keyframes flicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Popular Badge */
.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(245, 87, 108, 0.4);
  z-index: 10;
}

.popular-badge i {
  margin-right: 4px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-stats-banner {
    gap: 12px;
    padding: 15px 25px;
  }

  .hero-stats-banner i {
    font-size: 24px;
  }

  .hero-stats-banner .stat-number {
    font-size: 24px;
  }

  .hero-stats-banner .stat-text {
    font-size: 12px;
  }

  .trust-badges-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-badge {
    padding: 25px;
  }

  .trust-badge-icon {
    font-size: 40px;
  }

  .trust-badge-number {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .hero-stats-banner {
    flex-direction: row;
    padding: 12px 20px;
  }

  .hero-stats-content {
    align-items: flex-start;
  }
}

/* Print Styles */
@media print {
  .trust-badges-container,
  .package-booking-badge,
  .popular-badge {
    display: none;
  }
}