/* ══════════════════════════════════════════
   Bellano Dental — Service Page Styles
   ══════════════════════════════════════════ */

/* ── Service Intro: illustration | title ── */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 12.5% 32px;
  background: var(--white);
}
.service-intro-img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  overflow: hidden;
}
.service-intro-img img {
  max-width: 70%;
  max-height: 238px;
  object-fit: contain;
  display: block;
}
.service-intro-text .eyebrow { margin-bottom: 20px; }
.service-intro-text h1 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 38px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  line-height: 1.1;
}

/* ── Service Body: icons + text ── */
.service-body {
  padding: 28px 12.5% 36px;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: start;
}
.service-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-top: 6px;
}
.service-icons i {
  font-size: 28px;
  color: var(--navy);
  opacity: 0.75;
}
.service-text {
  max-width: 680px;
  margin: 0 auto;
}
.service-text p {
  font-size: 18px;
  color: var(--navy);
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 400;
}
.service-text p:last-child { margin-bottom: 0; }

/* ── Service Feature: centered heading + image + list ── */
.service-feature {
  padding: 36px 12.5% 48px;
  background: var(--white);
  text-align: center;
}
.service-feature h2 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.45;
}
.service-feature-img {
  max-width: 680px;
  margin: 0 auto 28px;
  overflow: hidden;
}
.service-feature-img img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.service-feature-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.service-feature-content p {
  font-size: 18px;
  color: var(--navy);
  line-height: 1.85;
  margin-bottom: 16px;
  font-weight: 400;
}
.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-feature-list li {
  font-size: 18px;
  color: var(--navy);
  padding: 6px 0 6px 28px;
  position: relative;
  font-weight: 400;
  line-height: 1.65;
}
.service-feature-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--navy);
  font-size: 18px;
}

/* ── Service Page Navigation (Prev / Next) ── */
.service-next-nav {
  padding: 28px 12.5% 36px;
  background: var(--white);
  border-top: 1px solid var(--lightbg);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* shared label style */
.service-next-link .next-label,
.service-prev-link .prev-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--textlt);
  display: block;
  margin-bottom: 6px;
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
}

/* Next → (right-aligned) */
.service-next-link {
  text-align: right;
  text-decoration: none;
  display: block;
  margin-left: auto;
}
.service-next-link .next-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  transition: color 0.2s;
}
.service-next-link:hover .next-title { color: var(--textmd); }

/* ← Previous (left-aligned) */
.service-prev-link {
  text-align: left;
  text-decoration: none;
  display: block;
}
.service-prev-link .prev-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  transition: color 0.2s;
}
.service-prev-link:hover .prev-title { color: var(--textmd); }

/* ══════════════════════════════════════
   Responsive
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  .service-intro {
    grid-template-columns: 1fr;
    padding: 36px 5% 28px;
    gap: 24px;
  }
  .service-intro-img { min-height: 220px; }
  .service-intro-text h1 { font-size: 28px; }

  .service-body {
    grid-template-columns: 1fr;
    padding: 36px 5% 48px;
    gap: 0;
  }
  .service-icons {
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 24px;
    gap: 20px;
  }

  .service-feature {
    padding: 48px 5%;
  }
  .service-feature h2 { font-size: 18px; letter-spacing: 1px; }

  .service-next-nav { padding: 24px 5% 28px; }
}

@media (max-width: 480px) {
  .service-intro-text h1 { font-size: 24px; }
  .service-feature h2 { font-size: 18px; }
}
