/* ═══════════════════════════════════════════════════════════════
   Bongers Totaalservice — blocks.css v7
   Gebaseerd op sertus.uk stijl — open, licht, vertrouwenwekkend
   Font: Instrument Sans. Geen ronde hoeken.
   ═══════════════════════════════════════════════════════════════ */

/* ── Google Font Import ── */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --antraciet:  #111111;
    --donker:     #1a1a1a;
    --wit:        #ffffff;
    --licht:      #f8f8f8;
    --licht2:     #e8e8e8;
    --tekst:      #161616;
    --tekst2:     #555555;
    --tekst3:     #999999;
    --oranje:     #e8622a;
    --oranje2:    #cf5322;
    --font:       'Instrument Sans', 'Helvetica Neue', Helvetica, sans-serif;
    --max:        1280px;
    --pad:        clamp(24px, 5vw, 80px);
    --section-v:  clamp(80px, 10vw, 120px);
}

html { scroll-behavior: smooth; }

body {
    background: var(--wit);
    color: var(--tekst);
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.bongers-wrap { width: 100%; overflow-x: clip; }
/* ── Container helper ── */
.bt-container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    width: 100%;
}


/* ── Typografie helpers ── */
.bt-section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--oranje);
    margin-bottom: 12px;
}

.bt-section-h2 {
    font-family: var(--font);
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--tekst);
    margin-bottom: 20px;
}

.bt-section-h2--wit { color: var(--wit); }

.bt-section-intro {
    font-size: 16px;
    line-height: 1.7;
    color: var(--tekst2);
    max-width: 560px;
}

/* ── Knoppen ── */
.bt-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-family: var(--font) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    padding: 16px 32px !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}
.bt-btn-primary {
    background: var(--oranje) !important;
    color: var(--wit) !important;
    border: 2px solid var(--oranje) !important;
    box-shadow: 0 4px 16px rgba(232,98,42,0.35) !important;
    padding: 16px 32px !important;
    display: inline-flex !important;
    text-decoration: none !important;
}
.bt-btn-primary:hover {
    background: var(--oranje2);
    border-color: var(--oranje2);
    color: var(--wit);
    box-shadow: 0 6px 24px rgba(232,98,42,0.5);
    transform: translateY(-1px);
}
.bt-btn-secondary {
    background: transparent !important;
    color: var(--wit) !important;
    border: 2px solid rgba(255,255,255,0.7) !important;
    padding: 16px 32px !important;
    display: inline-flex !important;
    text-decoration: none !important;
}
.bt-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--wit);
    color: var(--wit);
}
.bt-btn--primary {
    background: var(--oranje);
    color: var(--wit);
    border: 2px solid var(--oranje);
    box-shadow: 0 4px 16px rgba(232,98,42,0.35);
}
.bt-btn--primary:hover { background: var(--oranje2); border-color: var(--oranje2); color: var(--wit); }
.bt-btn--outline {
    background: transparent;
    color: var(--wit);
    border: 2px solid rgba(255,255,255,0.7);
}
.bt-btn--outline:hover { border-color: var(--wit); background: rgba(255,255,255,0.1); color: var(--wit); }
.bt-btn--outline-dark {
    background: transparent;
    color: var(--tekst);
    border: 2px solid var(--tekst);
}
.bt-btn--outline-dark:hover { background: var(--tekst); color: var(--wit); }

/* ════════════════════════════════════════════════
   AANKONDIGINGSBALK
   ════════════════════════════════════════════════ */
.bt-aankondiging {
    position: relative;
    z-index: 1001;
    background: var(--oranje);
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: none !important;
    box-shadow: none !important;
}

.bt-aankondiging__inner {
    max-width: var(--max);
    width: 100%;
    padding: 0 var(--pad);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.bt-aankondiging__tekst {
    font-size: 12px;
    font-weight: 500;
    color: var(--wit);
    line-height: 1.4;
    opacity: 0.95;
}

.bt-aankondiging__btn {
    font-size: 12px;
    font-weight: 700;
    color: var(--wit);
    background: transparent;
    text-decoration: none;
    white-space: nowrap;
    padding: 0;
    letter-spacing: 0;
    text-transform: none;
    transition: opacity 0.2s;
}

.bt-aankondiging__btn:hover { opacity: 0.75; }

.bt-aankondiging__link {
    font-size: 12px;
    font-weight: 700;
    color: var(--wit);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.6);
    transition: border-color 0.2s;
}

