/*
Theme Name: GroenLaad
Theme URI: https://groenlaad.nl
Author: GroenLaad
Description: Professioneel thema voor GroenLaad Laadpaal Installateurs
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: groenlaad
*/

/* ============================================================
   IMPORTS & VARIABLES
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --brand-darkgreen: #2D5A27;
  --brand-forest: #4A7C43;
  --brand-wood: #8B6343;
  --brand-gold: #C8A96E;
  --brand-soft: #EAF3DE;
  --brand-dark: #1e3d1a;
  --radius: 0.5rem;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--brand-soft);
  color: #1a2e16;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section-py { padding: 4rem 0; }
.section-py-sm { padding: 2rem 0; }
.section-py-lg { padding: 5rem 0; }

.text-center { text-align: center; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.grid { display: grid; }
.grid-2 { grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 1023px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   COLORS / BACKGROUNDS
   ============================================================ */
.bg-white { background: var(--white); }
.bg-soft { background: var(--brand-soft); }
.bg-darkgreen { background: var(--brand-darkgreen); }
.bg-gold-light { background: rgba(200, 169, 110, 0.15); border-top: 1px solid rgba(200,169,110,0.3); border-bottom: 1px solid rgba(200,169,110,0.3); }

.text-white { color: var(--white); }
.text-green-100 { color: #dcfce7; }
.text-green-200 { color: #bbf7d0; }
.text-darkgreen { color: var(--brand-darkgreen); }
.text-forest { color: var(--brand-forest); }
.text-gold { color: var(--brand-gold); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }

/* ============================================================
   WOOD TEXTURE HERO BACKGROUND
   ============================================================ */
.wood-texture {
  background-color: var(--brand-darkgreen);
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(139,99,67,.05) 2px, rgba(139,99,67,.05) 4px),
    repeating-linear-gradient(180deg, transparent, transparent 20px, rgba(0,0,0,.03) 20px, rgba(0,0,0,.03) 21px),
    linear-gradient(180deg, #2D5A27 0%, #1e3d1a 100%);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

.btn-gold {
  background: var(--brand-gold);
  color: var(--brand-darkgreen);
}
.btn-gold:hover { background: #e6c27e; box-shadow: 0 4px 12px rgba(200,169,110,.4); transform: translateY(-1px); }

.btn-darkgreen {
  background: var(--brand-darkgreen);
  color: var(--white);
}
.btn-darkgreen:hover { background: var(--brand-forest); }

.btn-outline-green {
  background: transparent;
  color: var(--brand-darkgreen);
  border: 2px solid var(--brand-darkgreen);
}
.btn-outline-green:hover { background: var(--brand-darkgreen); color: var(--white); }

.btn-ghost-white {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.2); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid rgba(74,124,67,.1);
  transition: all 0.2s ease;
}
.card:hover { box-shadow: 0 8px 32px rgba(45,90,39,.12); }
.card-pad { padding: 1.5rem; }

.card-featured {
  border: 2px solid var(--brand-gold);
  box-shadow: 0 4px 20px rgba(200,169,110,.25);
}

/* ============================================================
   PAGE HEADER (dark green banner at top of inner pages)
   ============================================================ */
.page-header {
  background: var(--brand-darkgreen);
  padding: 4rem 0;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.page-header p {
  color: #bbf7d0;
  font-size: 1.125rem;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  background: var(--brand-darkgreen);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.logo-icon {
  background: var(--brand-gold);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 20px; height: 20px; stroke: var(--brand-darkgreen); fill: none; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1.125rem;
  line-height: 1.2;
}
.logo-tagline {
  color: var(--brand-gold);
  font-size: 0.7rem;
  line-height: 1.2;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) { .main-nav { display: flex; } }

.main-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #dcfce7;
  transition: all 0.15s ease;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a.current-menu-item,
.main-nav .current_page_item a {
  background: var(--brand-forest);
  color: var(--white);
}

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-gold);
  color: var(--brand-darkgreen);
  padding: 0.5rem 0.875rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.15s ease;
}
.header-phone:hover { background: #e6c27e; }
@media (min-width: 768px) { .header-phone { display: flex; } }

.menu-toggle {
  display: flex;
  background: none;
  border: none;
  color: var(--white);
  padding: 0.5rem;
  cursor: pointer;
}
.menu-toggle svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-nav {
  display: none;
  background: var(--brand-darkgreen);
  border-top: 1px solid rgba(74,124,67,.3);
  padding: 0.5rem 1rem 1rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.625rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #dcfce7;
  text-decoration: none;
  transition: all 0.15s ease;
  margin-bottom: 2px;
}
.mobile-nav a:hover,
.mobile-nav a.current-menu-item { background: var(--brand-forest); color: var(--white); }
.mobile-phone-link {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-gold) !important;
  color: var(--brand-darkgreen) !important;
  font-weight: 600 !important;
  margin-top: 0.5rem !important;
}

/* SEEH Banner */
.seeh-banner {
  background: var(--brand-darkgreen);
  border-bottom: 1px solid rgba(200,169,110,.25);
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--brand-gold);
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--brand-darkgreen);
  color: #bbf7d0;
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.footer-brand { grid-column: span 2; }
@media (max-width: 767px) { .footer-brand { grid-column: span 1; } }

.footer-logo { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1rem; }
.footer-desc { color: #86efac; font-size: 0.875rem; line-height: 1.6; max-width: 280px; }
.footer-heading { font-family: 'Inter', sans-serif; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; font-size: 0.9375rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: #bbf7d0; font-size: 0.875rem; transition: color 0.15s; text-decoration: none; }
.footer-links a:hover { color: var(--brand-gold); }
.footer-bottom {
  border-top: 1px solid rgba(74,124,67,.4);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(187,247,208,.5);
}

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: all 0.2s ease;
  text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.1); background: #1ebe5d; }
.whatsapp-fab svg { width: 28px; height: 28px; fill: var(--white); }

/* ============================================================
   HOME PAGE - HERO
   ============================================================ */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 9rem;
}
@media (min-width: 768px) { .hero-section { padding: 9rem 0; } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.4), rgba(0,0,0,.1));
}
.hero-content { position: relative; max-width: 640px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,169,110,.2);
  border: 1px solid rgba(200,169,110,.4);
  border-radius: 99px;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--brand-gold);
  font-weight: 500;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}
