@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

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

:root {
  --primary: hsl(140, 20.3%, 49.2%);
  --primary-fg: #ffffff;
  --bg: hsl(0, 0%, 96%);
  --fg: hsl(0, 0%, 10%);
  --card: #ffffff;
  --card-fg: hsl(0, 0%, 10%);
  --muted: hsl(0, 0%, 96%);
  --muted-fg: hsl(0, 0%, 45%);
  --border: hsl(0, 0%, 88%);
  --input: hsl(0, 0%, 88%);
  --destructive: hsl(0, 84.2%, 60.2%);
  --topbar: hsl(0, 0%, 10%);
  --topbar-fg: #ffffff;
  --star: hsl(33, 95%, 60%);
  --radius: 0.5rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--topbar);
  color: var(--topbar-fg);
  font-size: 0.75rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
}
.topbar-stars { display: flex; gap: 0.125rem; align-items: center; }
.star-icon { color: var(--star); width: 20px; height: 20px; }
.topbar-rating { display: flex; align-items: center; gap: 0.5rem; }
.topbar-rating span { font-size: 0.9375rem; }
.topbar-contact { display: flex; align-items: center; gap: 1.5rem; }
.topbar-contact a { display: flex; align-items: center; gap: 0.375rem; transition: color 0.2s; }
.topbar-contact a:hover { color: var(--primary); }
@media (max-width: 767px) { .topbar-contact { display: none; } }

/* ── NAVBAR ── */
.navbar {
  background: var(--card);
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo img {
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
.navbar-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.dropdown { position: relative; }
.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.dropdown-btn:hover { color: var(--primary); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  width: 16rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 0.5rem 0;
  z-index: 100;
}
.dropdown-menu.open { display: block; }
.dropdown-btn svg { transition: transform 0.2s; }
.dropdown-btn.open svg { transform: rotate(180deg); }
.dropdown-menu a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--fg);
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--muted); color: var(--primary); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: var(--radius);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.9; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--muted); }
.navbar-cta { display: none; }
@media (min-width: 768px) {
  .navbar-cta { display: inline-flex; }
  .navbar-nav { display: flex; }
}

/* Mobile menu */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hamburger { padding: 0.5rem; color: var(--fg); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.mobile-nav.open { display: block; }
.mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.mobile-panel {
  position: absolute;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: var(--card);
  padding: 2rem 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-panel .nav-link {
  font-size: 1rem;
  font-weight: 500;
}
.mobile-close { align-self: flex-end; padding: 0.25rem; }
.mobile-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.mobile-sub {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  margin-left: 0.75rem;
}
.mobile-sub.open { display: flex; }
.mobile-sub a { font-size: 0.875rem; color: var(--muted-fg); }
.mobile-sub a:hover { color: var(--primary); }
@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.hero-content {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.hero-text { color: #ffffff; }
.hero-tagline {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.9;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.hero-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 36rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.hero-bullets {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  opacity: 0.9;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.1); }
.hero-form-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hero-form-card .form-title { color: #ffffff; }
@media (min-width: 1024px) {
  .hero-content { grid-template-columns: 3fr 2fr; }
  .hero-tagline { display: block; }
}
@media (max-width: 767px) {
  .hero-tagline { display: none; }
  .hero-form-card { display: none; }
}

/* ── QUOTE FORM ── */
.quote-form { display: flex; flex-direction: column; gap: 1rem; }
.form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) { .form-title { font-size: 1.5rem; } }
.form-input {
  width: 100%;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 2px hsl(140, 20.3%, 49.2%, 0.25); }
.form-input::placeholder { color: var(--muted-fg); }
textarea.form-input { resize: vertical; min-height: 100px; }
.form-error { font-size: 0.75rem; color: var(--destructive); margin-top: 0.25rem; }
.btn-submit {
  width: 100%;
  background: var(--primary);
  color: var(--primary-fg);
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: inherit;
}
.btn-submit:hover { opacity: 0.9; }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 0;
  text-align: center;
}
.success-icon {
  width: 4rem; height: 4rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-icon svg { color: white; }

/* ── TRUST SECTION ── */
.trust {
  background: var(--card);
  padding: 4rem 1rem;
}
@media (min-width: 768px) { .trust { padding: 6rem 1rem; } }
.trust-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  max-width: 40rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-card {
  background: var(--muted);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}
.trust-card-icon {
  width: 2.5rem; height: 2.5rem;
  color: var(--primary);
  margin: 0 auto 1rem;
}
.trust-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.trust-card p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* ── SERVICE SECTION ── */
.service-section { padding: 4rem 1rem; }
@media (min-width: 768px) { .service-section { padding: 6rem 1rem; } }
.service-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.service-card {
  background: var(--card);
  border-radius: 1.25rem;
  padding: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .service-card { padding: 2.8125rem; } }
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .service-grid { grid-template-columns: 1fr 1fr; } }
.service-img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
}
.service-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.service-text p {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ── WHY SECTION ── */
.why-section {
  position: relative;
  padding: 4rem 1rem;
}
@media (min-width: 768px) { .why-section { padding: 6rem 1rem; } }
.why-content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.why-title {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}
.why-lead {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  max-width: 40rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: left;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s;
}
.why-card:hover { transform: translateY(-4px); }
.why-card-icon {
  flex-shrink: 0;
  display: inline-flex;
  border-radius: 0.75rem;
  background: var(--primary);
  padding: 0.75rem;
}
.why-card-icon svg { width: 1.5rem; height: 1.5rem; color: white; }
.why-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}
.why-card-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ── REVIEWS ── */
.reviews-section {
  background: var(--muted);
  padding: 4rem 1rem;
}
@media (min-width: 768px) { .reviews-section { padding: 6rem 1rem; } }
.reviews-inner { max-width: 1280px; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 3rem; }
.reviews-sub {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.reviews-carousel-wrap { position: relative; display: flex; align-items: center; gap: 0.75rem; }
.reviews-carousel { overflow: hidden; flex: 1; min-width: 0; }
.reviews-track { display: flex; gap: 1.5rem; transition: transform 0.4s ease; will-change: transform; }
.review-card { flex-shrink: 0; }
.carousel-btn {
  flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  color: var(--fg);
}
.carousel-btn:hover:not(:disabled) { background: var(--primary); color: #fff; border-color: var(--primary); }
.carousel-btn:disabled { opacity: 0.35; cursor: default; }
@media (max-width: 767px) {
  .reviews-carousel-wrap { padding: 0 2.75rem; }
  .reviews-carousel { width: 100%; }
  .carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; background: var(--card); }
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }
}
.carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.carousel-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 9999px;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.2s;
}
.carousel-dot.active { background: var(--primary); width: 1.5rem; }
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s;
}
@media (min-width: 768px) { .review-card { padding: 2rem; } }
.review-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.review-stars { display: flex; gap: 0.125rem; margin-bottom: 1rem; }
.review-star { width: 1.25rem; height: 1.25rem; color: var(--star); fill: var(--star); }
.review-text {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}
.review-author { border-top: 1px solid var(--border); padding-top: 1rem; }
.review-name { font-size: 0.875rem; font-weight: 600; font-family: 'Poppins', sans-serif; }
.review-date { font-size: 0.75rem; color: var(--muted-fg); }

