/* ══════════════════════════════════════════════════════════
   Huisstijl Atelier Bloeiend Dronten
   Eén stylesheet voor homepage + bestelformulier + admin.
   ══════════════════════════════════════════════════════════ */

:root {
  /* Kleurpalet — nieuwe namen */
  --groen:       #6b855b;
  --groen-lt:    #e6f0e2;
  --groen-mid:   #f4f7f3;
  --groen-dk:    #2d3b2d;
  --groen-hover: #56704a;
  --ink:         #2d3b2d;
  --muted:       #5e7258;
  --border:      rgba(45,59,45,0.10);
  --white:       #ffffff;
  --nav-h:       66px;

  /* Semantische aliassen — gelijk aan de primaire namen hierboven */
  --donker:      var(--groen-dk);   /* gebruik liever --groen-dk */
  --groen-light: var(--groen-lt);   /* gebruik liever --groen-lt */
  --font-serif:  'Playfair Display', serif;

  /* Backwards-compatible aliassen (niet meer gebruiken in nieuwe code) */
  --bd-donker:   var(--groen-dk);
  --bd-midden:   var(--groen);
  --bd-licht:    var(--groen-lt);
  --bd-achter:   var(--groen-mid);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', Calibri, Arial, sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ──────────────────────────────────────────────── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(244,247,243,0.93);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px;
}
.nav-logo {
  text-decoration: none; display: flex; align-items: center;
}
.nav-logo-img {
  height: 52px; width: auto; display: block;
}
.footer-logo-img {
  height: 64px; width: auto; display: block; margin-bottom: 10px;
}
.nav-logo span { color: var(--groen); }
.nav-links { display: flex; gap: 0; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--muted);
  text-decoration: none; padding: 8px 13px; border-radius: 8px;
  transition: color .18s, background .18s;
}
.nav-links a:hover { color: var(--ink); background: var(--groen-lt); }
.nav-links a.active { color: var(--groen); font-weight: 500; }
.nav-cta {
  background: var(--groen); color: var(--white);
  border: none; border-radius: 100px;
  padding: 10px 22px; font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background .2s, transform .15s; white-space: nowrap;
}
.nav-cta:hover { background: var(--groen-hover); transform: scale(1.02); color: var(--white); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; display: block; }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--groen-mid); border-bottom: 1px solid var(--border);
  padding: 12px 24px 20px; z-index: 199; flex-direction: column;
}
.mobile-menu a {
  font-size: 16px; color: var(--ink); text-decoration: none;
  padding: 13px 8px; border-bottom: 1px solid var(--border); display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ── SKIP-LINK (toegankelijkheid) ─────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--groen-dk);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── NOTICE-BALK ──────────────────────────────────────── */
.notice {
  background: var(--groen-dk); color: var(--white);
  text-align: center; padding: 13px 24px; font-size: 14px;
  margin-top: var(--nav-h);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 4px 8px;
}
/* verhoogd contrast voor links (WCAG AA: 4.5:1 op donkere achtergrond) */
.notice a { color: #a8d490; text-decoration: none; }
.notice a:hover { color: var(--white); text-decoration: underline; }
@media (max-width: 480px) {
  .notice { font-size: 13px; padding: 10px 16px; gap: 2px 6px; }
}

/* Wanneer er geen notice is, moet de content nog steeds onder de nav beginnen */
.has-nav-spacer { padding-top: var(--nav-h); }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h) - 46px);
  background: var(--groen-mid);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 24px 100px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 45%, rgba(107,133,91,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--groen);
  margin-bottom: 22px; opacity: 0; animation: fadeUp .8s .1s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6.5vw, 82px);
  font-weight: 400; line-height: 1.1; color: var(--ink);
  margin-bottom: 26px; max-width: 820px;
  opacity: 0; animation: fadeUp .8s .25s forwards;
}
.hero-title em { color: var(--groen); font-style: italic; }
.hero-sub {
  font-size: 18px; font-weight: 300; color: var(--muted);
  max-width: 520px; line-height: 1.7; margin-bottom: 44px;
  opacity: 0; animation: fadeUp .8s .4s forwards;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp .8s .55s forwards;
}

