/* ==========================================================================
   Shiny Cleaning — basis stylesheet
   Dit is een werkbare basis, bedoeld om vervangen of uitgebreid te worden.
   Alle kleuren en maten staan als custom properties bovenaan.
   ========================================================================== */

:root {
  /* Merkkleuren, afgeleid van het logo */
  --teal-900: #0a4d4d;
  --teal-700: #0e7c7c;
  --teal-600: #12a1a1;
  --teal-100: #d8f0ef;
  --teal-50:  #eef8f8;

  --geel:     #f6c344;
  --groen:    #7dc855;

  --ink:      #12262b;
  --ink-soft: #46595f;
  --line:     #d9e3e4;
  --bg:       #ffffff;
  --bg-alt:   #f4f9f9;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 2px rgba(18, 38, 43, .06), 0 8px 24px rgba(18, 38, 43, .06);

  --wrap: 1180px;
  --gap: 1.5rem;

  --font-body: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-head: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-700); }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; text-wrap: balance; margin: 0 0 .6em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); letter-spacing: -.015em; }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--teal-700); color: #fff; padding: .75rem 1.25rem;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--teal-600); outline-offset: 2px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.wrap.narrow { max-width: 780px; }

/* -------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .7em 1.35em; border-radius: var(--radius); border: 2px solid transparent;
  font-weight: 700; font-size: 1rem; line-height: 1.2;
  text-decoration: none; cursor: pointer; transition: background .15s, color .15s, border-color .15s;
}
.btn-primary { background: var(--teal-600); color: #fff; }
.btn-primary:hover { background: var(--teal-700); }
.btn-outline { border-color: var(--teal-600); color: var(--teal-700); background: transparent; }
.btn-outline:hover { background: var(--teal-50); }
.btn-ghost { color: var(--ink); background: transparent; padding-inline: .5em; }
.btn-lg { padding: .9em 1.7em; font-size: 1.05rem; }
.btn-block { width: 100%; }

.eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--teal-700); margin: 0 0 .7em;
}

/* --------------------------------------------------------------- header -- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 96px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: inherit; margin-right: auto; }
.brand-logo { width: 92px; height: auto; }
.brand-name { display: block; font-weight: 800; font-size: 1.1rem; color: var(--teal-700); }
.brand-tag  { display: block; font-size: .74rem; color: var(--ink-soft); }
.header-cta { display: flex; align-items: center; gap: .5rem; }
.btn-phone { font-weight: 700; white-space: nowrap; }

/* Taalwissel NL / FR / EN */
.lang-switch { list-style: none; display: flex; gap: .15rem; padding: 0; margin: 0; }
.lang-switch a {
  display: block; padding: .3rem .5rem; border-radius: 6px;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  text-decoration: none; color: var(--ink-soft);
}
.lang-switch a:hover { background: var(--teal-50); color: var(--teal-700); }
.lang-switch a.is-current { background: var(--teal-600); color: #fff; }

.primary-nav { order: 3; width: 100%; display: none; }
.primary-nav.is-open { display: block; }
.nav-list { list-style: none; margin: 0; padding: .5rem 0 1rem; display: flex; flex-direction: column; gap: .2rem; }
.nav-list a { display: block; padding: .55rem .25rem; text-decoration: none; color: var(--ink); font-weight: 600; }
.nav-list a:hover { color: var(--teal-700); }

.nav-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  background: none; border: 2px solid var(--line); border-radius: var(--radius);
  padding: .5rem .8rem; font: inherit; font-weight: 700; cursor: pointer;
}
.nav-toggle-bars { width: 18px; height: 2px; background: var(--ink); box-shadow: 0 6px 0 var(--ink), 0 -6px 0 var(--ink); }

@media (min-width: 1000px) {
  .nav-toggle { display: none; }
  .brand-text { display: none; }
  .primary-nav { display: block; order: 0; width: auto; }
  .nav-list { flex-direction: row; padding: 0; gap: .9rem; }
  .nav-list a { padding: .3rem 0; font-size: .92rem; }
  .btn-phone .btn-phone-label { display: none; }
  .header-inner { flex-wrap: nowrap; }
}
/* Onder 1000px: belknop en offerteknop zitten al in de vaste balk onderaan */
@media (max-width: 999px) {
  .header-cta { display: none; }
  .brand-logo { width: 68px; }
  .header-inner { min-height: 80px; }
}