.bt-aankondiging__link:hover { border-color: var(--wit); }

/* ════════════════════════════════════════════════
   NAVIGATIE — Sertus.uk stijl
   Zwarte achtergrond, logo gecentreerd
   ════════════════════════════════════════════════ */
.bt-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    background: #111111;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: top 0.2s ease;
}

.bt-nav__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 80px;
    padding: 0 var(--pad);
    max-width: var(--max);
    margin: 0 auto;
    gap: 24px;
}

.bt-nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.bt-nav__menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
}
.bt-nav__menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--oranje);
    transition: width 0.25s ease;
}
.bt-nav__menu a:hover::after { width: 100%; }
.bt-nav__menu a:hover { color: var(--wit); }

.bt-nav__logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bt-nav__logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
}

.bt-nav__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.bt-nav__phone {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}
.bt-nav__phone:hover { color: var(--wit); }

.bt-nav__cta {
    background: var(--oranje);
    color: var(--wit);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 24px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}
.bt-nav__cta:hover { background: var(--oranje2); color: var(--wit); }

.bt-nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.bt-nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--wit);
    transition: transform 0.3s;
}

/* ── Side-menu overlay ── */
.bt-nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9998;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.bt-nav__overlay.open { display: block; }

/* ── Side-menu panel ── */
.bt-nav__mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: #111;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.bt-nav__mobile.open { transform: translateX(0); }

/* Header met logo en sluit-knop */
.bt-nav__mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bt-nav__mobile-logo {
    height: 36px;
    width: auto;
}

/* Sluit-knop (X) */
.bt-nav__mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    padding: 0;
    flex-shrink: 0;
}
.bt-nav__mobile-close span {
    display: block;
    position: absolute;
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,0.8);
    top: 50%;
    left: 50%;
    transform-origin: center;
}
.bt-nav__mobile-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}
.bt-nav__mobile-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Menu links */
.bt-nav__mobile-links {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    flex: 1;
}
.bt-nav__mobile-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.02em;
}
.bt-nav__mobile-links a:hover {
    color: var(--wit);
    background: rgba(255,255,255,0.04);
}