.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-title span { color: var(--brand-gold); }
.hero-subtitle {
  color: #dcfce7;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.hero-trust {
  color: #86efac;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* ============================================================
   HOME PAGE - USPs
   ============================================================ */
.usp-section { padding: 4rem 0; background: var(--white); }
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--brand-darkgreen);
  margin-bottom: 1rem;
}
.section-subtitle { color: var(--gray-600); font-size: 1.125rem; }

.usp-card {
  background: var(--brand-soft);
  border-radius: 0.875rem;
  padding: 1.5rem;
  border: 1px solid rgba(74,124,67,.1);
  transition: border-color 0.2s;
}
.usp-card:hover { border-color: rgba(74,124,67,.3); }
.usp-icon {
  background: var(--brand-darkgreen);
  border-radius: 0.5rem;
  padding: 0.75rem;
  display: inline-flex;
  margin-bottom: 1rem;
}
.usp-icon svg { width: 24px; height: 24px; stroke: var(--brand-gold); fill: none; stroke-width: 2; }
.usp-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-darkgreen);
  margin-bottom: 0.5rem;
}
.usp-desc { color: var(--gray-600); font-size: 0.875rem; line-height: 1.6; }

/* ============================================================
   HOME PAGE - SERVICES
   ============================================================ */
.services-section { padding: 4rem 0; background: var(--brand-soft); }
.checklist { margin: 1.5rem 0 2rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--gray-700);
}
.checklist li svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand-forest);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}
.services-image-wrap { position: relative; }
.services-image-wrap img {
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.services-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--brand-gold);
  color: var(--brand-darkgreen);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.services-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.services-badge-label { font-size: 0.875rem; font-weight: 600; }

