.nav-pills .nav-link { border: 1px solid var(--border); color: var(--ink); }
.nav-pills .nav-link.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.nav-pills .nav-link:hover { border-color: #000; }
/* Font imports removed - using main font imports from HTML */

:root {
  --brand: #B58D4F; /* logo color - perfect bronze match */
  --brand-600: #996F3B;
  --brand-hover: #D4A673; /* lighter hover state */
  --brand-light: #E6D2B3; /* very light version */
  --ink: #1F1F1F; /* unified with main styles */
  --muted: #6b7280;
  --border: color-mix(in oklab, #000 8%, #fff);
  --light: #f8f7f5;
  --paper: #FFFFFF;
  --mist: #F6F6F6;
  --line: #E6E2DD;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  padding-top: 82px; /* ruimte gelijk aan headerhoogte */
}

.topbar { background: #fff; color: var(--muted); border-bottom: 1px solid var(--border); }
.topbar .topbar-link { color: var(--muted); opacity: 1; }
.topbar .topbar-link:hover { color: var(--ink); }
.btn-xs { padding: 6px 12px; font-size: 12px; line-height: 1; }

.logo {
  width: 150px;
}
.hero-image{
  height: 500px;
  object-fit: cover;
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: 1px solid var(--brand);
  font-size: 16px;
  line-height: 20px;
  padding: 10px 22px;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

/* Smooth button hover */
.btn-brand, .btn-brand-2 { transition: transform .2s ease, box-shadow .2s ease; }
/* Unified CTA hover effect */
.btn-brand:hover,
.btn-brand:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(181,141,79,0.28);
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: #fff;
}
.btn-brand-2:hover, .btn-brand-2:focus { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.btn-brand-2 { background: transparent; color: var(--ink); border: 1px solid var(--border); font-size: 16px; line-height: 18px; padding: 10px 22px; }

/* Navigation gap handled in main navbar styles section */
.text-brand {
  color: var(--brand) !important;
}
.bg-brand-soft { background: #f6f6f6; }
.bg-brand {
  background-color: var(--brand);
}
.nav-height {
  height: 82px;
}

/* Hero Section */

.hero-section {
  min-height: 500px;
}

.hero-bg {
  background: url('../images/hero-image.webp') center center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 2s ease-in-out;
}
.hero-section:hover .hero-bg {
  transform: scale(1.1);
}

/* Inline-to-external: hero helpers */
.hero-bg-pattern { top: 0; left: 0; z-index: 0; }
.hero-container { z-index: 2; }
.hero-row { min-height: 60vh; padding: 4.5rem 0 3rem 0; }
.hero-content-card { padding: 3rem; }
.hero-decoration { top: -10px; left: -10px; width: 60px; height: 60px; background: linear-gradient(135deg, var(--brand), var(--brand-hover)); border-radius: 50%; opacity: 0.1; }

/* Show mobile hero on small screens, hide on lg+ where desktop hero is shown */
.site-hero-mobile { display: block; }
@media (min-width: 992px){ .site-hero-mobile { display: none; } }
.desktop-hero h1 { font-size: 42px; }
@media (min-width: 1200px) {
  .desktop-hero h1 { font-size: 52px; }
}
.desktop-hero form .form-label { font-weight: 600; }
.desktop-hero .form-control, .desktop-hero .form-select { border-radius: .5rem; }
.certified-logo {
  max-width: 70px;
  transition: transform 0.4s ease;
}

.certified-logo:hover {
  transform: scale(1.05) rotate(-2deg);
}


.hero-section .overlay { display: none; }
.hero-paragraph{
  font-size: 16px;
}

.shadow-soft { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.paragraph {
  font-size: 16px;
}
.main-heading {
  font-size: 34px;
}

/* project-section */


.project-overlay {
  position: relative;
  overflow: hidden;
}

.project-overlay img { object-fit: cover; height: 300px; transition: none; }
.project-overlay:hover img { transform: none; }
.project-overlay .overlay-text { background: linear-gradient(to top, rgba(0,0,0,0.45), transparent); }

.overlay-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
}

.btn-close.custom-close {
  background-color: black !important;  
  border-radius: 20%;                 
  opacity: 0.8;                          
  width: 1.2rem;                   
  height: 1.2rem;
}
.btn-close.custom-close::after {
  content: "×";               
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.monumentaal-image {
  transition: transform 0.5s ease;
   height: 300px;
  object-fit: cover;
}

.monumentaal-image:hover {
  transform: scale(1.05);
}

/* about-section */

.about-img {
  object-fit: cover;
  height: 240px;
}

/* services-section */
.services-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.services-card h3,
.services-card p,
.services-card i {
  transition: color 0.3s ease;
}

.services-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
/* Unified hover animation */
.hover-animate, .feature-card, .services-card, .usp-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-animate:hover, .feature-card:hover, .services-card:hover, .usp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.card-title {
  font-size: 20px;
}
.services-subtitle {
  font-size: 20px;
}

/* Feature card (replaces brown blocks) */
.feature-card { background: #fff; border: 1px solid var(--border); }
.feature-card h4 { color: #111; }
.feature-card p { color: #6c757d; }

/* Section spacing - aangepast voor fixed header */
section {
  scroll-margin-top: clamp(100px, 12vh, 120px);
}
section + section { margin-top: 0; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.container { max-width: 1140px; }
.section-subtitle { max-width: 760px; margin-left: auto; margin-right: auto; }

/* Services modern alignment */
.services-modern .container-xl { max-width: 1100px; }

/* Plain, aligned service cards */
.services-plain-grid { row-gap: 1.25rem !important; }
.service-plain { border: 1px solid var(--border); box-shadow: 0 8px 20px rgba(0,0,0,0.04); background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%); transition: transform .35s cubic-bezier(0.22,1,0.36,1), box-shadow .35s ease, border-color .35s ease; }
.service-plain:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.12); border-color: rgba(181,141,79,0.28); }
.service-plain:focus, .service-plain:focus-visible { outline: none; box-shadow: 0 12px 28px rgba(0,0,0,0.08), 0 0 0 2px rgba(181,141,79,0.25) inset; }
.service-plain a:focus, .service-plain a:focus-visible { outline: none; box-shadow: none; }
.service-icon { width: 48px; height: 48px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--brand-light); color: var(--brand); flex-shrink: 0; }
.service-icon i { font-size: 20px; }

/* Brand-aligned links inside services section */
.services-modern a { color: var(--brand); text-decoration: none; }
.services-modern a.link-underline { position: relative; }
.services-modern a.link-underline::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.services-modern a.link-underline:hover::after { transform: scaleX(1); }
.services-modern a:hover { color: var(--brand-600); }

@media (max-width: 767.98px) {
  .services-modern .row > [class^="col-"] { margin-bottom: 0; }
}

/* Intro section alignment to match hero/form width and rhythm */
.intro-aligned .container-xl { max-width: 1100px; }
.intro-aligned .section-title { letter-spacing: -0.01em; }
.intro-aligned .section-subtitle { color: #6e6e73; }

/* About reference block alignment */
.about-ref .container-xl { max-width: 1100px; }

/* Local (Hilversum page) step numbers - bold, centered badge without affecting homepage */
.werkwijze-compact .step-card { position: relative; overflow: visible; padding-right: 72px; }
.werkwijze-compact .step-card { background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%); border: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.06); transition: transform .35s cubic-bezier(0.22,1,0.36,1), box-shadow .35s ease, border-color .35s ease; }
.werkwijze-compact .step-card:hover { transform: translateY(-4px); box-shadow: 0 22px 46px rgba(0,0,0,0.12); border-color: rgba(181,141,79,0.28); }
.werkwijze-compact .step-number-badge {
  position: absolute;
  top: -10px; right: -10px; left: auto;
  transform: none;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-600));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 24px; letter-spacing: -0.02em;
  box-shadow: 0 10px 24px rgba(181,141,79,0.35);
  opacity: 0.14; /* subtle behind content */
  transition: transform .35s cubic-bezier(0.22,1,0.36,1), opacity .35s ease, top .35s ease;
  will-change: transform, opacity, top;
  pointer-events: none;
}
.werkwijze-compact .step-card:hover .step-number-badge { opacity: 0.22; top: -14px; right: -14px; transform: scale(1.08) rotate(-2deg); }

/* Bring content above the badge */
.werkwijze-compact .step-card > .step-icon,
.werkwijze-compact .step-card > h3,
.werkwijze-compact .step-card > p { position: relative; z-index: 2; }

/* Subtle entrance animation */
.werkwijze-compact .step-card { animation: stepFloatIn .6s ease both; }
.werkwijze-compact .col-md-6.col-lg-3:nth-child(1) .step-card { animation-delay: .05s; }
.werkwijze-compact .col-md-6.col-lg-3:nth-child(2) .step-card { animation-delay: .15s; }
.werkwijze-compact .col-md-6.col-lg-3:nth-child(3) .step-card { animation-delay: .25s; }
.werkwijze-compact .col-md-6.col-lg-3:nth-child(4) .step-card { animation-delay: .35s; }

@keyframes stepFloatIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive tuning for smaller screens */
@media (max-width: 767.98px) {
  .werkwijze-compact .step-card { padding-right: 56px; }
  .werkwijze-compact .step-number-badge { width: 48px; height: 48px; font-size: 20px; right: -6px; top: -6px; transform: none; }
}

/* Premium hero panel micro-polish (Hilversum page only) */
.location-hero__panel.hero-content-apple { border: 1px solid rgba(181,141,79,0.18); box-shadow: 0 20px 60px rgba(181,141,79,0.10), 0 8px 26px rgba(0,0,0,0.06); }
.location-hero__panel.hero-content-apple:hover { box-shadow: 0 26px 80px rgba(181,141,79,0.14), 0 12px 34px rgba(0,0,0,0.08); }

/* Projects hover polish */
#projecten-hilversum .project-card:hover .project-overlay { opacity: 1; }
#projecten-hilversum .project-card:hover .card-img-top { transform: scale(1.03); filter: saturate(1.02) contrast(1.02); }

/* CTA hover for 'Bekijk alle projecten' */
#projecten-hilversum .btn.btn-brand {
  transition: transform .3s cubic-bezier(0.22,1,0.36,1), box-shadow .3s ease;
}
#projecten-hilversum .btn.btn-brand:hover,
#projecten-hilversum .btn.btn-brand:focus {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(181,141,79,0.35);
  background: var(--brand-600) !important;
  border-color: var(--brand-600) !important;
  color: #fff !important;
  text-shadow: 0 1px 0 rgba(0,0,0,0.12);
}

@media (prefers-reduced-motion: reduce) {
  .service-plain, .werkwijze-compact .step-card, .location-hero__panel.hero-content-apple { transition: none !important; }
  .werkwijze-compact .step-card { animation: none !important; }
}
/* Ensure Over Bart CTA remains readable on hover */
.about-ref .btn.btn-brand {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  color: #fff !important;
}
.about-ref .btn.btn-brand:hover,
.about-ref .btn.btn-brand:focus {
  background: var(--brand-600) !important;
  border-color: var(--brand-600) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(181,141,79,0.25) !important;
}

.light-box-image {
  height: 400px;
  object-fit: cover;
}

/* Projects grid images */
.project-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Mobile filter chips grid */
.mobile-project-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}
.mobile-project-filters .btn {
  width: 100%;
  border-radius: 999px;
  padding: 10px 14px;
}
/* Load more button aligned with primary CTA */
.load-more-btn {
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: 1px solid var(--brand);
  border-radius: 8px;
  padding: 10px 22px;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.load-more-btn:hover,
.load-more-btn:focus {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(181,141,79,0.28);
}
/* Keep two columns for all mobile widths */
@media (min-width: 480px) and (max-width: 767.98px) {
  .mobile-project-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Simple CSS masonry on mobile: 2 cols with auto-rows */
@media (max-width: 767.98px) {
  #projectGrid {
    display: grid !important;
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: 16px;
  }
  #projectGrid > [class*="col-"] { /* bootstrap cols inside */
    width: 100% !important;
    margin: 0 !important;
  }
  /* Make cards have natural varying heights while images keep aspect via container */
  .project-image-container { aspect-ratio: 1 / 1; }
}

