.services-section {
  background: var(--bs-light);
  padding: 6rem 0;
}

/* HEADER */
.services-header {
  max-width: 720px;
  margin: 0 auto 4rem;
}

.services-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bs-secondary);
  margin-bottom: 0.75rem;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bs-dark);
}

.services-subtitle {
  color: var(--bs-middle);
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* CARD */
.service-box {
  display: flex;
  gap: 1.75rem;
  background: var(--bs-white);
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform .35s ease, box-shadow .35s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* IMAGE */
.service-media {
  flex: 0 0 140px;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.service-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bs-dark);
  margin-bottom: .75rem;
}

.service-content p {
  color: var(--bs-middle);
  font-size: .95rem;
  line-height: 1.6;
}

.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--bs-dark);
  text-decoration: none;
}

.service-link:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  .service-box {
    flex-direction: column;
  }

  .service-media {
    width: 100%;
    height: 300px;
  }
}
