/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #1E9B38;
  --green-dark: #166B28;
  --green-light:#E8F7EB;
  --red:        #C8191E;
  --dark:       #1C1C1C;
  --text:       #2C2C2C;
  --muted:      #6B7280;
  --border:     #E5E7EB;
  --gray:       #F6F7F9;
  --white:      #FFFFFF;
  --radius:     8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.7; background: var(--white); }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; }
p  { color: var(--muted); font-size: 1rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--gray { background: var(--gray); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 99px;
  font-weight: 600; font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer; border: none;
}
.btn--green  { background: var(--green); color: var(--white); }
.btn--green:hover  { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(30,155,56,0.3); }
.btn--outline-green { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn--outline-green:hover { background: var(--green); color: var(--white); }
.btn--white  { background: var(--white); color: var(--green); }
.btn--white:hover  { background: var(--green-light); transform: translateY(-2px); }
.btn--red  { background: var(--red); color: var(--white); }
.btn--red:hover  { background: #a01217; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,25,30,0.3); }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar__logo img { height: 64px; width: auto; }
.topbar__contacts {
  display: flex;
  gap: 32px;
  align-items: center;
}
.topbar__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar__icon {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.topbar__label { font-size: 0.75rem; color: var(--muted); font-weight: 500; }
.topbar__value { font-size: 0.9rem; font-weight: 700; color: var(--dark); }

/* ===== NAV LOGO ===== */
.nav__logo img { height: 40px; width: auto; }

/* ===== NAVIGATION ===== */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--green); background: var(--green-light); }
.nav__links a.nav-red:hover,
.nav__links a.nav-red.active { color: var(--red); background: #fdeaea; }

/* Hamburger */
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; transition: all var(--transition); }

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 520px;
}
.hero__left {
  background: var(--green);
  display: flex;
  align-items: center;
  padding: 60px 0 60px 0;
}
.hero__tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); border: 1px solid var(--green); padding: 4px 12px; border-radius: 4px; margin-bottom: 20px; }
.hero__left h1 { color: #fff; margin-bottom: 18px; text-wrap: balance; }
.hero__left p  { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 32px; line-height: 1.7; }
.hero__card {
  background: var(--white);
  border-radius: 12px;
  padding: 44px 40px;
  margin-left: 40px;
  max-width: 420px;
  box-shadow: var(--shadow);
}
.hero__card h1 { color: var(--dark); margin-bottom: 16px; text-wrap: balance; }
.hero__card p  { color: #333333; font-size: 0.95rem; margin-bottom: 28px; }
.hero__right {
  position: relative;
  overflow: hidden;
}
.hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1s ease;
}
.hero__right img.active {
  opacity: 1;
}

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header__tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
}
.section-header h2 { color: var(--dark); margin-bottom: 12px; }
.section-header p  { max-width: 560px; margin: 0 auto; }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--green); }
.service-card--red .service-card__icon { background: #fdeaea; color: var(--red); }
.service-card--red .service-card__link { color: var(--red); }
.service-card--red:hover { border-color: var(--red); }
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 18px;
}
.service-card h3 { color: var(--dark); margin-bottom: 8px; }
.service-card p  { font-size: 0.9rem; }
.service-card__link { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-weight: 600; font-size: 0.875rem; margin-top: 16px; transition: gap var(--transition); }
.service-card:hover .service-card__link { gap: 10px; }

/* ===== USP STRIP ===== */
.usp-strip { background: var(--green); padding: 44px 0; }
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
.usp-item { display: flex; align-items: flex-start; gap: 14px; }
.usp-item__icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; color: var(--white); width: 20px; text-align: center; }
.usp-item__title { font-weight: 700; font-size: 0.95rem; color: var(--white); margin-bottom: 3px; }
.usp-item__text  { font-size: 0.82rem; color: rgba(255,255,255,0.70); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { color: var(--dark); margin-bottom: 16px; }
.about-text p  { margin-bottom: 14px; }
.about-features { margin: 24px 0; }
.about-features li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; color: var(--text); }
.about-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
/* ===== WERKEN BIJ — ICON LIST ===== */
.wb-icon-list { display: flex; flex-direction: column; gap: 0; margin: 16px 0; }
.wb-icon-item { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; color: var(--text); }
.wb-icon-item__icon { width: 36px; height: 36px; background: #e8f5ec; color: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; margin-top: 2px; }
.wb-icon-item__icon--red { background: #fdeaea; color: var(--red); }

/* ===== WERKEN BIJ — STAT CARDS ===== */
.wb-stat-card { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.wb-stat-card--red .wb-stat-card__icon { background: #fdeaea; color: var(--red); }
.wb-stat-card__icon { width: 44px; height: 44px; background: #e8f5ec; color: var(--green); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.wb-stat-card__value { font-size: 1.3rem; font-weight: 800; color: var(--dark); line-height: 1.1; }
.wb-stat-card__label { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

.about-visual { background: var(--green); border-radius: 16px; padding: 40px; min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end; }
.about-visual--red { background: var(--red); }
.value-card--red .value-card__icon { color: var(--red); }
.contact-detail__icon--red { background: #fdeaea; color: var(--red); }
.section-header__tag--red { background: #fdeaea; color: var(--red); }
.about-visual__nums { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 20px; }
.about-num-value { font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; }
.about-num-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 3px; }

/* Stat cards */
.stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-content: start; }
.stat-card { background: var(--white); border-radius: 14px; padding: 28px 20px; box-shadow: 0 2px 20px rgba(0,0,0,0.07); text-align: center; border: 1px solid var(--border); }
.stat-card__num { font-size: 2.4rem; font-weight: 800; line-height: 1; margin-bottom: 8px; transition: opacity 0.4s ease; }
.stat-card__num--green { color: var(--green); }
.stat-card__num--red   { color: var(--red); }
.stat-card__label { font-size: 0.82rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--red); color: var(--white); text-align: center; padding: 72px 24px; }
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,0.80); font-size: 1.05rem; max-width: 500px; margin: 0 auto 28px; }
.cta-banner .btn--white { color: var(--red); }
.cta-banner .btn--white:hover { background: #fdeaea; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 52px; align-items: start; }
.contact-info h2 { color: var(--dark); margin-bottom: 14px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-detail__icon { width: 42px; height: 42px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--green); flex-shrink: 0; }
.contact-detail__label { font-size: 0.75rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-detail__value { font-weight: 600; color: var(--dark); font-size: 0.95rem; margin-top: 2px; }
.contact-form { background: var(--gray); padding: 40px; border-radius: 16px; }
.contact-form h3 { color: var(--dark); margin-bottom: 26px; font-size: 1.35rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 11px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.925rem; font-family: inherit; color: var(--text); background: var(--white); transition: border-color var(--transition); outline: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--green); color: var(--white); padding: 64px 0 56px; }
.page-hero--red { background: var(--red); }
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 540px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.85); }

/* ===== DIENSTEN PAGE ===== */
.dienst-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; align-items: stretch; overflow: hidden; }
.dienst-section__photo { overflow: hidden; }
.dienst-section__photo img { width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.08) translateX(-40px);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.9s ease; }
.dienst-section--alt .dienst-section__photo img {
  transform: scale(1.08) translateX(40px); }
