/* Styles for stats section on home page - refined to match homepage look */
#stats-section {
  padding: 72px 0;
  background: transparent;
}
#stats-section .section-head.center { text-align: center; margin-bottom: 18px; }
#stats-section .section-head .custom-services-title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin: 0 0 12px 0;
}
#stats-section .grid.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 1100px) {
  #stats-section .grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  #stats-section { padding: 40px 0; }
  #stats-section .grid.grid-4 { grid-template-columns: 1fr; gap: 14px; }
}
#stats-section .stat-card {
  background: #ffffff !important;
  border-radius: 12px;
  padding: 26px 22px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(16,24,40,0.06) !important;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
#stats-section .stat-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(16,24,40,0.08); }
#stats-section .stat-card-highlight { border-left: 6px solid #E32329; }
#stats-section .stat-value, #stats-section .stat-value-highlight {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
  color: #111;
}
#stats-section .stat-value-highlight { color: #E32329; }
#stats-section .stat-label, #stats-section .stat-label-bright {
  color: #4b5563;
  font-weight: 600;
  font-size: 14px;
}
#stats-section .stat-label-bright { color: #222; }

/* Make numbers responsive */
@media (max-width: 600px) {
  #stats-section .stat-value, #stats-section .stat-value-highlight { font-size: 34px; }
  #stats-section .stat-card { padding: 18px; }
}

/* Utility to keep section visually consistent with other homepage blocks */
#stats-section .container { max-width: 1180px; }
