/* ==========================================================================
   services.css
   - Homepage Services section (modern service cards)
   ========================================================================== */

/* 1) Section Shell */
.svc-section {
  padding: 64px 0;
  background: var(--bg-light);
}

/* 2) Section Headings */
.svc-kicker {
  margin: 0 0 6px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0b3c5d;
  font-size: 0.8rem;
}

.svc-title {
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: -0.3px;
}

/* 3) Cards */
.modern-svc-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;

  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.modern-svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.m-svc-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.m-svc-body {
  padding: 24px;
}

.m-svc-body h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--brand-blue);
  margin: 0 0 10px;
}

.m-svc-body p {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.7;
}

/* 4) Links */
.m-svc-link {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  transition: gap 0.2s ease;
}

.m-svc-link:hover {
  gap: 12px;
}