/* ── KNOPPEN ──────────────────────────────────────────── */
.btn-primary,
.btn-bloeiend {
  background: var(--groen); color: var(--white);
  border: none; border-radius: 100px;
  padding: 14px 32px; font-size: 15px; font-weight: 500;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .2s, transform .15s;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover,
.btn-bloeiend:hover { background: var(--groen-hover); transform: translateY(-2px); color: var(--white); }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid rgba(45,59,45,0.40); border-radius: 100px;
  padding: 14px 32px; font-size: 15px; font-weight: 400;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color .2s, background .2s, transform .15s;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { border-color: var(--groen); background: var(--groen-lt); transform: translateY(-2px); color: var(--ink); }

.btn-dk,
.btn-bloeiend-donker {
  background: var(--groen-dk); color: var(--white);
  border: none; border-radius: 100px;
  padding: 14px 32px; font-size: 15px; font-weight: 500;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .2s, transform .15s;
  font-family: 'DM Sans', sans-serif;
}
.btn-dk:hover,
.btn-bloeiend-donker:hover { background: #1e2a1e; transform: translateY(-2px); color: var(--white); }

/* ── FORMULIER FADE-OVERGANG ──────────────────────────── */
.form-fade { opacity: 1; transition: opacity .22s ease; }
.form-fade-out { opacity: 0; pointer-events: none; }
.form-fade-in { animation: fadeUp .3s ease forwards; }

.contact-melding-uitleg {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--groen-lt); border-radius: 10px;
  padding: 16px 18px; border-left: 3px solid var(--groen);
  margin-bottom: 4px;
}
.contact-melding-icoon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.contact-melding-uitleg strong { display: block; color: var(--ink); margin-bottom: 5px; font-size: 15px; }
.contact-melding-uitleg p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── FORMULIER VALIDATIE ──────────────────────────────── */
/* Bootstrap .was-validated stijlen aanpassen naar huisstijl */
.page-form .was-validated .form-control:invalid,
.page-form .was-validated .form-select:invalid {
  border-color: #c0392b;
  box-shadow: none;
}
.page-form .was-validated .form-control:invalid:focus,
.page-form .was-validated .form-select:invalid:focus {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,.15);
}
.page-form .was-validated .form-control:valid,
.page-form .was-validated .form-select:valid {
  border-color: var(--groen);
}
.page-form .invalid-feedback {
  font-size: 12px;
  color: #c0392b;
  margin-top: 5px;
}

