/* ═══════════════════════════════════════════
   stats.css — Stats bar (trust indicators)
   Change this file to update: the 4 stat items
   (14 Years, 24/7 Support, 10K Travelers,
   250+ Packages) and the bar background
═══════════════════════════════════════════ */

.stats{
  display:flex;justify-content:center;align-items:stretch;flex-wrap:wrap;
  background:linear-gradient(90deg,rgba(59,18,120,.45),rgba(139,92,246,.18),rgba(59,18,120,.45));
  border-top:1px solid rgba(139,92,246,.25);
  border-bottom:1px solid rgba(139,92,246,.25);
  backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
}
.stat{
  flex:1;min-width:200px;
  display:flex;align-items:center;gap:18px;
  padding:30px 36px;
  border-right:1px solid rgba(255,255,255,.09);
  transition:background .2s;
}
.stat:hover{background:rgba(255,255,255,.04)}
.stat:last-child{border-right:none}
.stat-ico{font-size:32px;flex-shrink:0}
.stat h3{font-size:14.5px;font-weight:700;margin-bottom:3px;letter-spacing:-.1px}
.stat p{font-size:12px;color:var(--white50)}
