/* ---- Services Page ---- */

.services-hero {
  background: var(--blue-900);
  color: var(--white);
  padding: 140px 0 60px;
  text-align: center;
}
.services-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}
.services-hero .section-label {
  color: var(--blue-400);
}
.services-hero-sub {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--blue-100);
}

.nav-active {
  color: var(--white) !important;
  font-weight: 600;
}

/* ---- Service Blocks ---- */
.services-section {
  padding: 80px 0;
}

.service-block {
  margin-bottom: 56px;
}
.service-block:last-child {
  margin-bottom: 0;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-200);
}

.service-title {
  text-align: left;
  font-size: 1.6rem;
  margin-bottom: 0;
  color: var(--blue-800);
}

.service-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: var(--blue-900);
}
.service-icon-wrap svg {
  stroke: var(--white);
}

.service-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.service-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--blue-400);
}
.service-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--gray-800);
}
.service-item p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0;
}

/* ---- Service Block Intro ---- */
.service-block-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.service-block-intro .card-link {
  font-weight: 600;
}

/* ---- CTA Section ---- */
.services-cta {
  background: var(--gray-50);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .services-hero {
    padding: 120px 0 48px;
  }
  .services-hero h1 {
    font-size: 2rem;
  }
  .service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .service-title {
    font-size: 1.35rem;
  }
  .service-items {
    grid-template-columns: 1fr;
  }
}
