/* ============================================================
   De Reinigingsdokter — aanvullende stijlen (app.css)
   Nieuw: WhatsApp-float, mobiele actiebalk, trust-badge,
   stadspagina-onderdelen, details/summary, formulier-hints.
   ============================================================ */

/* ---------- Zwevende WhatsApp-knop ---------- */
.wa-float {
    position: fixed;
    right: 18px;
    bottom: 26px;
    z-index: 9990;
    width: 58px;
    height: 58px;
    text-decoration: none;
}
.wa-float__icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1bd741;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .28);
    transition: transform .15s ease;
}
.wa-float:hover .wa-float__icon { transform: scale(1.07); }
.wa-float__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #1bd741;
    opacity: .45;
    animation: wa-pulse 2s ease-out infinite;
    z-index: -1;
}
@keyframes wa-pulse {
    0%   { transform: scale(1);   opacity: .45; }
    70%, 100% { transform: scale(1.6); opacity: 0; }
}
.wa-float__label {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: #fff;
    color: #10357a;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
    white-space: nowrap;
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
}
.wa-float:hover .wa-float__label,
.wa-float:focus .wa-float__label { opacity: 1; transform: translateY(-50%) translateX(0); }

@media (max-width: 760px) {
    .wa-float { right: 12px; bottom: 70px; width: 52px; height: 52px; }
    .wa-float__icon svg { width: 26px; height: 26px; }
    .wa-float__label { display: none; }
}

