/* ===================================================================
   HOME CARE SERVICES PAGE — built from Figma screenshots
   14 sections: banner, nav, hero, partner, testimonials,
   intro, service-overview, services, who-can-benefit,
   how-it-works, service-area, faqs, cta, footer
   =================================================================== */

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

/* --- 2. PARTNER — now in components.css --- */
/* --- 3. TESTIMONIALS — now in components.css --- */

/* --- 4. HC INTRO — Supporting Independence And Dignity ---
   White bg, 2-column: tall image left, text right with 3 paragraphs.
   ----------------------------------------------------------------- */
.hc-intro {
  background: var(--white);
  padding: 80px 80px;
}
.hc-intro__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.hc-intro__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.hc-intro__title {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hc-intro__desc {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.hc-intro__desc:last-child {
  margin-bottom: 0;
}

/* --- 5. HC BENEFITS — Benefits Of Choosing Home Care ---
   White bg, 2-column: text+bullets+buttons left, image right.
   ----------------------------------------------------------------- */
.hc-benefits {
  background: var(--white);
  padding: 80px 80px;
}
.hc-benefits__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hc-benefits__title {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 28px;
}
.hc-benefits__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hc-benefits__list li {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.hc-benefits__list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
}
.hc-benefits__buttons {
  display: flex;
  gap: 16px;
}
.hc-benefits__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Outline navy button variant */
.btn--outline-navy {
  background: transparent;
  color: var(--blue);
  border-color: rgba(15, 31, 74, 0.25);
}
.btn--outline-navy:hover {
  background: var(--light-blue);
}

/* --- 6. HC SERVICES — Our Home Care Services ---
   White bg, centered heading + subtitle,
   3-column top row + 2-column bottom row of cards.
   Each card: light blue bg, image top, title, description, "Learn More" link.
   ----------------------------------------------------------------- */
.hc-services {
  background: var(--white);
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.hc-services__title {
  font-size: 44px;
  text-align: center;
}
.hc-services__subtitle {
  font-size: 17px;
  color: var(--body-text);
  text-align: center;
  max-width: 580px;
  line-height: 1.65;
  margin-top: -12px;
}
.hc-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  width: 100%;
}
.hc-service-card {
  background: var(--light-blue);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hc-service-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.hc-service-card__body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.hc-service-card__title {
  font-size: 20px;
  font-weight: 600;
}
.hc-service-card__text {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.6;
  flex: 1;
}
.hc-service-card__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.hc-service-card__link svg { stroke: var(--navy); }

/* --- 7. HC WHO — Who Can Benefit From Home Care? ---
   Light blue bg, 2-column: text+bullets left, tall image right.
   ----------------------------------------------------------------- */
.hc-who {
  background: var(--light-blue);
  padding: 80px 80px;
}
.hc-who__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.hc-who__title {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hc-who__desc {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.hc-who__desc:last-child {
  margin-bottom: 0;
}
.hc-who__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hc-who__list li {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.hc-who__list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
}
.hc-who__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* --- 8. HC HOW — How To Get Started With Support Plus ---
   Dark navy bg, 2-column: image left, text + numbered steps + buttons right.
   ----------------------------------------------------------------- */
.hc-how {
  background: var(--navy);
  color: var(--white);
  padding: 80px 80px;
}
.hc-how__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hc-how__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.hc-how__title {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hc-how__desc {
  font-size: 16px;
  opacity: 0.82;
  line-height: 1.7;
  margin-bottom: 20px;
}
.hc-how__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: hc-step;
}
.hc-how__steps li {
  font-size: 16px;
  opacity: 0.82;
  line-height: 1.65;
  padding-left: 28px;
  position: relative;
  counter-increment: hc-step;
}
.hc-how__steps li::before {
  content: counter(hc-step) '.';
  position: absolute;
  left: 0;
  opacity: 1;
  font-weight: 600;
  color: var(--white);
}
.hc-how__buttons {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

/* --- 9. HC AREA — Why Choose Support Plus? ---
   White bg, 2-column: image left, text + bullet list right.
   ----------------------------------------------------------------- */
.hc-area {
  background: var(--white);
  padding: 80px 80px;
}
.hc-area__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.hc-area__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.hc-area__title {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hc-area__desc {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.hc-area__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hc-area__list li {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.hc-area__list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
}
.hc-area__list li strong {
  color: var(--navy);
  font-weight: 600;
}

/* --- 10. FAQS ---
   Dark navy bg, centered heading, 6 FAQ items with left border + icon.
   ----------------------------------------------------------------- */
.faqs {
  background: var(--navy);
  color: var(--white);
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.faqs__title {
  font-size: 44px;
  text-align: center;
  max-width: 640px;
  line-height: 1.15;
}
.faqs__list {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.faq-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 2px;
}
.faq-item__icon svg { width: 28px; height: 28px; }
.faq-item__content {
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item__label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.6;
}
.faq-item__question {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}
.faq-item__answer {
  font-size: 15px;
  opacity: 0.72;
  line-height: 1.65;
}
.faq-item__answer-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item__answer-list li {
  font-size: 15px;
  opacity: 1;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.faq-item__answer-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
}
.faqs__more { margin-top: -8px; }

/* --- 11. CTA — now in components.css --- */
/* --- 12. FOOTER — now in components.css --- */

/* ===================================================================
   MOBILE RESPONSIVE — @media (max-width: 768px)
   =================================================================== */
@media (max-width: 768px) {

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

  /* --- PARTNER mobile (now in components.css) --- */
  /* --- TESTIMONIALS mobile (now in components.css) --- */

  /* --- HC INTRO mobile --- */
  .hc-intro {
    padding: 48px 20px;
  }
  .hc-intro__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hc-intro__image img {
    aspect-ratio: 16/10;
  }
  .hc-intro__title {
    font-size: 28px;
  }

  /* --- HC BENEFITS mobile --- */
  .hc-benefits {
    padding: 48px 20px;
  }
  .hc-benefits__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hc-benefits__image {
    order: -1;
  }
  .hc-benefits__image img {
    aspect-ratio: 16/10;
  }
  .hc-benefits__title {
    font-size: 28px;
  }
  .hc-benefits__buttons {
    flex-direction: column;
    gap: 12px;
  }
  .hc-benefits__buttons .btn {
    width: 100%;
    justify-content: center;
  }

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

  /* --- HC WHO mobile --- */
  .hc-who {
    padding: 48px 20px;
  }
  .hc-who__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hc-who__title {
    font-size: 28px;
  }
  .hc-who__image {
    order: -1;
  }
  .hc-who__image img {
    aspect-ratio: 16/10;
  }

  /* --- HC HOW mobile --- */
  .hc-how {
    padding: 48px 20px;
  }
  .hc-how__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hc-how__title {
    font-size: 28px;
  }
  .hc-how__buttons {
    flex-direction: column;
    width: 100%;
  }
  .hc-how__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- HC AREA mobile --- */
  .hc-area {
    padding: 48px 20px;
  }
  .hc-area__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hc-area__title {
    font-size: 28px;
  }
  .hc-area__image img {
    aspect-ratio: 16/10;
  }

  /* --- FAQS mobile --- */
  .faqs {
    padding: 48px 20px;
    gap: 32px;
  }
  .faqs__title {
    font-size: 28px;
  }
  .faqs__list {
    gap: 28px;
  }
  .faq-item__question {
    font-size: 18px;
  }

  /* --- CTA mobile (now in components.css) --- */
  /* --- FOOTER mobile (now in components.css) --- */
}