/* Bootstrap-knop overrides voor bestelpagina */
.btn.btn-primary { background-color: var(--groen); border-color: var(--groen); }
.btn.btn-primary:hover { background-color: var(--groen-hover); border-color: var(--groen-hover); }
.btn-outline-success { color: var(--groen); border-color: var(--groen); }
.btn-outline-success:hover { background-color: var(--groen); border-color: var(--groen); color: #fff; }

/* ── HERO SPLIT LAYOUT ────────────────────────────────── */
.hero-split {
  min-height: calc(100vh - var(--nav-h) - 46px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 0;
  text-align: left;
  background: var(--groen-mid);
}
.hero-split::before { display: none; } /* radial gradient niet nodig bij split */

.hero-split-text {
  padding: 80px 60px 80px 72px;
  display: flex; flex-direction: column; align-items: flex-start;
  opacity: 0; animation: fadeUp .8s .1s forwards;
}
.hero-split .hero-eyebrow  { animation-delay: .1s; }
.hero-split .hero-title    { animation-delay: .25s; }
.hero-split .hero-sub      { animation-delay: .4s; }
.hero-split .hero-actions  { animation-delay: .55s; }

/* reset default text-center animaties die al in de basis-hero staan */
.hero-split-text .hero-eyebrow,
.hero-split-text .hero-title,
.hero-split-text .hero-sub,
.hero-split-text .hero-actions {
  opacity: 0; animation: fadeUp .8s forwards;
}
.hero-split-text .hero-eyebrow { animation-delay: .10s; }
.hero-split-text .hero-title   { animation-delay: .25s; }
.hero-split-text .hero-sub     { animation-delay: .40s; }
.hero-split-text .hero-actions { animation-delay: .55s; }

.hero-split-visual {
  position: relative;
  height: 100%;
  min-height: calc(100vh - var(--nav-h) - 46px);
  overflow: hidden;
}
.hero-split-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.hero-split-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(45,59,45,.12);
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4caf72; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(76,175,114,.25);
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-split-text {
    padding: 64px 28px 44px;
    align-items: center; text-align: center;
    order: 2;
  }
  .hero-split .hero-actions { justify-content: center; }
  .hero-split-visual {
    order: 1;
    min-height: 260px; height: 300px;
  }
  .hero-split-badge { bottom: 16px; left: 16px; font-size: 12px; padding: 8px 14px; }
}
@media (max-width: 560px) {
  .hero-split-visual { height: 240px; }
  .hero-split-text { padding: 44px 20px 36px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-split-text .hero-eyebrow,
  .hero-split-text .hero-title,
  .hero-split-text .hero-sub,
  .hero-split-text .hero-actions { opacity: 1; animation: none; }
}

/* ── HOME SERVICE CARDS ───────────────────────────────── */
.home-services { background: var(--white); padding: 88px 24px; }
.home-services .container-bd { max-width: 1120px; margin: 0 auto; }
.hs-intro { text-align: center; margin-bottom: 56px; }
.hs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.hs-card {
  background: var(--groen-mid);
  border-radius: 22px; padding: 38px 30px 34px;
  border: 1px solid var(--border);
  cursor: pointer; text-decoration: none;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, background .2s;
}
.hs-card:hover { transform: translateY(-5px); box-shadow: 0 20px 54px rgba(45,59,45,0.10); background: var(--groen-lt); }
.hs-icon {
  width: 52px; height: 52px; border-radius: 15px;
  background: var(--white); margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(45,59,45,0.08);
}
.hs-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px; font-weight: 400; color: var(--ink); margin-bottom: 10px;
}
.hs-card p { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.hs-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 20px; font-size: 14px; font-weight: 500; color: var(--groen);
}
.hs-link::after { content: '→'; transition: transform .2s; display: inline-block; }
.hs-card:hover .hs-link::after { transform: translateX(4px); }

/* ── GEDEELDE SECTIE-STYLING ──────────────────────────── */
section.page-section { padding: 100px 24px; }
.container-bd { max-width: 1100px; margin: 0 auto; }
.section-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--groen);
  margin-bottom: 14px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 400; color: var(--ink); line-height: 1.15;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 17px; color: var(--muted); font-weight: 300;
  max-width: 580px; line-height: 1.72;
}
.body-text { font-size: 15px; color: var(--muted); line-height: 1.72; margin-top: 14px; }
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 60px;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }
.visual-block {
  border-radius: 24px; overflow: hidden;
  aspect-ratio: 4/5; background: var(--groen-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 100px; position: relative;
}
.visual-block img { width: 100%; height: 100%; object-fit: cover; }
.visual-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white); border-radius: 14px;
  padding: 12px 18px; box-shadow: 0 8px 28px rgba(45,59,45,0.13);
}
.visual-badge strong { display: block; font-size: 16px; color: var(--ink); }
.visual-badge span { font-size: 12px; color: var(--muted); }
.check-list { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--muted); line-height: 1.55;
}
.check-list li::before {
  content: '';
  flex-shrink: 0; margin-top: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--groen-lt); border: 1.5px solid var(--groen);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%236b855b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.mt-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.info-box {
  background: var(--white); border: 1px solid var(--groen-lt);
  border-radius: 12px; padding: 18px 20px; margin-top: 24px;
}
.info-box strong { display: block; font-size: 15px; color: var(--ink); margin-bottom: 10px; }
.info-box ul { margin: 0 0 0 18px; font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── REVIEWS ──────────────────────────────────────────── */
.reviews-section { background: var(--white); padding: 80px 24px; }
.reviews-intro { text-align: center; margin-bottom: 48px; }
.reviews-stars-row {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; margin-top: 12px;
}
.reviews-score {
  margin-left: 10px; font-size: 14px; font-weight: 500; color: var(--muted);
}
.review-star {
  width: 20px; height: 20px; fill: #f5a623; flex-shrink: 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--groen-mid); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
}
.review-stars { display: flex; gap: 2px; }
.review-text {
  font-size: 14px; color: var(--ink); line-height: 1.7;
  margin: 0; font-style: italic; flex: 1;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  margin: 0; padding: 0; border: none;
}
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--groen); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; flex-shrink: 0;
}
.review-author strong { display: block; font-size: 14px; color: var(--ink); }
.review-author span   { font-size: 12px; color: var(--muted); }
@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ── OVER ONS ─────────────────────────────────────────── */
#over { background: var(--white); }
.kernwaarden {
  margin-top: 24px; padding: 20px 22px;
  background: var(--groen-mid); border-radius: 14px;
  border: 1px solid var(--border);
}
.kernwaarden strong { display: block; font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.kernwaarden ul { margin: 0 0 0 18px; font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ── ROUWBLOEMWERK ────────────────────────────────────── */
#rouw { background: var(--groen-mid); }
.rouw-types {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-top: 28px;
}
.rouw-type {
  background: var(--white); border-radius: 14px;
  padding: 20px 18px; border: 1px solid var(--border);
}
.rouw-type h4 { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 5px; }
.rouw-type p  { font-size: 13px; color: var(--muted); line-height: 1.55; }
.rouw-note {
  margin-top: 24px; padding: 18px 22px;
  background: var(--groen-lt); border-radius: 14px;
  border-left: 3px solid var(--groen);
  font-size: 14px; color: var(--muted); font-style: italic; line-height: 1.7;
}

/* ── ZAKELIJK ─────────────────────────────────────────── */
#zakelijk { background: var(--white); }
.zakelijk-cards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-top: 28px;
}
.zakelijk-card {
  background: var(--groen-mid); border-radius: 14px;
  padding: 22px 20px; border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.zakelijk-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(45,59,45,0.08); }
.zakelijk-card h4 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 400; color: var(--ink); margin-bottom: 7px; }
.zakelijk-card p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── TROUWEN ──────────────────────────────────────────── */
#trouwen { background: var(--groen-mid); }
.trouwen-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px; margin-top: 36px;
}
.trouwen-step {
  background: var(--white); border-radius: 18px;
  padding: 28px 24px; border: 1px solid var(--border);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-weight: 400; color: rgba(107,133,91,0.45);
  line-height: 1; margin-bottom: 12px; display: block;
}
.trouwen-step h4 { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 7px; }
.trouwen-step p  { font-size: 14px; color: var(--muted); line-height: 1.6; }
.trouwen-quote {
  margin-top: 44px; padding: 44px 40px;
  background: var(--groen-dk); border-radius: 22px;
  text-align: center;
}
.trouwen-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--white); font-style: italic;
  line-height: 1.55; max-width: 600px; margin: 0 auto 28px;
}