.dienst-section.is-visible .dienst-section__photo img {
  transform: scale(1) translateX(0); opacity: 1; }

.dienst-section__text { display: flex; flex-direction: column; justify-content: center; padding: 64px 72px;
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s ease 0.25s, transform 0.8s ease 0.25s; }
.dienst-section.is-visible .dienst-section__text { opacity: 1; transform: translateY(0); }

.dienst-section__text--red   { background: #fff; border-left: 5px solid var(--red); }
.dienst-section__text--green { background: #fff; border-left: 5px solid var(--green); }
.dienst-section__tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.dienst-section__tag--red   { color: var(--red); }
.dienst-section__tag--green { color: var(--green); }
.dienst-section__text h2 { color: var(--dark); font-size: clamp(1.4rem, 2vw, 1.9rem); margin-bottom: 14px; }
.dienst-section__text p { color: var(--text); font-size: 0.95rem; line-height: 1.7; margin-bottom: 12px; }
.dienst-section__list { list-style: none; padding: 0; margin: 14px 0 28px; }
.dienst-section__list li { display: flex; align-items: flex-start; gap: 10px; padding: 5px 0; font-size: 0.9rem; color: var(--text); }
.dienst-section__list li::before { content: '→'; font-weight: 700; flex-shrink: 0; }
.dienst-section__list--red   li::before { color: var(--red); }
.dienst-section__list--green li::before { color: var(--green); }

/* ===== OVER ONS ===== */
.team-quote { background: var(--red); padding: 56px 0; text-align: center; }
.team-quote blockquote { font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-style: italic; max-width: 680px; margin: 0 auto; color: var(--white); line-height: 1.5; }
.team-quote cite { display: block; margin-top: 18px; font-size: 0.875rem; font-style: normal; opacity: 0.70; color: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.value-card { padding: 28px 22px; background: var(--gray); border-radius: 12px; text-align: center; transition: transform var(--transition), box-shadow var(--transition); }
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.value-card__icon { font-size: 1.8rem; color: var(--green); margin-bottom: 14px; }
.value-card h3 { color: var(--dark); margin-bottom: 7px; }
.value-card p  { font-size: 0.875rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 60px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.10); margin-bottom: 28px; }
.footer__logo img { height: 40px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer__tagline { font-size: 0.875rem; max-width: 240px; }
.footer__col h4 { color: var(--white); font-size: 0.825rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.footer__col ul li { margin-bottom: 9px; }
.footer__col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer__col ul a:hover { color: var(--white); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; flex-wrap: wrap; gap: 10px; }
.footer__cert { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.08); padding: 5px 13px; border-radius: 99px; font-size: 0.78rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero__right { min-height: 300px; }
  .hero__card { margin: 0; max-width: 100%; padding: 36px 28px; }
  .hero__left { padding: 40px 24px; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; direction: ltr; }
  .about-grid { gap: 40px; }
  .dienst-section { grid-template-columns: 1fr; }
  .dienst-section--alt .dienst-section__photo { order: -1; }
  .dienst-section__text { padding: 44px 28px; border-left: none; border-top: 5px solid; }
  .dienst-section__text--red { border-top-color: var(--red); }
  .dienst-section__text--green { border-top-color: var(--green); }
  .dienst-section__photo { min-height: 300px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .topbar__contacts { gap: 16px; }
}
@media (max-width: 640px) {
  .topbar { display: none; }
  .nav__links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 20px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .nav__links.open { display: flex; }
  .nav__toggle { display: block; }
  .nav__inner { position: relative; }
  .nav__cta { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
  .section-header { margin-bottom: 36px; }
  .dienst-visual { min-height: 180px; }
  .hero__right { min-height: 220px; }
  .hero__card { padding: 28px 20px; }
  .hero__left { padding: 24px 16px; }
  .stat-card__num { font-size: 1.8rem; }
  .stat-cards { gap: 10px; }
  .contact-form { padding: 24px 16px; }
  .usp-strip { padding: 32px 0; }
  .cta-banner { padding: 52px 20px; }
}
