  /* CONTACT PAGINA */
  .contact-page {
    background: var(--white);
    padding: 9rem 5% 6rem;
  }
  .contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .section-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mint-dark);
    margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Helvetica Now Display', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--navy);
  }
  .section-title .accent { color: var(--mint); }
  .contact-info .section-title { margin-bottom: 1rem; }
  .contact-tagline {
    color: rgba(13,27,42,0.6);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
  }
  .contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.1rem;
    text-decoration: none;
    color: inherit;
  }
  .contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(93,202,165,0.12);
    color: var(--mint-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.25s ease;
  }
  .contact-icon svg { width: 20px; height: 20px; }
  a.contact-detail:hover .contact-icon {
    background: var(--mint-dark);
    color: var(--white);
    transform: translateY(-2px);
  }
  .contact-detail-text span { display: block; font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
  .contact-detail-text a, .contact-detail-text p {
    font-size: 0.98rem;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    margin: 0;
  }
  a.contact-detail:hover .contact-detail-text p { color: var(--mint-dark); }

  .contact-trust {
    list-style: none;
    margin: 2rem 0 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(13,27,42,0.08);
  }
  .contact-trust li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: rgba(13,27,42,0.75);
    font-weight: 500;
    margin-bottom: 0.7rem;
  }
  .contact-trust li:last-child { margin-bottom: 0; }
  .contact-trust svg {
    width: 18px;
    height: 18px;
    color: var(--mint-dark);
    flex-shrink: 0;
  }

  .contact-form {
    background: var(--navy);
    border-radius: 24px;
    padding: 2.5rem;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .form-group { margin-bottom: 1rem; }
  .form-group label {
    display: block;
    font-size: 0.78rem;
    color: rgba(244,244,240,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%;
    background: linear-gradient(135deg, rgba(244,244,240,0.12), rgba(93,202,165,0.07));
    border: 1px solid rgba(93,202,165,0.28);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(244,244,240,0.05);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  }
  .form-group select {
    appearance: none;
    color-scheme: dark;
    cursor: pointer;
    padding-right: 2.75rem;
    background-image:
      linear-gradient(135deg, rgba(244,244,240,0.12), rgba(93,202,165,0.07)),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%235DCAA5' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 0 0, right 1rem center;
    background-size: 100% 100%, 18px 18px;
  }
  .form-group select option, .form-group select optgroup {
    background: var(--navy);
    color: var(--white);
  }
  .form-group select optgroup {
    color: var(--mint);
    font-weight: 700;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--mint);
    background: linear-gradient(135deg, rgba(244,244,240,0.15), rgba(93,202,165,0.11));
    box-shadow: 0 0 0 3px rgba(93,202,165,0.14);
  }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-submit {
    width: 100%;
    background: var(--mint);
    color: var(--navy);
    border: none;
    border-radius: 50px;
    padding: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 0.5rem;
  }
  .form-submit:hover { background: var(--mint-dark); transform: translateY(-2px); }
  .form-submit:focus-visible,
  .contact-detail:focus-visible,
  .nav-links a:focus-visible,
  .footer-links a:focus-visible {
    outline: 3px solid rgba(93,202,165,0.55);
    outline-offset: 3px;
  }

  @media (max-width: 768px) {
    .nav-toggle {
      display: flex; flex-direction: column; justify-content: center; gap: 5px;
      width: 44px; height: 44px; padding: 9px;
      background: none; border: 0; cursor: pointer; z-index: 120;
    }
    .nav-toggle span {
      display: block; height: 2px; width: 100%; border-radius: 2px;
      background: var(--white);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-links {
      display: flex;
      position: fixed; top: 0; right: 0;
      flex-direction: column; align-items: flex-start;
      width: min(80vw, 320px); height: 100vh;
      padding: 6rem 2rem 2rem; gap: 1.6rem;
      background: rgba(13,27,42,0.98);
      -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
      box-shadow: -10px 0 40px rgba(0,0,0,0.35);
      transform: translateX(100%);
      transition: transform 0.32s ease;
      z-index: 110;
    }
    nav.nav-open .nav-links { transform: translateX(0); }
    .nav-links a { font-size: 1.05rem; }
    .nav-cta { display: inline-block; padding: 0.7rem 1.6rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 1.5rem 1rem; }
    .contact-page { padding-top: 8rem; }
    .contact-detail-text p { overflow-wrap: anywhere; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  }


  /* Contact tablet corrections */
  @media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form { max-width: 100%; }
  }

/* Large-screen content is already capped via .contact-grid (max-width:1100px;
   margin:0 auto), so no extra section cap is needed here. */

/* -- Compact choice chips (service/product picker in contact form) -- */
.form-grouplabel {
  display: block;
  font-size: 0.78rem;
  color: rgba(244,244,240,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.choice-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
.choice-chip { position: relative; display: block; cursor: pointer; margin: 0; }
.choice-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice-chip span {
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 0.72rem 0.6rem;
  border-radius: 10px;
  border: 1px solid rgba(93,202,165,0.28);
  background: rgba(244,244,240,0.06);
  color: rgba(244,244,240,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.choice-chip:hover span { border-color: rgba(93,202,165,0.6); }
.choice-chip input:checked + span {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--navy);
  font-weight: 600;
}
.choice-chip input:focus-visible + span {
  outline: 3px solid rgba(93,202,165,0.55);
  outline-offset: 2px;
}

/* Chip correction: neutralise inherited label uppercase/letter-spacing (prevents overflow) */
.choice-chip, .choice-chip span { text-transform: none; letter-spacing: normal; }
.choice-chip { min-width: 0; }
.choice-chip span { font-size: 0.84rem; padding: 0.72rem 0.5rem; min-width: 0; }


/* Audit 2.0 refinements: compact mobile nav and readable footer */
@media (max-width: 768px) {
  nav { padding: 0.85rem 1rem; }
  nav .nav-links {
    width: min(78vw, 290px) !important;
    padding: 4.7rem 1.1rem 1.25rem !important;
  }
  nav .nav-links a:not(.nav-cta) {
    padding: 0.68rem 0.2rem !important;
    font-size: 0.96rem !important;
    line-height: 1.2 !important;
  }
  nav .nav-links .nav-cta {
    margin-top: 0.95rem !important;
    padding: 0.78rem 1rem !important;
    font-size: 0.95rem !important;
  }
}
@media (max-width: 560px) {
  footer.site-footer { padding: 2.35rem 1.15rem 1.4rem !important; }
  /* Twee kolommen i.p.v. alles onder elkaar -> footer ~40% korter op telefoon */
  footer.site-footer .footer-top { grid-template-columns: 1fr 1fr !important; gap: 1.5rem 1.25rem !important; }
  footer.site-footer .footer-brand { max-width: none !important; }
  footer.site-footer .footer-about { display: none; }
  footer.site-footer .footer-col h4 { margin-bottom: 0.6rem; }
  footer.site-footer .footer-col a,
  footer.site-footer .footer-contact a,
  footer.site-footer .footer-contact span { min-height: 30px; margin-bottom: 0.2rem !important; font-size: 0.86rem; }
  footer.site-footer .footer-regio-row { margin-top: 1.5rem !important; padding-top: 1rem; }
  footer.site-footer .footer-bottom-row { margin-top: 1rem; }
  footer.site-footer .footer-legal { flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1.1rem !important; }
  footer.site-footer .footer-legal a { min-height: 30px; }
}


/* Audit 2.0 compact contact form */
.quick-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 1rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(93,202,165,0.12);
  border: 1px solid rgba(93,202,165,0.35);
  color: var(--mint) !important;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}
.form-group label span { text-transform: none; letter-spacing: 0; opacity: 0.8; }
@media (max-width: 768px) {
  .contact-form { border-radius: 16px !important; padding: 1.25rem !important; }
  .form-group { margin-bottom: 0.75rem !important; }
  .form-group input, .form-group textarea, .form-group select { padding: 0.75rem 0.85rem !important; }
  .form-group textarea { min-height: 88px !important; }
  .choice-chips { gap: 0.45rem !important; }
  .choice-chip span { padding: 0.58rem 0.45rem !important; font-size: 0.78rem !important; }
}

/* Compactere contactpagina */
.contact-page {
  padding-top: 6.6rem;
  padding-bottom: 3.5rem;
}
.contact-grid {
  gap: 3rem;
  align-items: start;
}
.contact-info .section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  margin-bottom: 0.75rem;
}
.contact-tagline {
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.contact-detail {
  margin-bottom: 0.75rem;
}
.contact-icon {
  width: 40px;
  height: 40px;
}
.contact-trust {
  margin-top: 1.25rem;
  padding-top: 1rem;
}
.contact-trust li {
  margin-bottom: 0.45rem;
  font-size: 0.86rem;
}
.contact-form {
  border-radius: 18px;
  padding: 1.65rem;
}
.form-row,
.form-group {
  margin-bottom: 0.75rem;
}
.form-group label {
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.72rem 0.9rem;
  font-size: 0.9rem;
}
.form-group textarea {
  min-height: 86px;
}
.form-submit {
  padding: 0.82rem;
}
@media (max-width: 768px) {
  .contact-page { padding-top: 6.2rem; padding-bottom: 3rem; }
  .contact-grid { gap: 1.5rem; }
  .contact-form { padding: 1.25rem; }
}
/* Rustiger contactformulier, gelijk aan de homepage */
.form-title {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.25;
}
.form-intro,
.form-privacy {
  color: rgba(244,244,240,0.68);
  font-size: 0.82rem;
  line-height: 1.45;
}
.form-intro { margin: 0 0 0.75rem; }
.form-privacy { margin: 0.55rem 0 0; text-align: center; }
.contact-form { padding: 1rem; }
.quick-whatsapp { min-height: 38px; margin-bottom: 0.65rem; padding: 0.58rem 0.9rem; font-size: 0.84rem; }
.form-row { gap: 0.65rem; margin-bottom: 0.25rem; }
.form-group { margin-bottom: 0.35rem; }
.form-group label { margin-bottom: 0.22rem; font-size: 0.7rem; }
.form-group input,
.form-group textarea,
.form-group select { padding: 0.52rem 0.78rem; font-size: 0.86rem; }
.form-group textarea { min-height: 54px; }
.form-submit { padding: 0.78rem; margin-top: 0.32rem; font-size: 0.92rem; }
@media (max-width: 768px) {
  .contact-form { padding: 1rem !important; }
  .quick-whatsapp { min-height: 36px !important; margin-bottom: 0.55rem !important; padding: 0.52rem 0.8rem !important; }
  .form-intro { margin-bottom: 0.62rem !important; }
  .form-group { margin-bottom: 0.35rem !important; }
  .form-group input,
  .form-group textarea,
  .form-group select { padding: 0.56rem 0.78rem !important; }
  .form-group textarea { min-height: 54px !important; }
}
/* Final phone footer override: keep mobile footers compact across page-specific CSS. */
@media (max-width: 560px) {
  footer.site-footer { padding: 0.85rem 1rem 0.8rem !important; }
  footer.site-footer .footer-top { display: grid !important; grid-template-columns: 1fr !important; gap: 0.55rem !important; }
  footer.site-footer .footer-brand { grid-column: auto !important; max-width: none !important; }
  footer.site-footer .footer-logo { margin-bottom: 0.25rem !important; }
  footer.site-footer .footer-logo svg { width: 96px !important; height: auto !important; }
  footer.site-footer .footer-tagline,
  footer.site-footer .footer-about,
  footer.site-footer .footer-socials,
  footer.site-footer .footer-regio-row,
  footer.site-footer .footer-top > .footer-col:not(.footer-contact),
  footer.site-footer .footer-contact h4 { display: none !important; }
  footer.site-footer .footer-contact { display: flex !important; flex-wrap: wrap !important; gap: 0.2rem 0.8rem !important; align-items: center !important; }
  footer.site-footer .footer-contact a,
  footer.site-footer .footer-contact span { display: inline-block !important; min-height: 0 !important; margin: 0 !important; font-size: 0.78rem !important; line-height: 1.28 !important; }
  footer.site-footer .footer-contact a:first-of-type { display: none !important; }
  footer.site-footer .footer-bottom-row { flex-direction: row !important; align-items: center !important; justify-content: space-between !important; margin-top: 0.45rem !important; gap: 0.35rem !important; padding-top: 0 !important; }
  footer.site-footer .footer-copy,
  footer.site-footer .footer-legal a { font-size: 0.72rem !important; }
  footer.site-footer .footer-legal { flex-direction: row !important; flex-wrap: wrap !important; gap: 0.25rem 0.75rem !important; }
  footer.site-footer .footer-legal a { min-height: 0 !important; }
}