/* ── BESTELLEN-SECTIE OP HOMEPAGE ─────────────────────── */
#bestellen-cta { background: var(--white); padding: 88px 24px; }
.bestel-card {
  background: var(--groen-lt); border-radius: 22px;
  padding: 52px 44px; text-align: center;
  border: 1px solid var(--border);
  max-width: 760px; margin: 0 auto;
}
.bestel-card .section-title { margin-bottom: 12px; }
.bestel-card .section-sub { margin: 0 auto 28px; }

/* ── CONTACT ──────────────────────────────────────────── */
#contact { background: var(--groen-dk); color: var(--white); }
#contact .section-tag { color: #8bc47a; }
#contact .section-title { color: var(--white); }
#contact .section-sub { color: rgba(255,255,255,0.55); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; margin-top: 56px; align-items: start;
}
.hours-label { font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 16px; display: block; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 15px; color: rgba(255,255,255,0.65);
}
.hours-table td:first-child { color: rgba(255,255,255,0.38); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table .open { color: #8bc47a; font-weight: 500; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.c-label {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.32); display: block; margin-bottom: 5px;
}
.c-val {
  font-size: 18px; color: var(--white); text-decoration: none; display: block;
  transition: color .2s;
}
.c-val:hover { color: #8bc47a; }
.c-val-sm { font-size: 15px; color: var(--white); text-decoration: none; display: block; line-height: 1.65; }
.contact-note {
  margin-top: 28px; padding: 20px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  font-size: 14px; color: rgba(255,255,255,0.48); line-height: 1.65;
}
.social-row { display: flex; gap: 14px; margin-top: 4px; }
.social-row a { font-size: 15px; color: var(--white); text-decoration: none; transition: color .2s; }
.social-row a:hover { color: #8bc47a; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq { margin-top: 44px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.09); padding: 0;
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.09); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 18px 0; color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q:hover { color: #8bc47a; }
.faq-icon { font-size: 20px; color: #8bc47a; flex-shrink: 0; transition: transform .3s; line-height: 1; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s;
  font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7;
}
.faq-a.open { max-height: 600px; padding-bottom: 18px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── KAART ────────────────────────────────────────────── */
.map-wrap {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  margin-top: 28px;
}
.map-wrap iframe { display: block; width: 100%; height: 280px; border: 0; }
.map-quick {
  background: rgba(255,255,255,0.05); padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.map-quick strong { font-size: 13px; color: rgba(255,255,255,0.55); display: block; margin-bottom: 8px; }
.map-quick ul { margin: 0 0 0 16px; font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.75; }

/* ── FOOTER ───────────────────────────────────────────── */
footer.site-footer {
  background: var(--groen-mid);
  padding: 56px 24px 36px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 40px;
}
.footer-brand .nav-logo { display: block; margin-bottom: 4px; }
.footer-brand p { font-size: 14px; color: var(--muted); max-width: 220px; line-height: 1.6; }
.footer-col h5 {
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 15px; color: var(--ink);
  text-decoration: none; margin-bottom: 9px; transition: color .2s;
}
.footer-col span {
  display: block; font-size: 15px; color: var(--ink);
  margin-bottom: 9px;
}
.footer-col a:hover { color: var(--groen); }
.footer-bottom {
  max-width: 1100px; margin: 32px auto 0;
  padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 10px;
}
.footer-social a { color: var(--muted); text-decoration: none; margin-left: 14px; transition: color .2s; }
.footer-social a:hover { color: var(--groen); }

/* ── ANIMATIES ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-title, .hero-sub, .hero-actions {
    opacity: 1; animation: none;
  }
}
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s, transform .65s; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .10s; } .d2 { transition-delay: .20s; } .d3 { transition-delay: .30s; }

/* ══════════════════════════════════════════════════════════
   BESTELFORMULIER — overrides bovenop Bootstrap
   ══════════════════════════════════════════════════════════ */

/* ── BESTEL PROGRESS-STAPPEN ──────────────────────────── */
.bestel-stappen {
  display: flex; align-items: center;
  margin-bottom: 28px; overflow-x: auto;
  padding: 4px 0; gap: 0;
  scrollbar-width: none;
}
.bestel-stappen::-webkit-scrollbar { display: none; }
.bestel-stap {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  flex-shrink: 0; cursor: default;
}
.stap-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--groen-lt); border: 2px solid var(--border);
  color: var(--muted); font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s, color .25s;
}
.stap-label {
  font-size: 11px; color: var(--muted); white-space: nowrap;
  transition: color .25s; font-weight: 400;
}
.bestel-stap.actief .stap-num {
  background: var(--groen); border-color: var(--groen); color: white;
}
.bestel-stap.actief .stap-label { color: var(--groen); font-weight: 600; }
.bestel-stap.klaar .stap-num {
  background: var(--groen-lt); border-color: var(--groen); color: var(--groen);
}
.bestel-stap.klaar .stap-num::after { content: '✓'; font-size: 11px; }
.bestel-stap.klaar .stap-num { font-size: 0; } /* verberg cijfer, toon vinkje */
.stap-lijn {
  flex: 1; height: 2px; background: var(--border); min-width: 20px;
  margin: 0 4px; margin-bottom: 18px;
  transition: background .25s;
}
.stap-lijn.klaar { background: var(--groen); }
@media (max-width: 480px) {
  .stap-label { display: none; }
  .bestel-stap.actief .stap-label { display: block; }
  .stap-lijn { min-width: 12px; }
}

/* Wrapper voor bestelpagina inhoud onder de fixed nav */
.page-form { padding: 56px 0 80px; background: var(--groen-mid); min-height: calc(100vh - var(--nav-h)); }
.page-form .form-card-wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.page-form h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400; color: var(--ink);
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 8px;
}
.page-form .lead-sub { color: var(--muted); font-size: 16px; line-height: 1.65; margin-bottom: 8px; }
.page-form .small-help { color: var(--muted); font-size: 13px; margin-bottom: 28px; }
.page-form .small-help a { color: var(--groen); text-decoration: none; }

/* Bootstrap card → zachte ronde witte kaart in nieuwe stijl */
.page-form .card {
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 1px 3px rgba(45,59,45,.04);
  background: var(--white);
  margin-bottom: 18px;
}
.page-form .card-body { padding: 24px 26px; }
.page-form .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 400; color: var(--ink);
  margin-bottom: 16px;
}

/* Form-controls in de nieuwe stijl */
.page-form .form-label { font-size: 13px; color: var(--muted); font-weight: 500; margin-bottom: 6px; }
.page-form .form-control,
.page-form .form-select {
  border: 1px solid rgba(45,59,45,0.14);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background-color: var(--white);
}
.page-form .form-control:focus,
.page-form .form-select:focus {
  border-color: var(--groen);
  box-shadow: 0 0 0 3px rgba(107,133,91,.18);
}
.page-form .input-group-text {
  background: var(--groen-lt); border: 1px solid rgba(45,59,45,0.14);
  color: var(--ink); border-radius: 10px 0 0 10px;
}
.page-form .form-check-input:checked {
  background-color: var(--groen);
  border-color: var(--groen);
}
.form-step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.prijs-overzicht {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fbfcf8;
}
.prijs-overzicht > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.prijs-overzicht > div:last-child { border-bottom: 0; }
.prijs-overzicht span { color: var(--muted); }
.prijs-overzicht strong { color: var(--ink); text-align: right; }
.prijs-overzicht .prijs-totaal {
  background: var(--groen-lt);
  font-size: 17px;
}

/* Knop in formulier */
.page-form .btn-bloeiend {
  width: auto; padding: 14px 32px;
}
.page-form .btn-bloeiend.btn-lg {
  padding: 16px 32px; font-size: 16px;
}

/* Banner / alerts */
.page-form .alert-danger {
  background: #fdecea; border: 1px solid #f5c6c0; color: #8a2a1f;
  border-radius: 12px;
}
.page-form .alert-info {
  background: var(--groen-lt); border: 1px solid var(--border); color: var(--ink);
  border-radius: 10px;
}

/* Bedankt-pagina */
.page-bedankt {
  padding: 80px 24px; background: var(--groen-mid);
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center; justify-content: center;
}
.bedankt-inner {
  background: var(--white); border-radius: 22px;
  padding: 48px 40px; text-align: center;
  max-width: 560px; width: 100%;
  box-shadow: 0 20px 54px rgba(45,59,45,0.08);
  border: 1px solid var(--border);
}
.bedankt-inner h1 {
  font-family: 'Playfair Display', serif; font-weight: 400;
  color: var(--ink); font-size: 32px; margin-bottom: 10px;
}
.bedankt-inner .display-1 { font-size: 64px; margin-bottom: 12px; }
.bedankt-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--groen-lt);
  color: var(--groen);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bedankt-inner .lead { color: var(--muted); font-size: 17px; line-height: 1.65; margin-bottom: 24px; }
