/* ===== Service Detail Section ===== */
.service-detail-section {
  padding: 80px 0 48px;
  background: #F9FAFB;
  overflow: hidden;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-areas:
    "body kpi"
    "images images";
  gap: 40px;
}

/* Body */
.service-detail-body {
  grid-area: body;
}

.service-detail-body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.service-detail-body p {
  font-size: 16px;
  line-height: 1.8;
}

/* KPI Card */
.service-kpi {
  grid-area: kpi;
}

.service-kpi-inner {
  display: grid;
  gap: 20px;
}

/* Images */
.service-images {
  grid-area: images;
  padding-left: 80px;
  padding-top: 80px;
}

.service-image-item {
  width: 100%;
  height: 100%;
}

.service-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* ===== Steps Section ===== */
.service-steps-section {
  padding: 64px 0 40px;
  background: #fff;
}

.service-steps-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.service-steps-title h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
}

/* ===== Detail Items Section ===== */
.service-detail-items-section {
  padding: 0 0 64px;
  background: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .service-detail-section {
    padding: 48px 0;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "body"
      "kpi"
      "images";
  }

  .service-images {
    padding-left: 0;
    padding-top: 0;
  }

  .service-steps-grid {
    grid-template-columns: 1fr;
  }
}


/* Apply Button */
.apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #353535;
  color: #fff;
  padding: 0 16px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid #353535;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.apply-btn:hover {
  background: #FFF3E9;
  color: var(--orange, #f97316);
  border-color: var(--orange, #f97316);
}

.apply-btn i {
  color: var(--orange, #f97316);
  font-size: 12px;
}

@media (max-width: 768px) {
  .top-banner-section .banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.service-apply-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.kpi-card {
  background: #fff;
  height: auto;
  padding: 42px 44px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.kpi-card__top {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kpi-card__title {
  font-size: 22px;
  color: #6A7282;
  margin: 0;
  font-weight: 400;
}

.kpi-card__icon img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.kpi-card__value {
  font-size: 2.25rem;
  font-weight: 700;
  color: #06142B;
  margin: 0 0 24px;
  line-height: 1.1;
}

.kpi-card__note {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 0 0 26px;
}

.kpi-card__progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
}

.kpi-card__progress span {
  width: 7px;
  height: 25px;
  background: #E1E4EA;
  display: block;
  border-radius: 20px;
}

.kpi-card__progress span.active {
  background: #f97316;
}
@media (max-width: 991px) {
  .kpi-card__title {
    font-size: 20px;
  }

  .kpi-card__icon img {
    width: 56px;
    height: 56px;
  }

  .kpi-card__value {
    font-size: 2rem;
  }

  .kpi-card__note {
    font-size: 18px;
  }

  .kpi-card__progress {
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .kpi-card__top {
    align-items: flex-start;
    gap: 16px;
  }

  .kpi-card__title {
    font-size: 18px;
  }

  .kpi-card__icon img {
    width: 48px;
    height: 48px;
  }

  .kpi-card__value {
    font-size: 1.75rem;
  }

  .kpi-card__note {
    font-size: 16px;
  }

  .kpi-card__progress {
    gap: 6px;
  }

  .kpi-card__progress span {
    width: 5px;
    height: 20px;
  }
}