/* =========================
   DIENSTENPAGINA'S
   Bestand: /assets/css/diensten.css
========================= */

main {
  padding-top: 82px;
}

/* Algemene page spacing */
.service-page main {
  overflow: hidden;
}

.service-page .section {
  padding: 3.5rem 0 5rem;
}

/* =========================
   HERO
========================= */

.service-hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: clip;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(129, 149, 162, 0.12), transparent 26%),
    radial-gradient(circle at 85% 15%, rgba(214, 170, 84, 0.08), transparent 20%);
  pointer-events: none;
}

.service-hero .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.service-hero .hero-content {
  max-width: 680px;
}

.service-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.service-hero .hero-text {
  max-width: 58ch;
  margin: 0 0 1.75rem;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1.05rem;
}

.service-hero .hero-image {
  position: relative;
}

.service-hero .hero-image img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
}

/* =========================
   INTRO / BODY COPY
========================= */

.service-intro {
  max-width: 820px;
}

.service-intro p {
  margin: 0 0 1.2rem;
  color: var(--text-soft);
  line-height: 1.9;
  font-size: 1.02rem;
}

.service-intro p:last-child {
  margin-bottom: 0;
}

/* =========================
   3 CARDS BLOK
========================= */

.service-three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-info-card {
  position: relative;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.service-info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.service-info-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 234, 236, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.service-info-card:hover::before {
  opacity: 1;
}

.service-info-card h3 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.service-info-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.service-info-card li {
  margin-bottom: 0.7rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.service-info-card li:last-child {
  margin-bottom: 0;
}

/* =========================
   WERKWIJZE
========================= */

.service-process {
  display: grid;
  gap: 1rem;
}

.service-process .step-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.service-process .step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.service-process .step-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 234, 236, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.service-process .step-card:hover::before {
  opacity: 1;
}

.service-process .step-number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(230, 234, 236, 0.18), rgba(129, 149, 162, 0.18));
  color: var(--zebrha-light);
  font-weight: 800;
  font-size: 1.1rem;
}

.service-process h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.service-process p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

/* =========================
   USP / PRAKTIJKERVARING
========================= */

.service-highlight {
  max-width: 860px;
}

.service-highlight h2 {
  margin: 0 0 1rem;
}

.service-highlight p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  line-height: 1.9;
}

.service-highlight p:last-child {
  margin-bottom: 0;
}

/* =========================
   FAQ
========================= */

.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}



.faq-item {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
}

.faq-item h3 {
  margin: 0 0 0.65rem;
  font-size: 1.08rem;
  line-height: 1.35;
}

.faq-item p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

/* =========================
   CTA BLOK
========================= */

.service-cta {
  position: relative;
}

.service-cta .contact-box {
  align-items: center;
}

.service-cta h2 {
  margin: 0 0 0.75rem;
}

.service-cta p {
  margin: 0;
}

/* =========================
   AFBEELDINGEN / MEDIA
========================= */

.service-image-wide img,
.service-image-inline img {
  display: block;
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
}

.service-image-caption {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* =========================
   TYPOGRAFIE BINNEN DIENSTPAGINA
========================= */

.service-page h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.service-page .section-head {
  max-width: 820px;
  margin-bottom: 2rem;
}

.service-page .section-head p:last-child {
  margin-bottom: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1080px) {
  .service-hero .hero-grid,
  .service-three-up {
    grid-template-columns: 1fr;
  }

  .service-hero .hero-image img {
    min-height: 340px;
  }
}

@media (max-width: 820px) {
  .service-page .section {
    padding: 3rem 0 4rem;
  }

  .service-hero {
    padding: 3.5rem 0 3rem;
  }

  .service-process .step-card {
    grid-template-columns: 1fr;
  }

  .service-hero .hero-image img {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .service-info-card,
  .faq-item,
  .service-process .step-card {
    padding: 1.2rem;
  }

  .service-hero .hero-grid {
    gap: 1.5rem;
  }

  .service-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .service-hero .hero-text,
  .service-intro p,
  .service-highlight p,
  .faq-item p {
    line-height: 1.75;
  }
}

@media (max-width: 820px) {
  .faq {
    grid-template-columns: 1fr;
  }
}