.hg-service-section {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 40px 16px 0;
  overflow: hidden;
}

/* STATS */
.hg-stats-box {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto -95px;
  padding: 36px 34px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(3, 55, 39, .96), rgba(6, 82, 58, .95)),
    radial-gradient(circle at 20% 20%, rgba(0, 255, 120, .18), transparent 36%);
  box-shadow: 0 20px 45px rgba(0,0,0,.22);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hg-stat-item {
  text-align: center;
  color: #fff;
}

.hg-stat-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(180deg, #0cc523, #055c33);
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: 900;
}

.hg-stat-number {
  color: #fff;
  font-size: 50px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 14px;
}

.hg-stat-label {
  color: rgba(255,255,255,.82);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
}

/* BACKGROUND AREA */
.hg-service-bg {
  position: relative;
  width: calc(100% + 32px);
  margin-left: -16px;
  min-height: 560px;
  padding: 150px 16px 70px;
  background-image: url("https://hoanggiacar.com/wp-content/uploads/2026/05/z7871333110210_b54808eb53e2735f894628babdb4b758.jpg");
  background-size: cover;
  background-position: center;
}

.hg-service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 15, .76);
}

.hg-service-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.hg-service-heading {
  text-align: center;
  color: #fff;
  margin-bottom: 42px;
}

.hg-service-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.hg-service-star {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
}

.hg-service-star::before,
.hg-service-star::after {
  content: "";
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,.75);
}

.hg-service-star span {
  font-size: 22px;
}

/* SERVICE CARDS */
.hg-service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  align-items: start;
}

.hg-service-card {
  min-height: 230px;
  padding: 42px 28px 34px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.hg-service-card.is-lower {
  margin-top: 46px;
}

.hg-service-card-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #287f69;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 900;
}

.hg-service-card h3 {
  margin: 0 0 16px;
  color: #0d432f;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 900;
}

.hg-service-card p {
  margin: 0;
  color: #777;
  font-size: 16px;
  line-height: 1.55;
}

/* TABLET */
@media (max-width: 1024px) {
  .hg-stats-box {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: -80px;
  }

  .hg-service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hg-service-card.is-lower {
    margin-top: 0;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .hg-service-section {
    padding: 28px 12px 0;
  }

  .hg-stats-box {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 16px;
    gap: 22px;
    margin-bottom: -70px;
  }

  .hg-stat-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 14px;
  }

  .hg-stat-number {
    font-size: 34px;
  }

  .hg-stat-label {
    font-size: 13px;
  }

  .hg-service-bg {
    padding-top: 120px;
    padding-bottom: 44px;
  }

  .hg-service-heading h2 {
    font-size: 28px;
  }

  .hg-service-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hg-service-card {
    min-height: auto;
    padding: 34px 24px;
  }
}