/* Premium icons — suburb services-stats-bar (blue highlight strip) */
.services-stats-bar .stat-box {
  text-align: center;
}

.services-stats-bar .stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  border: 2px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.16);
}

.services-stats-bar .stat-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.35s ease;
}

.services-stats-bar .stat-box:nth-child(1) .stat-icon {
  background: linear-gradient(145deg, #0052a3 0%, #0066cc 45%, #4da3ff 100%);
  border-color: rgba(255, 255, 255, 0.45);
}

.services-stats-bar .stat-box:nth-child(2) .stat-icon {
  background: linear-gradient(145deg, #e55a00 0%, #ff6600 45%, #ff9944 100%);
}

.services-stats-bar .stat-box:nth-child(2) .stat-icon::before {
  border-color: rgba(255, 102, 0, 0.2);
}

.services-stats-bar .stat-box:nth-child(3) .stat-icon {
  background: linear-gradient(145deg, #0a7a71 0%, #0d9488 45%, #2dd4bf 100%);
}

.services-stats-bar .stat-box:nth-child(3) .stat-icon::before {
  border-color: rgba(13, 148, 136, 0.2);
}

.services-stats-bar .stat-box:nth-child(4) .stat-icon {
  background: linear-gradient(145deg, #b8860b 0%, #ffd700 45%, #ffe566 100%);
}

.services-stats-bar .stat-box:nth-child(4) .stat-icon::before {
  border-color: rgba(184, 134, 11, 0.22);
}

.services-stats-bar .stat-icon svg {
  width: 30px;
  height: 30px;
  color: #ffffff;
  stroke: currentColor;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.services-stats-bar .stat-box:hover .stat-icon {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.services-stats-bar .stat-box:hover .stat-icon::before {
  inset: -9px;
  opacity: 0.9;
}

.services-stats-bar .stat-number {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 800;
  margin-bottom: 4px;
  color: #fff;
  line-height: 1.2;
}

.services-stats-bar .stat-label {
  font-size: clamp(0.8rem, 1.2vw, 0.85rem);
  opacity: 0.95;
  color: #fff;
  line-height: 1.35;
}
