/* ===================================================================
   AREA PAGE SECTIONS — shared across all 20 area pages
   Sections: hero, intro, why-us (3-col), services (5-card grid),
   featured-services-1 (popular), faqs, featured-services-2 (credentials),
   areas-we-serve (map embed), cta
   Shared from components.css: banner, nav, partner, testimonials, footer
   =================================================================== */

/* --- 3. AREA HERO ---
   Full-width bg image, dark overlay, centered white text,
   2 buttons side by side, 3 trust badges in a row.
   Same structure as home hero but with area-specific prefix.
   ----------------------------------------------------------------- */
.area-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;
}
.area-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 1;
}
.area-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.area-hero__title {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
}
.area-hero__subtitle {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.88;
  line-height: 1.6;
  max-width: 600px;
}
.area-hero__buttons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.area-hero__badges {
  display: flex;
  gap: 28px;
  margin-top: 4px;
}
.area-hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}
.area-hero__badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- 5. AREA INTRO ---
   White bg, 2-column: image left (rounded), text right.
   Title, 2 paragraphs, blue CTA button.
   ----------------------------------------------------------------- */
.area-intro {
  background: var(--white);
  padding: 80px 80px;
}
.area-intro__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.area-intro__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.area-intro__title {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 24px;
}
.area-intro__desc {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.area-intro__text .btn {
  margin-top: 8px;
}

/* --- 6. AREA WHY US ---
   Light blue bg, centered heading, 3-column grid (not 3x2 like home).
   Each card: blue circle checkmark, title, description. Centered text.
   ----------------------------------------------------------------- */
.area-why-us {
  background: var(--light-blue);
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}
.area-why-us__title {
  font-size: 44px;
  font-weight: 700;
  text-align: center;
  max-width: 720px;
  line-height: 1.15;
}
.area-why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px 64px;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}
.area-why-us-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.area-why-us-card__icon {
  width: 40px;
  height: 40px;
}
.area-why-us-card__title {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
}
.area-why-us-card__text {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.6;
}

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

/* --- 8. AREA POPULAR (Featured Services 1) ---
   White bg, 2-column: text+bullet list left, image right (rounded).
   Title, subtitle, 5 bullet items with bold lead, blue CTA button.
   ----------------------------------------------------------------- */
.area-popular {
  background: var(--white);
  padding: 80px 80px;
}
.area-popular__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.area-popular__title {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.area-popular__subtitle {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.area-popular__list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.area-popular__item {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.65;
}
.area-popular__item strong {
  color: var(--navy);
}
.area-popular__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* --- 10. AREA FAQS ---
   Dark navy bg, centered heading, FAQ items with left border + icon.
   Uses shared .faq-item classes from home.css / components.css.
   ----------------------------------------------------------------- */
.area-faqs {
  background: var(--navy);
  color: var(--white);
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.area-faqs__title {
  font-size: 44px;
  text-align: left;
  font-weight: 700;
  max-width: 700px;
  width: 100%;
  line-height: 1.15;
}
.area-faqs__list {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* --- 11. AREA CREDENTIALS (Featured Services 2) ---
   White bg, 2-column: checklist left, image right (rounded).
   Title, 7 credential items with blue checkmark SVG.
   ----------------------------------------------------------------- */
.area-credentials {
  background: var(--white);
  padding: 80px 80px;
}
.area-credentials__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.area-credentials__title {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 32px;
}
.area-credentials__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.area-credentials__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.65;
}
.area-credentials__item strong {
  color: var(--navy);
}
.area-credentials__check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}
.area-credentials__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* --- FAQ ITEMS (shared component used by area-faqs) ---
   Each item: small ? icon left, vertical border, text content right.
   ----------------------------------------------------------------- */
.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;
}

/* --- 12. AREAS WE SERVE (Map Embed) ---
   Light blue bg, centered heading, Google Maps iframe.
   ----------------------------------------------------------------- */
.area-map {
  background: var(--light-blue);
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.area-map__title {
  font-size: 44px;
  font-weight: 700;
  text-align: center;
  line-height: 1.15;
}
.area-map__embed {
  max-width: 1000px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.area-map__embed iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

/* --- 13. AREA CTA ---
   Full-width bg image, dark overlay, centered white text, 2 buttons.
   Same structure as home CTA but with area-specific prefix.
   ----------------------------------------------------------------- */
.area-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;
}
.area-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 1;
}
.area-cta__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.area-cta__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
}
.area-cta__subtitle {
  font-size: 17px;
  opacity: 0.88;
  line-height: 1.65;
  max-width: 560px;
}
.area-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) {

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

  /* --- AREA INTRO mobile --- */
  .area-intro { padding: 48px 20px; }
  .area-intro__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .area-intro__title { font-size: 28px; }
  .area-intro__image img {
    aspect-ratio: 4/3;
  }
  .area-intro__text .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- AREA WHY US mobile --- */
  .area-why-us {
    padding: 48px 20px;
    gap: 36px;
  }
  .area-why-us__title { font-size: 28px; }
  .area-why-us__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .area-why-us-card { align-items: center; }

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

  /* --- AREA POPULAR mobile --- */
  .area-popular { padding: 48px 20px; }
  .area-popular__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .area-popular__title { font-size: 28px; }
  .area-popular__image { order: -1; }
  .area-popular__image img {
    aspect-ratio: 4/3;
  }
  .area-popular__text .btn {
    width: 100%;
    justify-content: center;
  }

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

  /* --- AREA CREDENTIALS mobile --- */
  .area-credentials { padding: 48px 20px; }
  .area-credentials__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .area-credentials__title { font-size: 28px; }
  .area-credentials__list { gap: 8px; }
  .area-credentials__image { order: -1; }
  .area-credentials__image img {
    aspect-ratio: 4/3;
  }

  /* --- AREA MAP mobile --- */
  .area-map {
    padding: 48px 20px;
    gap: 24px;
  }
  .area-map__title { font-size: 28px; }
  .area-map__embed iframe { height: 350px; }

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