/* ===========================
   SERVICES PAGE STYLES
   =========================== */

/* Services Section Background */
.services-page-section {
  background: #eef1fb;
  padding: 70px 0;
}

/* Section Header */
.services-page-section .svc-header {
  text-align: center;
  margin-bottom: 50px;
}

.svc-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.svc-header p {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Service Cards Grid – top 3 */
.svc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

/* Service Cards Grid – bottom row (centered) */
.svc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto 24px;
}

/* Single centered card */
.svc-grid-1 {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.svc-grid-1 .svc-card {
  max-width: 380px;
  width: 100%;
}

/* Service Card */
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.svc-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.svc-card-body {
  padding: 24px 20px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.svc-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}

.svc-card-body .btn-read {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 10px 28px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
  align-self: center;
}

.svc-card-body .btn-read:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Divider between physio and trauma sections */
.svc-divider {
  height: 60px;
}

/* Responsive */
@media (max-width: 992px) {
  .svc-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .svc-grid-3,
  .svc-grid-2 {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .svc-header h2 {
    font-size: 1.5rem;
  }
}