/* ---------- Sticky mobiele actiebalk ---------- */
.mobile-cta-bar {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 9995;
    background: #002970;
    box-shadow: 0 -2px 12px rgba(0,0,0,.25);
}
.mobile-cta-bar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 4px 9px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    border-right: 1px solid rgba(255,255,255,.15);
}
.mobile-cta-bar__item:last-child { border-right: 0; }
.mobile-cta-bar__item--wa { background: #15C30D; }
.mobile-cta-bar__item--form { background: #F5C457; color: #10357a; }
@media (max-width: 760px) {
    .mobile-cta-bar { display: flex; }
    body { padding-bottom: 56px; }
}

/* ---------- Trust-badge in hero ---------- */
.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .92);
    border-radius: 12px;
    padding: 10px 18px;
    margin: 6px 0 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.hero-trust__nr {
    font-size: 30px;
    font-weight: 800;
    color: #002970;
    line-height: 1;
}
.hero-trust__txt {
    font-size: 13px;
    color: #333;
    line-height: 1.35;
}
.hero-trust__txt strong { display: block; color: #002970; font-size: 14px; }

/* ---------- Fotoblok: vierkante crops behouden ---------- */
.foto__img {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* ---------- Voor/na afbeeldingen responsief ---------- */
.example__img { max-width: 100%; height: auto; }

/* ---------- Werkgebied / stedenlijst ---------- */
.locations__items--inline { margin: 0; padding: 0; list-style: none; }
.locations__items--inline .locations__item { display: inline-block; margin: 0 10px 6px 0; }

.locations-more { margin-top: 12px; }
.locations-more__summary {
    cursor: pointer;
    font-weight: 700;
    color: #002970;
    padding: 8px 0;
    list-style: none;
}
.locations-more__summary::-webkit-details-marker { display: none; }
.locations-more__summary::before { content: "+ "; }
.locations-more[open] .locations-more__summary::before { content: "− "; }

/* ---------- Formulier ---------- */
.form-hint { font-size: 13px; color: #555; margin-top: 6px; }
.form-01__control.error, textarea.message.error { border: 2px solid #d43b3b; }
.side-address { font-size: 14px; }

/* ---------- Admin panel ---------- */
/* (zie /admin — eigen styling, geen afhankelijkheid van site-css) */

/* ============================================================
   MODERNISERING v2 — typography, hero, knoppen, sterren,
   voor/na-slider, FAQ, cookie-balk
   (zelfde structuur, frissere uitstraling)
   ============================================================ */

/* ---------- Typografie ---------- */
body, .all { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif; }
h1, h2, h3, .lane__title, .hero-02__title, .plus-intro, .box-cta__title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    letter-spacing: -0.015em;
}
.lane__title { font-weight: 800; }
@media (min-width: 900px) { .lane__title { font-size: 34px; line-height: 1.2; } }

/* ---------- Hero met foto + overlay ---------- */
.hero-02 {
    background:
        linear-gradient(92deg, rgba(4, 25, 74, .82) 0%, rgba(4, 25, 74, .55) 55%, rgba(4, 25, 74, .25) 100%),
        url('/media/home/De-Reinigingsdokter-schoon-gevoel-web.jpg') center 60% / cover no-repeat !important;
    min-height: 480px;
    display: flex;
    align-items: center;
}
.hero-02__small { max-height: none; }
.hero-02__title {
    color: #fff !important;
    font-size: 30px !important;
    line-height: 1.22 !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 14px rgba(0, 10, 40, .45);
    max-width: 720px;
}
@media (min-width: 900px) {
    .hero-02__title { font-size: 44px !important; line-height: 1.15 !important; }
    .hero-02 { min-height: 560px; }
}
.hero-02__subtitle {
    color: rgba(255, 255, 255, .95) !important;
    font-weight: 500 !important;
    font-size: 17px !important;
    line-height: 1.5 !important;
    max-width: 640px;
    text-shadow: 0 1px 8px rgba(0, 10, 40, .5);
}
.hero-trust { background: rgba(255,255,255,.96); }

/* ---------- Moderne knoppen ---------- */
.button-02, .button-01.is-active, .is-active.header__button {
    border-radius: 12px !important;
    box-shadow: 0 6px 18px rgba(27, 215, 65, .35);
    font-weight: 700 !important;
    transition: transform .15s ease, box-shadow .15s ease;
}
.button-02:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(27, 215, 65, .45); }
.group-whatsapp__link { border-radius: 12px; }
.group-button-02 {
    background: #002970 !important;
    box-shadow: 0 6px 18px rgba(0, 41, 112, .3) !important;
}
.group-button-02:hover { box-shadow: 0 10px 24px rgba(0, 41, 112, .42) !important; }
.group-communication { gap: 10px; }
.group-communication a { font-size: 15px; }

/* ---------- Review-sterren ---------- */
.review__block { border-radius: 14px; overflow: hidden; box-shadow: 0 3px 14px rgba(20,30,60,.08); }
.review__stars {
    color: #f5b400;
    font-size: 16px;
    letter-spacing: 2px;
    margin: 0 0 6px;
    line-height: 1;
}
.review__stars::before { content: "★★★★★"; }
.review__categorie { border-radius: 999px; }

/* ---------- Voor/na-slider ---------- */
.ba-slider {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 18px auto;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(15, 25, 60, .18);
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}
.ba-slider img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.ba-slider__after { clip-path: inset(0 0 0 50%); }
.ba-slider__divider {
    position: absolute; top: 0; bottom: 0; left: 50%;
    width: 3px; margin-left: -1.5px;
    background: #fff;
    box-shadow: 0 0 12px rgba(0,0,0,.4);
    pointer-events: none;
}
.ba-slider__handle {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: #fff; color: #002970;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,.35);
    pointer-events: none;
}
.ba-slider__handle::before { content: "◀ ▶"; font-size: 10px; letter-spacing: 1px; }
.ba-slider__label {
    position: absolute; top: 12px;
    background: rgba(4, 25, 74, .8); color: #fff;
    font-size: 12px; font-weight: 700;
    padding: 5px 12px; border-radius: 999px;
    pointer-events: none;
}
.ba-slider__label--before { left: 12px; }
.ba-slider__label--after { right: 12px; background: rgba(27, 215, 65, .85); }
.ba-slider__range {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    opacity: 0; cursor: ew-resize;
    margin: 0;
    -webkit-appearance: none; appearance: none;
}
.ba-slider__range::-webkit-slider-thumb { -webkit-appearance: none; width: 60px; height: 100%; }
.ba-hint { text-align: center; color: #7c8598; font-size: 13px; margin: 8px 0 0; }

/* ---------- USP-rij met iconen ---------- */
.usp-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin: 26px 0;
}
.usp-row__item {
    background: #fff; border-radius: 14px; padding: 18px 16px;
    text-align: center; box-shadow: 0 3px 12px rgba(20,30,60,.07);
    display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.usp-row__icon { font-size: 26px; }
.usp-row__item strong { font-size: 15px; color: #002970; }
.usp-row__item span { font-size: 13px; color: #55617d; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
    background: #fff; border-radius: 12px; margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(20,30,60,.06);
    overflow: hidden;
}
.faq summary {
    cursor: pointer; padding: 16px 20px; font-weight: 700; color: #002970;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
    font-size: 15.5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 20px; color: #1bd741; transition: transform .2s; }
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { border-bottom: 1px solid #eef1f7; }
.faq__answer { padding: 14px 20px 18px; color: #33405c; font-size: 14.5px; line-height: 1.65; }

/* ---------- Cookie-balk ---------- */
.cookie-bar {
    position: fixed; left: 0; right: 0; bottom: 0;
    background: #101c3d; color: #e8ecf7;
    padding: 16px 20px;
    display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center; justify-content: center;
    z-index: 9999;
    box-shadow: 0 -4px 24px rgba(0,0,0,.3);
    font-size: 14px;
}
.cookie-bar a { color: #9fc0ff; }
.cookie-bar .btn { padding: 8px 16px; font-size: 13.5px; border-radius: 10px; }
.cookie-bar__accept { background: #1bd741; border-color: #1bd741; color: #fff; }
.cookie-bar__decline { background: transparent; color: #cdd6ea; border-color: #3b4a75; }
@media (max-width: 760px) { .cookie-bar { bottom: 56px; } }

/* ---------- Footer legal links ---------- */
.footer_legal { margin-top: 10px; font-size: 13px; }
.footer_legal a { color: inherit; text-decoration: underline; margin-right: 14px; }

/* ---------- Juridische pagina's ---------- */
.legal-page { max-width: 780px; margin: 0 auto; }
.legal-page h2 { margin-top: 26px; }
.legal-page p, .legal-page li { font-size: 14.5px; line-height: 1.7; }

/* ---------- Portfolio v3 ---------- */
.portfolio-intro { max-width: 860px; margin: 0 auto 26px; text-align: center; padding-top: 24px; }
.portfolio-intro .lane__title { margin-bottom: 12px; }
.portfolio-intro .cont-html { color: #33405c; font-size: 16px; line-height: 1.7; }
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 22px;
    margin-bottom: 34px;
}
.portfolio-card {
    margin: 0; background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 4px 18px rgba(20,30,60,.10);
    transition: transform .18s ease, box-shadow .18s ease;
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(20,30,60,.16); }
.portfolio-card__pair { display: grid; grid-template-columns: 1fr 1fr; }
.portfolio-card__img { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.portfolio-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portfolio-card__label {
    position: absolute; top: 10px; left: 10px;
    background: rgba(4, 25, 74, .88); color: #fff;
    font-size: 12px; font-weight: 800; letter-spacing: .04em;
    padding: 4px 12px; border-radius: 999px;
}
.portfolio-card__label--na { background: rgba(27, 215, 65, .9); }
.portfolio-card figcaption {
    padding: 12px 16px; font-weight: 700; color: #10357a; font-size: 14.5px;
    border-top: 1px solid #eef1f7;
}
.portfolio-cta {
    text-align: center; background: linear-gradient(135deg, #002970, #0a46ad);
    border-radius: 20px; padding: 34px 24px; color: #fff; margin-bottom: 30px;
}
.portfolio-cta h2 { color: #fff; font-size: 26px; margin: 0 0 8px; }
.portfolio-cta p { color: rgba(255,255,255,.9); margin: 0 auto 18px; max-width: 560px; }
.portfolio-cta .group-communication { justify-content: center; }
.portfolio-cta .group-communication__txt { color: rgba(255,255,255,.8); }
.portfolio-cta .group-call { color: #fff; }
@media (max-width: 640px) {
    .portfolio-grid { grid-template-columns: 1fr; }
}

/* ---------- Home portfolio-CTA ---------- */
.home-portfolio-cta { text-align: center; margin-top: 22px; }
.home-portfolio-cta__link {
    display: inline-block; padding: 13px 26px; border-radius: 999px;
    background: #002970; color: #fff !important; font-weight: 700; font-size: 15.5px;
    text-decoration: none; box-shadow: 0 6px 18px rgba(0,41,112,.28);
    transition: transform .15s ease, box-shadow .15s ease;
}
.home-portfolio-cta__link:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,41,112,.4); }

/* ---------- Reviews-polish v3 ---------- */
html, body { overflow-x: hidden; }
.lane-reviews { background: #f4f7fb; overflow: visible; padding: 64px 0 56px; }
.lane-reviews__title { font-size: 30px; font-weight: 800; margin-bottom: 26px; }
.review__item { padding-top: 14px; }
.review__block {
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(20, 30, 60, .08);
    padding: 22px 20px 18px;
    margin-bottom: 16px;
}
.review__service {
    top: 0;
    margin-top: -16px;
    right: 16px;
    border-radius: 999px;
    padding: 5px 16px;
    box-shadow: 0 4px 12px rgba(0, 41, 112, .18);
    background: linear-gradient(to bottom, #c3e9f3 0, #91dcf3 100%);
}
.review__categorie { font-size: 12.5px; letter-spacing: .03em; }
.review__name { color: #10357a; }
.review__title { color: #1c2b4a; }
.review__content p { color: #45536e; }

/* ---------- Footer-polish v3 ---------- */
.footer_legal { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.footer_legal span { color: #9aa7bd; }

/* ---------- Polish v5 ---------- */
.hero-02:before { display: none; } /* oude witte waas over de nieuwe hero weg */
.review__block { overflow: visible; } /* anders wordt het dienst-label afgesneden */

/* Diensttegels als moderne kaarten */
.service-items {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin: 0; padding: 0;
}
.service-item { width: auto !important; margin: 0 !important; list-style: none; }
.service-item__link {
    flex-direction: column !important;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 24px 16px 20px !important;
    box-shadow: 0 6px 18px rgba(20, 30, 60, .08);
    transition: transform .15s ease, box-shadow .15s ease;
}
.service-item__link:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(20, 30, 60, .15); }
.service-item__image { width: 60px; height: 60px; flex: none; margin: 0 0 12px; }
.service-item__image svg { width: 100%; height: 100%; }
.service-item__title {
    width: 100% !important; flex: none !important; padding: 0 !important;
    text-align: center !important; font-weight: 700; font-size: 15.5px; line-height: 1.3;
}

/* Prijzen als strakke kaarten */
.prices { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.prices__col { background: #fff; border-radius: 16px; padding: 18px; box-shadow: 0 6px 18px rgba(20, 30, 60, .08); }
.prices-item__title {
    font-size: 18px; font-weight: 800; color: #002970;
    margin-bottom: 10px; padding-bottom: 10px; border-bottom: 2px solid #c3e9f3;
}
.prices-item { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; padding: 7px 0; border-bottom: 1px dashed #e3e9f4; }
.prices-item:last-child { border-bottom: 0; }
.prices-item__type-desc { font-size: 14.5px; color: #45536e; }
.prices-item_price { font-weight: 800; color: #002970; white-space: nowrap; }
.prices__btw { margin-top: 14px; color: #6b7a94; font-size: 13px; }

/* Formulier modern */
.form-01 input[type="text"], .form-01 input[type="email"], .form-01 input[type="tel"],
.form-01 textarea, .form-01 select, .form-01__control {
    width: 100%;
    border: 1.5px solid #d7dfeb;
    border-radius: 10px;
    padding: 11px 14px;
    font: inherit;
    color: #1c2b4a;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.form-01 input:focus, .form-01 textarea:focus, .form-01 select:focus {
    outline: none; border-color: #002970; box-shadow: 0 0 0 3px rgba(0, 41, 112, .12);
}
.form-01 label { font-weight: 700; color: #10357a; font-size: 14px; }

/* 404 vriendelijk */
.error-404 { padding: 80px 0; text-align: center; }
.error-404__code {
    font-size: 96px; font-weight: 800; color: #c3e9f3; line-height: 1;
    letter-spacing: -0.03em;
}
.error-404__txt { max-width: 560px; margin: 12px auto 24px; color: #45536e; font-size: 16px; line-height: 1.6; }
.error-404__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.error-404__btn {
    display: inline-block; padding: 13px 24px; border-radius: 999px;
    font-weight: 700; text-decoration: none;
}
.error-404__btn--home { background: #002970; color: #fff; }
.error-404__btn--wa { background: #1bd741; color: #fff; box-shadow: 0 6px 18px rgba(27, 215, 65, .35); }

/* Footer social-kaart */
.footer-social {
    background: #fff; border-radius: 14px; padding: 16px;
    display: flex; align-items: center; gap: 12px; max-width: 320px;
}
.footer-social img { width: 44px; height: 44px; border-radius: 10px; background: #fff; }
.footer-social strong { display: block; color: #002970; }
.footer-social a { color: #10357a; font-weight: 700; text-decoration: none; }
.footer-social a:hover { text-decoration: underline; }

/* ---------- Polish v6 ---------- */
/* Prijskaarten: padding die altijd wint, lichtere rand, geen lege stretch-ruimte */
.prices { align-items: start; }
.prices__col {
    padding: 20px 20px 12px !important;
    border: 1px solid #e3e9f4 !important;
    box-shadow: 0 6px 18px rgba(20, 30, 60, .08) !important;
}
.prices-item__title { padding-left: 0 !important; margin-top: 0 !important; }
.prices-items { margin-top: 4px; }
.prices-item { padding: 8px 0 !important; }

/* Mobiel: geen dubbel telefoonnummer in de blauwe kop */
@media (max-width: 760px) {
    .header-col__phone_2 { display: none !important; }
}

/* Footer: rustig raster i.p.v. scheve flex-kolommen */
footer .f-main {
    display: grid !important;
    grid-template-columns: 1.3fr 1fr 1.1fr auto;
    gap: 36px;
    align-items: start;
}
footer .f-item {
    max-width: none !important;
    flex: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}
.footer_legal { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.footer_legal span { white-space: nowrap; }
@media (max-width: 900px) { footer .f-main { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 600px) { footer .f-main { grid-template-columns: 1fr; } }

/* ---------- Polish v7 ---------- */
/* "Gratis offerte aanvragen"-sticker met pijltje bij de WhatsApp-knop (elke pagina) */
.wa-float__note {
    position: absolute;
    bottom: calc(100% + 4px);
    right: -4px;
    width: 96px;
    color: #002970;
    text-align: center;
    pointer-events: none;
    animation: wa-note-bob 2.4s ease-in-out infinite;
}
.wa-float__note em {
    display: block;
    font-style: normal;
    font-weight: 800;
    font-size: 12.5px;
    line-height: 1.2;
    transform: rotate(-6deg);
    background: #F5C457;
    color: #10357a;
    border-radius: 10px;
    padding: 6px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
}
.wa-float__note svg { width: 30px; height: 30px; margin: 2px 0 0 auto; display: block; }
@keyframes wa-note-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
@media (max-width: 760px) {
    .wa-float__note { right: -6px; width: 88px; }
    .wa-float__note em { font-size: 11.5px; }
}

/* Footer: merkkleur i.p.v. zwart-grijs + nette marges (niets meer afgesneden) */
footer { background: linear-gradient(180deg, #0a2a66 0%, #071e4a 100%) !important; padding: 44px 0 28px !important; }
footer .container-fluid { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
footer .f-item p, footer .footer_html p { max-width: 420px; }
.footer_html a, .footer_html p, footer address { color: #dbe6fb !important; }
footer a { color: #c3e9f3; }

/* Review-CTA (echte beoordelingen verzamelen) */
.review-cta { text-align: center; margin-top: 22px; }
.review-cta a {
    display: inline-block; padding: 12px 22px; border-radius: 999px;
    background: #fff; color: #10357a !important; font-weight: 700; font-size: 14.5px;
    text-decoration: none; box-shadow: 0 6px 18px rgba(20, 30, 60, .12);
    transition: transform .15s ease, box-shadow .15s ease;
}
.review-cta a:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(20, 30, 60, .18); }

/* ---------- v8: leesbaarheid ---------- */
.group-communication__txt { color: #fff !important; text-shadow: 0 1px 6px rgba(0, 10, 40, .45); font-weight: 600; }
.box-cta .group-communication__txt, .portfolio-cta .group-communication__txt { color: rgba(255, 255, 255, .92) !important; }

/* ---------- Review-formulier (echte reviews verzamelen) ---------- */
.review-form { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 8px 22px rgba(20, 30, 60, .08); margin: 26px 0 34px; }
.review-form h2 { font-size: 22px; color: #002970; margin: 0 0 6px; font-weight: 800; }
.review-form > p { color: #45536e; margin: 0 0 16px; }
.review-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 640px) { .review-form__row { grid-template-columns: 1fr; } }
.review-form__hp { position: absolute; width: 0; height: 0; overflow: hidden; opacity: 0; }
.review-form__btn { margin-top: 6px; }
.review-form__note { font-size: 12.5px; color: #6b7a94; margin-top: 10px; }
.review-form__thanks { background: #e8f9ee; border: 1px solid #1bd741; color: #0c7a26; padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; font-weight: 600; }

/* ---------- Voorbeelden-grid + snel-offerte (v10) ---------- */
.home-voorbeelden__sub { text-align: center; color: #45536e; margin: -6px 0 20px; }
.home-voorbeelden {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}
.home-voorbeelden__item { background: #fff; border-radius: 16px; padding: 12px; box-shadow: 0 6px 18px rgba(20,30,60,.08); }
.home-voorbeelden__cap { display: block; text-align: center; font-weight: 700; color: #10357a; padding: 10px 0 4px; font-size: 14.5px; }

.snel-offerte { padding: 40px 0; }
.snel-offerte__box {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, #002970, #0a46ad);
    border-radius: 20px;
    padding: 34px 30px;
    color: #fff;
}
.snel-offerte__txt h2 { color: #fff; font-size: 28px; font-weight: 800; margin: 0 0 8px; }
.snel-offerte__txt p { color: rgba(255,255,255,.9); margin: 0; line-height: 1.6; }
.snel-offerte__form { display: grid; gap: 10px; }
.snel-offerte__form input, .snel-offerte__form select {
    border: 0; border-radius: 12px; padding: 13px 16px; font: inherit; width: 100%;
}
.snel-offerte__form button {
    border: 0; border-radius: 12px; padding: 14px 18px;
    background: #1bd741; color: #fff; font-weight: 800; font-size: 16px; cursor: pointer;
    box-shadow: 0 6px 18px rgba(27,215,65,.4);
    transition: transform .15s ease;
}
.snel-offerte__form button:hover { transform: translateY(-2px); }
@media (max-width: 860px) {
    .snel-offerte__box { grid-template-columns: 1fr; padding: 26px 20px; }
}

/* ---------- v11: v.a.-prijsjes ---------- */
.prices-item__va { font-size: 11.5px; font-weight: 700; color: #6b7a94; letter-spacing: .02em; }
