/* ============================================================
   HEADER & NAVIGATIE
   ============================================================ */

.bosgro-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  z-index: 1000;
}

.bosgro-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

/* Logo */
.bosgro-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.bosgro-nav__logo:hover { opacity: 0.8; }
.bosgro-nav__logo img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}
@media (min-width: 640px) {
  .bosgro-nav__logo img { width: 3.5rem; height: 3.5rem; }
}
.bosgro-nav__site-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
}
@media (min-width: 640px) {
  .bosgro-nav__site-name { font-size: 1.5rem; }
}

/* Desktop links */
.bosgro-nav__desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .bosgro-nav__desktop { display: flex; }
}

.bosgro-nav__link {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  line-height: 1.5;
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
}
.bosgro-nav__link:hover,
.bosgro-nav__link.is-active { color: var(--bosgro-green); }

/* CTA knop */
.bosgro-nav__cta {
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  background: var(--bosgro-orange);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.bosgro-nav__cta:hover { opacity: 0.88; }
.bosgro-nav__cta.is-active { background: var(--bosgro-green); }

/* Chevron */
.bosgro-nav__chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.bosgro-nav__dropdown-trigger[aria-expanded="true"] .bosgro-nav__chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.bosgro-nav__dropdown-wrap { position: relative; }

.bosgro-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 18rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  animation: bosgro-fadein 0.15s ease;
}
@keyframes bosgro-fadein {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bosgro-nav__dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.bosgro-nav__dropdown-item:hover,
.bosgro-nav__dropdown-item.is-active {
  background: var(--bosgro-gray-50);
  color: var(--bosgro-green);
}

/* Hamburger */
.bosgro-nav__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #000;
}
@media (min-width: 768px) {
  .bosgro-nav__hamburger { display: none; }
}

/* Mobiel menu */
.bosgro-mobile-menu {
  background: #fff;
  border-top: 1px solid var(--bosgro-gray-200);
}
.bosgro-mobile-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1rem 1.5rem;
}
.bosgro-mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.bosgro-mobile-menu__link:hover { background: var(--bosgro-gray-50); color: var(--bosgro-green); }

.bosgro-mobile-menu__accordion {
  margin-left: 1rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.bosgro-mobile-menu__sub-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: #000;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.bosgro-mobile-menu__sub-link:hover { background: var(--bosgro-gray-50); color: var(--bosgro-green); }

.bosgro-mobile-menu__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bosgro-green);
  flex-shrink: 0;
}

.bosgro-mobile-menu__cta {
  display: block;
  margin-top: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  background: var(--bosgro-orange);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  text-align: left;
  transition: opacity 0.2s;
}
.bosgro-mobile-menu__cta:hover { opacity: 0.88; }

/* Accordion chevron mobiel */
.bosgro-mobile-menu__accordion-trigger[aria-expanded="true"] .bosgro-nav__chevron {
  transform: rotate(180deg);
}

/* Pagina-offset zodat content niet onder fixed header valt */
body { padding-top: 5rem; overflow-x: hidden; }

/* ============================================================
   FOOTER
   ============================================================ */

.bosgro-footer {
  background: var(--bosgro-gray-900);
  color: #fff;
  padding-block: 3rem;
}
@media (min-width: 640px) {
  .bosgro-footer { padding-block: 4rem; }
}

.bosgro-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .bosgro-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}
@media (min-width: 1024px) {
  .bosgro-footer__grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; }
}

/* Kolom 1: logo */
.bosgro-footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.bosgro-footer__logo-wrap img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 0.2rem;
}
@media (min-width: 640px) {
  .bosgro-footer__logo-wrap img { width: 3rem; height: 3rem; }
  .bosgro-footer__logo-wrap { margin-bottom: 1.5rem; }
}
.bosgro-footer__logo-name {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bosgro-orange);
}
@media (min-width: 640px) {
  .bosgro-footer__logo-name { font-size: 1.5rem; }
}
.bosgro-footer__tagline {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.6;
}
@media (min-width: 640px) {
  .bosgro-footer__tagline { font-size: 1rem; }
}

/* Koppen */
.bosgro-footer__heading {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--bosgro-orange);
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) {
  .bosgro-footer__heading { font-size: 1.25rem; margin-bottom: 1rem; }
}

