/* ===================================================================
   PERSONAL CARE SERVICES PAGE — built from Figma screenshots
   =================================================================== */

/* --- 1. HERO ---
   Full-width bg image, dark overlay, centered white text,
   2 buttons side by side, 3 trust badges in a row.
   Height: ~560px. Overlay ~48% black.
   ----------------------------------------------------------------- */
.pc-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center 30%;
  text-align: center;
  color: var(--white);
  padding: 80px 80px;
}
.pc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 1;
}
.pc-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pc-hero__title {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
}
.pc-hero__subtitle {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.88;
  line-height: 1.6;
  max-width: 620px;
}
.pc-hero__buttons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.pc-hero__badges {
  display: flex;
  gap: 28px;
  margin-top: 4px;
}
.pc-hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}
.pc-hero__badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- 4. INTRO ---
   White bg, 2-column: image left (rounded), text right with title,
   2 paragraphs, 2 buttons side by side.
   ----------------------------------------------------------------- */
.pc-intro {
  background: var(--white);
  padding: 80px 80px;
}
.pc-intro__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.pc-intro__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.pc-intro__title {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--navy);
}
.pc-intro__desc {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.pc-intro__buttons {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

/* outline-blue button variant for intro */
.btn--outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid rgba(85, 131, 252, 0.4);
}
.btn--outline-blue:hover {
  background: rgba(85, 131, 252, 0.06);
}

/* --- 5. SERVICES ---
   White bg with subtle light-blue border cards.
   Centered heading + subtitle, 3-column grid of 10 service cards.
   Each card: image top, title, description, "Learn More" link.
   ----------------------------------------------------------------- */
.pc-services {
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  background: var(--white);
}
.pc-services__header {
  text-align: center;
  max-width: 680px;
}
.pc-services__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.pc-services__subtitle {
  font-size: 17px;
  color: var(--body-text);
  line-height: 1.6;
}
.pc-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  width: 100%;
}
.pc-service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #E2E8F0;
}
.pc-service-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.pc-service-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pc-service-card__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
}
.pc-service-card__text {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.6;
  flex: 1;
}
.pc-service-card__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.pc-service-card__link svg { stroke: var(--navy); }
.pc-service-card__link:hover { color: var(--blue); }
.pc-service-card__link:hover svg { stroke: var(--blue); }

/* --- 6. WHO CAN BENEFIT ---
   Light blue bg, 2-column: text left (title, lead, bullet list, description),
   image right (rounded).
   ----------------------------------------------------------------- */
.pc-benefit {
  background: var(--light-blue);
  padding: 80px 80px;
}
.pc-benefit__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.pc-benefit__title {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--navy);
}
.pc-benefit__lead {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 12px;
}
.pc-benefit__list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}
.pc-benefit__list li {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 6px;
}
.pc-benefit__desc {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.7;
}
.pc-benefit__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* --- 7. WHY US ---
   Dark navy bg, centered heading + subtitle,
   2-column: image left (rounded), 4 feature items right.
   Each item: icon circle + title + description.
   ----------------------------------------------------------------- */
.pc-why-us {
  background: var(--navy);
  color: var(--white);
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}
.pc-why-us__header {
  text-align: center;
  max-width: 720px;
}
.pc-why-us__title {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.pc-why-us__subtitle {
  font-size: 17px;
  opacity: 0.75;
  line-height: 1.6;
}
.pc-why-us__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}
.pc-why-us__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.pc-why-us__items {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.pc-why-us-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pc-why-us-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.pc-why-us-item__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pc-why-us-item__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.pc-why-us-item__desc {
  font-size: 15px;
  opacity: 0.75;
  line-height: 1.65;
}

/* --- 8. SERVICE AREA ---
   White bg, 2-column: image left (rounded), text right + button.
   ----------------------------------------------------------------- */
.pc-service-area {
  background: var(--white);
  padding: 80px 80px;
}
.pc-service-area__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.pc-service-area__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.pc-service-area__title {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--navy);
}
.pc-service-area__desc {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* --- 9. CTA ---
   Full-width bg image, dark overlay, centered white text, 2 buttons.
   ----------------------------------------------------------------- */
.pc-cta {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--white);
  padding: 80px 80px;
}
.pc-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 1;
}
.pc-cta__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pc-cta__title {
  font-size: 44px;
  line-height: 1.15;
}
.pc-cta__subtitle {
  font-size: 17px;
  opacity: 0.88;
  line-height: 1.65;
  max-width: 620px;
}
.pc-cta__buttons {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

/* =================================================================
   MOBILE RESPONSIVE — @media (max-width: 768px)
   Matches mobile Figma screenshots (412px viewport)
   ================================================================= */
@media (max-width: 768px) {

  /* --- HERO mobile --- */
  .pc-hero {
    min-height: 600px;
    padding: 60px 20px 48px;
    text-align: left;
    align-items: flex-start;
  }
  .pc-hero__content {
    align-items: flex-start;
    max-width: 100%;
  }
  .pc-hero__title { font-size: 32px; }
  .pc-hero__subtitle { font-size: 15px; max-width: 100%; }
  .pc-hero__buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .pc-hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .pc-hero__badges {
    flex-direction: column;
    gap: 12px;
  }

  /* --- PARTNER mobile (shared — already in components.css) --- */

  /* --- TESTIMONIALS mobile (shared — already in home.css) --- */

  /* --- INTRO mobile --- */
  .pc-intro { padding: 48px 20px; }
  .pc-intro__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pc-intro__title { font-size: 28px; }
  .pc-intro__buttons {
    flex-direction: column;
    width: 100%;
  }
  .pc-intro__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- SERVICES mobile --- */
  .pc-services {
    padding: 48px 20px;
    gap: 24px;
  }
  .pc-services__title { font-size: 28px; }
  .pc-services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* --- WHO CAN BENEFIT mobile --- */
  .pc-benefit { padding: 48px 20px; }
  .pc-benefit__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pc-benefit__title { font-size: 28px; }
  .pc-benefit__image { order: -1; }

  /* --- WHY US mobile --- */
  .pc-why-us {
    padding: 48px 20px;
    gap: 32px;
  }
  .pc-why-us__title { font-size: 28px; }
  .pc-why-us__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pc-why-us__items { gap: 28px; }

  /* --- SERVICE AREA mobile --- */
  .pc-service-area { padding: 48px 20px; }
  .pc-service-area__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pc-service-area__title { font-size: 28px; }

  /* --- CTA mobile --- */
  .pc-cta {
    min-height: 400px;
    padding: 48px 20px;
    text-align: left;
    align-items: flex-start;
  }
  .pc-cta__content {
    align-items: flex-start;
  }
  .pc-cta__title { font-size: 28px; }
  .pc-cta__buttons {
    flex-direction: column;
    width: 100%;
  }
  .pc-cta__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- FOOTER mobile (shared — already in home.css) --- */
}