/* Footer met CTA en telefoon */
.bt-nav__mobile-footer {
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bt-nav__mobile-cta {
    display: block;
    text-align: center;
    padding: 14px 24px !important;
    font-size: 13px !important;
}
.bt-nav__mobile-phone {
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
.bt-nav__mobile-phone:hover { color: var(--wit); }

@media (max-width: 900px) {
    .bt-nav__menu, .bt-nav__phone { display: none; }
    .bt-nav__hamburger { display: flex; }
    .bt-nav__inner { grid-template-columns: auto 1fr auto; }
    .bt-nav__cta { display: none; }
    .bt-nav { overflow: visible; }
}

/* ════════════════════════════════════════════════
   HERO SECTIE — Sertus.uk stijl
   85vh, tekst links-onder, stats floating card
   ════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════
   HERO SECTIE — Volledig redesign
   ════════════════════════════════════════════════ */
.bt-hero {
    position: relative;
    height: calc(100vh - 110px);
    min-height: 600px;
    max-height: 960px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #1a1a1a;
    margin-top: 80px;
    overflow: hidden;
}
.bt-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    transform: scale(1.03);
    transition: transform 8s ease;
}
.bt-hero:hover .bt-hero__bg {
    transform: scale(1.0);
}
.bt-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(15,15,15,0.82) 0%,
        rgba(15,15,15,0.60) 45%,
        rgba(15,15,15,0.25) 100%
    );
}
.bt-hero__overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.50) 0%, transparent 100%);
}
.bt-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.bt-hero__content {
    max-width: 700px;
}
.bt-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--oranje);
    margin-bottom: 20px;
}
.bt-hero__label::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--oranje);
    flex-shrink: 0;
}
.bt-hero__title {
    font-family: var(--font);
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--wit);
    margin-bottom: 24px;
}
.bt-hero__title em {
    font-style: normal;
    color: var(--oranje);
    position: relative;
}
.bt-hero__sub {
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255,255,255,0.72);
    max-width: 500px;
    margin-bottom: 40px;
}
.bt-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* ── Stats balk — geïntegreerd onderaan de hero ── */
.bt-hero__stats-bar {
    position: relative;
    z-index: 3;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: auto;
}
.bt-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}
.bt-hero__stat {
    padding: 28px 32px;
    border-right: 1px solid rgba(255,255,255,0.12);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.bt-hero__stat:last-child {
    border-right: none;
}
.bt-hero__stat-num {
    font-family: var(--font);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
    color: var(--oranje);
    letter-spacing: -0.03em;
    line-height: 1;
}
.bt-hero__stat-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.60);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .bt-hero {
        height: auto;
        min-height: 520px;
        padding-bottom: 0;
    }
    .bt-hero__inner {
        padding-top: 24px;
        padding-bottom: 24px;
    }
    .bt-hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .bt-hero__stat:nth-child(2) {
        border-right: none;
    }
    .bt-hero__stat:nth-child(3) {
        border-top: 1px solid rgba(255,255,255,0.12);
    }
    .bt-hero__stat:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,0.12);
        border-right: none;
    }
}
@media (max-width: 767px) {
    .bt-hero {
        margin-top: 0;
    }
    .bt-hero__title {
        font-size: 36px;
    }
    .bt-hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .bt-hero__stat {
        padding: 20px 16px;
    }
}

/* ════════════════════════════════════════════════
   DIENSTEN SECTIE — Witte kaarten, foto bovenaan
   ════════════════════════════════════════════════ */
.bt-diensten {
    background: var(--licht);
    padding: var(--section-v) var(--pad);
    padding-top: calc(var(--section-v) + 60px);
}

}
@media (max-width: 767px) {
    .bt-diensten { padding-top: 50px !important; }
}

.bt-diensten__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    max-width: var(--max);
    margin: 0 auto 56px;
}

.bt-diensten__header .bt-section-h2 { margin-bottom: 0; }

.bt-diensten__header-right {
    font-size: 15px;
    line-height: 1.75;
    color: var(--tekst2);
    padding-bottom: 4px;
}

.bt-diensten__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--max);
    margin: 0 auto;
}

/* Dienst kaart */
.bt-dienst-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--wit);
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
}

.bt-dienst-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
    transform: translateY(-4px);
}

.bt-dienst-card__img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}

.bt-dienst-card__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.bt-dienst-card:hover .bt-dienst-card__img { transform: scale(1.06); }

.bt-dienst-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.25) 100%);
}

.bt-dienst-card__content {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bt-dienst-card__num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--oranje);
    display: block;
    margin-bottom: 8px;
}

.bt-dienst-card__title {
    font-family: var(--font);
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 700;
    color: var(--tekst);
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.bt-dienst-card__tagline {
    font-size: 14px;
    color: var(--tekst2);
    line-height: 1.6;
    margin-bottom: 20px;
}

.bt-dienst-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
    align-content: flex-start;
}

.bt-dienst-card__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: var(--tekst2);
    background: var(--licht);
    border: 1px solid var(--licht2);
    padding: 5px 12px;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.bt-dienst-card:hover .bt-dienst-card__tag {
    background: var(--licht);
    border-color: var(--licht2);
    color: var(--tekst2);
}

.bt-dienst-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--oranje);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(232,98,42,0.3);
    transition: border-color 0.2s;
    align-self: flex-start;
}
}
.bt-dienst-card__link::after { content: ' →'; }
.bt-dienst-card__link:hover { border-color: var(--oranje); }