/* ============================================================
   HOME PAGE - CTA BANNER
   ============================================================ */
.cta-banner { padding: 4rem 0; background: var(--brand-darkgreen); text-align: center; }
.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner p { color: #86efac; font-size: 1.125rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   WERKWIJZE PAGE
   ============================================================ */
.timeline-section { padding: 4rem 0; background: var(--brand-soft); }
.timeline { position: relative; }
.timeline-line {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(74,124,67,.2);
  transform: translateX(-50%);
}
@media (min-width: 768px) { .timeline-line { display: block; } }

.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .timeline-step { flex-direction: row; align-items: flex-start; }
  .timeline-step:nth-child(even) { flex-direction: row-reverse; }
}

.timeline-icon {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (min-width: 768px) { .timeline-icon { display: flex; } }
.timeline-icon-inner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-darkgreen);
  border: 4px solid var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.timeline-card {
  flex: 1;
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid rgba(74,124,67,.1);
  transition: box-shadow 0.2s;
}
.timeline-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
@media (min-width: 768px) {
  .timeline-step:nth-child(odd) .timeline-card { margin-right: calc(50% + 2rem); text-align: right; }
  .timeline-step:nth-child(even) .timeline-card { margin-left: calc(50% + 2rem); }
}
.timeline-step-label { color: var(--brand-gold); font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; }
.timeline-step-icon-mobile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .timeline-step-icon-mobile { display: none; } }
.timeline-step-icon-mobile-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-darkgreen);
  border: 2px solid var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.timeline-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-darkgreen);
  margin-bottom: 0.5rem;
}
.timeline-step-desc { color: var(--gray-700); margin-bottom: 0.75rem; line-height: 1.6; }
.timeline-step-detail {
  background: var(--brand-soft);
  border-radius: 0.5rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: var(--brand-forest);
}
.timeline-spacer { display: none; flex: 1; }
@media (min-width: 768px) { .timeline-spacer { display: block; } }

/* ============================================================
   TARIEVEN PAGE
   ============================================================ */
.tarief-card {
  background: var(--white);
  border-radius: 0.875rem;
  padding: 1.5rem;
  border: 2px solid rgba(74,124,67,.1);
  transition: all 0.2s;
  margin-bottom: 1rem;
}
.tarief-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.tarief-card.featured { border-color: var(--brand-gold); box-shadow: 0 4px 20px rgba(200,169,110,.2); }
.tarief-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--brand-gold);
  color: var(--brand-darkgreen);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}
.tarief-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.tarief-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-darkgreen);
  margin-bottom: 0.25rem;
}
.tarief-detail { color: var(--gray-500); font-size: 0.875rem; }
.tarief-price { font-weight: 700; font-size: 1.5rem; color: var(--brand-forest); white-space: nowrap; }
.tarief-price.featured-price { color: var(--brand-darkgreen); }