/* ===== Mobile filter feedback ===== */
@keyframes filterFlash {
  0% { box-shadow: 0 0 0 0 rgba(181,141,79,0.0); transform: translateY(0) scale(1); }
  40% { box-shadow: 0 0 0 8px rgba(181,141,79,0.18); transform: translateY(-2px) scale(1.01); }
  100% { box-shadow: 0 0 0 0 rgba(181,141,79,0.0); transform: translateY(0) scale(1); }
}

.filter-flash {
  animation: filterFlash 600ms ease;
  border-color: var(--brand) !important;
}

.contact-text {
  font-size: 20px;
  margin-bottom: 6px;
}

/* Reviews/contact tightening */
#reviews .card { border: 1px solid var(--border); box-shadow: none; }
#contact .form-label { font-weight: 600; }

/* Inline-to-external: repeated helpers */
.hidden-project { display: none; }
.review-avatar { width: 40px; height: 40px; }

/* Limit visible reviews on mobile */
@media (max-width: 575.98px) {
  #reviews:not(.show-all) .row.g-4 > .col-md-6.col-lg-4:nth-child(n+4) { display: none; }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  #reviews:not(.show-all) .row.g-4 > .col-md-6.col-lg-4:nth-child(n+5) { display: none; }
}

/* Subtle mobile-only "Meer reviews" link */
.reviews-more-link { 
  background: transparent; 
  border: none; 
  color: var(--brand); 
  font-weight: 600; 
  padding: 6px 10px; 
  border-radius: 999px; 
}
.reviews-more-link:focus { outline: none; }
.reviews-more-link:hover { text-decoration: underline; }
@media (min-width: 768px) { .reviews-more-link { display: none !important; } }

/* FAQ Accordion Styling */
#faq .accordion-item {
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

#faq .accordion-button {
  background-color: var(--light);
  color: black;
  font-weight: 500;
  font-size: 18px;
  border: none;
  box-shadow: none !important;
  transition: background-color 0.3s ease;
}

#faq .accordion-button:not(.collapsed) {
  background-color: var(--brand);
  color: #fff;
  box-shadow: none !important;
}

#faq .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

#faq .accordion-button:focus {
  box-shadow: none;
}

#faq .accordion-body {
  background-color: #fff;
  color: #6c757d;
  padding: 1rem 1.25rem;
}
/* extra-info section styles */
.extra-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.extra-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.primary-icon {
  background-color: #0d6efd; 
  color: #fff;
}

.success-icon {
  background-color: #198754; 
  color: #fff;
}

.warning-icon {
  background-color: #ffc107; 
  color: #fff;
}

/* testimonial-section */

.swiper-pagination-bullet {
  background: #ccc; 
  opacity: 1;     
}

/* Active dot */
.swiper-pagination-bullet-active {
  background: var(--brand) !important; 
}

.mySwiper .swiper-slide {
  display: flex;
  height: auto; 
}

.mySwiper .card {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%; 
}

/* USP cards */
.usp-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.usp-icon {
  line-height: 1;
}