@media (max-width: 900px) {
    .bt-diensten__header { grid-template-columns: 1fr; gap: 12px; }
    .bt-diensten__grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ════════════════════════════════════════════════
   USP SECTIE — Wit, 4 kolommen, sertus.uk stijl
   ════════════════════════════════════════════════ */
.bt-usp {
    background: var(--wit);
    padding: var(--section-v) var(--pad);
    border-top: 1px solid var(--licht2);
}

.bt-usp__inner {
    max-width: var(--max);
    margin: 0 auto;
}

.bt-usp__header {
    margin-bottom: 56px;
    max-width: 560px;
}

.bt-usp__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--licht2);
    padding-top: 48px;
}

.bt-usp-item {
    padding-right: 40px;
    border-right: 1px solid var(--licht2);
    padding-bottom: 8px;
}

.bt-usp-item:first-child { padding-left: 0; }
.bt-usp-item:last-child { border-right: none; padding-right: 0; }
.bt-usp-item:not(:first-child) { padding-left: 40px; }

.bt-usp-item__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    color: var(--oranje);
}

.bt-usp-item__icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--oranje);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bt-usp-item__title {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    color: var(--tekst);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.bt-usp-item__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--tekst2);
}

@media (max-width: 900px) {
    .bt-usp__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; border-top: none; padding-top: 0; }
    .bt-usp-item { border-right: none; padding: 0; }
    .bt-usp-item:not(:first-child) { padding-left: 0; }
}

@media (max-width: 767px) {
    .bt-usp__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ════════════════════════════════════════════════
   OVER ONS SECTIE — Lichtgrijs, foto links
   ════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════
   OVER ONS SECTIE
   ════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════
   OVER ONS SECTIE — Nieuw design: foto links, donker rechts
   ════════════════════════════════════════════════ */
.bt-over-ons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
}
/* Linker kolom: foto */
.bt-over-ons__foto-col {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}
.bt-over-ons__foto {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 6s ease;
}
.bt-over-ons__foto-col:hover .bt-over-ons__foto {
    transform: scale(1.04);
}
.bt-over-ons__foto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.10) 0%,
        rgba(0,0,0,0.35) 100%
    );
}
/* Jaar badge — linksonder op de foto */
.bt-over-ons__jaar-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--oranje);
    color: var(--wit);
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    z-index: 2;
}
.bt-over-ons__jaar-num {
    font-family: var(--font);
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}
.bt-over-ons__jaar-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
    line-height: 1.3;
}

/* Rechter kolom: donkere content */
.bt-over-ons__content-col {
    background: #111111;
    display: flex;
    align-items: center;
}
.bt-over-ons__content {
    padding: clamp(48px, 6vw, 80px) clamp(40px, 5vw, 72px);
    width: 100%;
}
.bt-over-ons__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--oranje);
    margin-bottom: 16px;
}
.bt-over-ons__label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--oranje);
    flex-shrink: 0;
}
.bt-over-ons__titel {
    font-family: var(--font);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--wit);
    margin-bottom: 20px;
}
.bt-over-ons__tekst {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
}

/* USP rijen */
.bt-over-ons__usps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.bt-over-ons__usp {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bt-over-ons__usp-icon {
    width: 40px;
    height: 40px;
    background: rgba(232,98,42,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oranje);
    flex-shrink: 0;
}
.bt-over-ons__usp-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 2px;
}
.bt-over-ons__usp-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--wit);
    letter-spacing: 0.01em;
}
.bt-over-ons__usp-text span {
    font-size: 13px;
    color: rgba(255,255,255,0.50);
    line-height: 1.4;
}