/* Contactlijst */
.bosgro-footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media (min-width: 640px) {
  .bosgro-footer__contact-list { gap: 0.75rem; }
}
.bosgro-footer__contact-link {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
@media (min-width: 640px) {
  .bosgro-footer__contact-link { font-size: 1rem; gap: 0.75rem; }
}
.bosgro-footer__contact-link:hover { color: #fff; }
.bosgro-footer__contact-link--static { cursor: default; }
.bosgro-footer__contact-link svg { flex-shrink: 0; margin-top: 0.125rem; }

/* Dienstenlijst */
.bosgro-footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bosgro-footer__nav-link {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
@media (min-width: 640px) {
  .bosgro-footer__nav-link { font-size: 1rem; }
}
.bosgro-footer__nav-link:hover { color: #fff; }

/* Werkgebied tekst */
.bosgro-footer__text {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media (min-width: 640px) {
  .bosgro-footer__text { font-size: 1rem; }
}

/* Bottom bar */
.bosgro-footer__bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1f2937;
  text-align: center;
  font-size: 0.875rem;
  color: #9ca3af;
}
@media (min-width: 640px) {
  .bosgro-footer__bottom { margin-top: 3rem; padding-top: 2rem; font-size: 1rem; }
}

/* ============================================================
   GEDEELDE UTILITIES
   ============================================================ */

.bosgro-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
  line-height: 1.5;
}
@media (min-width: 640px) {
  .bosgro-btn { padding: 1rem 2rem; font-size: 1.125rem; }
}
.bosgro-btn:hover { opacity: 0.9; transform: scale(1.03); }

.bosgro-btn--orange {
  background: var(--bosgro-orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232,130,12,0.35);
}
.bosgro-btn--orange-dark {
  background: var(--bosgro-orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,130,12,0.4);
}
.bosgro-btn--outline-green {
  background: transparent;
  color: #000;
  border: 2px solid var(--bosgro-green);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.bosgro-btn--google {
  background: #fff;
  color: #3c4043;
  border: 1px solid #dadce0;
  box-shadow: 0 1px 3px rgba(60,64,67,0.15),
              0 2px 8px rgba(60,64,67,0.10);
  display: inline-flex;
  align-items: center;
}
.bosgro-btn--google:hover {
  box-shadow: 0 2px 8px rgba(60,64,67,0.25),
              0 4px 16px rgba(60,64,67,0.15);
  opacity: 1;
}

.bosgro-reviews__banner {
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow-x: hidden;
}
@media (max-width: 1023px) {
  .bosgro-reviews__banner {
    background-attachment: scroll;
  }
}
@media (min-width: 640px) {
  .bosgro-reviews__banner { padding-top: 5rem; padding-bottom: 5rem; }
}
.bosgro-reviews__banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}
.bosgro-reviews__banner-inner {
  position: relative;
  z-index: 1;
}
.bosgro-reviews__banner-inner h2 {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .bosgro-reviews__banner-inner h2 { font-size: 2.75rem; }
}
.bosgro-reviews__banner-inner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.7;
}
@media (min-width: 640px) {
  .bosgro-reviews__banner-inner p { font-size: 1.25rem; }
}

.bosgro-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .bosgro-section-header { margin-bottom: 4rem; } }
.bosgro-section-header--mt { margin-top: 6rem; }
.bosgro-section-header h2,
.bosgro-section-header h3 { color: #000; margin-bottom: 1rem; }
.bosgro-section-header p {
  font-size: 1.125rem;
  color: var(--bosgro-gray-600);
  max-width: 48rem;
  margin-inline: auto;
}
@media (min-width: 640px) { .bosgro-section-header p { font-size: 1.25rem; } }

.bosgro-icon-bg--green  { background: var(--bosgro-green); }
.bosgro-icon-bg--orange { background: var(--bosgro-orange); }
.bosgro-waarom__reason-icon { background: var(--bosgro-green); }
.bosgro-over__cert-icon { background: var(--bosgro-green); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ============================================================
   HERO
   ============================================================ */

.bosgro-hero {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 4rem;
}
@media (min-width: 640px) { .bosgro-hero { padding-top: 3rem; padding-bottom: 6rem; } }

.bosgro-hero__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .bosgro-hero__inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 1023px) {
  .bosgro-hero__inner > *:first-child { order: 2; }
  .bosgro-hero__inner > *:last-child  { order: 1; }
}

.bosgro-hero__text { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 640px) { .bosgro-hero__text { gap: 2rem; } }

.bosgro-hero__title { color: #000; font-size: 3rem; line-height: 1.15; }
@media (min-width: 640px) { .bosgro-hero__title { font-size: 3.5rem; } }
@media (max-width: 639px) {
  .bosgro-hero__title { font-size: 2.25rem; }
}

.bosgro-hero__sub {
  font-size: 1.125rem;
  color: var(--bosgro-gray-600);
}
@media (min-width: 640px) { .bosgro-hero__sub { font-size: 1.25rem; } }

.bosgro-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 640px) { .bosgro-hero__ctas { flex-direction: row; } }

.bosgro-hero__slider { height: 25rem; }
@media (min-width: 640px) { .bosgro-hero__slider { height: 31rem; } }
@media (min-width: 1024px) { .bosgro-hero__slider { height: 37.5rem; } }

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */

.bosgro-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}

.bs-after,
.bs-before {
  position: absolute;
  inset: 0;
}
.bs-after img,
.bs-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.bs-before { clip-path: inset(0 50% 0 0); }

.bs-label {
  position: absolute;
  top: 1rem;
  padding: 0.375rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.bs-label--after  { right: 1rem; background: var(--bosgro-green); }
.bs-label--before { left: 1rem;  background: var(--bosgro-orange); }

.bs-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  transform: translateX(-50%);
  pointer-events: none;
}

.bs-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  background: #fff;
  border-radius: 50%;
  border: 4px solid var(--bosgro-orange);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: col-resize;
  pointer-events: all;
  transition: transform 0.15s;
}
.bs-handle:hover { transform: translate(-50%, -50%) scale(1.1); }

.bs-handle__lines { display: flex; gap: 4px; }
.bs-handle__line {
  width: 2px;
  height: 1.5rem;
  background: var(--bosgro-green);
  border-radius: 1px;
}

/* ============================================================
   DIENSTEN
   ============================================================ */

.bosgro-services {
  padding-block: 4rem;
  background: var(--bosgro-gray-50);
}
@media (min-width: 640px) { .bosgro-services { padding-block: 6rem; } }

.bosgro-services__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .bosgro-services__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (min-width: 1024px) {
  .bosgro-services__grid { grid-template-columns: repeat(4, 1fr); }
}

