/* ─────────────────────────────────────────
   PHOENIX FITNESS — SERVICES PAGE STYLES
───────────────────────────────────────── */

/* ─── SERVICE BLOCKS ─── */

.service-block { background: var(--white); }
.service-block:nth-child(even) { background: var(--slate); }

.service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1100px;
  width: 100%;
}

.service-text {
  min-width: 0;
}

.service-inner.reverse { direction: rtl; }
.service-inner.reverse > * { direction: ltr; }

.service-label {
  display: inline-block;
  background: var(--sky);
  border: 1px solid var(--mist);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.1rem;
}

.service-h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.1rem;
}

.service-text p { color: var(--text-mid); margin-bottom: 1rem; }
.service-text p:last-of-type { margin-bottom: 0; }

.service-includes {
  margin: 1.8rem 0;
  background: var(--sky);
  border-radius: 12px;
  padding: 22px 24px;
  border: 1px solid var(--mist);
}

.service-includes h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: 1rem;
}

.service-includes ul { list-style: none; }

.service-includes ul li {
  font-size: .94rem;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--mist);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-includes ul li:last-child { border-bottom: none; }

.service-includes ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
}

.service-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.8rem; }

.service-visual {
  border-radius: 16px;
  width: 100%;
  min-width: 0;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow);
  display: block;
}

.service-visual--portrait {
  aspect-ratio: 2/3;
}

.service-visual-wrap {
  min-width: 0;
}

.service-visual-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
/* ─── HOW IT WORKS ─── */

.how { background: var(--navy); color: var(--white); }
.how h2 { color: var(--white); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.step-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: rgba(255,255,255,.12);
  line-height: 1;
  margin-bottom: .5rem;
}

.how-step h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: .5rem;
}

.how-step p { font-size: .93rem; color: rgba(255,255,255,.68); }

/* ─── FAQ ─── */

.faq { background: var(--slate); }
.faq-inner { max-width: 740px; }

.faq-item { border-bottom: 1px solid var(--mist); padding: 22px 0; }
.faq-item:first-of-type { border-top: 1px solid var(--mist); }

.faq-q { font-weight: 600; color: var(--navy); font-size: 1rem; margin-bottom: .5rem; }
.faq-a { color: var(--text-mid); font-size: .95rem; }

/* ─── RESPONSIVE ─── */

@media (max-width: 900px) {
  .service-inner { grid-template-columns: 1fr; gap: 2rem; }
  .service-inner.reverse { direction: ltr; }
  .service-visual { display: none; }
  .how-steps { grid-template-columns: 1fr; }
}