/* Statistieken rij */
.bt-over-ons__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bt-over-ons__stat {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.bt-over-ons__stat:last-child {
    border-right: none;
}
.bt-over-ons__stat-num {
    font-family: var(--font);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 800;
    color: var(--oranje);
    letter-spacing: -0.03em;
    line-height: 1;
}
.bt-over-ons__stat-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Knop */
.bt-over-ons .bt-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 900px) {
    .bt-over-ons {
        grid-template-columns: 1fr;
    }
    .bt-over-ons__foto-col {
        min-height: 320px;
    }
    .bt-over-ons__jaar-badge {
        bottom: 24px;
        left: 24px;
    }
    .bt-over-ons__jaar-num {
        font-size: 36px;
    }
    .bt-over-ons__content {
        padding: 48px 24px;
    }
    .bt-over-ons__stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ════════════════════════════════════════════════
   WERKWIJZE SECTIE — Wit, horizontale stappen
   ════════════════════════════════════════════════ */
.bt-werkwijze {
    background: var(--wit);
    padding: var(--section-v) var(--pad);
}

.bt-werkwijze__inner {
    max-width: var(--max);
    margin: 0 auto;
}

.bt-werkwijze__header {
    margin-bottom: 64px;
    max-width: 560px;
}

.bt-werkwijze__stappen {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.bt-werkwijze__stappen::before {
    content: '';
    position: absolute;
    top: 27px;
    left: 28px;
    right: 28px;
    height: 1px;
    background: var(--licht2);
    z-index: 0;
}

.bt-stap {
    position: relative;
    z-index: 1;
    padding: 0 56px 0 0;
}

.bt-stap:last-child { padding-right: 0; }

.bt-stap__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--wit);
    border: 2px solid var(--licht2);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    color: var(--tekst3);
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.bt-stap:hover .bt-stap__num {
    border-color: var(--oranje);
    color: var(--oranje);
    background: rgba(232,98,42,0.04);
}

.bt-stap__icon { display: none; }

.bt-stap__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--oranje);
    margin-bottom: 8px;
    display: block;
}

.bt-stap__title {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    color: var(--tekst);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.bt-stap__tekst {
    font-size: 14px;
    line-height: 1.75;
    color: var(--tekst2);
}

@media (max-width: 900px) {
    .bt-werkwijze__stappen { grid-template-columns: 1fr; gap: 40px; }
    .bt-werkwijze__stappen::before { display: none; }
    .bt-stap { padding: 0; border-left: 2px solid var(--licht2); padding-left: 24px; }
    .bt-stap__num { width: 44px; height: 44px; font-size: 13px; }
}

/* ════════════════════════════════════════════════
   CTA BANNER — Donker, imposant
   ════════════════════════════════════════════════ */
.bt-cta {
    position: relative;
    background: var(--antraciet);
    overflow: hidden;
}

.bt-cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.bt-cta__inner {
    position: relative;
    z-index: 1;
    padding: var(--section-v) var(--pad);
    max-width: var(--max);
    margin: 0 auto;
    text-align: center;
}

.bt-cta__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--oranje);
    margin-bottom: 16px;
}

.bt-cta__title {
    font-family: var(--font);
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 700;
    color: var(--wit);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.bt-cta__sub {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 40px;
    line-height: 1.6;
}

.bt-cta__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ════════════════════════════════════════════════
   CONTACT SECTIE — Lichtgrijs
   ════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════
   CONTACT — Split dark/light design
════════════════════════════════════════════════ */
.bt-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
}

/* Container alignment: content aligns to the 1280px container edges */
/* Left column: content right-aligned to container center */
/* Right column: content left-aligned from container center */

.bt-contact__left {
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 80px 0;
}

.bt-contact__left-inner {
    width: 100%;
    max-width: calc(var(--max) / 2 - var(--pad));
    padding-right: var(--pad);
    padding-left: var(--pad);
    margin-right: 0;
}

.bt-contact__left .bt-section-label {
    color: var(--oranje);
}

.bt-contact__heading {
    font-family: var(--font);
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 12px 0 20px;
}

.bt-contact__tekst {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 380px;
}

.bt-contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.bt-contact__detail {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.bt-contact__detail:hover { opacity: 0.8; }

.bt-contact__detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(232,98,42,0.15);
    border: 1px solid rgba(232,98,42,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--oranje);
}

.bt-contact__detail-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bt-contact__detail-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.bt-contact__detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.bt-contact__promise {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.bt-contact__promise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.bt-contact__promise-item svg {
    color: var(--oranje);
    flex-shrink: 0;
}

.bt-contact__right {
    background: #f8f7f5;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 0;
}

.bt-contact__right-inner {
    width: 100%;
    max-width: calc(var(--max) / 2 - var(--pad));
    padding-left: var(--pad);
    padding-right: var(--pad);
    margin-left: 0;
}

.bt-contact__form-wrap {
    width: 100%;
    max-width: 520px;
}

.bt-form-title {
    font-family: var(--font);
    font-size: 24px;
    font-weight: 800;
    color: var(--tekst);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.bt-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bt-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bt-form-group label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tekst3);
}

