.booking-steps .step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  height: 100%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 1s ease forwards;
}

.booking-steps .step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.step-circle {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.step-icon {
  font-size: 40px;
  color: #ff5722;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile spacing */
@media (max-width: 576px) {
  .booking-steps .step-card {
    padding: 25px 15px;
  }
}







/* Section background */
.rentocar-creative {
  background: radial-gradient(circle at top, #fff5ec, #ffffff);
  overflow: hidden;
}

/* Gradient heading */
.gradient-text {
  background: linear-gradient(90deg, #ff9800, #ff5722);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card */
.creative-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 45px 25px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
  opacity: 0;
  transform: translateY(60px);
  animation: slideFade 0.8s ease forwards;
}

.creative-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 55px rgba(0,0,0,0.15);
}

/* Floating icon */
.floating-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  color: #fff;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -80px auto 15px;
  animation: float 3s ease-in-out infinite;
}

/* Colors */
.bg-orange { background: linear-gradient(135deg, #ff9800, #ff5722); }
.bg-green  { background: linear-gradient(135deg, #4caf50, #2e7d32); }
.bg-red    { background: linear-gradient(135deg, #f44336, #c62828); }

/* Delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Animations */
@keyframes slideFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Mobile */
@media (max-width: 576px) {
  .creative-card {
    padding-top: 55px;
  }
}









/* ================================
   SECTION BASE
================================ */
.stats-ultra-creative {
  position: relative;
  background: var(--background-color, #0b0f1a);
  overflow: hidden;
}

/* ================================
   BACKGROUND FX
================================ */
.stats-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
  animation: floatOrb 12s infinite alternate;
}

.orb-1 { background:#ff9800; top:10%; left:5%; }
.orb-2 { background:#00e5ff; bottom:15%; right:10%; animation-delay:3s; }
.orb-3 { background:#7c4dff; top:50%; left:45%; animation-delay:6s; }

.bg-grid {
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ================================
   GRID
================================ */
.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* ================================
   CARD
================================ */
.stat-card-neo {
  position: relative;
  height: 100%;
  padding: 50px 35px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  transition: all .6s ease;
  overflow: hidden;
}

.stat-card-neo:hover {
  transform: translateY(-18px) scale(1.04);
}

/* ================================
   GRADIENT BORDER
================================ */
.neo-border {
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  background: linear-gradient(135deg,#ff9800,#00e5ff,#7c4dff);
  z-index:-1;
  animation: rotateBorder 6s linear infinite;
}

/* ================================
   INDEX FLOAT
================================ */
.stat-index-float {
  position:absolute;
  top:20px;
  right:20px;
  width:44px;
  height:44px;
  border-radius:50%;
  background:linear-gradient(135deg,#ff9800,#ff5722);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:#fff;
  box-shadow:0 0 20px rg