.bedankt-inner .card { text-align: left; background: var(--groen-mid); border: 1px solid var(--border); border-radius: 14px; }
.bedankt-inner .card-body p { margin-bottom: 6px; font-size: 14px; color: var(--ink); }
.bedankt-social {
  margin-top: 22px;
  padding: 18px 20px;
  background: var(--groen-mid);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: left;
}
.bedankt-social p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 4px 0 14px;
}
.bedankt-social strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}
.bedankt-social .btn-outline {
  padding: 10px 18px;
  font-size: 14px;
}
.bedankt-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 560px) {
  .bedankt-social-grid { grid-template-columns: 1fr; }
}

/* Badge kleuren overschrijven (admin) */
.badge.bg-success { background-color: var(--groen) !important; }
.badge.bg-primary { background-color: #4a7a8a !important; }

/* Admin navbar */
.navbar.navbar-bloeiend,
.navbar-admin {
  background-color: var(--groen) !important;
}

/* Admin app shell */
.admin-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr);
  background: #f6f7f3;
  color: #243127;
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.admin-sidebar {
  background: var(--groen-dk);
  color: #fff;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.admin-logo-box {
  min-height: 78px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 18px;
}

.admin-logo-box img {
  width: 168px;
  max-height: 62px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.admin-nav-group { display: grid; gap: 6px; }
.admin-nav-title {
  color: rgba(255,255,255,.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 8px 0 2px;
}
.admin-nav-item {
  color: rgba(255,255,255,.86);
  text-decoration: none;
  padding: 9px 10px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .18s ease, color .18s ease;
}
.admin-nav-item:hover,
.admin-nav-item.active { background: rgba(255,255,255,.12); color: #fff; }
.admin-count {
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,.14);
  font-size: 12px;
}

.admin-main { padding: 28px 32px 40px; min-width: 0; }
.admin-app .admin-main > .navbar-admin { display: none; }
.admin-topbar { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.admin-title h1 {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 31px;
  color: #243127;
}
.admin-title p { margin: 0; color: #6f756d; }
.admin-actions { margin-left: auto; display: flex; gap: 10px; flex-wrap: wrap; }

.admin-btn,
.admin-app .btn.admin-btn {
  border: 1px solid #dfe6dc;
  border-radius: 8px;
  background: #fff;
  color: #243127;
  padding: 9px 13px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.admin-btn:hover,
.admin-app .btn.admin-btn:hover { border-color: rgba(74,124,92,.45); background: #fbfcf8; color: #243127; }
.admin-btn-primary,
.admin-app .btn.admin-btn-primary { background: var(--groen); color: #fff; border-color: var(--groen); }
.admin-btn-primary:hover,
.admin-app .btn.admin-btn-primary:hover { background: var(--groen-dk); color: #fff; }
.admin-btn-warning,
.admin-app .btn.admin-btn-warning { background: #f5b84b; border-color: #f5b84b; color: #243127; }

.admin-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-bottom: 18px; }
.admin-metric,
.admin-panel { background: #fff; border: 1px solid #dfe6dc; border-radius: 10px; box-shadow: 0 10px 28px rgba(45,59,45,.05); }
.admin-metric { padding: 14px 16px; }
.admin-metric span { display: block; color: #6f756d; font-size: 12px; margin-bottom: 7px; }
.admin-metric strong { font-size: 24px; color: #243127; }

.admin-workspace { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 18px; align-items: start; }
.admin-panel { overflow: hidden; }
.admin-panel-head {
  padding: 16px 18px;
  border-bottom: 1px solid #dfe6dc;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.admin-panel-head h2 { margin: 0; font-size: 16px; color: #243127; }
.admin-panel-body { padding: 16px 18px; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  text-align: left;
  color: #6f756d;
  font-size: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid #dfe6dc;
  font-weight: 700;
}
.admin-table td { padding: 12px; border-bottom: 1px solid #edf1ea; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-name strong { display: block; margin-bottom: 3px; }
.admin-name small,
.admin-muted { color: #6f756d; }
.admin-method {
  display: inline-flex;
  border-radius: 999px;
  background: #f2f4ef;
  padding: 4px 8px;
  color: #6f756d;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.admin-time { font-weight: 800; color: var(--groen-dk); white-space: nowrap; }
.admin-status,
.admin-app .badge.admin-status {
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
  cursor: pointer;
}
.admin-pay,
.admin-app .badge.admin-pay {
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
}

.admin-workblocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.admin-workblock .admin-table th:nth-child(4),
.admin-workblock .admin-table td:nth-child(4) { display: none; }
.admin-workblock .admin-table th,
.admin-workblock .admin-table td { padding: 10px; }
.admin-workblock-warn { border-color: #f1c66d; box-shadow: 0 10px 28px rgba(169,116,18,.09); }
.admin-row-alert { background: #fff9eb; }
.admin-row-alert td:first-child { border-left: 4px solid #f5b84b; }

.admin-filterbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.admin-filterchips { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #dfe6dc;
  border-radius: 999px;
  color: #243127;
  background: #fbfcf8;
  padding: 7px 11px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}
.admin-chip.active { background: var(--groen); color: #fff; border-color: var(--groen); }
.admin-chip-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef3ea;
  color: #243127;
  font-size: .75rem;
}
.admin-chip.active .admin-chip-count {
  background: rgba(255,255,255,.22);
  color: #fff;
}
.admin-search {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: min(100%, 480px);
}
.admin-search .form-control { min-width: 260px; }

.admin-workorder {
  background: #fff;
  border: 1px solid #dfe6dc;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(45,59,45,.05);
  padding: 18px;
  margin-bottom: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.admin-workorder-label {
  display: inline-block;
  color: var(--groen-dk);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 5px;
}
.admin-workorder-main strong {
  display: block;
  color: #243127;
  font-size: 30px;
  line-height: 1.15;
}
.admin-workorder-main p { margin: 6px 0 0; color: #5f6d5b; }
.admin-workorder-facts {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-status-flow {
  display: grid;
  gap: 8px;
}
.admin-status-step {
  border: 1px solid #dfe6dc;
  background: #fbfcf8;
  color: #243127;
  border-radius: 8px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-align: left;
}
.admin-status-step span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #e8eee4;
  color: #4a6b42;
  font-size: 12px;
}
.admin-status-step.active {
  background: var(--groen);
  border-color: var(--groen);
  color: #fff;
}
.admin-status-step.active span { background: #fff; color: var(--groen-dk); }
.admin-next-actions { display: grid; gap: 8px; }

.admin-side-stack { display: grid; gap: 14px; position: sticky; top: 18px; }
.admin-task {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
  padding: 11px 0;
  border-bottom: 1px solid #edf1ea;
}
.admin-task:last-child { border-bottom: none; }
.admin-task-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--groen-lt);
  color: var(--groen-dk);
  font-weight: 900;
}
.admin-task strong { display: block; margin-bottom: 3px; }
.admin-task small { color: #6f756d; line-height: 1.35; }
.admin-quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.admin-quick {
  border: 1px solid #dfe6dc;
  border-radius: 9px;
  padding: 12px;
  background: #fbfcf8;
  text-decoration: none;
  color: #243127;
  min-height: 76px;
}
.admin-quick strong { display: block; margin-bottom: 5px; }
.admin-quick small { color: #6f756d; }

.admin-mailbar {
  border: 1px solid #cfe0c7;
  background: #f4faf3;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.admin-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--groen);
  display: inline-block;
  margin-right: 7px;
}

.admin-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.admin-summary-row { display: flex; justify-content: space-between; gap: 16px; color: #6f756d; margin-bottom: 9px; }
.admin-summary-row.total {
  color: #243127;
  font-weight: 800;
  font-size: 18px;
  border-top: 2px solid #dfe6dc;
  padding-top: 11px;
  margin-top: 4px;
}

.admin-app .card {
  border: 1px solid #dfe6dc;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(45,59,45,.05);
}
.admin-app .card-header {
  background: #fff;
  border-bottom: 1px solid #dfe6dc;
  color: #243127;
  font-weight: 800;
}
.admin-app .card-body { color: #243127; }
.admin-app .form-label {
  color: #5f6d5b;
  font-size: 13px;
  font-weight: 700;
}
.admin-app .form-control,
.admin-app .form-select,
.admin-app .input-group-text {
  border-color: #dfe6dc;
  border-radius: 8px;
}
.admin-app .form-control:focus,
.admin-app .form-select:focus {
  border-color: var(--groen);
  box-shadow: 0 0 0 3px rgba(107,133,91,.16);
}
.admin-app .input-group > .form-control,
.admin-app .input-group > .form-select { border-radius: 0 8px 8px 0; }
.admin-app .input-group > .input-group-text { border-radius: 8px 0 0 8px; }
.admin-app .table { color: #243127; }
.admin-app .table > :not(caption) > * > * {
  border-bottom-color: #edf1ea;
  padding: 10px 12px;
}
.admin-app .table-light,
.admin-app .table-light > th,
.admin-app .table-light > td { --bs-table-bg: #fbfcf8; }
.admin-app code {
  color: #4b6841;
  background: #f2f4ef;
  border-radius: 6px;
  padding: 2px 5px;
}
.admin-form-section { display: grid; gap: 14px; }
.admin-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.admin-note-box {
  background: #fbfcf8;
  border: 1px solid #dfe6dc;
  border-radius: 10px;
  padding: 13px 14px;
}
.admin-soft-alert {
  border: 1px solid #dfe6dc;
  background: #fbfcf8;
  border-radius: 10px;
  padding: 12px 14px;
}
.admin-sticky-summary {
  position: sticky;
  top: 18px;
}
.admin-empty {
  padding: 34px 18px;
  text-align: center;
  color: #6f756d;
}
.admin-preview-box {
  background: #fff;
  border: 1px solid #dfe6dc;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(45,59,45,.05);
  padding: 24px;
}

@media (max-width: 1050px) {
  .admin-app { grid-template-columns: 1fr; }
  .admin-workspace,
  .admin-metrics,
  .admin-workblocks,
  .admin-detail-grid,
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-topbar { flex-direction: column; align-items: flex-start; }
  .admin-actions { margin-left: 0; }
  .admin-side-stack { position: static; }
  .admin-workorder { align-items: flex-start; flex-direction: column; }
  .admin-workorder-facts { justify-content: flex-start; }
  .admin-search { width: 100%; }
  .admin-search .form-control { min-width: 0; }
}

/* ── BOEKETTEN GRID ───────────────────────────────────── */
.boeketten-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.boeket-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(45,59,45,.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.boeket-card:hover { box-shadow: 0 6px 24px rgba(45,59,45,.16); }
.boeket-foto {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: #f9f9f7;
  display: block;
}
.boeket-foto-leeg {
  width: 100%;
  height: 240px;
  background: var(--groen-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--muted);
}
.boeket-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.boeket-naam {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--groen-dk);
  margin: 0 0 6px;
}
.boeket-beschrijving {
  font-size: .85rem;
  color: var(--muted);
  margin: 0 0 10px;
  flex: 1;
}
.boeket-prijs {
  font-size: 1rem;
  font-weight: 600;
  color: var(--groen);
  margin: 0 0 12px;
}
.boeket-prijs-vrij {
  font-size: .85rem;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 12px;
}
.boeket-bestel {
  display: block;
  text-align: center;
  text-decoration: none;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  nav.site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .two-col, .two-col.flip { grid-template-columns: 1fr; gap: 36px; direction: ltr; }
  .visual-block { aspect-ratio: 16/9; max-height: 300px; }
  .visual-block img { object-position: top center; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  section.page-section { padding: 70px 20px; }
  .home-services { padding: 60px 20px; }
  .bestel-card { padding: 38px 24px; }
}
@media (max-width: 1100px) {
  .boeketten-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .boeketten-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 560px) {
  .boeketten-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .rouw-types, .zakelijk-cards { grid-template-columns: 1fr; }
  .hs-grid { grid-template-columns: 1fr; }
  .trouwen-steps { grid-template-columns: 1fr; }
  nav.site-nav { padding: 0 16px; }
  .nav-logo-img { height: 40px; }
  .footer-logo-img { height: 52px; }
  .trouwen-quote { padding: 30px 22px; }
  .trouwen-quote p { font-size: 18px; }
  .page-form .card-body { padding: 20px; }
  .hero { min-height: 0; padding: 72px 20px 56px; }
  .visual-badge { display: none; }
}

/* ── KEUZEKAARTEN BESTELPAGINA ────────────────────────── */
.keuze-card {
  border: 2px solid transparent;
  border-radius: 12px;
  transition: border-color .2s, box-shadow .2s, transform .15s;
  cursor: pointer;
}
.keuze-card:hover {
  border-color: var(--groen);
  box-shadow: 0 6px 24px rgba(74,124,92,.15) !important;
  transform: translateY(-2px);
}
.keuze-card--uitvaart:hover { border-color: #5c7a6a; }
.keuze-card--zakelijk:hover { border-color: #6a7c9a; }
.keuze-icon { font-size: 2.2rem; line-height: 1; }
.keuze-titel {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 500;
  color: var(--groen-dk); margin-bottom: .5rem;
}
.keuze-sub { font-size: .95rem; color: var(--muted); line-height: 1.5; }
.keuze-cta { font-size: .9rem; font-weight: 500; color: var(--groen); white-space: nowrap; }

/* ── WhatsApp ───────────────────────────────────────────── */

/* Zwevende FAB-knop rechtsonder */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  padding: 13px 18px 13px 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.38);
  transition: box-shadow .2s, transform .2s, padding .3s;
  overflow: hidden;
  max-width: 56px; /* collapsed: alleen icoon zichtbaar */
}
.whatsapp-fab svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.whatsapp-fab-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  transition: opacity .25s, max-width .3s;
  overflow: hidden;
}
.whatsapp-fab:hover {
  max-width: 260px;
  padding: 13px 20px 13px 16px;
  box-shadow: 0 6px 28px rgba(37,211,102,.50);
  transform: translateY(-2px);
}
.whatsapp-fab:hover .whatsapp-fab-label {
  opacity: 1;
  max-width: 200px;
}

/* WhatsApp-knop in navigatie */
.nav-cta-wa {
  background: transparent;
  color: #25D366;
  border: 1.5px solid #25D366;
  margin-right: 8px;
}
.nav-cta-wa:hover {
  background: #25D366;
  color: white !important;
}

/* Bestellen-knop in navigatie — voller groen, extra opvallend */
.nav-cta-bestel {
  background: var(--groen);
  color: var(--white);
  margin-left: 6px;
  font-weight: 400;
}
.nav-cta-bestel:hover {
  background: var(--groen-dk);
  color: var(--white) !important;
}

/* Op kleine schermen: FAB iets kleiner */
@media (max-width: 560px) {
  .whatsapp-fab { bottom: 18px; right: 14px; padding: 12px; border-radius: 50%; max-width: 50px; }
  .whatsapp-fab-label { display: none; }
  .nav-cta-wa { display: none; } /* nav is verborgen op mobiel toch al */
}

/* ── Grafmonumenten teaser (homepage) ──────────────────── */
.gm-teaser {
  display: block;
  margin-top: 24px;
  text-decoration: none;
  border: 1.5px solid var(--groen-light);
  border-radius: 14px;
  padding: 16px 20px;
  background: var(--groen-mid);
  transition: border-color .2s, background .2s;
}
.gm-teaser:hover {
  border-color: var(--groen);
  background: #e8eedf;
}
.gm-teaser-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--groen);
}
.gm-teaser-inner svg { flex-shrink: 0; margin-top: 2px; }
.gm-teaser-inner div { display: flex; flex-direction: column; gap: 3px; }
.gm-teaser-inner strong { font-size: 14px; font-weight: 600; color: var(--donker); }
.gm-teaser-inner span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.gm-hero-fallback {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 36px;
  background:
    linear-gradient(145deg, rgba(45,59,45,.88), rgba(107,133,91,.62)),
    var(--groen-mid);
  border-radius: 18px;
  color: var(--white);
}
.gm-hero-fallback .section-tag { color: rgba(255,255,255,.72); }
.gm-hero-fallback h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--white);
}
.gm-hero-fallback p {
  max-width: 360px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.7;
}