.bt-form-group input,
.bt-form-group select,
.bt-form-group textarea {
    background: #ffffff;
    border: 1.5px solid #e0ddd8;
    color: var(--tekst);
    font-family: var(--font);
    font-size: 14px;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    -webkit-appearance: none;
    border-radius: 0;
}

.bt-form-group input:focus,
.bt-form-group select:focus,
.bt-form-group textarea:focus {
    border-color: var(--oranje);
    box-shadow: 0 0 0 3px rgba(232,98,42,0.1);
}

.bt-form-group select option { background: var(--wit); color: var(--tekst); }
.bt-form-group textarea { min-height: 120px; resize: vertical; }

.bt-form-submit {
    background: var(--oranje) !important;
    color: var(--wit) !important;
    font-family: var(--font) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 16px 40px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    align-self: flex-start !important;
    display: inline-block !important;
    text-decoration: none !important;
    border-radius: 0 !important;
}

.bt-form-submit:hover { background: var(--oranje2) !important; }

@media (max-width: 900px) {
    .bt-contact { grid-template-columns: 1fr; }
    .bt-contact__left { padding: 60px 28px; }
    .bt-contact__right { padding: 60px 28px; }
    .bt-form-row { grid-template-columns: 1fr; }
    .bt-contact__heading { font-size: 32px; }
}

/* ════════════════════════════════════════════════
   FOOTER — Donker antraciet
   ════════════════════════════════════════════════ */
.bt-footer {
    background: #111111;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bt-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 72px var(--pad) 56px;
    max-width: var(--max);
    margin: 0 auto;
}

.bt-footer__logo {
    height: 44px;
    width: auto;
    margin-bottom: 18px;
    display: block;
    filter: brightness(0) invert(1);
}

.bt-footer__desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
    max-width: 260px;
}

.bt-footer__tagline {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--oranje);
}

.bt-footer__col h4 {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--wit);
    margin-bottom: 20px;
}

.bt-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 0; }
.bt-footer__address {
    color: #aaa;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 4px;
}
.bt-footer__col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}
.bt-footer__col ul li a:hover { color: rgba(255,255,255,0.8); }

.bt-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px var(--pad);
    max-width: var(--max);
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 11px;
    color: rgba(255,255,255,0.25);
}

.bt-footer__bottom-links {
    display: flex;
    gap: 24px;
}

.bt-footer__bottom-links a {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.2s;
}
.bt-footer__bottom-links a:hover { color: rgba(255,255,255,0.55); }

@media (max-width: 900px) {
    .bt-footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .bt-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
    .bt-footer__top { grid-template-columns: 1fr; }
    .bt-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
    .bt-footer__bottom-links { flex-wrap: wrap; justify-content: center; gap: 8px 16px; }
    .bt-footer__credit { margin-left: 0; }
}

/* ════════════════════════════════════════════════
   THEMA OVERRIDES — Verberg thema header
   ════════════════════════════════════════════════ */
.site-header, .site-branding, .custom-logo-link, .site-logo,
.header-wrap, .site-header-wrap,
img[class*="custom-logo"], a[class*="custom-logo"] {
    display: none !important;
}