/* Werkwijze steps */
/* Definitive timeline design */
.workflow__sticky { position: sticky; top: 82px; background: #fff; border: 1px solid var(--border); padding: 10px 14px; box-shadow: 0 4px 14px rgba(0,0,0,.04); margin-bottom: 24px; border-radius: .75rem; z-index: 10; }
.workflow__progress { height: 6px; background: var(--light); border-radius: 999px; overflow: hidden; }
.workflow__progressbar { height: 100%; width: 0%; background: var(--brand); transition: width .4s ease; }

/* Desktop: true horizontal timeline */
.workflow { position: relative; }
/* Bump desktop breakpoint to xl (>=1200px) */
@media (min-width: 1200px) {
  .workflow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: start; }
  
  /* Dotted route line */
  .workflow::before { 
    content: ""; 
    position: absolute; 
    top: 50px; 
    left: 12.5%; 
    right: 12.5%; 
    height: 3px; 
    background-image: repeating-linear-gradient(90deg, #ddd 0, #ddd 8px, transparent 8px, transparent 16px);
    z-index: 1;
  }
  
  /* Progress route coloring */
  .workflow::after { 
    content: ""; 
    position: absolute; 
    top: 50px; 
    left: 12.5%; 
    height: 3px; 
    background: var(--brand); 
    width: var(--wf-progress, 0%); 
    max-width: 75%;
    transition: width .4s ease; 
    z-index: 2;
  }
}

/* Timeline steps */
.workflow__step { 
  position: relative; 
  background: #fff; 
  border: 2px solid var(--line); 
  border-radius: .75rem; 
  padding: 20px 16px; 
  box-shadow: 0 6px 20px rgba(0,0,0,.08); 
  transition: all .3s ease;
  cursor: pointer;
  z-index: 3;
}

.workflow__step[aria-current="step"] { 
  border-color: var(--brand); 
  transform: translateY(-4px) scale(1.02); 
  box-shadow: 0 12px 32px rgba(0,0,0,.15); 
  background: #fefefe;
}

.workflow__step[aria-current="step"] .workflow__icon { 
  transform: scale(1.15); 
  background: var(--brand); 
  color: #fff; 
  animation: pulse-icon 0.3s ease;
}

@keyframes pulse-icon { 0% { transform: scale(1.15); } 50% { transform: scale(1.25); } 100% { transform: scale(1.15); } }

.workflow__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.workflow__dot { width: 32px; height: 32px; border-radius: 50%; background: var(--brand-light); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.workflow__icon { width: 42px; height: 42px; border-radius: 50%; background: var(--brand-light); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; transition: all .3s ease; }
.workflow__icon i { font-size: 22px; }
.workflow__title { font-weight: 700; margin: 0; font-size: 16px; }
.workflow__sub { color: #6c757d; margin: 0 0 12px; font-size: 13px; line-height: 1.3; }
.workflow__list { margin: 0; padding-left: 16px; font-size: 14px; }
.workflow__list li { margin-bottom: 6px; color: #555; }

/* Mobile: vertical timeline one-per-screen */
@media (max-width: 991.98px) {
  .workflow { display: block; }
  .workflow__step { 
    scroll-margin-top: 120px; 
    scroll-snap-align: start; 
    margin-bottom: 20px;
    min-height: 60vh;
  }
  .workflow__step .workflow__icon { width: 48px; height: 48px; } /* 44px+ touch target */
  .workflow__step .workflow__icon i { font-size: 24px; }
  .workflow__mobile-cta { 
    position: sticky; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    background: rgba(255,255,255,.95); 
    -webkit-backdrop-filter: blur(8px); 
    backdrop-filter: blur(8px); 
    padding: 12px 0; 
    border-top: 1px solid var(--border); 
    z-index: 10;
  }
}

/* Brand logos */
.brand-logos img { filter: grayscale(100%); opacity: 0.9; transition: all .3s ease; }
.brand-logos img:hover { filter: grayscale(0%); opacity: 1; }

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  background: rgba(17,17,17,0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 10px 12px calc(12px + env(safe-area-inset-bottom));
  z-index: 1050;
}
.sticky-cta-item {
  color: #fff;
  text-decoration: none;
  background: var(--brand);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--brand-600);
}
.sticky-cta-item:active { transform: scale(0.98); }

/* Floating desktop action buttons */
.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1040;
}
.fab-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #111; color: #fff; border: 1px solid color-mix(in oklab, #000 25%, #fff);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.fab-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.25); }
.fab-btn.whatsapp { background: #25D366; border-color: #1ebc57; }
.fab-btn.call { background: var(--brand); border-color: var(--brand-600); }


footer a {
  color: inherit;
  opacity: 0.9;
}
footer a:hover {
  opacity: 1;
}

/* Footer layout polish */
.site-footer {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  padding: 2rem 0 1rem;
}
.site-footer .h6,
.site-footer h5,
.site-footer strong {
  font-weight: 600; /* remove overly bold look */
}
.site-footer p,
.site-footer li,
.site-footer a {
  font-weight: 400; /* ensure normal weight text */
}
.site-footer .quote-highlight {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: .5rem;
  padding: 1rem;
  margin: 1rem 0;
  font-size: 1rem;
}
.site-footer .footer-bottom {
  gap: 12px;
}
.footer-credit-link { text-decoration: underline; text-underline-offset: 2px; }
.footer-credit-link:hover { color: var(--brand); }

/* Ensure page height fits content and avoid extra scroll past footer */
html, body { height: 100%; }
body.no-mobile-dock { padding-bottom: 0 !important; }

/* Footer contact list */
.footer-contact { color: #6c757d; }
.footer-contact li { margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.footer-contact-name { color: #111; font-weight: 600; margin-bottom: 2px; }
.footer-contact i { color: var(--brand); opacity: .9; width: 16px; text-align: center; }
.footer-contact a:hover { color: var(--brand); }

/* New premium footer layout (Hilversum page) */
.site-footer .footer-grid { display: grid; grid-template-columns: auto 1fr 1fr; gap: 32px; align-items: start; padding: 32px 0 20px; border-top: 1px solid var(--border); }
.site-footer .footer-title { font-weight: 700; letter-spacing: .2px; margin-bottom: 12px; font-size: 1rem; }
.site-footer .footer-text { color: #6e6e73; margin: 0; line-height: 1.65; font-size: .95rem; }
.site-footer .footer-col:first-child { max-width: 360px; }
.site-footer .footer-col:first-child .footer-text { max-width: 340px; }
.site-footer .footer-brand img { width: 150px; height: auto; }
.site-footer .footer-brand strong { white-space: nowrap; }
.site-footer .footer-brand .brand-lines { display: flex; flex-direction: column; line-height: 1.1; }
.site-footer .footer-brand .brand-top { letter-spacing: .3px; }
.site-footer .footer-brand .brand-name { white-space: nowrap; font-weight: 800; letter-spacing: .2px; }
.site-footer .footer-links li { margin-bottom: 8px; }
.site-footer .footer-links a { position: relative; color: var(--ink); text-decoration: none; transition: color .2s ease; }
.site-footer .footer-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.site-footer .footer-links a:hover { color: var(--brand); }
.site-footer .footer-links a:hover::after { transform: scaleX(1); }
.site-footer .footer-bottom { border-top: 1px solid var(--border); margin-top: 14px; padding-top: 12px !important; }

/* Brand row polish */
.site-footer .footer-brand img { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.06)); transition: transform .25s ease; }
.site-footer .footer-brand img:hover { transform: scale(1.02); }
.site-footer .footer-brand strong { font-weight: 800; letter-spacing: .2px; }

/* Icon & link colors in contact */
.site-footer .footer-contact i { color: var(--brand); opacity: .9; width: 16px; text-align: center; }
.site-footer .footer-contact li { margin-bottom: 8px; }
.site-footer .footer-col:first-child .footer-text { margin-bottom: 12px; }
.site-footer .footer-col:first-child .footer-contact { margin-top: 12px !important; }
.site-footer .footer-contact a { color: var(--ink); text-decoration: none; }
.site-footer .footer-contact a:hover { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }

/* Small CTA button in footer */
.site-footer .btn.btn-sm { padding: 8px 14px; font-weight: 700; border-radius: 999px; transition: transform .25s ease, box-shadow .25s ease; }
.site-footer .btn.btn-sm.btn-brand { background: var(--brand) !important; border-color: var(--brand) !important; color: #fff !important; box-shadow: 0 6px 18px rgba(181,141,79,0.25); }
.site-footer .btn.btn-sm.btn-brand:hover, .site-footer .btn.btn-sm.btn-brand:focus { background: var(--brand-600) !important; border-color: var(--brand-600) !important; color: #fff !important; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(181,141,79,0.32); }

/* Footer credit link hover */
.site-footer .footer-credit-link { color: var(--ink); text-decoration: none; position: relative; }
.site-footer .footer-credit-link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.site-footer .footer-credit-link:hover { color: var(--brand); }
.site-footer .footer-credit-link:hover::after { transform: scaleX(1); }

@media (max-width: 991.98px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; padding: 24px 0 16px; }
}
@media (max-width: 575.98px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 16px; padding: 22px 0 14px; }
  .site-footer .footer-title { font-size: .95rem; }
}

/* Compact quality badges inside footer */
.footer-qualities { border-top: 1px solid var(--border); padding-top: 10px; }
.q-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border: 1px solid rgba(181,141,79,0.2); border-radius: 999px; background: rgba(181,141,79,0.08); color: var(--ink); font-weight: 600; font-size: .9rem; }
.q-badge i { color: var(--brand); }

/* Footer brand logos row */
.footer-brands { border-top: 1px solid var(--border); padding-top: 14px; margin-top: 8px; margin-bottom: 8px; }
.footer-brand-logos { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-brand-logos img { height: 28px; width: auto; filter: grayscale(0%); opacity: .9; transition: transform .2s ease, opacity .2s ease; }
.footer-brand-logos img:hover { transform: translateY(-1px); opacity: 1; }

@media (min-width: 576px) {
  .logo {
    width: 200px;
  }
  .nav-height {
    height: 100px;
  }
  .about-img {
    object-fit: cover;
    height: 480px;
  }
  .light-box-image {
    height: 600px;
    object-fit: cover;
  }
   .hero-section {
  min-height: 600px;
}
}
/* Navbar toggler styles moved to main navbar responsive section */

@media (min-width: 768px) {
  .main-heading {
    font-size: 42px;
  }
  .hero-section {
  min-height: 90vh;
}
.hero-content {
  min-height: 90vh;
  padding: 5rem 1rem; 
}
.hero-paragraph{
  font-size: 18px;
  max-width: 710px;
}

  /* Tablet-specific adjustments for desktop hero */
  .hero-desktop .hero-title { font-size: clamp(32px, 5vw, 44px); }
  .hero-desktop .hero-description { font-size: 16px; }
  .hero-desktop .hero-ctas .btn { padding: 10px 18px; }
  .hero-desktop .row { row-gap: 2rem; }
  .hero-main-image { max-height: 60vh; }
}

/* ===== Modern section headers (2025) ===== */
.section-eyebrow { display: inline-block; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.section-title { font-weight: 800; line-height: 1.1; }
.section-subtitle {
  color: #6c757d;
}

/* ===== MODERNE DIENSTEN TAB STYLING ===== */

/* Container styling - verwijder de lelijke lijn */
.service-nav-wrapper {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(181, 141, 79, 0.1);
  border-radius: 20px;
  padding: 16px 12px; /* Extra verticale padding voor hover effects */
  margin: 3rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: visible; /* Laat hover effects zichtbaar */
}

/* Navigation arrows */
.service-nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(181, 141, 79, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  color: var(--brand);
  flex-shrink: 0;
}

.service-nav-arrow:hover {
  background: var(--brand);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(181, 141, 79, 0.3);
}

.service-nav-arrow:active {
  transform: scale(0.95);
}

.service-nav-arrow:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Active clicking animation */
.service-nav-arrow.clicking {
  transform: scale(0.9);
  background: var(--brand);
  color: #fff;
}

.service-nav-arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Tabs container flexbox */
.service-tabs-container {
  flex: 1;
  overflow: visible; /* Laat tab hover effects zichtbaar */
  padding: 4px 0; /* Extra ruimte voor hover schaduwen */
}

/* Tab pills styling */
.service-tabs.nav-pills {
  background: transparent;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-tabs .nav-link {
  background: rgba(248, 249, 250, 0.8);
  color: var(--ink);
  border: 1px solid rgba(181, 141, 79, 0.1);
  border-radius: 50px;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.service-tabs .nav-link::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(181, 141, 79, 0.1) 0%, rgba(181, 141, 79, 0.15) 100%);
  border-radius: 50px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.service-tabs .nav-link:hover {
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(181, 141, 79, 0.15);
  border-color: rgba(181, 141, 79, 0.2);
}

.service-tabs .nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Hover state met z-index om afkapping te voorkomen */
.service-tabs .nav-link:hover {
  position: relative;
  z-index: 10;
}

.service-tabs .nav-link.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(181, 141, 79, 0.3);
  font-weight: 600;
}

.service-tabs .nav-link.active::before {
  display: none;
}

/* Responsive tabs */
@media (max-width: 991.98px) {
  .service-nav-wrapper {
    padding: 12px 10px;
    border-radius: 16px;
  }
  
  .service-nav-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .service-tabs {
    gap: 4px;
    flex-wrap: wrap;
  }
  
  .service-tabs .nav-link {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* Desktop eerste - verberg mobile accordion */
.mobile-service-accordion {
  display: none;
}

/* Mobile accordion layout */
@media (max-width: 767.98px) {
  /* Verberg de normale tab navigation op mobile */
  .service-nav-wrapper {
    display: none !important;
  }
  
  /* Toon accordion op mobile */
  .mobile-service-accordion {
    display: block !important;
    margin: 2rem 0;
  }
  
  .mobile-service-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(181, 141, 79, 0.1);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  }
  
  .mobile-service-header {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(181, 141, 79, 0.05) 0%, rgba(181, 141, 79, 0.1) 100%);
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    transition: all 0.3s ease;
  }
  
  .mobile-service-header:hover {
    background: linear-gradient(135deg, rgba(181, 141, 79, 0.1) 0%, rgba(181, 141, 79, 0.15) 100%);
    color: var(--brand);
  }
  
  .mobile-service-header.active {
    background: var(--brand);
    color: #fff;
  }
  
  .mobile-service-chevron {
    font-size: 14px;
    transition: transform 0.3s ease;
  }
  
  .mobile-service-header.active .mobile-service-chevron {
    transform: rotate(180deg);
  }
  
  .mobile-service-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fff;
  }
  
  .mobile-service-content.active {
    padding: 20px;
    max-height: 2000px; /* Ruim genoeg voor alle content */
  }
  
  .mobile-service-content .service-header {
    margin-bottom: 1rem;
  }
  
  .mobile-service-content .service-header h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--brand);
  }
}

/* Kleine mobile telefoons */
@media (max-width: 575.98px) {
  .service-nav-wrapper {
    padding: 12px;
    margin: 2rem 0;
    border-radius: 16px;
  }
  
  .service-tabs {
    gap: 6px;
  }
  
  .service-tabs .nav-link {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 10px;
  }
}

/* Extra kleine schermen */
@media (max-width: 480px) {
  .service-nav-wrapper {
    padding: 10px;
    margin: 1.5rem 0;
  }
  
  .service-tabs {
    gap: 4px;
  }
  
  .service-tabs .nav-link {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 8px;
  }
}

/* Decorative underline for titles */
.section-title-underline { display: inline-block; }

/* Gradient text utility */
.text-gradient { color: inherit; background: none; -webkit-background-clip: initial; background-clip: initial; }

/* Soft border utility */
.border-soft { border: 1px solid var(--border); }

/* Subtle float animation utility */
.float-sm {
  animation: float-sm 6s ease-in-out infinite;
}
@keyframes float-sm {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Modern link underline */
.link-underline {
  text-decoration: none;
  position: relative;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.link-underline:hover::after {
  transform: scaleX(1);
}

/* ===== MODERN HEADER STYLING ===== */
.navbar {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.98) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(181, 141, 79, 0.08);
  transition: all 0.3s ease;
  padding: clamp(8px, 1.2vw, 16px) 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.02);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, 
    rgba(181, 141, 79, 0.01) 0%, 
    rgba(181, 141, 79, 0.02) 50%, 
    rgba(181, 141, 79, 0.01) 100%);
  pointer-events: none;
}

/* Navbar scroll state */
.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(25px) !important;
  border-bottom: 1px solid rgba(181, 141, 79, 0.2) !important;
  box-shadow: 0 8px 32px rgba(181, 141, 79, 0.1) !important;
}

.navbar.is-scrolled::before {
  background: linear-gradient(90deg, 
    rgba(181, 141, 79, 0.03) 0%, 
    rgba(181, 141, 79, 0.05) 50%, 
    rgba(181, 141, 79, 0.03) 100%);
}

/* Brand styling */
.navbar-brand {
  position: relative;
  z-index: 10;
  transition: transform 0.2s ease;
}

.navbar-brand:hover {
  transform: scale(1.02);
}

.navbar-brand img {
  height: clamp(42px, 5.2vw, 60px);
  width: auto;
  transition: all 0.2s ease;
  filter: drop-shadow(0 2px 6px rgba(181, 141, 79, 0.08));
}

/* Navigation links */
.navbar-nav {
  position: relative;
  z-index: 10;
  gap: clamp(16px, 2.5vw, 24px);
  align-items: center;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.75rem 1rem !important;
  margin: 0;
  color: var(--ink) !important;
  position: relative;
  transition: all 0.25s ease;
  border-radius: 10px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(181, 141, 79, 0.08) 0%, rgba(181, 141, 79, 0.12) 100%);
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.25s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; 
  transform: translateX(-50%) scaleX(0);
  width: 18px; height: 2px;
  background: var(--brand);
  border-radius: 1px;
  transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--brand) !important;
  transform: translateY(-1px);
}