.info-box {
  border-radius: 0.875rem;
  padding: 1.25rem;
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}
.info-box.blue { background: #eff6ff; border: 1px solid #bfdbfe; }
.info-box.gold { background: rgba(200,169,110,.1); border: 1px solid rgba(200,169,110,.3); }
.info-box-icon { flex-shrink: 0; margin-top: 2px; }
.info-box-icon svg { width: 20px; height: 20px; stroke-width: 2; fill: none; }
.info-box.blue .info-box-icon svg { stroke: #2563eb; }
.info-box.gold .info-box-icon svg { stroke: var(--brand-darkgreen); }
.info-box-title { font-weight: 600; margin-bottom: 0.25rem; }
.info-box.blue .info-box-title { color: #1e40af; }
.info-box.gold .info-box-title { color: var(--brand-darkgreen); }
.info-box.blue p { color: #1d4ed8; font-size: 0.875rem; line-height: 1.6; }
.info-box.gold p { color: var(--brand-darkgreen); font-size: 0.875rem; }

.inclusions-box {
  background: var(--brand-darkgreen);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}
.inclusions-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.75rem 0;
}
.inclusions-box p { color: #86efac; margin-bottom: 1.5rem; line-height: 1.6; }

/* ============================================================
   LAADPALEN PAGE
   ============================================================ */
.product-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(74,124,67,.1);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: all 0.3s ease;
}
.product-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.15); transform: translateY(-4px); }
.product-img {
  height: 260px;
  overflow: hidden;
  background: var(--gray-100);
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 1.5rem; }
.product-brand {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand-darkgreen);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.product-header-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.75rem; }
.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-darkgreen);
}
.product-price-wrap { text-align: right; }
.product-price { font-size: 1.5rem; font-weight: 700; color: var(--brand-darkgreen); }
.product-price-label { font-size: 0.75rem; color: var(--gray-400); }
.product-desc { color: var(--gray-600); font-size: 0.875rem; margin-bottom: 1rem; line-height: 1.6; }
.product-specs {
  background: var(--brand-soft);
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
}
.product-specs-label {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-darkgreen);
  margin-bottom: 0.375rem;
}
.product-specs-label svg { width: 14px; height: 14px; stroke: var(--brand-forest); fill: none; stroke-width: 2.5; }
.product-specs-text { font-size: 0.75rem; color: var(--gray-600); }

/* ============================================================
   OVER ONS PAGE
   ============================================================ */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-darkgreen);
  line-height: 1;
}
.stat-label { font-size: 0.875rem; color: var(--gray-500); margin-top: 0.25rem; }

.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--brand-soft);
  border-radius: 0.875rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.cert-icon {
  background: var(--brand-darkgreen);
  border-radius: 0.5rem;
  padding: 0.5rem;
  flex-shrink: 0;
}
.cert-icon svg { width: 20px; height: 20px; stroke: var(--brand-gold); fill: none; stroke-width: 2; }
.cert-name { font-weight: 600; color: var(--brand-darkgreen); }
.cert-desc { font-size: 0.875rem; color: var(--gray-600); }

.values-card {
  background: var(--white);
  border-radius: 0.875rem;
  padding: 1.5rem;
  border: 1px solid rgba(74,124,67,.1);
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.values-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-darkgreen);
  margin-bottom: 0.5rem;
}
.values-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

.map-embed {
  background: var(--gray-100);
  border-radius: 1rem;
  overflow: hidden;
  height: 260px;
  margin-top: 1.25rem;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   REFERENTIES PAGE
   ============================================================ */
.stats-bar { padding: 2rem 0; background: rgba(200,169,110,.1); border-top: 1px solid rgba(200,169,110,.2); border-bottom: 1px solid rgba(200,169,110,.2); }
.stats-bar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center; }
.stats-bar-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--brand-darkgreen);
}
.stats-bar-label { font-size: 0.875rem; color: var(--gray-600); margin-top: 0.25rem; }

