/* =================================
   HERO
================================= */
.hero{
  position:relative; min-height:100svh; display:flex; align-items:center; justify-content:center; color:#fff;
  background: linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.40)),
              url('../images/home/hero_bg.jpg') center/cover no-repeat;
  padding:120px 0 80px;
}
.hero *{ color:#fff }
.hero-inner{ max-width:1120px; width:100%; margin:0 auto; padding:0 20px; display:grid; grid-template-columns: 1.1fr .9fr; gap:40px; }
@media (max-width: 960px){ .hero-inner{ grid-template-columns: 1fr; gap:28px; } }
.kicker{ text-transform:uppercase; letter-spacing:.12em; font-weight:700; font-size:.82rem; opacity:.9; margin-bottom:.5rem; }
.hero h1{ color:#fff; font-size: clamp(2rem, 4.2vw, 3.2rem); line-height:1.12; margin:0 0 .6rem; }
.subtext{ font-size: clamp(1rem, 1.5vw, 1.125rem); opacity:.95; max-width: 48ch; margin:0 0 1.2rem; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:18px; }
.hero-stats{ align-self:end; display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
@media (max-width: 960px){ .hero-stats{ align-self:start } }
.stat{ background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.45); border-radius:16px; padding:18px 16px; text-align:center; }
.stat .num{ font-family:'Montserrat',sans-serif; font-weight:800; font-size: clamp(1.4rem, 3.2vw, 1.9rem); line-height:1; }
.stat .label{ opacity:.9; font-weight:600; font-size:.9rem }

/* === Hero breder maken (alleen de hero) === */
.hero .hero-inner{
  /* breder laten schalen tot max 1400px; zelfde feel als de diensten-sectie */
  max-width: clamp(1120px, 92vw, 1400px);
  padding-left: 24px;
  padding-right: 24px;
}

/* optioneel: iets meer lucht tussen de twee hero-kolommen op brede schermen */
@media (min-width: 1200px){
  .hero .hero-inner{ gap: 56px; }
}

/* optioneel: voorkom te lange zinnen in de kop/tekst */
@media (min-width: 1200px){
  .hero .hero-content{ max-width: 68ch; }
}

/* MOBILE: hero badges netter schikken */
@media (max-width: 480px) {
  .stat{
    display: none;   /* niet afbreken */
  }
}

/* =================================
   DIENSTEN – card styling (white mode)
   (deze kaarten worden in de Swiper gebruikt)
================================= */
.service__header { margin-bottom: 50px; }
.service__header span { font-size: 18px; font-family: "Montserrat", sans-serif !important; color: var(--mussan-primary); position: relative; display: block; margin: 0 0 16px 30px; }
.service__header span::before { position: absolute; content: ""; height: 2px; width: 20px; top: 50%; left: -20px; transform: translateX(-50%); background: var(--mussan-primary); }
.service__header h1, .nepserviceh1 { margin: 0 0 14px 0; font-size: 44px; color: var(--mussan-primary); line-height: 1.1; }
@media(max-width:767px) { .service__header h1, .nepserviceh1 { font-size: 36px; } }
.service__header p { margin: 0; color: #334854; font-size: 18px; line-height: 28px; }

.service { position: relative; overflow: hidden; padding-bottom: 275px; background: #fff; }
.service__background { position: absolute; top: 0; right: 0; z-index: -1; width: 61%; }
.service__background svg { width: 100%; height: 100%; }
.service__background_shape { position: absolute; bottom: -10%; left: -7%; height: 465px; width: 410px; }
.service__background_shape svg { width: 100%; }
@media(max-width:991px) { .service__background_shape { display: none; } }
.service__background_pattern { position: absolute; bottom: 4%; left: 6%; animation: move_top 5s infinite linear; }
@media(max-width:991px) { .service__background_pattern { display: none; } }

@keyframes move_top { 0%{transform:translateY(0)} 50%{transform:translateY(-6px)} 100%{transform:translateY(0)} }

/* Cards */
.service-card{
  background: linear-gradient(180deg,var(--surface) 0%, var(--surface-subtle) 100%);
  border:1px solid #e6edf2; border-radius:14px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; position:relative; overflow:hidden;
}
.service-card::after{ content:""; position:absolute; inset:0; border-left:4px solid transparent; transition:border-color .25s ease; }
.service-card:hover{ transform:translateY(-6px); box-shadow:0 18px 36px rgba(0,0,0,.08); border-color:#dbe6ee; }
.service-card:hover::after{ border-color: var(--mussan-primary); }
.service-card h5{ margin-bottom:.4rem; color: var(--mussan-primary); }
.service-card p{ color:#475865; }
.service-card .list-check{ margin-top:.6rem; }
.service-card .list-check li{ color:#3c4b55; margin-bottom:.25rem }
.icon-badge{ width:56px;height:56px;border-radius:12px; background: rgba(26,67,90,.08); color: var(--mussan-primary); display:inline-flex;align-items:center;justify-content:center;font-size:22px; position:relative; }
.icon-badge.ring::after{ content:""; position:absolute; inset:-6px; border-radius:14px; border:2px solid rgba(26,67,90,.18); }

/* Swiper lay-out van de diensten-cards */
.featuresSwiper { padding-bottom: 36px; overflow: visible; }
.featuresSwiper .swiper-wrapper { align-items: stretch; }
.featuresSwiper .swiper-slide { height: auto; }
.featuresSwiper .service-card { margin: 12px; }

/* Dots in merkstijl; geen pijlen */
.features-pagination { text-align:center; margin-top: 6px; }
.features-pagination .swiper-pagination-bullet { background:#c2c8cc; opacity:1; }
.features-pagination .swiper-pagination-bullet-active { background: var(--mussan-primary); }

/* Breder alleen voor deze sectie */
#service .container{
  max-width: clamp(1120px, 92vw, 1400px);
  padding-left: 24px;
  padding-right: 24px;
}

/* show dots */
@media(max-width:460px) {
    .service{
        min-height: 970px;
    }
}

/* =================================
   PROJECTEN (Swiper)
================================= */
.projects-showcase { position: relative; padding: 120px 0; color: #fff;
  background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=1600&auto=format&fit=crop') center/cover fixed; overflow: hidden; }
.projects-showcase::before { content:""; position:absolute; inset:0; background: rgba(0,0,0,.6); z-index:0; }
.projects-showcase .container { position: relative; z-index: 2; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family:'Montserrat',sans-serif; font-weight:800; color:#fff; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 10px; letter-spacing: 1px; }
.section-header .underline { width:60px; height:4px; background: var(--brand-accent); margin: 0 auto; border-radius:2px; }
.projectSwiper { width:100%; max-width:1250px; margin:0 auto; padding-bottom:80px; }
.project-slide { position:relative; border-radius:6px; background-size:cover; background-position:center; overflow:hidden; height:450px; cursor:pointer; display:flex; align-items:flex-end; transition: transform .4s ease; }
.project-slide:hover { transform: translateY(-4px); }
.project-overlay { position:absolute; bottom:-100%; left:0; right:0; background: rgba(0,0,0,.8); padding:24px; transition: bottom .4s ease; }
.project-slide:hover .project-overlay { bottom:0; }
.project-overlay h3 { font-family:'Montserrat',sans-serif; font-weight:700; margin-bottom:6px; font-size:1.3rem; color:#fff; }
.project-overlay p { font-size:.95rem; opacity:.9; margin-bottom:12px; }
.project-overlay .readmore { color: var(--brand-accent); font-weight:700; text-decoration:none; font-size:.95rem; letter-spacing:.3px; }
.project-overlay .readmore:hover { text-decoration: underline; }
.swiper-button-next,.swiper-button-prev { color: var(--brand-accent); border:2px solid var(--brand-accent); border-radius:4px; width:40px; height:40px; background: rgba(0,0,0,.3); transition: all .25s ease; }
.swiper-button-next:hover,.swiper-button-prev:hover { background: var(--brand-accent); color:#000; }
.swiper-button-next::after,.swiper-button-prev::after { font-size:16px; font-weight:900; }
@media (max-width: 1024px) { .project-slide { height:380px; } }
@media (max-width: 768px) { .project-slide { height:320px; } }

/* =================================
   FOOTER helpers (optioneel als je footer hebt)
================================= */
.footer { background-color: #123e55; color: #ffffff; }
.footer .footer-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 1.5rem; position: relative; }
.footer .footer-title::after { content: ""; display: block; width: 30px; height: 4px; background: var(--brand-accent); border-radius: 2px; margin-top: 8px; }
.footer p { color: rgba(255,255,255,.8); }
.footer-copy { border-top: 1px solid rgba(255,255,255,.2); background:#0e2f41; }


/* ============================
   PROCES – compact, zonder foto's
============================ */
.process-compact-container{ max-width: clamp(1120px, 92vw, 1400px); }
.process-compact-section{
  padding: 80px 0;
  background:
    radial-gradient(900px 360px at 0% 0%, rgba(26,67,90,.05), transparent 60%),
    radial-gradient(900px 360px at 100% 0%, rgba(26,67,90,.05), transparent 60%),
    #fff;
}

/* left column intro */
.process-intro .eyebrow{
  color: var(--mussan-primary); font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; font-size: .85rem; position: relative; padding-left: 26px;
}
.process-intro .eyebrow::before{
  content:""; position:absolute; left:0; top:50%; width:18px; height:2px; background: var(--mussan-primary);
  transform: translateY(-50%);
}
.process-intro h2{ margin: 6px 0 10px; }
.process-intro p{ color:#3b4a54; }

/* right column grid */
.process-compact-grid{
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 768px){
  .process-compact-grid{ grid-template-columns: 1fr; }
}

/* card */
.process-compact{
  display: grid; grid-template-columns: 42px 1fr; align-items: start;
  gap: 12px; padding: 14px 14px;
  background: var(--surface); border:1px solid #e6edf2; border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.process-compact:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.08);
  border-color:#dbe6ee;
}

/* step badge (klein, clean) */
.step-dot{
  width: 36px; height: 36px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-weight: 800; color: var(--mussan-primary);
  border: 2px solid var(--mussan-primary);
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

/* content */
.pc-body h3{ margin: 2px 0 4px; font-size: 1.02rem; color: var(--mussan-primary); }
.pc-body p{ margin: 0; color: #465866; line-height: 1.55; }

/* mini list reused */
.mini-list{ list-style:none; padding:0; margin:0; display:grid; gap:6px; }
.mini-list li{ color:#3c4b55; font-weight:600; }

/* fade-in subtiel */
@keyframes pc-fade { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform:none; } }
.process-compact{ opacity:0; animation: pc-fade .4s ease forwards; }
.process-compact:nth-child(1){ animation-delay: .04s }
.process-compact:nth-child(2){ animation-delay: .08s }
.process-compact:nth-child(3){ animation-delay: .12s }
.process-compact:nth-child(4){ animation-delay: .16s }
.process-compact:nth-child(5){ animation-delay: .20s }
.process-compact:nth-child(6){ animation-delay: .24s }

@media (prefers-reduced-motion: reduce) {
  .process-compact{ animation: none !important; }
}

/* === Process-compact cards: hover-accent + betere typografie === */

/* Zorg dat we iets over de rand kunnen tekenen */
.process-compact{
  position: relative;
  overflow: hidden;                /* netjes blijven bij hover */
}

/* Blauwe lijn verschijnt op hover (links) */
.process-compact::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width:0;                         /* onzichtbaar in rust */
  background: var(--mussan-primary);
  transition: width .22s ease;     /* smooth slide-in */
}
.process-compact:hover::before{
  width:3px;                       /* dikte van de accentlijn */
}

/* Typografie: heading net groter dan body, iets strakker */
.pc-body h3{
  font-size: 1.16rem;              /* was ~1.02rem → duidelijker hiërarchie */
  line-height: 1.25;
  letter-spacing: .1px;
  color: var(--mussan-primary);
  margin: 2px 0 6px;
}
.pc-body p{
  font-size: .98rem;               /* iets kleiner dan h3 */
  line-height: 1.58;
  color: #465866;
}

/* Optioneel: subtiele lift + iets meer schaduw voor harmonie */
.process-compact{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.process-compact:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.08);
  border-color:#dbe6ee;
}

/* Smalle foto-banner binnen container */
.process-strip {
  width: 100%;
  height: 200px;     /* ~50px, iets responsief */
  border-radius: 16px;                /* pas aan naar smaak */
  background-image: var(--strip-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin: 8px 0 20px 0;               /* ruimte tot/van content */
  box-shadow: 0 6px 18px rgba(0,0,0,.06); /* subtiele diepte */
}

/* (optioneel) lichte overlay voor contrast op drukke foto’s */
.process-strip::after {
  content: "";
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.06),
    rgba(0,0,0,.06)
  );
  pointer-events: none;
}

/* ================================
   PORTFOLIO – service2 (clash-free)
================================ */
.service2__header { margin-bottom: 50px; }
.service2__header h1, .nepserviceh1-2 {
  margin: 0 0 14px; font-size: 44px;
  color: var(--mussan-primary); line-height: 1.1;
}
@media (max-width:767px){ .service2__header h1, .nepserviceh1-2 { font-size: 36px; } }
.service2__header p { margin: 0; color: #334854; font-size: 18px; line-height: 28px; }

.service2{ position: relative; overflow: hidden; padding-bottom: 60px; background: #fff; }

/* --- Card (portfolio look) --- */
.service2 .service-card2{
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 6px;
  overflow: hidden; border-radius: 18px;
  min-height: clamp(300px, 32vw, 420px);
  padding: 20px 18px;
  border: 1px solid rgba(0,0,0,0);
  background: center/cover no-repeat var(--img, #e9eef2);
  box-shadow: 0 10px 20px rgba(0,0,0,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service2 .service-card2::before{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 28%, rgba(0,0,0,.18) 50%, rgba(0,0,0,.55) 85%);
  pointer-events:none;
}
@media (hover:hover){
  .service2 .service-card2:hover{ transform: translateY(-5px); box-shadow: 0 18px 34px rgba(0,0,0,.12); border-color: rgba(0,0,0,.06); }
}

/* Chip/badge */
.service2 .service-card2 .icon-badge2{
  position:absolute; left:18px; top:18px; z-index:2;
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 12px; border-radius:999px;
  background: #f7fafc; border:1px solid #c5cfd6;
  box-shadow: 0 6px 14px rgba(0,0,0,.08); color: var(--mussan-primary);
  font-weight:800; font-size:.95rem;
}
.service2 .service-card2 .icon-badge2 i{ font-size: 1rem; margin-right:8px; }

/* Tekst/CTA wit */
.service2 .service-card2 h5,
.service2 .service-card2 p,
.service2 .service-card2 .card-cta2{
  position: relative; z-index: 2; color:#fff !important; text-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.service2 .service-card2 h5{ margin:0 0 2px; font-size:1.22rem; line-height:1.25; }
.service2 .service-card2 p{ margin:0 0 6px; font-size:1.02rem; opacity:.98; }
.service2 .service-card2 .card-cta2{ display:inline-flex; align-items:center; gap:6px; font-weight:800; text-decoration:none; cursor:pointer; }
.service2 .service-card2 .card-cta2:hover{ text-decoration: underline; }

/* Lijsten verbergen (compact) */
.service2 .service-card2 .list-check2{ display:none !important; }

/* --- Mobile: langere kaart (pas waarden aan naar smaak) --- */
@media (max-width: 640px){
  .service2 .service-card2{ min-height: clamp(460px, 76vh, 600px); padding: 18px 16px; }
  .service2 .service-card2 h5{ font-size: 1.26rem; }
}

/* --- Swiper layout voor deze sectie --- */
.featuresSwiper2{ padding-bottom: 36px; overflow: visible; }
.featuresSwiper2 .swiper-wrapper{ align-items: stretch; }
.featuresSwiper2 .swiper-slide{ height: auto; }
.featuresSwiper2 .service-card2{ margin: 12px; }

.features-pagination2{ text-align:center; margin-top: 6px; }
.features-pagination2 .swiper-pagination-bullet{ background:#c2c8cc; opacity:1; }
.features-pagination2 .swiper-pagination-bullet-active{ background: var(--mussan-primary); }

/* Sectiecontainer breedte */
.service2 .container{ max-width: clamp(1120px, 92vw, 1400px); padding-inline: 24px; }


.card-cta {
  position: relative;
  z-index: 5;
  cursor: pointer;
}

.service-card a {
  cursor: pointer;
}