/* ── WORK SECTION ── */
.work-section { padding: 4rem 1rem; }
@media (min-width: 768px) { .work-section { padding: 6rem 1rem; } }
.work-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) { .work-inner { grid-template-columns: 65fr 35fr; } }
.work-main h2 {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.work-main p {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.work-img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  margin-top: 2rem;
}
.steps-title {
  font-size: clamp(1.5rem, 2vw, 1.875rem);
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.steps-list { display: flex; flex-direction: column; gap: 1.5rem; }
.step-item { display: flex; align-items: flex-start; gap: 1rem; }
.step-icon {
  flex-shrink: 0;
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  background: hsl(140, 20.3%, 49.2%, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg { width: 1.5rem; height: 1.5rem; }
.step-title {
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) { .step-title { font-size: 1.125rem; } }
.step-desc { font-size: 0.9375rem; color: var(--muted-fg); line-height: 1.6; }
.cta-block {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 1rem;
  background: var(--fg);
  padding: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 640px) { .cta-block { flex-direction: row; align-items: center; } }
@media (min-width: 768px) { .cta-block { padding: 2rem; } }
.cta-block h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) { .cta-block h4 { font-size: 1.25rem; } }
.cta-block p { font-size: 0.9375rem; color: rgba(245,245,245,0.8); }
.vakmanschap { margin-top: 2.5rem; }
.vakmanschap h3 {
  font-size: clamp(1.5rem, 2vw, 1.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.vakmanschap p { font-size: 0.9375rem; color: var(--muted-fg); line-height: 1.7; margin-bottom: 1rem; }
.work-form-card {
  border: 2px solid var(--primary);
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}
@media (min-width: 768px) { .work-form-card { padding: 2rem; } }
@media (min-width: 1024px) {
  .work-form-card {
    position: sticky;
    top: 6rem;
    align-self: start;
  }
}

/* ── BRAND LOGOS ── */
.brands-section {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 3rem 1rem;
}
@media (min-width: 768px) { .brands-section { padding: 4rem 1rem; } }
.brands-inner {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 768px) { .brands-inner { gap: 4rem; } }
.brand-logo {
  height: 3rem;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s;
}
@media (min-width: 768px) { .brand-logo { height: 4rem; } }
.brand-logo:hover { opacity: 1; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--card);
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3.5rem 1rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: repeat(3, 1fr); } }
.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--primary); }
.footer-col .addr { font-size: 0.875rem; color: var(--muted-fg); display: flex; flex-direction: column; gap: 0.375rem; }
.footer-col .addr-name { font-weight: 500; color: var(--fg); }
.footer-bottom {
  border-top: 1px solid var(--border);
  background: var(--card);
  text-align: center;
  padding: 1rem;
  font-size: 0.75rem;
  color: var(--muted-fg);
}

/* ── PAGE HERO (dienst pages) ── */
.page-hero {
  position: relative;
  padding: 4rem 1rem;
}
@media (min-width: 768px) { .page-hero { padding: 6rem 1rem; } }
.page-hero-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── CONTENT SECTIONS ── */
.content-section { padding: 4rem 1rem; }
@media (min-width: 768px) { .content-section { padding: 6rem 1rem; } }
.content-inner { max-width: 56rem; margin: 0 auto; }
.content-title {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.content-text {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.voordelen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .voordelen-grid { grid-template-columns: 1fr 1fr; } }
.voordeel-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--fg);
}
.voordeel-item svg { flex-shrink: 0; margin-top: 2px; }

