/* ========================================
   Service Detail Pages
======================================== */

.service-page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(20, 40, 70, 0.92),
      rgba(52, 97, 172, 0.78)
    ),
    url("../img/service-hero.jpg") center / cover no-repeat;
  color: #fff;
}

.service-page-hero-content {
  padding: 80px 0;
}

.service-page-en {
  display: block;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  opacity: 0.85;
}

.service-page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.service-page-hero p {
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.9;
  opacity: 0.95;
}


/* Breadcrumb */

.service-breadcrumb {
  padding: 18px 0;
  border-bottom: 1px solid var(--site-border);
}

.service-breadcrumb .breadcrumb {
  font-size: 13px;
}

.service-breadcrumb a {
  color: var(--site-primary);
  text-decoration: none;
}


/* Introduction */

.service-intro {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-number {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: var(--site-primary);
  opacity: 0.25;
}

.service-label {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--site-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-intro-text h2 {
  margin-bottom: 30px;
  font-size: 34px;
  line-height: 1.6;
  font-weight: 700;
}

.service-intro-text p {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--site-muted);
  line-height: 2;
}


/* Detail */

.service-detail-section {
  padding: 100px 0;
  background: #f7f8fa;
}

.service-detail-card {
  height: 100%;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--site-border);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-detail-icon {
  margin-bottom: 25px;
  color: var(--site-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-detail-card h3 {
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
}

.service-detail-card p {
  color: var(--site-muted);
  line-height: 1.9;
}

.service-detail-card ul {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-card li {
  position: relative;
  padding: 9px 0 9px 20px;
  border-top: 1px solid var(--site-border);
  font-size: 14px;
}

.service-detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 6px;
  background: var(--site-primary);
  border-radius: 50%;
}


/* Strength */

.service-strength-section {
  padding: 110px 0;
}

.service-strength-section h2 {
  margin-bottom: 30px;
  font-size: 34px;
  line-height: 1.6;
  font-weight: 700;
}

.service-strength-section p {
  color: var(--site-muted);
  line-height: 2;
}

.service-feature-box {
  padding: 10px 0;
}

.service-feature-box > div {
  padding: 25px 0;
  border-bottom: 1px solid var(--site-border);
}

.service-feature-box > div:first-child {
  border-top: 1px solid var(--site-border);
}

.service-feature-box span {
  display: inline-block;
  width: 50px;
  color: var(--site-primary);
  font-size: 13px;
  font-weight: 700;
}

.service-feature-box strong {
  font-size: 19px;
}

.service-feature-box p {
  margin-top: 15px;
  text-align: left;
  line-height: 1.9;
  font-size: 14px;
}


/* CTA */

.service-cta {
  padding: 100px 0;
  background: var(--site-primary);
  color: #fff;
}

.service-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.service-cta .service-label {
  color: #fff;
  opacity: 0.8;
}

.service-cta h2 {
  margin-bottom: 25px;
  font-size: 34px;
  line-height: 1.6;
  font-weight: 700;
}

.service-cta p {
  margin-bottom: 30px;
  opacity: 0.9;
}

.service-cta .btn {
  padding: 13px 30px;
  background: #fff;
  border-color: #fff;
  color: var(--site-primary);
  font-weight: 600;
}

.service-cta .btn:hover {
  background: #f3f5f8;
  border-color: #f3f5f8;
}


/* Responsive */

@media (max-width: 767.98px) {

  .service-page-hero {
    min-height: 330px;
  }

  .service-page-hero-content {
    padding: 60px 0;
  }

  .service-page-hero h1 {
    font-size: 36px;
  }

  .service-page-hero p {
    font-size: 15px;
  }

  .service-intro {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-number {
    font-size: 40px;
  }

  .service-intro-text h2 {
    font-size: 26px;
  }

  .service-detail-section,
  .service-strength-section,
  .service-cta {
    padding: 70px 0;
  }

  .service-detail-card {
    padding: 30px;
  }

  .service-strength-section h2,
  .service-cta h2 {
    font-size: 27px;
  }

}