.navbar-nav .nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.navbar-nav .nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link.active {
  color: var(--brand) !important;
  font-weight: 600;
}

.navbar-nav .nav-link.active::before {
  opacity: 1;
  transform: scale(1);
}

.navbar-nav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Dropdown styles removed - using simple navigation */

/* Mobile navbar optimizations */
@media (max-width: 991.98px) {
  .navbar-nav {
    gap: 4px;
    padding-top: 1rem;
    width: 100%;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0;
    border-radius: 8px;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .navbar-nav {
    gap: 6px;
  }
  
  .navbar-toggler {
    font-size: 16px;
    border: none;
    padding: 0.4rem 0.6rem;
  }
  
  .navbar-brand img {
    height: 40px;
  }
}

/* Hero refinements */
.hero-section .main-heading { letter-spacing: -.01em; }
.hero-section .btn { will-change: transform; }

/* ===== Location page hero (distinct variant) ===== */
.location-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vh, 160px) 0 clamp(56px, 10vh, 96px);
  background: linear-gradient(135deg, rgba(181,141,79,0.06) 0%, rgba(255,255,255,0.0) 60%);
}
.location-hero__bg {
  position: absolute;
  inset: 0;
}
.location-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Desktop Variant A: subtle top-to-bottom gradient for readability */
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.08) 100%);
}
.location-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 70% 40%, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 60%, rgba(255,255,255,0.6) 100%);
}
.location-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: saturate(0.95) contrast(1.02);
  transform: scale(1.02);
}
.location-hero .container-xl { position: relative; z-index: 2; }
.location-hero .section-badge { margin-bottom: 14px; }
.location-hero__panel {
  background: rgba(255,255,255,0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: clamp(18px, 2.5vw, 24px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}
.location-hero__title { font-weight: 800; letter-spacing: -0.02em; color: #1d1d1f; font-size: clamp(32px, 4.5vw, 56px); }
.location-hero__subtitle { color: #6e6e73; max-width: 720px; }
.location-hero__ctas { gap: 12px; }
.location-hero__trust { gap: 16px; margin-top: 12px; color: #555; }

/* Hero form card */
.location-hero__form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
  padding: 20px;
}
.location-hero__form-card.premium {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
  border: 1px solid rgba(181, 141, 79, 0.25);
  box-shadow: 0 24px 60px rgba(181, 141, 79, 0.15), 0 10px 30px rgba(0,0,0,0.06);
  overflow: hidden;
}
.location-hero__form-card.premium::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-hover) 100%);
}
.location-hero__form-card .form-subtle {
  color: #6e6e73;
}
.form-trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.form-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(181, 141, 79, 0.08);
  color: var(--brand);
  border: 1px solid rgba(181, 141, 79, 0.18);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
}
/* Mobile: align CTA buttons like USP badges (full-width, centered) */
@media (max-width: 575.98px) {
  .location-hero__form-card .btn {
    border-radius: 999px;
  }
  .w-sm-auto { width: auto !important; }
}
.location-hero__form-card.premium .form-control,
.location-hero__form-card.premium .form-select {
  border-radius: 12px;
  border-color: rgba(0,0,0,0.1);
}
.location-hero__form-card.premium .form-control:focus,
.location-hero__form-card.premium .form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.2rem rgba(181,141,79,0.15);
}
.location-hero__form-card .form-label { font-weight: 600; }
.location-hero__form-card .form-control,
.location-hero__form-card .form-select { border-radius: 12px; }
.location-hero__form-card .btn { width: 100%; }

/* Desktop hero redesign: single-column stack with strong hierarchy */
@media (min-width: 992px) {
  .location-hero .row.align-items-center > .col-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 2.5vw, 28px);
  }

  /* Center container, keep max width comfortable */
  .location-hero .container-xl { max-width: 1200px; }

  /* Content panel spacing and left alignment for readability */
  .location-hero__panel.hero-content-apple {
    padding: clamp(28px, 3.2vw, 56px) clamp(28px, 3vw, 56px) !important;
    width: 100%;
    max-width: 1100px;
    text-align: center;
  }

  /* Place the accent directly under the Hilversum line */
  .hero-slogan { 
    text-align: left; 
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
  }
  .slogan-accent { margin-left: 0; margin-right: 0; width: 64px; height: 3px; }
  .hero-title-apple { text-align: center; margin-bottom: 1rem; }
  .hero-description-apple { text-align: center; margin-left: auto; margin-right: auto; max-width: 60ch; }
  .hero-ctas-apple { justify-content: center; margin: 0 0 1rem 0; }

  /* Hide duplicate trust badges in the form on desktop */
  .location-hero__form-card .form-trust-row { display: none !important; }

  /* Form sits below as its own card */
  .location-hero__form-card.premium {
    width: 100%;
    max-width: 1100px;
    padding: clamp(20px, 2.2vw, 28px);
    border-radius: 18px;
  }
}

/* Apple-style typography refinements for hero */
.hero-title-apple {
  font-weight: 600 !important; /* not too heavy */
  letter-spacing: -0.01em !important;
}
.hero-description-apple {
  color: #6e6e73 !important;
  line-height: 1.55 !important;
}

/* Apple-style CTA buttons: pill shape, minimalist */
.btn-hero-primary-apple,
.btn-hero-secondary-apple {
  border-radius: 9999px !important;
}
.btn-hero-primary-apple {
  padding: 18px 32px !important;
  font-size: 1.05rem !important;
}
.btn-hero-secondary-apple {
  padding: 16px 30px !important;
  font-size: 1.05rem !important;
}

/* Minimal USP row under CTAs */
.hero-usps-minimal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #6e6e73;
  font-size: 0.95rem;
}
.hero-usps-minimal .usp-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-usps-minimal .usp-item i { color: var(--brand); opacity: 0.85; font-size: 1rem; }