/* ----------------------------------------------------------------- hero -- */
.hero { background: linear-gradient(180deg, var(--teal-50), var(--bg)); padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.hero-inner { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .hero-inner { grid-template-columns: 1.1fr .9fr; } }
.lead { font-size: 1.15rem; color: var(--ink-soft); }
.hl { color: var(--teal-600); }
.hero-points { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: .5rem; }
.hero-points li { padding-left: 1.7em; position: relative; font-weight: 600; }
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: .7em; height: .7em; border-radius: 50%; background: var(--groen);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1rem; }
.hero-note { font-size: .95rem; color: var(--ink-soft); }
.hero-media { margin: 0; position: relative; }
.hero-media img { width: 100%; height: auto; }
.hero-badge {
  position: absolute; left: 0; top: .5rem;
  background: #fff; border-radius: var(--radius); padding: .7rem 1rem; box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-badge strong { display: block; color: var(--teal-700); }
.hero-badge span { font-size: .85rem; color: var(--ink-soft); }

/* ----------------------------------------------------------------- usps -- */
.usps { background: var(--teal-900); color: #fff; padding-block: 2rem; }
.usp-grid { display: grid; gap: 1.5rem; }
@media (min-width: 700px)  { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .usp-grid { grid-template-columns: repeat(4, 1fr); } }
.usp { display: grid; grid-template-columns: 64px 1fr; gap: .25rem 1rem; align-items: start; }
.usp-icon { width: 64px; height: 64px; grid-row: 1 / 3; background: #fff; border-radius: 50%; padding: .2rem; }
.usp p { margin: 0; color: #c9e6e6; font-size: .95rem; }
.usp-title { font-size: 1.05rem; margin: 0 0 .3em; color: #fff; }

/* ------------------------------------------------------------- sections -- */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-intro { font-size: 1.1rem; color: var(--ink-soft); margin: 0; }

.tick { list-style: none; padding: 0; display: grid; gap: .45rem; }
.tick li { padding-left: 1.6em; position: relative; }
.tick li::before {
  content: ""; position: absolute; left: .1em; top: .45em;
  width: .5em; height: .85em; border: solid var(--teal-600);
  border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}

/* --------------------------------------------------------- service grid -- */
.service-grid { display: grid; gap: 1.5rem; }
@media (min-width: 760px)  { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
}
.service-feature { grid-column: 1 / -1; }
@media (min-width: 1100px) { .service-feature { grid-column: span 2; flex-direction: row; } .service-feature .service-media { flex: 0 0 42%; } }
.service-media { margin: 0; background: #fff; display: grid; place-items: center; padding: .75rem .75rem 0; }
.service-media img { width: 100%; height: auto; max-width: 380px; aspect-ratio: 5 / 4; object-fit: contain; }
.service-feature .service-media { padding: 1rem; align-items: start; }
.service-feature .service-media img { max-width: 100%; }
.service-body { padding: 1.5rem; display: flex; flex-direction: column; }
.service-lead { font-weight: 600; }
.service-price {
  margin: auto 0 0; padding-top: 1rem; border-top: 1px solid var(--line);
  font-size: .95rem; color: var(--ink-soft);
}
.service-price strong { color: var(--teal-700); }

/* ------------------------------------------------------------------ b2b -- */
.b2b-layout { display: grid; gap: 2.5rem; }
@media (min-width: 1000px) { .b2b-layout { grid-template-columns: 1.3fr .7fr; align-items: start; } }
.b2b-list { display: grid; gap: 1.75rem; }
@media (min-width: 640px) { .b2b-list { grid-template-columns: repeat(2, 1fr); } }
.b2b-item { padding-left: 1.1rem; border-left: 3px solid var(--teal-100); }
.b2b-item h3 { color: var(--teal-700); }
.b2b-item p { font-size: .98rem; }
.b2b-kw { font-size: .92rem; color: var(--ink-soft); }
.b2b-aside { display: grid; gap: 1.25rem; }
.b2b-media { margin: 0; } .b2b-media img { width: 100%; height: auto; }
.callout { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; }
.callout-quiet { background: transparent; }
.callout-title { font-size: 1.05rem; }
.callout .tick { font-size: .95rem; }

/* ------------------------------------------------------------------ b2c -- */
.b2c-grid { display: grid; gap: 1.25rem; }
@media (min-width: 700px)  { .b2c-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .b2c-grid { grid-template-columns: repeat(4, 1fr); } }
.b2c-card { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 1.5rem; }
.card-icon { width: 76px; height: 76px; margin-bottom: .75rem; }
.b2c-card h3 { color: var(--teal-700); }
.b2c-card p { margin: 0; font-size: .97rem; color: var(--ink-soft); }

/* -------------------------------------------------------------- prijzen -- */
.table-scroll { overflow-x: auto; margin-bottom: 2rem; }
.price-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 620px; }
.price-table th, .price-table td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--teal-900); color: #fff; font-size: .9rem; letter-spacing: .03em; }
.price-table tbody th { font-weight: 600; }
.price-table .num { font-weight: 700; color: var(--teal-700); white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-table td:last-child { color: var(--ink-soft); font-size: .93rem; }
.price-notes { background: #fff; border-radius: var(--radius-lg); padding: 1.75rem; border: 1px solid var(--line); }

/* -------------------------------------------------------------- werkwijze */
.steps { list-style: none; counter-reset: s; padding: 0; display: grid; gap: 1.25rem; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(5, 1fr); } }
.step { counter-increment: s; position: relative; }
.step-icon { width: 88px; height: 88px; margin-bottom: .75rem; display: block; }
.step::before {
  content: counter(s); position: absolute; top: 0; left: 64px;
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  background: var(--teal-600); color: #fff; font-weight: 800; font-size: .9rem;
  display: grid; place-items: center; border: 2px solid #fff;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

/* ------------------------------------------------------------ werkgebied -- */
.region-media { margin: 0 auto 2rem; max-width: 300px; }
@media (min-width: 1000px) {
  #werkgebied .wrap { position: relative; }
  .region-media { position: absolute; right: 20px; top: -1rem; max-width: 280px; margin: 0; }
  #werkgebied .section-head { padding-right: 320px; }
}
.region-grid { display: grid; gap: 1.5rem; }
@media (min-width: 760px)  { .region-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .region-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.region { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; }
.region-core { border-color: var(--teal-600); border-width: 2px; }
.region h3 { color: var(--teal-700); }
.region-sub { font-size: .9rem; color: var(--ink-soft); }
.town-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; font-size: .95rem; }
.town-list li { font-weight: 600; }
.deel { display: block; font-weight: 400; font-size: .82rem; color: var(--ink-soft); }
.region-note { margin-top: 1.5rem; font-size: .97rem; }

/* ------------------------------------------------------------------ over -- */
.about-layout { display: grid; gap: 2.5rem; }
@media (min-width: 950px) { .about-layout { grid-template-columns: 1.2fr .8fr; align-items: start; } }
.about-media { margin: 0; display: grid; gap: 1.5rem; justify-items: center; align-content: start; }
.about-logo { width: min(100%, 300px); }
.about-media img { height: auto; }
.fact-list { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; gap: .5rem; }
.fact-list li { display: flex; gap: 1rem; flex-wrap: wrap; padding: .55rem 0; border-bottom: 1px solid var(--line); }
.fact-label { flex: 0 0 9rem; font-weight: 700; font-size: .9rem; color: var(--teal-700); }
.fact-value { color: var(--ink-soft); }

/* ---------------------------------------------------- dienstencheques -- */
.dc-layout { display: grid; gap: 2rem; align-items: center; max-width: 1000px; }
@media (min-width: 900px) { .dc-layout { grid-template-columns: 300px 1fr; } }
.dc-media { margin: 0; }
.dc-media img { width: 100%; height: auto; }
.dc-copy p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------------- faq -- */
.faq { display: grid; gap: .6rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.faq-item summary {
  cursor: pointer; padding: 1.05rem 1.25rem; font-weight: 700; list-style: none;
  display: flex; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--teal-600); font-size: 1.4rem; line-height: 1; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-answer { padding: 0 1.25rem 1.25rem; color: var(--ink-soft); }
.faq-answer p { margin: 0; }

/* --------------------------------------------------------------- contact -- */
.section-contact { background: var(--teal-900); color: #fff; }
.section-contact .eyebrow { color: var(--geel); }
.section-contact h2 { color: #fff; }
.section-contact .lead { color: #c9e6e6; }
.contact-layout { display: grid; gap: 2.5rem; }
@media (min-width: 950px) { .contact-layout { grid-template-columns: .9fr 1.1fr; align-items: start; } }
.contact-methods { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: .8rem; }
.contact-methods li { display: grid; gap: .1rem; }
.contact-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: #8fc4c4; }
.contact-value { font-size: 1.1rem; font-weight: 700; color: #fff; text-decoration: none; }
a.contact-value:hover { color: var(--geel); }
.contact-media { margin: 0; max-width: 260px; }
.contact-media img { width: 100%; height: auto; }

.quote-form { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem); display: grid; gap: 1.25rem; }
.form-group { border: 0; padding: 0; margin: 0; }
.form-group legend { font-weight: 700; padding: 0; margin-bottom: .6rem; }
.hint { font-weight: 400; color: var(--ink-soft); font-size: .88rem; }
.req { color: #c0392b; }
.radio-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.radio, .check { display: flex; align-items: flex-start; gap: .5rem; cursor: pointer; font-size: .97rem; }
.check-grid { display: grid; gap: .5rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.check-consent { font-size: .9rem; color: var(--ink-soft); }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 620px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .35rem; }
.field label { font-weight: 700; font-size: .93rem; }
.field input, .field select, .field textarea {
  font: inherit; padding: .7rem .85rem; border: 2px solid var(--line);
  border-radius: var(--radius); background: #fff; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal-600); outline: none; }
.form-note { text-align: center; font-size: .93rem; color: var(--ink-soft); margin: 0; }

/* ---------------------------------------------------------------- footer -- */
.site-footer { background: #0a1f23; color: #b8cccf; padding-block: 3rem 1.5rem; font-size: .95rem; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 700px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-logo { width: 150px; background: #fff; border-radius: 50%; padding: .5rem; }
.footer-tagline { margin-top: 1rem; }
.footer-title { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: .9em; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.footer-list a, .footer-address a { color: #b8cccf; text-decoration: none; }
.footer-list a:hover, .footer-address a:hover { color: var(--geel); text-decoration: underline; }
.footer-address { font-style: normal; line-height: 1.7; }
.footer-address strong { color: #fff; }
.footer-hours { margin-top: 1rem; font-size: .9rem; }
.todo { background: #7a5c12; color: #ffe9a8; padding: 0 .35em; border-radius: 3px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  border-top: 1px solid #1d3a3f; margin-top: 2.5rem; padding-top: 1.25rem; font-size: .88rem;
}
.footer-bottom p { margin: 0; }
.footer-legal { list-style: none; display: flex; flex-wrap: wrap; gap: 1.25rem; padding: 0; margin: 0; }
.footer-legal a { color: #b8cccf; }

/* ----------------------------------------------------------- mobile bar -- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mobile-bar-btn {
  background: #fff; padding: .95rem .5rem; text-align: center;
  font-weight: 700; text-decoration: none; color: var(--ink); font-size: .95rem;
}
.mobile-bar-btn-alt { color: #1d8f4e; }
.mobile-bar-btn-primary { background: var(--teal-600); color: #fff; }
@media (min-width: 1000px) { .mobile-bar { display: none; } }
@media (max-width: 999px)  { body { padding-bottom: 4rem; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