/* ── CHECK ICON ── */
.check-icon { width: 1rem; height: 1rem; color: var(--primary); }
.check-icon-lg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; }

/* ── MUTED BG SECTION ── */
.muted-bg-section {
  background: rgba(245,245,245,0.4);
  padding: 4rem 1rem;
}
@media (min-width: 768px) { .muted-bg-section { padding: 6rem 1rem; } }
.onderhoud-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .onderhoud-grid { grid-template-columns: 1fr 1fr; } }
.onderhoud-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.onderhoud-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
}
.onderhoud-list { display: flex; flex-direction: column; gap: 0.75rem; }

/* ── OVER ONS ── */
.kernwaarden-section {
  border-top: 1px solid var(--border);
  background: var(--card);
  padding: 4rem 1rem;
}
@media (min-width: 768px) { .kernwaarden-section { padding: 6rem 1rem; } }
.kernwaarden-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 75rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .kernwaarden-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .kernwaarden-grid { grid-template-columns: repeat(4, 1fr); } }
.kernwaarde-item { text-align: center; }
.kernwaarde-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 0.75rem;
  background: hsl(140, 20.3%, 49.2%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.kernwaarde-icon svg { width: 1.75rem; height: 1.75rem; color: var(--primary); }
.kernwaarde-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.kernwaarde-item p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }
.cta-section { padding: 4rem 1rem; }
@media (min-width: 768px) { .cta-section { padding: 6rem 1rem; } }
.cta-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.cta-inner h2 { font-size: clamp(1.5rem, 2.5vw, 1.875rem); font-weight: 600; margin-bottom: 1rem; }
.cta-inner p { font-size: 0.9375rem; color: var(--muted-fg); max-width: 36rem; margin: 0 auto 2rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 75rem;
  margin: 0 auto;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-info h2 { font-size: clamp(1.5rem, 2.5vw, 1.875rem); font-weight: 600; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.75rem;
  background: hsl(140, 20.3%, 49.2%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.contact-item-label { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-fg); margin-bottom: 0.125rem; }
.contact-item-val { font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.contact-item-val a:hover { color: var(--primary); }
.contact-form-card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  scroll-margin-top: 6rem;
}
@media (min-width: 768px) { .contact-form-card { padding: 2rem; } }
.contact-form-title {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) { .contact-form-title { font-size: 1.25rem; } }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* ── PROJECTEN ── */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(4, 1fr); } }
.project-btn {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--muted);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  cursor: pointer;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
}
.project-btn img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.project-btn:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  border-radius: 0.5rem;
  object-fit: contain;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.lb-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  border-radius: 50%;
  width: 2.5rem; height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.2); }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  border-radius: 50%;
  width: 2.5rem; height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lb-prev { left: 0.5rem; }
.lb-next { right: 0.5rem; }
@media (min-width: 768px) { .lb-prev { left: 1.5rem; } .lb-next { right: 1.5rem; } }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }

/* ── ALGEMENE VOORWAARDEN ── */
.av-header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.av-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
@media (min-width: 768px) { .av-header-inner { padding: 4rem 1rem; } }
.av-header h1 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; }
.av-header p { color: var(--muted-fg); max-width: 40rem; margin-top: 0.75rem; }
.av-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
@media (min-width: 768px) { .av-content { padding: 4rem 1rem; } }
.av-article { max-width: 48rem; margin: 0 auto; }
.av-info-box {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 0.5rem;
  padding: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 2.5rem;
}
.av-info-box .addr-name { font-weight: 500; color: var(--fg); margin-bottom: 0.25rem; }
.av-articles { display: flex; flex-direction: column; gap: 2.5rem; }
.av-article-section h2 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; margin-bottom: 1rem; }
.av-article-section p { font-size: 0.9375rem; line-height: 1.7; }
.av-article-section ul { list-style: disc; padding-left: 1.5rem; margin-top: 0.5rem; }
.av-article-section ul li { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 0.375rem; }

/* ── TEXT UTILS ── */
.text-primary { color: var(--primary); }
.strong-fg { color: var(--fg); font-weight: 600; }

/* ── ICON HELPERS ── */
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 2.5rem; height: 2.5rem; }