/* Separate hero form section with glassmorphism */
.hero-form-section { padding: 24px 0 48px; }
.hero-form-section .hero-form-card {
  background: rgba(255,255,255,0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

/* High-contrast, readable button hovers inside the hero form section */
.hero-form-section .btn.btn-brand {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  color: #fff !important;
}
.hero-form-section .btn.btn-brand:hover,
.hero-form-section .btn.btn-brand:focus {
  background: var(--brand-600) !important;
  border-color: var(--brand-600) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(181, 141, 79, 0.25) !important;
}
.hero-form-section .btn.btn-brand-2 {
  background: #fff !important;
  color: var(--brand) !important;
  border: 2px solid var(--brand) !important;
}
.hero-form-section .btn.btn-brand-2:hover,
.hero-form-section .btn.btn-brand-2:focus {
  background: var(--brand) !important;
  color: #fff !important;
  border-color: var(--brand) !important;
  box-shadow: 0 8px 24px rgba(181, 141, 79, 0.25) !important;
}

/* Align the form section header with the hero content width on desktop */
@media (min-width: 992px) {
  .hero-form-section .form-section-header,
  .hero-form-section .hero-form-card { max-width: 1100px; margin-left: auto; margin-right: auto; }
}

/* ===== Premium breadcrumbs (Apple-style) ===== */
.breadcrumb-bar {
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.98) 100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.breadcrumb-wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb-modern {
  --bs-breadcrumb-divider: '›';
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  margin: 0;
  font-size: 0.95rem;
  list-style: none;
  padding-left: 0;
}

.breadcrumb-modern .crumb-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6e6e73;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 10px;
  transition: color .2s ease, background .2s ease;
}
.breadcrumb-modern .crumb-home:hover { color: var(--brand); background: rgba(181,141,79,0.08); }

.breadcrumb-modern .breadcrumb-item { color: #6e6e73; font-weight: 500; }
.breadcrumb-modern .breadcrumb-item a { color: #6e6e73; text-decoration: none; transition: color .2s ease; }
.breadcrumb-modern .breadcrumb-item a:hover { color: var(--brand); }
.breadcrumb-modern .breadcrumb-item.active { color: #1f1f1f; font-weight: 600; }

.breadcrumb-dot {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.12);
}

/* Mobile fixes for breadcrumbs */
@media (max-width: 575.98px) {
  .breadcrumb-bar { padding: 8px 0; background: rgba(255,255,255,0.98); }
  .breadcrumb-wrapper { padding-left: 16px; padding-right: 16px; }
  .breadcrumb-modern { gap: 6px; font-size: 0.9rem; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .breadcrumb-modern::-webkit-scrollbar { display: none; }
  .crumb-home { padding: 6px 8px; }
  .breadcrumb-dot { width: 4px; height: 4px; background: rgba(0,0,0,0.2); }
}

/* Desktop offset so navbar doesn't overlap breadcrumbs */
@media (min-width: 992px) {
  .breadcrumb-bar { margin-top: 24px; }
}

@media (max-width: 991.98px) {
  /* Reduce vertical padding so full hero content is visible on first viewport */
  .location-hero { padding: clamp(56px, 10vh, 88px) 0 clamp(32px, 6vh, 56px); }
  .location-hero__panel { background: rgba(255,255,255,0.95); }
  .location-hero__title { font-size: clamp(28px, 7.5vw, 40px); text-align: center; }
  .location-hero__subtitle { text-align: center; margin-left: auto; margin-right: auto; }
  .location-hero__ctas { justify-content: center; }
  .location-hero__trust { justify-content: center; }
  .location-hero__form-card { margin-top: 16px; }
}

/* Card polish */
.card.rounded-2 { border-radius: .75rem !important; }

/* Responsive heading sizes */
@media (min-width: 992px) {
  .section-title { font-size: 40px; }
}
@media (min-width: 1200px) {
  /* Compact header padding on desktop */
  .navbar { padding: 6px 0; }

  /* Larger logo on desktop */
  .navbar-brand img { height: 66px; }
  .section-title { font-size: 48px; }
}

/* ===== MODERNE PROJECT CARDS ===== */
.project-item {
  transition: transform 0.3s ease;
}

.project-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(181, 141, 79, 0.2);
}

/* Project Image Container */
.project-image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f8f9fa;
}

.project-card .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

/* Blur + subtle zoom only when hovering the image area */
.project-image-container:hover .card-img-top {
  transform: scale(1.03);
  filter: none;
}

/* Responsive aspect ratios for better scaling across breakpoints */
@media (max-width: 575.98px) {
  .project-image-container { aspect-ratio: 1 / 1; }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .project-image-container { aspect-ratio: 4 / 3; }
}
@media (min-width: 992px) {
  .project-image-container { aspect-ratio: 16 / 10; }
}

/* Category Badge */
.project-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(181, 141, 79, 0.3);
  transition: all 0.3s ease;
}

/* Alternate hover colors per category */
.project-category--binnen { background: #1f7a8c; }
.project-category--buiten { background: #955c28; }
.project-category--monumentaal { background: #4b5563; }
.project-image-container:hover .project-category--binnen { background: #155d6d; }
.project-image-container:hover .project-category--buiten { background: #7a4a1f; }
.project-image-container:hover .project-category--monumentaal { background: #374151; }

/* View Button Overlay */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Subtiele brandkleur-tint i.p.v. donkere overlay */
  background:
    radial-gradient(120% 80% at 50% 50%, rgba(181,141,79,0.18) 0%, rgba(181,141,79,0.10) 45%, rgba(181,141,79,0.00) 80%),
    linear-gradient(180deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.00) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.project-image-container:hover .project-overlay {
  opacity: 1;
}

/* Subtiele glow rond de foto bij hover (geen donkere laag op heel kaartje) */
.project-image-container:hover {
  box-shadow:
    0 10px 28px rgba(0,0,0,0.10),
    0 0 0 4px rgba(181,141,79,0.15);
}

.project-view-btn {
  background: #fff;
  border: 2px solid var(--brand);
  color: var(--brand);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.project-view-btn:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(181, 141, 79, 0.4);
}

/* Project Card Body */
.project-card .card-body {
  padding: 20px;
  background: #fff;
}

.project-card .card-title {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
  line-height: 1.3;
}

.project-card .card-text {
  color: #666;
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
}

/* Loading Animation */
.project-item.loading {
  opacity: 0.5;
  pointer-events: none;
}

.project-item.loading .project-card {
  transform: scale(0.95);
}

@media (max-width: 575.98px) {
  #Projecten .row.g-4 { row-gap: 1.5rem !important; }
  
  .project-card {
    border-radius: 16px;
  }
  
  .project-card .card-body {
    padding: 16px;
  }
  
  .project-category {
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    font-size: 10px;
  }
  
  .project-view-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* ===== MODERNE PROJECT LIGHTBOX ===== */
.project-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.project-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-container {
  position: relative;
  width: 95%;
  max-width: 1100px;
  height: 90%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.project-lightbox.active .lightbox-container {
  transform: scale(1);
}

/* Lightbox Header */
.lightbox-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: #fff;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.lightbox-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.lightbox-subtitle {
  font-size: 13px;
  color: #888;
  margin: 2px 0 0 0;
}

.lightbox-close {
  width: 40px;
  height: 40px;
  border: none;
  background: #f5f5f5;
  border-radius: 8px;
  color: #666;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: #e0e0e0;
  color: #333;
}

/* Lightbox Content */
.lightbox-content {
  position: absolute;
  top: 81px;
  left: 0;
  right: 0;
  bottom: 80px;
  display: flex;
  background: #fafafa;
}

/* Image Gallery */
.lightbox-gallery {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-main {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gallery-image.active {
  opacity: 1;
}

/* Gallery Navigation */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-nav:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-50%) scale(1.05);
}

.gallery-nav.prev {
  left: 20px;
}

.gallery-nav.next {
  right: 20px;
}

/* Thumbnail Strip */
.lightbox-thumbnails {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 12px 20px;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.lightbox-thumbnails::-webkit-scrollbar {
  height: 3px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 1px;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 1px;
}

.thumbnail-item {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.thumbnail-item:hover {
  opacity: 0.8;
}

.thumbnail-item.active {
  opacity: 1;
  border-color: var(--brand);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Project Navigation */
.lightbox-project-nav {
  position: absolute;
  top: 20px;
  right: 80px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.project-nav-btn {
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-nav-btn:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.project-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .lightbox-container {
    width: 95%;
    height: 90%;
    border-radius: 24px;
  }
  
  .lightbox-header {
    padding: 20px 24px;
  }
  
  .lightbox-title {
    font-size: 20px;
  }
  
  .lightbox-content {
    top: 80px;
    bottom: 90px;
  }
  
  .gallery-nav {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  
  .gallery-nav.prev {
    left: 16px;
  }
  
  .gallery-nav.next {
    right: 16px;
  }
  
  .lightbox-thumbnails {
    height: 90px;
    padding: 12px 16px;
    gap: 12px;
  }
  
  .thumbnail-item {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }
  
  .lightbox-project-nav {
    right: 16px;
    gap: 10px;
  }
  
  .project-nav-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

/* Responsive refinements */
@media (max-width: 767.98px) {
  .section-title { font-size: 28px; }
  .main-heading { font-size: 30px; }
  .hero-paragraph { font-size: 16px; }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-title { font-size: 34px; }
}

/* Hero desktop parallax */
@media (min-width: 992px) {
  .hero-section .hero-bg { will-change: transform; }
}

/* Reduced motion: disable heavy transforms and navbar animations */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .hero-section .hero-bg { transform: none !important; }
  .navbar, .navbar-nav .nav-link, .navbar-brand { transition: none !important; }
  .navbar-nav .nav-link::before, .navbar-nav .nav-link::after { transition: none !important; }
}

/* Project overlay readability on mobile */
.project-overlay .overlay-text { font-size: 0.95rem; }
@media (max-width: 575.98px) {
  .project-overlay .overlay-text { background: linear-gradient(to top, rgba(0,0,0,0.65), transparent); }
}

/* ===== Projecten filter chips - nette wrap variant (compact) ===== */
@media (max-width: 575.98px) {
  #projecten .btn-group[role="group"] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  #projecten .btn-group .btn.btn-outline-brand {
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
}

/* Pre-footer CTA */
.prefooter-cta { background: #fff; }
.prefooter-cta .cta-card { border: 1px solid var(--border); background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%); box-shadow: 0 14px 40px rgba(0,0,0,0.06); border-radius: 16px; transition: box-shadow .3s ease, transform .3s cubic-bezier(0.22,1,0.36,1); }
.prefooter-cta .cta-card:hover { box-shadow: 0 22px 64px rgba(0,0,0,0.12); transform: translateY(-2px); }

/* Bottom CTA buttons - premium + readable */
.prefooter-cta .btn { transition: transform .3s cubic-bezier(0.22,1,0.36,1), box-shadow .3s ease, background-color .2s ease, border-color .2s ease, color .2s ease; border-radius: 999px; padding: 12px 22px; font-weight: 700; }
.prefooter-cta .btn.btn-brand { background: var(--brand) !important; border-color: var(--brand) !important; color: #fff !important; box-shadow: 0 8px 24px rgba(181,141,79,0.25); }
.prefooter-cta .btn.btn-brand:hover, .prefooter-cta .btn.btn-brand:focus { background: var(--brand-600) !important; border-color: var(--brand-600) !important; color: #fff !important; transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 32px rgba(181,141,79,0.35); text-shadow: 0 1px 0 rgba(0,0,0,0.12); }

.prefooter-cta .btn.btn-brand-2 { background: #fff !important; color: var(--brand) !important; border: 2px solid var(--brand) !important; box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.prefooter-cta .btn.btn-brand-2:hover, .prefooter-cta .btn.btn-brand-2:focus { background: var(--brand) !important; color: #fff !important; border-color: var(--brand) !important; transform: translateY(-2px) scale(1.01); box-shadow: 0 12px 28px rgba(181,141,79,0.3); text-shadow: 0 1px 0 rgba(0,0,0,0.12); }

/* Spacing/presentation tweaks */
.prefooter-cta .card .text-muted { color: #6e6e73 !important; }
@media (max-width: 575.98px) { .prefooter-cta .btn { width: 100%; } }

/* Prefooter small link styling (no default blue) */
.prefooter-cta .card a:not(.btn) { color: var(--brand); text-decoration: none; font-weight: 600; }
.prefooter-cta .card a:not(.btn):hover { color: var(--brand-600); text-decoration: underline; text-underline-offset: 2px; }

/* ===== Generic fade-in on scroll (used by werkwijze steps) ===== */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; transition-delay: var(--reveal-delay, 0ms); }
.fade-in.visible { opacity: 1; transform: none; }

/* ===== SECTION SEPARATOR ===== */
.section-separator {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.separator-line {
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--brand) 20%, var(--brand) 80%, transparent 100%);
  border-radius: 2px;
  margin: 0 auto;
  max-width: 200px;
  opacity: 0.6;
}

/* ===== MODERN WERKWIJZE SECTION ===== */
.werkwijze-modern {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  padding: clamp(100px, 15vh, 150px) 0;
  position: relative;
  overflow: hidden;
}

.werkwijze-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(181, 141, 79, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(181, 141, 79, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

/* Modern Header */
.modern-header {
  margin-bottom: clamp(80px, 12vh, 120px);
  position: relative;
  z-index: 2;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(181, 141, 79, 0.1);
  color: var(--brand);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 32px;
  border: 1px solid rgba(181, 141, 79, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.header-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181, 141, 79, 0.15);
}

.modern-title {
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.highlight-text {
  background: linear-gradient(135deg, var(--brand) 0%, #c9976a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.modern-subtitle {
  font-size: clamp(18px, 3.5vw, 24px);
  color: #6e6e73;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 32px);
  margin-bottom: clamp(60px, 10vh, 80px);
  position: relative;
  z-index: 2;
}

/* Process Cards */
.process-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 40px);
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: cardFadeIn 0.8s ease forwards;
}

.process-card:nth-child(1) { animation-delay: 0.1s; }
.process-card:nth-child(2) { animation-delay: 0.2s; }
.process-card:nth-child(3) { animation-delay: 0.3s; }
.process-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes cardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #c9976a 100%);
  border-radius: 24px 24px 0 0;
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 8px 32px rgba(181, 141, 79, 0.12);
  border-color: rgba(181, 141, 79, 0.2);
}

/* Card Elements */
.card-number {
  position: absolute;
  top: -15px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(181, 141, 79, 0.3);
}

.card-number span {
  color: white;
  font-weight: 800;
  font-size: 18px;
}

.card-icon {
  margin-bottom: 24px;
}

.card-icon i {
  font-size: 40px;
  color: var(--brand);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.process-card:hover .card-icon i {
  opacity: 1;
  transform: scale(1.1);
}

.card-content h3 {
  font-size: clamp(22px, 4vw, 26px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.2;
}

.card-content p {
  color: #6e6e73;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
}

.card-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.process-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.card-arrow i {
  color: var(--brand);
  font-size: 20px;
}

/* Hide arrow on last card */
.process-card:last-child .card-arrow {
  display: none;
}

/* Progress Indicator */
.progress-indicator {
  max-width: 400px;
  margin: 0 auto clamp(60px, 10vh, 80px);
  position: relative;
  z-index: 2;
}

.progress-line {
  height: 6px;
  background: rgba(181, 141, 79, 0.15);
  border-radius: 3px;
  margin-bottom: 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand) 0%, #c9976a 100%);
  border-radius: 3px;
  width: 25%;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-steps {
  display: flex;
  justify-content: space-between;
}

.progress-step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 3px solid rgba(181, 141, 79, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #6e6e73;
  cursor: pointer;
  transition: all 0.4s ease;
}

.progress-step:hover {
  transform: scale(1.05);
}

.progress-step.active {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(181, 141, 79, 0.3);
}

/* Modern CTA */
.modern-cta {
  background: linear-gradient(135deg, rgba(181, 141, 79, 0.05) 0%, rgba(181, 141, 79, 0.1) 100%);
  border: 1px solid rgba(181, 141, 79, 0.15);
  border-radius: 32px;
  padding: clamp(40px, 8vw, 60px);
  text-align: center;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(20px);
}

.cta-inner h3 {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: clamp(16px, 3vw, 20px);
  color: #6e6e73;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--brand);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid var(--brand);
}

.cta-primary:hover {
  background: transparent;
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181, 141, 79, 0.2);
}

.cta-secondary {
  background: transparent;
  color: var(--brand);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid rgba(181, 141, 79, 0.3);
}

.cta-secondary:hover {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  transform: translateY(-2px);
}

/* CTA Section */
.werkwijze-cta {
  background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 60px);
  text-align: center;
  margin-top: clamp(80px, 10vh, 120px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-content h3 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: clamp(16px, 2.5vw, 18px);
  color: #6e6e73;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Apple-style header styling */
.werkwijze-intro .section-eyebrow {
  background: transparent;
  padding: 0;
  border: none;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: clamp(16px, 3vh, 24px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.werkwijze-intro .section-eyebrow i {
  font-size: 20px;
}

.werkwijze-intro .section-title {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(24px, 4vh, 32px);
  color: #1d1d1f;
}

.werkwijze-intro .lead {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: #6e6e73;
  max-width: 600px;
  margin: 0 auto;
}

.werkwijze-underline {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.8;
}

/* Apple-style Stats Cards */
.werkwijze-stat-card {
  background: #f5f5f7;
  border: none;
  border-radius: 24px;
  padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 32px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.werkwijze-stat-card::before {
  display: none;
}

.werkwijze-stat-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stat-icon {
  width: clamp(60px, 8vw, 80px);
  height: clamp(60px, 8vw, 80px);
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(24px, 4vw, 32px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.werkwijze-stat-card:hover .stat-icon {
  background: var(--brand-600);
  transform: scale(1.05);
}

.stat-icon i {
  font-size: clamp(24px, 4vw, 32px);
  color: #ffffff;
  transition: all 0.3s ease;
}

.werkwijze-stat-card h4 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: clamp(8px, 1.5vw, 12px);
  line-height: 1.2;
}

.werkwijze-stat-card p {
  font-size: clamp(14px, 2.5vw, 16px);
  color: #6e6e73;
  line-height: 1.4;
  margin: 0;
}

/* Apple-style Progress Bar */
.werkwijze-progress-wrapper {
  position: relative;
  margin-bottom: 0;
  flex: 1;
}

.werkwijze-progress {
  height: 4px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  overflow: visible;
  margin-bottom: 16px;
}

.werkwijze-progress .progress-bar {
  height: 4px;
  border-radius: 2px;
  background: var(--brand);
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.werkwijze-progress .progress-bar::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -2px;
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.werkwijze-progress-labels {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.progress-label {
  font-size: 14px;
  font-weight: 600;
  color: #86868b;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  letter-spacing: 0.2px;
}

.progress-label.active {
  color: var(--brand);
  transform: scale(1.05);
}

.progress-label::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-label.active::before {
  background: var(--brand);
  transform: translateX(-50%) scale(1.5);
}

/* Make first progress label active by default */
.progress-label:first-child {
  color: var(--brand);
}

.progress-label:first-child::before {
  background: var(--brand);
  transform: translateX(-50%) scale(1.5);
}

/* Apple-style Step Cards */
.werkwijze-steps-container {
  position: relative;
}

.werkwijze-step {
  display: block;
  opacity: 1;
  margin-bottom: 0;
  position: relative;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.werkwijze-step.in-view {
  opacity: 1;
}

.werkwijze-step:not(.in-view) {
  opacity: 0.15;
}

/* Apple-style step animations */
.werkwijze-step .werkwijze-step-content {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.werkwijze-step.in-view .werkwijze-step-content {
  opacity: 1;
  transform: translateY(0);
}

.werkwijze-step .visual-card {
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.werkwijze-step.in-view .visual-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.werkwijze-step-content {
  position: relative;
  z-index: 2;
}

/* Apple-style step header */
.step-header {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 24px);
  margin-bottom: clamp(32px, 5vh, 48px);
}

/* Desktop: plaats de boventitel (badge) boven de titel i.p.v. links */
@media (min-width: 992px) {
  .step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.step-number {
  font-size: clamp(64px, 12vw, 120px);
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  opacity: 0.08;
  position: absolute;
  top: clamp(-32px, -5vh, -60px);
  left: clamp(-24px, -4vw, -40px);
  z-index: 1;
  letter-spacing: -0.05em;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand);
  color: #fff;
  padding: clamp(12px, 2vw, 16px) clamp(20px, 3vw, 28px);
  border-radius: 100px;
  font-weight: 600;
  font-size: clamp(14px, 2.5vw, 16px);
  position: relative;
  z-index: 2;
  letter-spacing: 0.3px;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.step-badge i {
  font-size: clamp(16px, 3vw, 20px);
}

/* Apple-style step content */
.werkwijze-step h3 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: clamp(16px, 3vh, 24px);
}

.werkwijze-step p {
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.5;
  color: #6e6e73;
  margin-bottom: clamp(24px, 4vh, 32px);
}

/* Apple-style Checklist */
.werkwijze-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vh, 16px);
}

.werkwijze-checklist li {
  display: flex;
  align-items: flex-start;
  font-size: clamp(15px, 2.8vw, 18px);
  color: #1d1d1f;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1.4;
}

.werkwijze-checklist li:hover {
  color: var(--brand);
  transform: translateX(8px);
}

.werkwijze-checklist li i {
  margin-right: 12px;
  margin-top: 2px;
  font-size: clamp(16px, 3vw, 20px);
  color: #34c759;
  flex-shrink: 0;
}

/* Apple-style Visual Cards */
.werkwijze-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  background: #f5f5f7;
  border: none;
  border-radius: clamp(24px, 4vw, 32px);
  padding: clamp(40px, 6vw, 60px) clamp(32px, 5vw, 48px);
  text-align: center;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  max-width: clamp(280px, 40vw, 360px);
  width: 100%;
}

.visual-card::before {
  display: none;
}

.visual-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.08);
}

.visual-icon {
  width: clamp(80px, 12vw, 100px);
  height: clamp(80px, 12vw, 100px);
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(24px, 4vh, 32px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-card:hover .visual-icon {
  background: var(--brand-600);
  transform: scale(1.1);
}

.visual-icon i {
  font-size: clamp(32px, 6vw, 42px);
  color: #ffffff;
  transition: all 0.4s ease;
}

.visual-content h5 {
  font-weight: 700;
  font-size: clamp(18px, 3.5vw, 24px);
  color: #1d1d1f;
  margin-bottom: clamp(12px, 2vh, 16px);
  line-height: 1.2;
}

.visual-content p {
  color: #6e6e73;
  font-size: clamp(14px, 2.5vw, 16px);
  margin: 0;
  line-height: 1.4;
}

/* Apple-style Navigation Controls */
.werkwijze-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.werkwijze-nav-btn {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  border-radius: 100px;
  padding: clamp(10px, 2vw, 14px) clamp(16px, 3vw, 24px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #1d1d1f;
  font-size: clamp(12px, 2.2vw, 14px);
  letter-spacing: 0.2px;
}

.werkwijze-nav-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(181, 141, 79, 0.25);
}

.werkwijze-nav-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.werkwijze-nav-btn.active:hover {
  background: var(--brand-600);
  transform: scale(1.05) translateY(-2px);
}

/* Make first nav button active by default */
.werkwijze-nav-btn:first-child {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.btn-outline-brand {
  border: 2px solid var(--brand);
  color: var(--brand);
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-brand:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181, 141, 79, 0.3);
}

.btn-outline-brand.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 600;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181, 141, 79, 0.3);
}

/* CTA Section */
.werkwijze-cta {
  position: relative;
}

.cta-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-hover));
}

/* Responsive Design for Modern Werkwijze */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .process-card {
    padding: 28px;
  }
  
  .card-number {
    width: 45px;
    height: 45px;
    top: -12px;
    right: 20px;
  }
  
  .card-number span {
    font-size: 16px;
  }
  
  .card-icon i {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .werkwijze-modern {
    padding: clamp(80px, 12vh, 100px) 0;
  }
  
  .modern-header {
    margin-bottom: clamp(60px, 10vh, 80px);
  }
  
  .header-badge {
    font-size: 13px;
    padding: 10px 20px;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: clamp(40px, 8vh, 60px);
  }
  
  .process-card {
    padding: 24px;
    border-radius: 20px;
  }
  
  .card-number {
    width: 40px;
    height: 40px;
    top: -10px;
    right: 16px;
  }
  
  .card-number span {
    font-size: 15px;
  }
  
  .card-icon {
    margin-bottom: 20px;
  }
  
  .card-icon i {
    font-size: 32px;
  }
  
  .card-content h3 {
    margin-bottom: 10px;
  }
  
  .card-content p {
    margin-bottom: 16px;
    font-size: 15px;
  }
  
  .feature-list li {
    font-size: 13px;
    margin-bottom: 6px;
  }
  
  .progress-indicator {
    margin: 0 auto clamp(40px, 8vh, 60px);
  }
  
  .progress-step {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .modern-cta {
    padding: clamp(32px, 6vw, 40px);
    border-radius: 24px;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 28px;
  }
}

@media (max-width: 480px) {
  .werkwijze-modern {
    padding: clamp(60px, 10vh, 80px) 0;
  }
  
  .modern-header {
    margin-bottom: clamp(40px, 8vh, 60px);
  }
  
  .header-badge {
    font-size: 12px;
    padding: 8px 16px;
  }
  
  .process-grid {
    gap: 12px;
    margin-bottom: clamp(32px, 6vh, 40px);
  }
  
  .process-card {
    padding: 20px;
    border-radius: 16px;
  }
  
  .card-number {
    width: 35px;
    height: 35px;
    top: -8px;
    right: 12px;
  }
  
  .card-number span {
    font-size: 14px;
  }
  
  .card-icon {
    margin-bottom: 16px;
  }
  
  .card-icon i {
    font-size: 28px;
  }
  
  .card-content h3 {
    margin-bottom: 8px;
  }
  
  .card-content p {
    margin-bottom: 14px;
    font-size: 14px;
  }
  
  .feature-list li {
    font-size: 12px;
    padding-left: 20px;
    margin-bottom: 5px;
  }
  
  .feature-list li::before {
    width: 10px;
    top: 7px;
  }
  
  .progress-indicator {
    margin: 0 auto clamp(32px, 6vh, 40px);
  }
  
  .progress-step {
    width: 30px;
    height: 30px;
    font-size: 13px;
    border-width: 2px;
  }
  
  .modern-cta {
    padding: clamp(24px, 5vw, 32px);
    border-radius: 20px;
  }
  
  .cta-actions {
    gap: 10px;
  }
  
  .cta-primary,
  .cta-secondary {
    max-width: 100%;
    padding: 12px 24px;
    font-size: 15px;
  }
}

/* Animation keyframes */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.werkwijze-step.active .visual-card {
  animation: slideInUp 0.6s ease forwards;
}

/* Add subtle floating animation to visual icons */
.visual-icon {
  animation: float 6s ease-in-out infinite;
}

.visual-icon:hover {
  animation-play-state: paused;
}


/* ===== COMPACT & READABLE WERKWIJZE SECTION ===== */
.werkwijze-compact {
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  padding: clamp(80px, 12vh, 120px) 0;
  position: relative;
}

/* Header Styling */
.werkwijze-header {
  margin-bottom: clamp(40px, 8vh, 60px);
}

/* Desktop: badge boven de titel plaatsen in werkwijze-header, maar gecentreerd */
@media (min-width: 992px) {
  .werkwijze-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .werkwijze-header .section-badge { 
    order: -1;
    margin-bottom: 0;
  }
  .werkwijze-header .section-title { 
    margin: 0; 
  }
}

/* Tablet (md) should stack badge above title too */
@media (min-width: 768px) and (max-width: 991.98px) {
  .werkwijze-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .werkwijze-header .section-badge {
    order: -1;
    margin-bottom: 0;
  }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(181, 141, 79, 0.1);
  color: var(--brand);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(181, 141, 79, 0.2);
}

/* Compact Timeline Container */
.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* Timeline Line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(181, 141, 79, 0.2);
  transform: translateX(-50%);
  border-radius: 2px;
  z-index: 1;
}

.timeline-progress {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--brand) 0%, #d4a673 100%);
  border-radius: 2px;
  transition: height .55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Timeline Steps */
.timeline-steps {
  position: relative;
  z-index: 2;
}

.timeline-item {
  position: relative;
  margin-bottom: clamp(60px, 8vh, 80px);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Timeline Markers */
.timeline-marker {
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: white;
  border: 4px solid var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  transition: transform .25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
  will-change: transform;
}

.timeline-marker:hover {
  transform: translateX(-50%) scale(1.06);
  box-shadow: 0 8px 24px rgba(181, 141, 79, 0.3);
}

.timeline-marker.active {
  background: var(--brand);
  transform: translateX(-50%) scale(1.06);
  box-shadow: 0 8px 24px rgba(181, 141, 79, 0.4);
}

.marker-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand);
  transition: color 0.3s ease;
}

.timeline-marker.active .marker-number {
  color: white;
}

.marker-pulse {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  opacity: 0;
  animation: markerPulse 2s ease-in-out infinite;
}

.timeline-marker.active .marker-pulse {
  opacity: 1;
}

@keyframes markerPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* Timeline Content - Alternating Left/Right */
.timeline-content {
  width: calc(50% - 40px);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .5s ease-out, transform .6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.timeline-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-content.left {
  margin-right: auto;
  text-align: right;
}

.timeline-content.right {
  margin-left: calc(50% + 32px);
  text-align: left;
}

/* Step Cards */
.step-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(20px, 3.2vw, 28px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .5s ease, border-color .4s ease, background-color .4s ease;
  will-change: transform, box-shadow;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--brand);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand);
  border-radius: 16px 16px 0 0;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.timeline-item.visible .step-card::before {
  transform: scaleX(1);
}

/* Active step card styling */
.timeline-item.active .step-card {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 20px 50px rgba(181, 141, 79, 0.15);
  border-color: var(--brand);
  background: linear-gradient(135deg, #ffffff 0%, rgba(181, 141, 79, 0.02) 100%);
}

/* One-shot activation animation for a clear smooth feel */
.timeline-item.just-activated .step-card {
  animation: stepActivate 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes stepActivate {
  0% { transform: translateY(4px) scale(0.99); opacity: 0.85; }
  60% { transform: translateY(-2px) scale(1.01); opacity: 1; }
  100% { transform: translateY(-3px) scale(1.01); }
}

.timeline-item.active .step-card::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-hover) 100%);
}

.timeline-item.active .step-icon {
  background: var(--brand);
  color: white;
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(181, 141, 79, 0.3);
}

.timeline-item.active .step-title {
  color: var(--brand);
}

.timeline-item.active .step-number {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-hover) 100%);
  transform: scale(1.1);
  box-shadow: 0 12px 24px rgba(181, 141, 79, 0.4);
}

.step-number {
  position: absolute;
  top: -22px;
  right: 22px;
  width: 60px;
  height: 60px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  border: 3px solid #fff;
  box-shadow: 0 8px 18px rgba(181, 141, 79, 0.35);
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
  z-index: 2;
}

.timeline-item.visible .step-number { animation: numberBump .4s ease-out; }
@keyframes numberBump { 0% { transform: translateY(0) scale(1); } 50% { transform: translateY(-1px) scale(1.04); } 100% { transform: translateY(0) scale(1); } }

.step-number::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(181,141,79,.35);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.6);
  pointer-events: none;
}

.timeline-content.left .step-number {
  right: auto;
  left: 20px;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(181, 141, 79, 0.1);
  color: var(--brand);
  border-radius: 50%;
  font-size: 28px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  background: var(--brand);
  color: white;
  transform: scale(1.1);
}

.step-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.2;
}

.step-text {
  color: #6e6e73;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #4a4a4a;
}

.step-features i {
  color: #28a745;
  font-size: 16px;
  flex-shrink: 0;
}

/* Quick Navigation */
.timeline-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: clamp(40px, 6vh, 60px);
  flex-wrap: wrap;
}

.nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 96px;
}

.nav-btn:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(181, 141, 79, 0.2);
}

.nav-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
  transform: translateY(-2px);
}

.nav-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand);
  transition: color 0.3s ease;
}

.nav-btn.active .nav-number {
  color: white;
}

.nav-label {
  font-size: 13px;
  font-weight: 600;
  color: #6e6e73;
  transition: color 0.3s ease;
}

.nav-btn.active .nav-label {
  color: white;
}

/* CTA Section */
.werkwijze-cta {
  margin-top: clamp(60px, 10vh, 80px);
  padding: clamp(40px, 6vw, 60px);
  background: linear-gradient(135deg, rgba(181, 141, 79, 0.05) 0%, rgba(181, 141, 79, 0.1) 100%);
  border: 1px solid rgba(181, 141, 79, 0.15);
  border-radius: 24px;
}

.werkwijze-cta h3 {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.werkwijze-cta p {
  font-size: clamp(16px, 3vw, 20px);
  color: #6e6e73;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design - Optimized for 100-125% Zoom */
@media (min-width: 1200px) {
  .timeline-container {
    zoom: 1.1;
    transform-origin: center top;
  }
  .werkwijze-header { margin-bottom: 56px; }
  
  .step-title {
    font-size: 28px;
  }
  
  .step-text {
    font-size: 17px;
  }
  
  .step-features li {
    font-size: 15px;
  }
}

/* Viewport optimization for 100-125% zoom levels */
@media (min-width: 1440px) {
  .werkwijze-compact {
    font-size: 1.05em;
  }
  
  .timeline-marker {
    width: 65px;
    height: 65px;
  }
  
  .marker-number {
    font-size: 22px;
  }
  
  .step-card {
    padding: 36px;
  }
}

/* Tablet responsive */
@media (max-width: 992px) {
  .timeline-line {
    left: 30px;
    transform: none;
  }
  
  .timeline-marker {
    left: 30px;
    transform: translateX(-50%);
  }
  
  .timeline-content {
    width: auto;
    margin-left: 80px !important;
    text-align: left !important;
  }

  .timeline-item { margin-bottom: 48px; }
  
  .timeline-content.left,
  .timeline-content.right {
    margin-left: 80px;
    text-align: left;
  }
  
  .step-number {
    right: 20px !important;
    left: auto !important;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .timeline-navigation {
    gap: 10px;
  }
  
  .nav-btn {
    min-width: 72px;
    padding: 10px 14px;
  }
  
  .nav-number {
    font-size: 18px;
  }
  
  .nav-label {
    font-size: 12px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .timeline-line {
    left: 20px;
  }
  
  .timeline-marker {
    left: 20px;
    width: 50px;
    height: 50px;
  }
  
  .marker-number {
    font-size: 16px;
  }
  
  .timeline-content {
    margin-left: 60px !important;
  }
  
  .step-card {
    padding: 20px;
  }
  
  .step-number {
    width: 44px;
    height: 44px;
    font-size: 18px;
    top: -16px;
    right: 14px !important;
    border-width: 2px;
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* ===== Side Timeline Dots (desktop) ===== */
.timeline-dots {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: none; /* hidden by default; shown only when werkwijze is in viewport */
  flex-direction: column;
  gap: 14px;
  z-index: 100;
}

/* Show dots only when Werkwijze section scrolled past offset on desktop */
@media (min-width: 992px) {
  #werkwijze.show-dots .timeline-dots { display: flex; }
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  background: #fff;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  position: relative;
}

.timeline-dot:hover { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(181,141,79,.12); }
.timeline-dot.active { background: var(--brand); box-shadow: 0 0 0 6px rgba(181,141,79,.18); transform: scale(1.2); }
.timeline-dot.visited:not(.active) { background: color-mix(in oklab, var(--brand) 40%, #fff); }
.timeline-dot::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--brand); opacity: 0; transition: opacity .2s ease; }
.timeline-dot.active::after { opacity: .2; }

/* Dot label with number + title */
.timeline-dot .dot-popover {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.98);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  white-space: nowrap;
  min-width: 120px;
}

.timeline-dot:hover .dot-popover,
.timeline-dot.active .dot-popover { opacity: 1; }

.dot-number { font-weight: 800; color: var(--brand); font-size: 14px; }
.dot-title { font-weight: 600; font-size: 13px; color: #333; }

/* Offset adjustments near top/bottom of section on desktop */
@media (min-width: 992px) {
  #werkwijze.dots-top .timeline-dots { top: 40%; transform: translateY(-40%); }
  #werkwijze.dots-bottom .timeline-dots { top: 60%; transform: translateY(-60%); }
}

/* Hide side dots on tablets and smaller; show bottom nav there */
@media (max-width: 991.98px) {
  .timeline-dots { display: none; }
}

/* Show bottom navigation on all screen sizes */

/* ===== Header responsive refinements ===== */
/* Responsive navbar height - integrated with main navbar styles above */

/* Hero padding niet nodig; body compenseert voor fixed header */
.hero-desktop { padding-top: 0 !important; }
.hero-mobile { padding-top: 0 !important; }

/* Constrain hero image height so layout breathes and avoids crowding text */
.hero-main-image { max-height: min(78vh, 900px); width: 100%; height: auto; object-fit: cover; transform-origin: center; }

/* Inline-to-external: map iframe */
.map-iframe { border: 0; border-radius: var(--border-radius-lg, 12px); }

/* On mid breakpoints increase spacing between hero columns if needed */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-desktop .row { row-gap: 2rem; }
}

/* Navbar gap styles integrated in main navbar responsive section */

/* ===== Desktop hero typography and spacing tweaks ===== */
@media (min-width: 992px) {
  /* Slightly smaller main title for better visual balance */
  .hero-title { font-size: clamp(36px, 4vw, 54px); line-height: 1.05; }

  /* More breathing room above/left inside the left column card */
  .hero-content-card { padding: clamp(32px, 3.5vw, 56px) clamp(28px, 3vw, 48px) !important; }

  /* More compact, readable subtitle with comfortable line-height */
  .hero-description { font-size: 18px; line-height: 1.7; max-width: 56ch; margin-bottom: 1.75rem; }

  /* Keep CTAs the same but add subtle surrounding whitespace */
  .hero-ctas { gap: 16px; margin-top: 0.25rem; margin-bottom: 2.25rem !important; }
  .hero-ctas .btn { padding: 12px 22px; }
}

/* ===== USP + Quote combo block ===== */
/* USP intro quote matching live site */
.usp-intro-quote { background: var(--light); border: 1px solid var(--border); padding: 18px 22px; color: #333; font-style: italic; font-size: clamp(18px, 2.4vw, 24px); }
.usp-intro-quote .quote-mark { color: var(--brand); font-weight: 800; }

/* Service quick cards */
.service-quick-card { background: #fff; border: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.service-icon { width: 48px; height: 48px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--brand-light); color: var(--brand); }
.service-icon i { font-size: 22px; }
.service-quick-card:hover .service-icon { background: var(--brand); color: #fff; transition: all .25s ease; }

/* Section breathing room */
.usp-section { padding: 6rem 0 !important; }

/* Inline-to-external: werkwijze overview header */
.werkwijze-overview-section { background: #ffffff; padding: clamp(60px, 8vh, 80px) 0 clamp(80px, 12vh, 120px); }
.werkwijze-overview-section .section-eyebrow { background: transparent; padding: 0; border: none; font-size: clamp(16px, 2.5vw, 18px); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--brand); margin-bottom: clamp(16px, 3vh, 24px); gap: 12px; }
.werkwijze-overview-section .section-eyebrow i { font-size: 20px; }
.werkwijze-overview-section h2 { font-size: clamp(40px, 8vw, 72px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 clamp(24px, 4vh, 32px); color: #1d1d1f; }
.werkwijze-lead { font-size: clamp(18px, 3vw, 22px); font-weight: 400; line-height: 1.5; color: #6e6e73; max-width: 600px; margin: 0 auto; }

/* ===== Ensure desktop navbar shows horizontal menu with correct spacing ===== */
@media (min-width: 992px) {
  /* Neutralize offcanvas on desktop */
  #navbarNav.offcanvas {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    visibility: visible !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    min-height: auto !important;
    z-index: 1 !important;
    display: block !important;
  }
  .offcanvas-backdrop { display: none !important; }
  .navbar-toggler { display: none !important; }

  /* Layout & spacing */
  .navbar .offcanvas-body { padding: 0 !important; }
  .navbar .navbar-nav { 
    flex-direction: row !important; 
    width: auto !important; 
    gap: 10px !important; 
    align-items: center !important; 
    flex-wrap: nowrap !important; /* keep on one line */
  }
  .navbar .navbar-nav .nav-item { white-space: nowrap; }
  .navbar .navbar-nav .nav-link { padding: 8px 12px !important; margin: 0 !important; border-radius: 8px; white-space: nowrap; opacity: .92; }
  .navbar .navbar-brand { margin-right: 24px; }
  .navbar .btn.btn-brand { padding: 10px 18px; }
  /* extra breathing room before CTA button */
  .navbar .navbar-nav .ms-lg-3 { margin-left: 32px !important; }
}

/* Ensure navbar CTA stays readable on hover (override nav-link hover color) */
.navbar .btn.btn-brand { color: #fff !important; }
.navbar .btn.btn-brand:hover { 
  background: var(--brand-600) !important; 
  border-color: var(--brand-600) !important; 
  color: #fff !important; 
}

/* Ensure navbar CTA remains highly readable on all interaction states */
.navbar .btn.btn-brand:hover,
.navbar .btn.btn-brand:focus,
.navbar .btn.btn-brand:active,
.navbar .btn.btn-brand:focus-visible {
  background: var(--brand-600) !important;
  border-color: var(--brand-600) !important;
  color: #fff !important; /* keep text white for contrast */
}

/* Explicitly handle CTA inside nav lists and offcanvas menu */
.navbar .navbar-nav .btn.btn-brand,
.offcanvas .btn.btn-brand {
  background: var(--brand) !important;
  background-image: none !important;
  color: #fff !important;
  border: 1px solid var(--brand) !important;
}
.navbar-nav .btn-brand { color: #fff !important; }
.navbar-nav .btn-brand:hover,
.navbar-nav .btn-brand:focus,
.navbar-nav .btn-brand:active,
.offcanvas .btn.btn-brand:hover,
.offcanvas .btn.btn-brand:focus,
.offcanvas .btn.btn-brand:active {
  background: var(--brand-600) !important;
  background-image: none !important; /* disable inline gradient */
  border-color: var(--brand-600) !important;
  color: #fff !important;
}

/* Disable decorative overlay on hover for better contrast */
.navbar-nav .btn-brand:hover::before,
.navbar-nav .btn-brand:focus::before,
.navbar-nav .btn-brand:active::before,
.offcanvas .btn.btn-brand:hover::before,
.offcanvas .btn.btn-brand:focus::before,
.offcanvas .btn.btn-brand:active::before {
  opacity: 0 !important;
}

/* Ensure CTA buttons remain highly readable on hover inside werkwijze section */
.werkwijze-cta .btn.btn-brand { color: #fff !important; }
.werkwijze-cta .btn.btn-brand:hover,
.werkwijze-cta .btn.btn-brand:focus,
.werkwijze-cta .btn.btn-brand:active,
.werkwijze-cta .btn.btn-brand:focus-visible {
  background: var(--brand-600) !important;
  border-color: var(--brand-600) !important;
  color: #fff !important;
}
.werkwijze-cta .btn.btn-brand:hover::before,
.werkwijze-cta .btn.btn-brand:focus::before,
.werkwijze-cta .btn.btn-brand:active::before,
.werkwijze-cta .btn.btn-brand:focus-visible::before {
  opacity: 0 !important;
}