.project-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: all 0.3s ease;
  cursor: pointer;
}
.project-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.15); transform: translateY(-4px); }
.project-img { height: 210px; overflow: hidden; background: var(--gray-100); }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.project-card:hover .project-img img { transform: scale(1.05); }
.project-body { padding: 1rem; }
.project-location { font-size: 0.75rem; color: var(--brand-forest); font-weight: 500; margin-bottom: 0.25rem; }
.project-title { font-size: 1rem; font-weight: 600; color: var(--brand-darkgreen); font-family: 'Playfair Display', serif; }
.project-desc { font-size: 0.8125rem; color: var(--gray-500); margin-top: 0.25rem; line-height: 1.5; }

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  max-width: 640px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.modal-img { height: 280px; overflow: hidden; background: var(--gray-100); }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 1.5rem; }
.modal-location { font-size: 0.75rem; color: var(--brand-forest); font-weight: 500; margin-bottom: 0.25rem; }
.modal-title { font-size: 1.5rem; font-weight: 700; color: var(--brand-darkgreen); margin-bottom: 0.5rem; }
.modal-desc { color: var(--gray-600); font-size: 0.9375rem; line-height: 1.6; }
.modal-close { background: none; border: none; color: var(--gray-400); font-size: 0.875rem; margin-top: 1rem; cursor: pointer; transition: color 0.15s; }
.modal-close:hover { color: var(--gray-700); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: 0.875rem;
  padding: 1rem;
  border: 1px solid rgba(74,124,67,.1);
  text-decoration: none;
  transition: border-color 0.2s;
  margin-bottom: 0.75rem;
}
.contact-info-item:hover { border-color: rgba(74,124,67,.3); }
.contact-info-item.whatsapp-item { background: #22c55e; border-color: #22c55e; }
.contact-icon {
  background: var(--brand-darkgreen);
  border-radius: 0.5rem;
  padding: 0.5rem;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--brand-gold); fill: none; stroke-width: 2; }
.whatsapp-item .contact-icon { background: rgba(255,255,255,.25); }
.whatsapp-item .contact-icon svg { fill: white; stroke: none; }
.contact-info-label { font-weight: 600; color: var(--brand-darkgreen); margin-bottom: 0.125rem; }
.whatsapp-item .contact-info-label { color: white; }
.contact-info-value { color: var(--brand-forest); font-size: 0.9375rem; }
.contact-info-value.small { font-size: 0.8125rem; color: #dcfce7; }

.contact-form-wrap {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(74,124,67,.1);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--gray-700); margin-bottom: 0.375rem; }
.form-group input,
.form-group textarea {
  width: 100%;
  border: 2px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
  color: var(--gray-700);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--brand-darkgreen); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-grid { grid-template-columns: 1fr; } }
.form-group textarea { resize: none; }
.form-submit {
  width: 100%;
  background: var(--brand-darkgreen);
  color: var(--white);
  border: none;
  border-radius: 0.75rem;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover { background: var(--brand-forest); }
.form-submit:disabled { background: var(--gray-400); cursor: not-allowed; }
.form-success {
  text-align: center;
  padding: 3rem 0;
  display: none;
}
.form-success.show { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.success-title { font-size: 1.5rem; font-weight: 700; color: var(--brand-darkgreen); margin-bottom: 0.5rem; }
.success-text { color: var(--gray-600); }

/* ============================================================
   AFSPRAAK PAGE
   ============================================================ */
.afspraak-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.afspraak-box {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(74,124,67,.1);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}
.date-btn {
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-size: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Inter', sans-serif;
}
.date-btn:hover { border-color: var(--brand-forest); color: var(--brand-darkgreen); }
.date-btn.selected { border-color: var(--brand-darkgreen); background: var(--brand-darkgreen); color: var(--white); }
.timeslot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1rem 0 1.5rem; }
.timeslot-btn {
  padding: 0.875rem;
  border-radius: 0.5rem;
  border: 2px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}
.timeslot-btn:hover { border-color: var(--brand-forest); color: var(--brand-darkgreen); }
.timeslot-btn.selected { border-color: var(--brand-darkgreen); background: var(--brand-darkgreen); color: var(--white); }
.timeslot-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.step-heading { font-size: 1.125rem; font-weight: 700; color: var(--brand-darkgreen); margin-bottom: 0.5rem; font-family: 'Playfair Display', serif; }
.step-sub { font-size: 0.875rem; color: var(--gray-600); margin-bottom: 1rem; }
.afspraak-divider { border: none; border-top: 1px solid var(--gray-200); margin: 1.5rem 0; }

/* ============================================================
   WORDPRESS DEFAULT OVERRIDES
   ============================================================ */
.wp-block-image img { border-radius: 0.5rem; }
.wp-pagenavi { display: flex; gap: 0.5rem; justify-content: center; padding: 2rem 0; }