.nav-wrapper,
header.header,
.header.header,
header[class="header"],
.site-nav {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* WordPress admin bar compensatie */
.admin-bar .bt-aankondiging { top: 32px; }
.admin-bar .bt-nav { top: calc(32px + 38px); }
.admin-bar .bt-hero { margin-top: 0; }

/* ════════════════════════════════════════════════
   SECTOREN SECTIE
   ════════════════════════════════════════════════ */

/* =============================================
   SECTOREN SECTIE
   ============================================= */
.bt-sectoren {
    padding: 80px 0;
    background: #f5f5f3;
}
.bt-sectoren .bt-container {
    /* padding via var(--pad) */
}
.bt-sectoren__header {
    padding-left: 0;
    padding-right: 0;
}
.bt-sectoren__cta-inner {
    margin-left: var(--pad);
    margin-right: var(--pad);
}

.bt-sectoren__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}
.bt-sectoren__header-left { flex: 0 0 auto; max-width: 480px; }
.bt-sectoren__header-right { display: none; }
.bt-sectoren__intro { font-size: 1.05rem; color: #555; line-height: 1.7; margin: 0; }
.bt-sectoren__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.bt-sector-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.bt-sector-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    transform: translateY(-3px);
}
.bt-sector-card__img-wrap { width: 100%; height: 200px; overflow: hidden; }
.bt-sector-card__img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.bt-sector-card:hover .bt-sector-card__img { transform: scale(1.04); }
.bt-sector-card__body { padding: 24px; }
.bt-sector-card__naam {
    font-size: 1.15rem; font-weight: 700; color: #111;
    margin: 0 0 10px 0; font-family: var(--font-heading);
}
.bt-sector-card__tekst { font-size: 0.9rem; color: #666; line-height: 1.6; margin: 0 0 16px 0; }
.bt-sector-card__diensten {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 6px;
}
.bt-sector-card__diensten li {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: var(--tekst2);
    background: var(--licht);
    border: 1px solid var(--licht2);
    padding: 5px 12px;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 0;
}
.bt-sectoren__cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; background: #111; border-radius: 8px; padding: 36px 48px;
}
.bt-sectoren__cta-titel {
    font-size: 1.4rem; font-weight: 700; color: #fff;
    margin: 0 0 8px 0; font-family: var(--font-heading);
}
.bt-sectoren__cta-sub { font-size: 0.95rem; color: rgba(255,255,255,0.7); margin: 0; }
@media (max-width: 900px) {
    .bt-sectoren__header { flex-direction: column; align-items: flex-start; }
    .bt-sectoren__grid { grid-template-columns: repeat(2, 1fr); }
    .bt-sectoren__cta-inner { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
}
@media (max-width: 600px) {
    .bt-sectoren__grid { grid-template-columns: 1fr; }
}

/* CTA button underline fix */
.bt-cta .bt-btn-primary,
.bt-cta .bt-btn-secondary,
.bt-cta a.bt-btn-primary,
.bt-cta a.bt-btn-secondary {
    text-decoration: none !important;
}
.bt-cta .bt-btn-primary:hover,
.bt-cta .bt-btn-secondary:hover,
.bt-cta a.bt-btn-primary:hover,
.bt-cta a.bt-btn-secondary:hover {
    text-decoration: none !important;
}

/* ── Footer fixes ── */
.footer-copy { display: none !important; }

.bt-footer__bottom span {
    color: rgba(255,255,255,0.4) !important;
}
.bt-footer__bottom-links a {
    color: rgba(255,255,255,0.4) !important;
}
.bt-footer__credit {
    color: rgba(255,255,255,0.4) !important;
    font-size: 12px;
    margin-left: 8px;
}
.bt-footer__credit a {
    color: rgba(255,255,255,0.55) !important;
    text-decoration: none !important;
}
.bt-footer__credit a:hover {
    color: var(--oranje) !important;
}

/* ════════════════════════════════════════════════
   MOBIELE PADDING UNIFORMERING — 10px links/rechts
   ════════════════════════════════════════════════ */
@media (max-width: 767px) {
    :root {
        --pad: 10px;
        --section-v: 40px;
    }
    /* Secties met hardcoded horizontale padding overschrijven */
    .bt-hero__content,
    .bt-hero__inner {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .bt-dienst-card__body {
        padding: 20px 16px !important;
    }
    .bt-over-ons__tekst-col {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .bt-stap {
        padding-left: 20px !important;
        padding-right: 10px !important;
    }
    .bt-contact__left,
    .bt-contact__right {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .bt-sectoren__cta-inner {
        padding: 15px !important;
    }
    .bt-aankondiging__inner {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    /* Gelijke ruimte boven en onder in hero op mobiel */
    .bt-hero__inner {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }

}

/* ─────────────────────────────────────────────────────────────────────────────
   SUBPAGE CONTENT (Privacybeleid, Cookiebeleid etc.)
───────────────────────────────────────────────────────────────────────────── */
.content-wrap--subpage {
    background: #f4f4f4;
    padding: 60px 24px 80px;
    min-height: 70vh;
}
.content-wrap--subpage .container {
    max-width: 820px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 48px 48px !important;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.content-wrap--subpage h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e2530;
    margin: 0 0 24px 0;
    font-family: var(--font-heading);
    padding-bottom: 16px;
    border-bottom: 3px solid #e8622a;
}
.content-wrap--subpage h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e2530;
    margin: 32px 0 10px 0;
    font-family: var(--font-heading);
}
.content-wrap--subpage h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e2530;
    margin: 20px 0 8px 0;
}
.content-wrap--subpage p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin: 0 0 16px 0;
}
.content-wrap--subpage ul {
    margin: 0 0 16px 0;
    padding-left: 20px;
}
.content-wrap--subpage ul li {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 6px;
}
.content-wrap--subpage a {
    color: #e8622a;
    text-decoration: none;
}
.content-wrap--subpage a:hover {
    text-decoration: underline;
}
.content-wrap--subpage em {
    color: #888;
    font-size: 0.88rem;
}
@media (max-width: 767px) {
    .content-wrap--subpage { padding: 40px 12px 60px; }
    .content-wrap--subpage .container { padding: 24px 20px !important; }
    .content-wrap--subpage h2 { font-size: 1.5rem; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   WHATSAPP WIDGET
───────────────────────────────────────────────────────────────────────────── */
.bt-wa-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(37,211,102,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    outline: none;
}
.bt-wa-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}
.bt-wa-btn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}
.bt-wa-btn.is-open .bt-wa-btn__icon-wa { display: none; }
.bt-wa-btn.is-open .bt-wa-btn__icon-close { display: block; }
.bt-wa-btn__icon-close { display: none; }

/* Popup */
.bt-wa-popup {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 300px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    z-index: 9998;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.bt-wa-popup.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}
.bt-wa-popup__header {
    background: #075E54;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.bt-wa-popup__avatar {
    width: 42px;
    height: 42px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bt-wa-popup__avatar svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}
.bt-wa-popup__info h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 2px 0;
    font-family: var(--font-heading);
}
.bt-wa-popup__info span {
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
}
.bt-wa-popup__body {
    padding: 18px 16px 20px;
}
.bt-wa-popup__bubble {
    background: #f0f0f0;
    border-radius: 0 12px 12px 12px;
    padding: 10px 14px;
    font-size: 0.88rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 16px;
    display: inline-block;
}
.bt-wa-popup__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bt-wa-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 14px;
    cursor: pointer;
    text-decoration: none;
    color: #1e2530;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.bt-wa-option:hover {
    background: #e8f8ef;
    border-color: #25D366;
    color: #075E54;
}
.bt-wa-option__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}
.bt-wa-option--offerte .bt-wa-option__icon { background: #fff3e0; }
.bt-wa-option--vraag .bt-wa-option__icon { background: #e3f2fd; }

@media (max-width: 767px) {
    .bt-wa-btn { bottom: 16px; right: 16px; width: 52px; height: 52px; }
    .bt-wa-popup { right: 12px; bottom: 82px; width: calc(100vw - 24px); max-width: 320px; }
}

/* Flexxmarketing logo in footer */
.bt-footer__flexx {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.25s ease;
}
.bt-footer__flexx:hover {
    opacity: 1;
}
.bt-footer__flexx-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    white-space: nowrap;
}
.bt-footer__flexx-logo {
    height: 22px;
    width: auto;
    display: block;
}

/* ── Formulier succes melding ── */
.bt-form-success {
    text-align: center;
    padding: 48px 24px;
    animation: btFadeIn 0.4s ease;
}
.bt-form-success__icon {
    width: 72px;
    height: 72px;
    background: #e8521a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    margin: 0 auto 24px;
}
.bt-form-success__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    text-transform: uppercase;
}
.bt-form-success__text {
    font-size: 16px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}
@keyframes btFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