.bosgro-service-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: center;
  align-items: center;
}
@media (min-width: 640px) { .bosgro-service-card { padding: 2rem; } }
.bosgro-service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.bosgro-service-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .bosgro-service-card__icon { width: 4rem; height: 4rem; margin-bottom: 1.5rem; }
}

.bosgro-service-card h3 { color: #000; margin-bottom: 0.75rem; }
.bosgro-service-card p {
  color: var(--bosgro-gray-600);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.bosgro-service-card__link {
  color: var(--bosgro-orange);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
  margin-top: auto;
  align-self: center;
}
.bosgro-service-card__link:hover { gap: 0.75rem; }

/* ============================================================
   WAAROM BOSGRO
   ============================================================ */

.bosgro-why { padding-block: 4rem; }
@media (min-width: 640px) { .bosgro-why { padding-block: 6rem; } }

.bosgro-why__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .bosgro-why__inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.bosgro-why__image {
  height: 25rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.bosgro-why__image:hover img { transform: scale(1.05); }
@media (min-width: 640px) { .bosgro-why__image { height: 31rem; } }
.bosgro-why__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }

.bosgro-why__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .bosgro-why__benefits { gap: 2rem; } }

.bosgro-benefit { text-align: center; }

.bosgro-benefit__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
@media (min-width: 640px) { .bosgro-benefit__icon { width: 4.5rem; height: 4.5rem; } }
.bosgro-benefit:hover .bosgro-benefit__icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.bosgro-benefit h3 { color: #000; margin-bottom: 0.5rem; font-size: 1.125rem; }
@media (min-width: 640px) { .bosgro-benefit h3 { font-size: 1.25rem; } }
.bosgro-benefit p { color: var(--bosgro-gray-600); font-size: 0.875rem; line-height: 1.5; }
@media (min-width: 640px) { .bosgro-benefit p { font-size: 1rem; } }

/* ============================================================
   OVER BOSGRO + REVIEWS
   ============================================================ */

.bosgro-about {
  padding-block: 4rem;
  background: var(--bosgro-gray-50);
}
@media (min-width: 640px) { .bosgro-about { padding-block: 6rem; } }

.bosgro-about__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .bosgro-about__inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 1023px) {
  .bosgro-about__inner > *:first-child { order: 2; }
  .bosgro-about__inner > *:last-child  { order: 1; }
}

.bosgro-about__text { display: flex; flex-direction: column; gap: 1rem; }
.bosgro-about__text h2 { color: #000; }
.bosgro-about__text p {
  color: var(--bosgro-gray-600);
  font-size: 1rem;
  line-height: 1.7;
}
@media (min-width: 640px) { .bosgro-about__text p { font-size: 1.125rem; } }
.bosgro-about__text .bosgro-btn { align-self: flex-start; margin-top: 0.5rem; }

.bosgro-about__image {
  height: 19rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.bosgro-about__image:hover img { transform: scale(1.05); }
@media (min-width: 640px) { .bosgro-about__image { height: 25rem; } }
@media (min-width: 1024px) { .bosgro-about__image { height: 31rem; } }
.bosgro-about__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }

.bosgro-reviews__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .bosgro-reviews__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (min-width: 1024px) {
  .bosgro-reviews__grid { grid-template-columns: repeat(3, 1fr); }
}

.bosgro-review-card {
  background: var(--bosgro-gray-50);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  transition: box-shadow 0.2s ease;
}
.bosgro-review-card:hover {
  box-shadow: 0 8px 30px rgba(27, 61, 26, 0.18);
}

.bosgro-star { color: #D4A017; font-size: 1.25rem; letter-spacing: 2px; }
.bosgro-review-card__stars { margin-bottom: 1rem; }

.bosgro-review-card__text {
  color: var(--bosgro-gray-600);
  font-style: normal;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.bosgro-review-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
}
.bosgro-review-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--bosgro-green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.bosgro-review-card__name { color: #000; font-weight: 500; margin-bottom: 0.25rem; }
.bosgro-review-card__date { color: var(--bosgro-gray-500); font-size: 0.875rem; }

/* ============================================================
   CTA
   ============================================================ */

.bosgro-cta {
  padding-block: 4rem;
  background: transparent;
  overflow-x: hidden;
}
@media (min-width: 640px) { .bosgro-cta { padding-block: 6rem; } }

.bosgro-cta__inner {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
  background: var(--bosgro-green);
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 640px) { .bosgro-cta__inner { padding: 3rem; gap: 2rem; } }

.bosgro-cta h2 { color: #fff; }
.bosgro-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  max-width: 36rem;
}
@media (min-width: 640px) { .bosgro-cta p { font-size: 1.25rem; } }

/* ============================================================
   DIENSTENPAGINA'S — GEDEELDE STIJLEN
   ============================================================ */

/* Hero */
.bosgro-service-page__hero {
  position: relative;
  background: var(--bosgro-gray-50);
  padding-top: 2rem;
  padding-bottom: 4rem;
}
@media (min-width: 640px) { .bosgro-service-page__hero { padding-top: 3rem; padding-bottom: 6rem; } }
@media (max-width: 639px) {
  .bosgro-service-page__hero { padding-bottom: 0; }
  .bosgro-service-page__hero-inner { gap: 0; }
}

.bosgro-service-page__hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .bosgro-service-page__hero-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 1023px) {
  .bosgro-service-page__hero-inner > *:first-child { order: 2; }
  .bosgro-service-page__hero-inner > *:last-child  { order: 1; }
}
.bosgro-service-page__hero-inner img {
  height: 22rem;
}
@media (min-width: 640px) { .bosgro-service-page__hero-inner img { height: 28rem; } }
@media (min-width: 1024px) { .bosgro-service-page__hero-inner img { height: 37.5rem; } }

.bosgro-service-page__hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.bosgro-service-page__hero-text h1 { color: #000; font-size: 3rem; line-height: 1.15; font-weight: 700; }
@media (min-width: 640px) { .bosgro-service-page__hero-text h1 { font-size: 3.5rem; } }
.bosgro-service-page__hero-text p  { font-size: 1.125rem; color: var(--bosgro-gray-600); line-height: 1.7; }
@media (min-width: 640px) { .bosgro-service-page__hero-text p { font-size: 1.25rem; } }

/* Badge */
.bosgro-service-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #fff;
  width: fit-content;
}

/* Sectietitels */
.bosgro-service-page__section-title {
  text-align: center;
  color: #000;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .bosgro-service-page__section-title { margin-bottom: 4rem; } }

/* Kaartensecties */
.bosgro-service-page__cards {
  padding-block: 4rem;
}
@media (min-width: 640px) { .bosgro-service-page__cards { padding-block: 6rem; } }
.bosgro-service-page__cards--gray { background: var(--bosgro-gray-50); }

/* Kaartengrids */
.bosgro-service-page__cards-grid {
  display: grid;
  gap: 2rem;
}
.bosgro-service-page__cards-grid--2 { max-width: 56rem; margin-inline: auto; }
.bosgro-service-page__cards-grid--3 { }

@media (min-width: 768px) {
  .bosgro-service-page__cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .bosgro-service-page__cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* Info kaart */
.bosgro-info-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
  text-align: center;
}
.bosgro-info-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.bosgro-info-card h3 { color: #000; margin-bottom: 0.75rem; }
.bosgro-info-card p  { color: var(--bosgro-gray-600); line-height: 1.6; }

.bosgro-info-card__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* Taakkaartje (klein elektra) */
.bosgro-task-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.bosgro-task-card h3 { color: #000; margin-bottom: 0.5rem; font-size: 1.125rem; }
.bosgro-task-card p  { color: var(--bosgro-gray-600); font-size: 0.875rem; line-height: 1.5; }
.bosgro-task-card__icon { color: var(--bosgro-green); margin-bottom: 0.75rem; }

/* Reasons (afwisselend links/rechts) */
.bosgro-service-page__reasons { padding-block: 4rem; background: var(--bosgro-gray-50); }
@media (min-width: 640px) { .bosgro-service-page__reasons { padding-block: 6rem; } }

.bosgro-reason {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}
.bosgro-reason:last-child { margin-bottom: 0; }
@media (min-width: 1024px) {
  .bosgro-reason { grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 6rem; }
  .bosgro-reason--reverse .bosgro-reason__image { order: -1; }
}

.bosgro-reason__text h3 { color: #000; margin-bottom: 1rem; }
.bosgro-reason__text p  { color: var(--bosgro-gray-600); font-size: 1.125rem; line-height: 1.7; margin-bottom: 1.5rem; }

.bosgro-reason__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.bosgro-reason__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--bosgro-gray-600);
  font-size: 1rem;
  line-height: 1.5;
}
.bosgro-reason__bullets li svg {
  flex-shrink: 0;
  color: var(--bosgro-green);
  margin-top: 2px;
}

.bosgro-reason__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--bosgro-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 1rem;
  transition: gap 0.2s;
}
.bosgro-reason__link:hover { gap: 0.75rem; }

.bosgro-reason__image {
  height: 18rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
@media (min-width: 640px) { .bosgro-reason__image { height: 25rem; } }
@media (min-width: 1024px) { .bosgro-reason__image { height: 28rem; } }
.bosgro-reason__image img { width: 100%; height: 100%; object-fit: cover; }

/* Voor/na grid */
.bosgro-service-page__before-after { padding-block: 4rem; }
@media (min-width: 640px) { .bosgro-service-page__before-after { padding-block: 6rem; } }

.bosgro-before-after-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .bosgro-before-after-grid { grid-template-columns: 1fr 1fr; } }

.bosgro-before-after-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.bosgro-before-after-card img {
  width: 100%;
  height: 35rem;
  object-fit: cover;
  object-position: top;
  display: block;
}
.bosgro-before-after-card__caption {
  padding: 1.5rem;
  background: #fff;
}
.bosgro-before-after-card__caption h3 { color: #000; margin-bottom: 0.5rem; }
.bosgro-before-after-card__caption p  { color: var(--bosgro-gray-600); font-size: 0.9375rem; }

/* Included lijst */
.bosgro-service-page__included { padding-block: 3rem; }
@media (min-width: 640px) { .bosgro-service-page__included { padding-top: 5rem; padding-bottom: 3rem; } }
.bosgro-service-page__included--gray { background: var(--bosgro-gray-50); }

.bosgro-included-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin-inline: auto;
}
@media (min-width: 640px) { .bosgro-included-grid { grid-template-columns: 1fr 1fr; } }

.bosgro-included-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 48rem;
  margin-inline: auto;
}

.bosgro-included-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.bosgro-included-item__check {
  color: var(--bosgro-gray-400);
  flex-shrink: 0;
  margin-top: 2px;
  transition: color 0.2s;
}
.bosgro-included-item:hover .bosgro-included-item__check { color: var(--bosgro-green); }
.bosgro-included-item h3 { color: #000; margin-bottom: 0.5rem; font-size: 1.25rem; }
.bosgro-included-item p  { color: var(--bosgro-gray-600); line-height: 1.6; }

/* CTA sectie dienstenpagina's */
.bosgro-service-page__cta {
  padding-block: 4rem;
}
@media (min-width: 640px) { .bosgro-service-page__cta { padding-block: 6rem; } }
.bosgro-service-page__cta--fullwidth { background: var(--bosgro-green); }
.bosgro-service-page__cta--fullwidth .bosgro-service-page__cta-inner h2 { color: #fff; }
.bosgro-service-page__cta--fullwidth .bosgro-service-page__cta-inner p  { color: rgba(255,255,255,0.85); }

.bosgro-service-page__cta-inner {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
  background: var(--bosgro-green);
  padding: 2rem;
  border-radius: 1rem;
}
@media (min-width: 640px) { .bosgro-service-page__cta-inner { padding: 3rem; } }
.bosgro-service-page__cta-inner h2 { color: #fff; margin-bottom: 1rem; }
.bosgro-service-page__cta-inner p  { color: rgba(255,255,255,0.85); font-size: 1.125rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .bosgro-service-page__cta-inner p { font-size: 1.25rem; } }

.bosgro-service-page__cta-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) { .bosgro-service-page__cta-btns { flex-direction: row; } }

.bosgro-btn--white {
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.bosgro-btn--white:hover { opacity: 0.9; }

/* ============================================================
   OVER ONS
   ============================================================ */

.bosgro-over__story {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background: #fff;
}
@media (min-width: 640px) { .bosgro-over__story { padding-top: 3rem; padding-bottom: 6rem; } }

.bosgro-over__story-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .bosgro-over__story-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
@media (max-width: 1023px) {
  .bosgro-over__story-inner > *:first-child { order: 2; }
  .bosgro-over__story-inner > *:last-child  { order: 1; }
}

.bosgro-over__story-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.bosgro-over__story-text h1 { color: #000; font-size: 3rem; line-height: 1.15; font-weight: 700; }
@media (min-width: 640px) { .bosgro-over__story-text h1 { font-size: 3.5rem; } }
.bosgro-over__story-text h2 { color: #000; }

.bosgro-over__badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #fff;
  width: fit-content;
}

.bosgro-over__story-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bosgro-over__story-body p {
  color: var(--bosgro-gray-600);
  font-size: 1rem;
  line-height: 1.7;
}
@media (min-width: 640px) { .bosgro-over__story-body p { font-size: 1.125rem; } }

.bosgro-over__story-image {
  height: 25rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 4px solid #fff;
}
@media (min-width: 640px) { .bosgro-over__story-image { height: 31rem; } }
@media (min-width: 1024px) { .bosgro-over__story-image { height: 37.5rem; } }
.bosgro-over__story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.bosgro-over__story-image:hover img { transform: scale(1.05); }

/* Kernwaarden */
.bosgro-over__values {
  padding-block: 4rem;
  background: #fff;
}
@media (min-width: 640px) { .bosgro-over__values { padding-block: 6rem; } }

.bosgro-over__values-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .bosgro-over__values-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .bosgro-over__values-grid { grid-template-columns: repeat(4, 1fr); } }

.bosgro-over__value-card {
  background: var(--bosgro-gray-50);
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s;
}
.bosgro-over__value-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.bosgro-over__value-card h3 { color: #000; margin-bottom: 0.75rem; }
.bosgro-over__value-card p  { color: var(--bosgro-gray-600); line-height: 1.6; }

.bosgro-over__value-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.2s;
}
.bosgro-over__value-card:hover .bosgro-over__value-icon { transform: scale(1.1); }

/* Team */
.bosgro-over__team {
  padding-block: 4rem;
  background: #fff;
}
@media (min-width: 640px) { .bosgro-over__team { padding-block: 6rem; } }

.bosgro-over__team-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .bosgro-over__team-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.bosgro-over__team-image {
  height: 25rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 4px solid #fff;
}
@media (min-width: 640px) { .bosgro-over__team-image { height: 31rem; } }
@media (min-width: 1024px) { .bosgro-over__team-image { height: 37.5rem; } }
.bosgro-over__team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.bosgro-over__team-image:hover img { transform: scale(1.05); }

.bosgro-over__team-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.bosgro-over__team-text h2 { color: #000; }

/* Certificering */
.bosgro-over__certs {
  padding-block: 4rem;
  background: var(--bosgro-gray-50);
}
@media (min-width: 640px) { .bosgro-over__certs { padding-block: 6rem; } }

.bosgro-over__certs-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .bosgro-over__certs-grid { grid-template-columns: repeat(3, 1fr); } }

.bosgro-over__cert-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  text-align: center;
  transition: box-shadow 0.2s;
}
.bosgro-over__cert-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.bosgro-over__cert-card h3 { color: #000; margin-bottom: 0.75rem; }
.bosgro-over__cert-card p  { color: var(--bosgro-gray-600); line-height: 1.6; }

.bosgro-over__cert-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.bosgro-over__cert-image {
  height: 19rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (min-width: 640px) { .bosgro-over__cert-image { height: 25rem; } }
@media (max-width: 1023px) {
  .bosgro-over__cert-image {
    background-attachment: scroll;
  }
}

/* Over Ons CTA */
.bosgro-over__cta {
  padding-block: 4rem;
  padding-top: 4rem;
}
@media (min-width: 640px) { .bosgro-over__cta { padding-top: 4rem; padding-bottom: 6rem; } }

.bosgro-over__cta-inner {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
  background: var(--bosgro-green);
  padding: 2rem;
  border-radius: 1rem;
}
@media (min-width: 640px) { .bosgro-over__cta-inner { padding: 3rem; } }
.bosgro-over__cta-inner h2 { color: #fff; margin-bottom: 1rem; }
.bosgro-over__cta-inner p  { color: rgba(255,255,255,0.85); font-size: 1.125rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .bosgro-over__cta-inner p { font-size: 1.25rem; } }

/* ============================================================
   WAAROM BOSGRO
   ============================================================ */

.bosgro-waarom__hero {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background: var(--bosgro-gray-50);
}
@media (min-width: 640px) { .bosgro-waarom__hero { padding-top: 3rem; padding-bottom: 6rem; } }

.bosgro-waarom__hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .bosgro-waarom__hero-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 1023px) {
  .bosgro-waarom__hero-inner > *:first-child { order: 2; }
  .bosgro-waarom__hero-inner > *:last-child  { order: 1; }
}

.bosgro-waarom__hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.bosgro-waarom__hero-text h1 { color: #000; font-size: 3rem; line-height: 1.15; font-weight: 700; }
@media (min-width: 640px) { .bosgro-waarom__hero-text h1 { font-size: 3.5rem; } }
.bosgro-waarom__hero-text p  { font-size: 1.125rem; color: var(--bosgro-gray-600); }
@media (min-width: 640px) { .bosgro-waarom__hero-text p { font-size: 1.25rem; } }

.bosgro-waarom__green { color: var(--bosgro-green); }
.bosgro-green { color: var(--bosgro-green); }

.bosgro-waarom__hero-image {
  height: 25rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 4px solid #fff;
}
@media (min-width: 640px) { .bosgro-waarom__hero-image { height: 31rem; } }
@media (min-width: 1024px) { .bosgro-waarom__hero-image { height: 37.5rem; } }
.bosgro-waarom__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.bosgro-waarom__hero-image:hover img { transform: scale(1.05); }

/* Stats balk */
.bosgro-waarom__stats {
  background: var(--bosgro-green);
  padding-block: 2rem;
}
@media (min-width: 640px) { .bosgro-waarom__stats { padding-block: 2.5rem; } }

.bosgro-waarom__stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 640px) { .bosgro-waarom__stats-inner { gap: 2rem; } }

.bosgro-waarom__stat { display: flex; flex-direction: column; gap: 0.25rem; }

.bosgro-waarom__stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
@media (min-width: 640px) { .bosgro-waarom__stat-number { font-size: 3.5rem; } }
@media (min-width: 1024px) { .bosgro-waarom__stat-number { font-size: 4rem; } }

.bosgro-waarom__stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
@media (min-width: 640px) { .bosgro-waarom__stat-label { font-size: 1.125rem; } }

/* Benefits grid */
.bosgro-waarom__benefits {
  padding-block: 4rem;
  background: #fff;
}
@media (min-width: 640px) { .bosgro-waarom__benefits { padding-block: 6rem; } }

.bosgro-waarom__benefits-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) { .bosgro-waarom__benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .bosgro-waarom__benefits-grid { grid-template-columns: repeat(4, 1fr); } }

.bosgro-waarom__benefit-card {
  background: var(--bosgro-gray-50);
  padding: 2rem;
  border-radius: 1.5rem;
  transition: box-shadow 0.2s;
  text-align: center;
}
@media (min-width: 640px) { .bosgro-waarom__benefit-card { padding: 2.5rem; } }
.bosgro-waarom__benefit-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.bosgro-waarom__benefit-card h3 { color: #000; margin-bottom: 0.75rem; font-size: 1rem; }

.bosgro-waarom__benefit-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.2s;
}
@media (min-width: 640px) { .bosgro-waarom__benefit-icon { width: 5rem; height: 5rem; } }
.bosgro-waarom__benefit-card:hover .bosgro-waarom__benefit-icon { transform: scale(1.1); }

.bosgro-waarom__benefit-sub {
  display: none;
}

.bosgro-waarom__benefit-card p:last-child {
  color: var(--bosgro-gray-600);
  line-height: 1.7;
}

/* Wat ons onderscheidt */
.bosgro-waarom__reasons {
  padding-block: 4rem;
  background: var(--bosgro-gray-50);
}
@media (min-width: 640px) { .bosgro-waarom__reasons { padding-block: 6rem; } }

.bosgro-waarom__reasons-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .bosgro-waarom__reasons-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.bosgro-waarom__reasons-image {
  height: 22rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
@media (min-width: 640px) { .bosgro-waarom__reasons-image { height: 28rem; } }
@media (min-width: 1024px) { .bosgro-waarom__reasons-image { height: 34rem; } }
.bosgro-waarom__reasons-image img { width: 100%; height: 100%; object-fit: cover; }

.bosgro-waarom__reasons-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.bosgro-waarom__reasons-list h2 { color: #000; margin-bottom: 0.5rem; }

.bosgro-waarom__reason {
  display: flex;
  gap: 1rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.bosgro-waarom__reason:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

.bosgro-waarom__reason-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 640px) { .bosgro-waarom__reason-icon { width: 3.5rem; height: 3.5rem; } }

.bosgro-waarom__reason h3 { color: #000; margin-bottom: 0.5rem; }
.bosgro-waarom__reason p  { color: var(--bosgro-gray-600); line-height: 1.6; }

/* Waarom CTA */
.bosgro-waarom__cta { padding-bottom: 4rem; }
@media (min-width: 640px) { .bosgro-waarom__cta { padding-bottom: 6rem; } }

.bosgro-waarom__cta-inner {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
  background: var(--bosgro-green);
  padding: 2rem;
  border-radius: 1rem;
}
@media (min-width: 640px) { .bosgro-waarom__cta-inner { padding: 3rem; } }
.bosgro-waarom__cta-inner h2 { color: #fff; margin-bottom: 1rem; }
.bosgro-waarom__cta-inner p  { color: rgba(255,255,255,0.85); font-size: 1.125rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .bosgro-waarom__cta-inner p { font-size: 1.25rem; } }

/* ============================================================
   CONTACT PAGINA
   ============================================================ */

.bosgro-contact__header {
  padding-top: 2rem;
  padding-bottom: 3rem;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 640px) {
  .bosgro-contact__header { padding-top: 3rem; padding-bottom: 6rem; }
}
/* overlay voor leesbaarheid tekst */
.bosgro-contact__header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 0;
}
.bosgro-contact__header-inner {
  position: relative;
  z-index: 1;
}
.bosgro-contact__header h1 { color: #fff; font-size: 3rem; line-height: 1.15; margin-bottom: 1rem; font-weight: 700; }
@media (min-width: 640px) { .bosgro-contact__header h1 { font-size: 3.5rem; } }
@media (max-width: 639px) {
  .bosgro-contact__header h1 { font-size: 2.25rem; }
}
.bosgro-contact__header p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  max-width: 48rem;
  margin-inline: auto;
  line-height: 1.7;
}
@media (min-width: 640px) { .bosgro-contact__header p { font-size: 1.25rem; } }

.bosgro-contact__hero-image { margin-bottom: 3rem; }
@media (min-width: 640px) { .bosgro-contact__hero-image { margin-bottom: 4rem; } }
.bosgro-contact__hero-image img {
  width: 100%;
  max-width: 64rem;
  margin-inline: auto;
  display: block;
  height: 19rem;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 4px solid #fff;
}
@media (min-width: 640px) { .bosgro-contact__hero-image img { height: 25rem; } }

.bosgro-contact__body { padding-top: 3rem; padding-bottom: 4rem; }
@media (min-width: 640px) { .bosgro-contact__body { padding-top: 4rem; padding-bottom: 6rem; } }

.bosgro-contact__body-inner {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .bosgro-contact__body-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.bosgro-contact__info h2 { color: #000; margin-bottom: 1.5rem; }

.bosgro-contact__items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.bosgro-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.bosgro-contact__item:not(.bosgro-contact__item--static):hover {
  background: var(--bosgro-gray-50);
}
.bosgro-contact__item--static { cursor: default; }

.bosgro-contact__item-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bosgro-contact__item h3 { color: #000; margin-bottom: 0.25rem; font-size: 1rem; }
.bosgro-contact__item p  { color: var(--bosgro-gray-600); font-size: 0.9375rem; line-height: 1.5; }

.bosgro-contact__item-sub {
  font-size: 0.875rem !important;
  color: var(--bosgro-gray-500) !important;
  margin-top: 0.25rem;
}
.bosgro-contact__item-extra {
  font-size: 0.875rem !important;
  color: var(--bosgro-orange) !important;
  margin-top: 0.5rem;
}

.bosgro-contact__spoed {
  background: var(--bosgro-green);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) { .bosgro-contact__spoed { padding: 2rem; } }
.bosgro-contact__spoed h3 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
@media (min-width: 640px) { .bosgro-contact__spoed h3 { font-size: 1.5rem; } }
.bosgro-contact__spoed p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.bosgro-contact__spoed .bosgro-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.bosgro-contact__form-wrap {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  padding: 1.5rem;
}
@media (min-width: 640px) { .bosgro-contact__form-wrap { padding: 2rem; } }
.bosgro-contact__form-wrap h2 { color: #000; margin-bottom: 1.5rem; }

.bosgro-contact__cf7-notice {
  background: var(--bosgro-gray-50);
  border: 2px dashed var(--bosgro-gray-200);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  color: var(--bosgro-gray-600);
  line-height: 1.6;
}

.bosgro-contact__form-note {
  font-size: 0.875rem;
  color: var(--bosgro-gray-500);
  text-align: center;
  margin-top: 1rem;
}

/* ============================================================
   CONTACT FORM 7 STIJLEN
   ============================================================ */

.bosgro-contact__form-wrap .wpcf7 { width: 100%; }

.bosgro-contact__form-wrap .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bosgro-contact__form-wrap .wpcf7-form label,
.bosgro-contact__form-wrap .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.bosgro-contact__form-wrap .wpcf7-form label {
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5rem;
}

.bosgro-contact__form-wrap .wpcf7-form input[type="text"],
.bosgro-contact__form-wrap .wpcf7-form input[type="email"],
.bosgro-contact__form-wrap .wpcf7-form input[type="tel"],
.bosgro-contact__form-wrap .wpcf7-form select,
.bosgro-contact__form-wrap .wpcf7-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--bosgro-gray-200);
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #000;
  background: #fff;
  transition: border-color 0.2s;
  font-family: inherit;
  line-height: 1.5;
}

.bosgro-contact__form-wrap .wpcf7-form input[type="text"]:focus,
.bosgro-contact__form-wrap .wpcf7-form input[type="email"]:focus,
.bosgro-contact__form-wrap .wpcf7-form input[type="tel"]:focus,
.bosgro-contact__form-wrap .wpcf7-form select:focus,
.bosgro-contact__form-wrap .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--bosgro-green);
}

.bosgro-contact__form-wrap .wpcf7-form textarea {
  resize: none;
  min-height: 9rem;
}

.bosgro-contact__form-wrap .wpcf7-form input[type="submit"] {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--bosgro-orange);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(232,130,12,0.35);
}
.bosgro-contact__form-wrap .wpcf7-form input[type="submit"]:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.wpcf7-not-valid-tip {
  color: #d4183d;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.wpcf7-response-output {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}

.wpcf7-mail-sent-ok {
  background: #f0fdf4;
  border: 2px solid #86efac;
  color: #166534;
}
.wpcf7-mail-sent-ng,
.wpcf7-aborted {
  background: #fef2f2;
  border: 2px solid #fca5a5;
  color: #991b1b;
}
.wpcf7-spam-blocked {
  background: #fffbeb;
  border: 2px solid #fcd34d;
  color: #92400e;
}

/* ============================================================
   CTA KNOPPEN — COMPACT (geen full-width)
   ============================================================ */

.bosgro-service-page__hero-text .bosgro-btn,
.bosgro-over__story-text .bosgro-btn {
  width: fit-content !important;
  align-self: flex-start;
  background: var(--bosgro-green) !important;
  box-shadow: 0 4px 14px rgba(27,61,26,0.35) !important;
}
@media (max-width: 1023px) {
  .bosgro-service-page__hero-text .bosgro-btn { align-self: center; }
}

.bosgro-over__cta-inner .bosgro-btn,
.bosgro-waarom__cta-inner .bosgro-btn,
.bosgro-service-page__cta-inner .bosgro-btn {
  width: fit-content !important;
  align-self: flex-start;
}


/* ============================================================
   LOGO — BORDER RADIUS (witte achtergrond wegsnijden)
   ============================================================ */

.bosgro-nav__logo img {
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
}


.bosgro-over__lees-meer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--bosgro-orange);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: gap 0.2s;
}
.bosgro-over__lees-meer:hover { gap: 0.75rem; }

/* ============================================================
   REASONS COMPACT (groepenkasten)
   ============================================================ */

.bosgro-reasons-compact {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .bosgro-reasons-compact { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.bosgro-reasons-compact__image {
  height: 25rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
@media (min-width: 640px) { .bosgro-reasons-compact__image { height: 31rem; } }
.bosgro-reasons-compact__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.bosgro-reasons-compact__image:hover img { transform: scale(1.05); }

.bosgro-reasons-compact__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bosgro-reasons-compact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bosgro-reasons-compact__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.bosgro-reasons-compact__item:hover .bosgro-reasons-compact__icon {
  transform: translateY(-4px);
}

.bosgro-reasons-compact__item h3 {
  color: #000;
  margin-bottom: 0.375rem;
  font-size: 1.125rem;
}
.bosgro-reasons-compact__item p {
  color: var(--bosgro-gray-600);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.bosgro-reasons-compact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--bosgro-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 1rem;
  font-weight: 500;
  transition: gap 0.2s;
  margin-top: 0.5rem;
}
.bosgro-reasons-compact__link:hover { gap: 0.75rem; }

/* Homepage hero knoppen override */
.bosgro-hero__ctas .bosgro-btn--orange {
  background: var(--bosgro-green);
  box-shadow: 0 4px 14px rgba(27,61,26,0.35);
}

.bosgro-hero__ctas .bosgro-btn--outline-green {
  border-color: var(--bosgro-green);
  color: var(--bosgro-green);
}

/* Service card foto */
.bosgro-service-card__img {
  width: calc(100% + 3rem);
  margin: -1.5rem -1.5rem 1.5rem -1.5rem;
  height: 12rem;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}
@media (min-width: 640px) {
  .bosgro-service-card__img {
    width: calc(100% + 4rem);
    margin: -2rem -2rem 1.5rem -2rem;
  }
}
.bosgro-service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.bosgro-service-card:hover .bosgro-service-card__img img {
  transform: scale(1.05);
}

/* ============================================================
   ACCORDION
   ============================================================ */

.bosgro-accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: start;
}
@media (min-width: 768px) {
  .bosgro-accordion {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bosgro-accordion__item {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1.5px solid var(--bosgro-green);
}

.bosgro-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #000;
  font-family: inherit;
  transition: background 0.15s;
}
.bosgro-accordion__trigger:hover { background: var(--bosgro-gray-50); }
.bosgro-accordion__trigger[aria-expanded="true"] { color: var(--bosgro-green); }

.bosgro-accordion__chevron {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--bosgro-green);
}
.bosgro-accordion__trigger[aria-expanded="true"] .bosgro-accordion__chevron {
  transform: rotate(180deg);
}

.bosgro-accordion__panel {
  padding: 0 1.5rem 1.25rem;
  color: var(--bosgro-gray-600);
  font-size: 1rem;
  line-height: 1.7;
}

/* Scroll hint pijltje */
.bosgro-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  opacity: 1;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 10;
}
.bosgro-scroll-hint.is-hidden {
  opacity: 0;
}
.bosgro-scroll-hint__arrow {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--bosgro-green);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bosgro-bounce 1.5s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
@keyframes bosgro-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* Legal pagina (Algemene Voorwaarden) */
.bosgro-legal {
  padding-block: 5rem;
}
.bosgro-legal__inner {
  max-width: 52rem;
  margin-inline: auto;
}
.bosgro-legal__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--bosgro-gray-900);
}
.bosgro-legal__content h2,
.bosgro-legal__content strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bosgro-gray-900);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}
.bosgro-legal__content p {
  color: var(--bosgro-gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}
