/* =============================================================================
   Budget Verhuisservice theme - v1.0.2
   Replica van https://www.budgetverhuisservice.nl/
   Brand:  #F5743D (orange)  #3CA0F7 (blue)  #393B3C (text)
   Font:   Lato
   Container: 1140px
   ============================================================================= */

:root {
    --color-primary:        #ea5a10;
    --color-primary-dark:   #c74a08;
    --color-secondary:      #5eb537;
    --color-secondary-dark: #4a9227;
    --color-text:           #393B3C;
    --color-muted:          #6c757d;
    --color-accent:         #ECECEC;
    --color-light:          #F8F9FA;
    --color-bg-grey:        #F5F5F7;
    --color-white:          #FFFFFF;
    --color-success:        #198754;
    --color-warning:        #FFC107;
    --color-danger:         #DC3545;
    --color-border:         #E1E4E8;
    --color-topbar-bg:      #FFFFFF;
    --color-dark:           #2A2C2E;

    --container-max:        1140px;
    --container-narrow:     800px;

    --radius:               5px;
    --radius-lg:            10px;
    --radius-xl:            16px;

    --shadow-sm:            0 1px 3px rgba(0,0,0,.06);
    --shadow-md:            0 4px 16px rgba(0,0,0,.08);
    --shadow-lg:            0 10px 28px rgba(0,0,0,.12);

    --font-base: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: 200ms ease;
}

/* ----- Reset & basics ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Form-elementen erven niet standaard van body - forceer Lato overal */
button, input, select, textarea, optgroup {
    font-family: var(--font-base);
    font-size: 1rem;
    line-height: 1.5;
    color: inherit;
}

/* WordPress block elements en widgets */
.wp-block-button__link,
.wp-block-heading,
.entry-content,
.widget,
.menu, .menu-item, .menu-item a,
summary, details,
blockquote, q, cite,
table, th, td,
pre, code, kbd, samp {
    font-family: var(--font-base);
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-secondary-dark); }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.5em; margin: 0 0 1em; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-base);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.25;
    margin: 0 0 .6em;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }
@media (min-width: 768px) { h1 { font-size: 2.6rem; } h2 { font-size: 2rem; } }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: var(--container-narrow); }
.screen-reader-text {
    position: absolute !important;
    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;
    background: var(--color-primary); color: #fff;
    padding: .5em 1em; z-index: 100000;
}
.skip-link:focus { left: 0; }

/* ----- Buttons ----- */
.btn {
    display: inline-block;
    padding: .8rem 1.6rem;
    background: var(--color-accent);
    color: var(--color-text);
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none !important;
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1.4;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary   { background: var(--color-primary);   color: #fff; }
.btn-primary:hover  { background: var(--color-primary-dark);   color: #fff; }
.btn-secondary { background: var(--color-secondary); color: #fff; }
.btn-secondary:hover { background: var(--color-secondary-dark); color: #fff; }
.btn-light { background: #fff; color: var(--color-text); border: 1px solid var(--color-border); }
.btn-light:hover { background: var(--color-light); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* =============================================================================
   HEADER
   ============================================================================= */

.site-header {
    background: #fff;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 9999;
}

/* TOP BAR (lichte grijze bovenrand) */
.topbar {
    background: var(--color-bg-grey);
    border-bottom: 1px solid var(--color-border);
    font-size: .85rem;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 1.25rem;
    flex-wrap: wrap;
    gap: .5rem;
}
.topbar-usp { color: var(--color-muted); font-weight: 700; }
.topbar-right { display: flex; align-items: center; gap: 1rem; }

@media (max-width: 767px) {
    .topbar-usp { display: none; }
    .topbar-inner { justify-content: center; padding: .4rem 1rem; }
    .topbar-right { gap: .65rem; }
}
.topbar-advice { color: var(--color-muted); }
.topbar-phone {
    color: var(--color-text);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    text-decoration: none;
}
.topbar-phone .phone-icon { color: var(--color-primary); }
.topbar-phone:hover { color: var(--color-primary); }
.topbar-langs { display: inline-flex; gap: .25rem; }
.lang-flag {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    border-radius: 2px;
    overflow: hidden;
    transition: opacity var(--transition);
}
.lang-flag:hover { opacity: .8; }
.lang-flag svg { display: block; border: 1px solid rgba(0,0,0,.08); border-radius: 2px; }

/* MAIN header */
.header-main { background: #fff; position: relative; }
.header-main-inner {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.25rem;
    gap: 2rem;
}
.site-branding { flex: 0 0 auto; }
.site-logo {
    display: inline-block;
    line-height: 0;
}
.site-logo img,
.site-logo svg {
    display: block;
    height: 60px;
    width: auto;
    max-width: 320px;
}
.custom-logo { max-height: 60px; width: auto; }
@media (max-width: 767px) {
    .site-logo img,
    .site-logo svg { height: 42px; max-width: 220px; }
}

.main-navigation { flex: 1; display: flex; justify-content: center; }
.main-navigation .menu, .main-navigation ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; gap: 2rem;
}
.main-navigation a {
    color: var(--color-text);
    font-weight: 700;
    text-decoration: none;
    padding: .35rem 0;
    border-bottom: 2px solid transparent;
}
.main-navigation a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.main-navigation .menu-item-has-children > a::after {
    content: '▾';
    margin-left: .25em;
    font-size: .8em;
    color: var(--color-muted);
}

/* Desktop dropdown - submenu's onder hoofdmenu items */
.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    background: #fff;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    padding: .5rem 0;
    min-width: 240px;
    z-index: 50;
    list-style: none;
    margin: .25rem 0 0;
}
.main-navigation .sub-menu li { margin: 0; }
.main-navigation .sub-menu a {
    display: block;
    padding: .6rem 1.25rem;
    border-bottom: none;
    color: var(--color-text);
    font-weight: 600;
    white-space: nowrap;
}
.main-navigation .sub-menu a:hover {
    background: var(--color-bg-grey);
    color: var(--color-primary);
    border-bottom-color: transparent;
}
.main-navigation .menu-item-has-children { position: relative; }
.main-navigation .menu-item-has-children:hover > .sub-menu,
.main-navigation .menu-item-has-children:focus-within > .sub-menu { display: block; }

.header-cta { flex: 0 0 auto; white-space: nowrap; }

.menu-toggle {
    display: none;
    background: none; border: none; padding: .35rem; cursor: pointer;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background var(--transition);
}
.menu-toggle:hover { background: var(--color-bg-grey); }
.menu-toggle .hamburger {
    display: inline-block;
    width: 26px; height: 18px;
    position: relative;
}
.menu-toggle .hamburger span {
    display: block;
    width: 100%; height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: transform var(--transition), opacity var(--transition), top var(--transition);
}
.menu-toggle .hamburger span:nth-child(1) { top: 0; }
.menu-toggle .hamburger span:nth-child(2) { top: 8px; }
.menu-toggle .hamburger span:nth-child(3) { top: 16px; }

/* Hamburger → X animatie als drawer open */
.menu-toggle.is-active .hamburger span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}
.menu-toggle.is-active .hamburger span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active .hamburger span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

/* ----- MOBILE DRAWER (full-screen fixed overlay) ----- */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 9990;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-drawer.is-open { display: block; }
.mobile-drawer-inner {
    /* Padding-top compenseert voor de vaste header bovenaan */
    padding: 7rem 1.25rem 3rem;
    max-width: 480px;
    margin: 0 auto;
}
@media (max-width: 380px) {
    .mobile-drawer-inner { padding-top: 6.5rem; }
}
/* Mobile drawer lijst styling - targets alle UL/LI/A binnen #mobile-drawer
   ongeacht class, om wp_nav_menu fallback + custom HTML beide te dekken. */
#mobile-drawer ul,
#mobile-drawer ol,
#mobile-drawer .menu,
#mobile-drawer .mobile-menu {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
#mobile-drawer li,
#mobile-drawer .menu li,
#mobile-drawer .mobile-menu li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
#mobile-drawer li::before,
#mobile-drawer li::marker {
    content: none !important;
    display: none !important;
}
#mobile-drawer ul li a,
#mobile-drawer .menu li a,
#mobile-drawer .mobile-menu li a {
    display: block;
    padding: .85rem 0;
    color: var(--color-text);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none !important;
    border: none;
}
#mobile-drawer ul li a:hover,
#mobile-drawer .menu li a:hover,
#mobile-drawer .mobile-menu li a:hover {
    color: var(--color-primary);
    text-decoration: none !important;
}

/* Dropdown caret voor menu-items met sub-menu */
#mobile-drawer .menu-item-has-children > a::after {
    content: ' ▾';
    color: var(--color-muted);
    font-size: .85em;
}

/* Compact spacing tussen primary en secondary menu (geen grote sprong) */
#mobile-primary-menu + #mobile-secondary-menu {
    margin-top: 0 !important;
}

/* CTA-knop onderaan in drawer */
.mobile-drawer-cta {
    display: block;
    text-align: center;
    margin: 1.5rem 0 .75rem;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
}
.mobile-drawer-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .9rem 1rem;
    color: var(--color-primary);
    font-weight: 800;
    text-decoration: none;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
}
.mobile-drawer-cart {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--color-text);
    font-weight: 600;
    text-decoration: none;
    padding: .65rem 0;
}
.mobile-drawer-cart:hover { color: var(--color-primary); }

/* Taal selector binnen drawer */
.mobile-drawer-langs {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: .75rem;
    align-items: center;
}
.mobile-drawer-langs .lang-flag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem .6rem;
    border-radius: 4px;
    border: 1px solid var(--color-border);
    opacity: .65;
    transition: opacity var(--transition), border-color var(--transition);
}
.mobile-drawer-langs .lang-flag.is-active {
    opacity: 1;
    border-color: var(--color-primary);
}
.mobile-drawer-langs .lang-flag:hover { opacity: 1; }

/* Verberg topbar taal selector op mobiel */
@media (max-width: 767px) {
    .topbar-langs { display: none; }
}

/* Body lock als drawer open is */
body.bvs-drawer-open { overflow: hidden; }

@media (max-width: 991px) {
    .menu-toggle { display: inline-flex; }
    .main-navigation { display: none; }
    .header-cta { display: none; }
    .header-main-inner {
        gap: 0;
        justify-content: space-between;
        padding: .85rem 1.25rem;
    }
    .menu-toggle { margin-left: auto; }
}

/* SUB-NAVIGATIE */
.subnav {
    background: #fff;
    border-top: 1px solid var(--color-border);
    font-size: .92rem;
}
.subnav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 1.25rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.subnav-links ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; gap: 1.5rem;
}
.subnav-links a {
    color: var(--color-text); text-decoration: none; font-weight: 600;
}
.subnav-links a:hover { color: var(--color-primary); }
.subnav-right { display: flex; align-items: center; gap: 1rem; }
.subnav-cart {
    color: var(--color-text); font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: .5rem;
    position: relative;
}
.subnav-cart .cart-label { color: var(--color-text); }
.subnav-cart:hover .cart-label { color: var(--color-primary); }
.subnav-cart { position: relative; padding-right: 1.5rem; }
.subnav-cart .cart-icon {
    color: var(--color-secondary);
    display: inline-grid; place-items: center;
    line-height: 0;
}
.subnav-cart .cart-count {
    position: absolute;
    top: -6px; right: 0;
    background: var(--color-primary);
    color: #fff;
    min-width: 18px; height: 18px;
    border-radius: 50%;
    font-size: .7rem;
    display: grid; place-items: center;
    font-weight: 700;
    padding: 0 .3em;
}
.subnav-badges { display: inline-flex; gap: .85rem; align-items: center; }
.subnav-badge-img {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 767px) {
    .subnav { display: none; }
}

/* =============================================================================
   HOME HERO + CALCULATOR
   ============================================================================= */

.home-hero {
    /* Solid background-color als fallback zolang de hero image nog laadt.
       Voorkomt de "wit → beeld" flash die gebruikers als traag ervaren. */
    background-color: #2a2a2a;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}
.home-hero-inner {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.calculator-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 1.75rem 1.75rem 1.5rem;
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 2;
}
.calculator-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    text-align: center;
}
.calculator-form { display: flex; flex-direction: column; gap: 1rem; }

.calc-leg {
    display: flex;
    gap: .75rem;
    position: relative;
}
.calc-pin {
    flex: 0 0 auto;
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid var(--color-secondary);
    background: #fff;
    margin-top: 2rem;
    position: relative;
}
.calc-pin.pin-start::before {
    content: '';
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    width: 2px; height: 50px;
    background: var(--color-secondary);
    border-left: 2px dashed var(--color-secondary);
    background: transparent;
}
.calc-pin.pin-end {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}
.calc-pin.pin-single {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}
.calculator-form--single .calc-pin.pin-single::before { content: none; }
.calc-leg-content { flex: 1; }
.calc-label {
    display: block;
    font-weight: 700;
    margin-bottom: .35rem;
    color: var(--color-text);
}
.calc-fields {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: .35rem;
}
.calc-input {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: .55rem .7rem;
    font-family: var(--font-base);
    font-size: .9rem;
    color: var(--color-text);
    background: #fff;
    width: 100%;
    min-width: 0;
}
.calc-input:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(94,181,55,.18);
}
.calc-input::placeholder { color: #7a7d80; opacity: .8; }
.calc-add-stop {
    flex: 0 0 auto;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-muted);
    font-size: 1.2rem;
    cursor: pointer;
    align-self: center;
    margin-left: -.5rem;
    transition: all var(--transition);
}
.calc-add-stop:hover { background: var(--color-secondary); color: #fff; border-color: var(--color-secondary); }

.calc-usps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    font-size: .85rem;
}
.calc-usps li { display: inline-flex; align-items: center; gap: .35rem; color: var(--color-text); }
.calc-usps .check { color: var(--color-success); font-weight: 700; }

.calc-submit {
    background: var(--color-bg-grey);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    width: 100%;
    padding: .9rem 1.5rem;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
}
.calc-submit:hover {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
}

/* Calculator wrapper - relative parent voor badge */
.calculator-wrap {
    position: relative;
    width: 100%;
    max-width: 460px;
}

/* Maak ruimte voor de badge in de calculator title zodat tekst er niet onder valt */
.calculator-wrap .calculator-title {
    padding-right: 90px !important;
}

/* Laagste prijs badge - rechtsboven hoek calculator card */
.price-badge-img {
    position: absolute !important;
    top: -22px !important;
    right: -18px !important;
    left: auto !important;
    width: 90px !important;
    height: 90px !important;
    z-index: 10 !important;
    pointer-events: none;
    transform: rotate(-12deg);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.18));
}
@media (max-width: 600px) {
    .calculator-wrap .calculator-title { padding-right: 70px !important; }
    .price-badge-img {
        width: 70px !important;
        height: 70px !important;
        top: -14px !important;
        right: -8px !important;
    }
}

@media (max-width: 767px) {
    .home-hero { min-height: 480px; }
    .calculator-card { margin: 0 auto; }
    .price-badge-img { display: none; }
}

/* =============================================================================
   USP-BAR (na hero)
   ============================================================================= */

.usp-bar {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem 0;
}
.usp-bar-list {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem 2rem;
    justify-content: center;
}
.usp-bar-list li {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--color-text);
    font-weight: 600;
}
.usp-check {
    color: var(--color-success);
    font-weight: 900;
    font-size: 1.05rem;
}
@media (min-width: 768px) {
    .usp-bar-list { grid-template-columns: repeat(4, auto); }
}

/* =============================================================================
   INTRO + TABS (Verhuisbedrijf Budget Verhuisservice)
   ============================================================================= */

.intro-section { padding: 4rem 0; }
.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (min-width: 992px) {
    .intro-grid { grid-template-columns: 1fr 1.2fr; }
}
.intro-image img {
    border-radius: var(--radius-lg);
    width: 100%;
}
.intro-content h1,
.intro-content h2,
.intro-content .intro-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.intro-tabs {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.intro-tab {
    background: none;
    border: none;
    padding: .5rem 0 .8rem;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: .95rem;
    color: var(--color-muted);
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
}
.intro-tab.is-active {
    color: var(--color-text);
    border-bottom-color: var(--color-primary);
}
.intro-tab-panel[hidden] { display: none; }
.intro-tab-panel p { margin-bottom: 1.1em; line-height: 1.7; }

/* =============================================================================
   REVIEWS - "Deze mensen gingen je voor"
   ============================================================================= */

.reviews-section {
    background: var(--color-bg-grey);
    padding: 3rem 0;
}
.reviews-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}
/* Reviews grid - MAXIMAAL 2 kolommen om quote-tekst leesbaar te houden.
   !important om eventuele oude cache-regels te overrulen. */
.reviews-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
}
@media (min-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr 1fr !important; }
}
.review-card {
    display: flex !important;
    flex-direction: row !important;
    gap: 1.25rem !important;
    align-items: flex-start !important;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.review-avatar { flex: 0 0 auto !important; }
.review-avatar img,
.review-avatar-placeholder {
    width: 72px !important;
    height: 72px !important;
    border-radius: 50% !important;
    object-fit: cover;
    background: var(--color-accent);
}
.review-body {
    flex: 1 !important;
    min-width: 0 !important;
}
.review-quote {
    font-style: italic;
    color: var(--color-muted);
    margin: 0 0 .75rem;
    padding: 0;
    border: none;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: auto;
    line-height: 1.5;
    white-space: normal !important;
}

.review-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.review-avatar img,
.review-avatar-placeholder {
    width: 80px; height: 80px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--color-accent);
}
.review-body { flex: 1; min-width: 0; position: relative; }
.review-headline { font-size: 1.15rem; margin-bottom: .35rem; }
.review-quote-marker { display: none; }
.review-author { display: block; font-size: .95rem; margin-bottom: .25rem; }
.review-link { color: var(--color-secondary); font-weight: 700; }

/* =============================================================================
   VIDEO + CHECKLIST
   ============================================================================= */

.video-checklist-section { padding: 3rem 0; }
.video-checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
}
@media (min-width: 992px) { .video-checklist-grid { grid-template-columns: 1.2fr 1fr; } }

.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.video-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark);
    color: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.video-overlay-title {
    position: absolute;
    top: 1.25rem; left: 1.25rem;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.video-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    border-radius: var(--radius);
    background: var(--color-primary);
    display: grid; place-items: center;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition);
}
.video-play:hover { background: var(--color-primary-dark); transform: translate(-50%, -50%) scale(1.08); }
.video-play .play-icon { font-size: 1.5rem; margin-left: 4px; }
.video-duration {
    position: absolute;
    bottom: .75rem; right: .75rem;
    background: rgba(0,0,0,.65);
    color: #fff;
    padding: .15rem .5rem;
    font-size: .8rem;
    border-radius: 3px;
}

.checklist-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.checklist {
    list-style: none;
    padding: 0; margin: 0;
}
.checklist li {
    display: flex;
    gap: .85rem;
    padding: .85rem 0;
    border-bottom: 1px solid var(--color-border);
}
.checklist li:last-child { border-bottom: none; }
.check-icon {
    flex: 0 0 auto;
    color: var(--color-secondary);
    font-weight: 900;
    font-size: 1.2rem;
    line-height: 1.3;
}
.checklist strong { color: var(--color-text); }

/* =============================================================================
   HANDIGE LINKS + OFFERTE CTA
   ============================================================================= */

.links-cta-section { padding: 3rem 0; }
.links-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 992px) { .links-cta-grid { grid-template-columns: 1fr 1.5fr; } }

.handy-links-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.handy-links-card h3 { margin-bottom: 1.25rem; }
.handy-links {
    list-style: none; padding: 0; margin: 0;
}
.handy-links li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .9rem 0;
    border-bottom: 1px solid var(--color-border);
}
.handy-links li:last-child { border-bottom: none; }
.hl-icon {
    flex: 0 0 auto;
    color: var(--color-secondary);
    width: 28px; height: 28px;
    display: grid; place-items: center;
}
.hl-icon svg { display: block; }
.handy-links a { color: var(--color-secondary); font-weight: 700; }

.offerte-card {
    background-color: var(--color-dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    background-size: cover;
    background-position: center;
    min-height: 280px;
    display: flex;
    align-items: center;
}
.offerte-card h3 { color: #fff; margin-bottom: .8rem; max-width: 60%; }
.offerte-card p  { color: rgba(255,255,255,.92); max-width: 60%; margin-bottom: 1.5rem; }

/* =============================================================================
   HANDIGE INFORMATIE TABS
   ============================================================================= */

.info-tabs-section {
    background: var(--color-bg-grey);
    padding: 3rem 0;
}
.info-tabs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 992px) { .info-tabs-grid { grid-template-columns: 320px 1fr; } }

.info-tabs-menu {
    position: sticky;
    top: 100px;
    align-self: start;
}
.info-tabs-menu h3 { margin-bottom: 1.25rem; font-size: 1.4rem; }
.info-tabs-menu ul { list-style: none; padding: 0; margin: 0; }
.info-tabs-menu li { border-bottom: 1px solid var(--color-border); }
@media (max-width: 991px) { .info-tabs-menu { position: static; margin-bottom: 1.5rem; } }
.info-tab {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: .85rem 0;
    font-family: var(--font-base);
    font-size: .95rem;
    color: var(--color-muted);
    cursor: pointer;
    transition: color var(--transition);
    position: relative;
    padding-left: 1rem;
}
.info-tab::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: transparent;
    transition: background var(--transition);
}
.info-tab:hover { color: var(--color-text); }
.info-tab.is-active {
    color: var(--color-text);
    font-weight: 700;
}
.info-tab.is-active::before { background: var(--color-primary); }

.info-tabs-content { background: var(--color-bg-grey); }
/* Alle panels altijd zichtbaar voor scroll-flow; sticky menu hooks gebruikt voor active state */
.info-tab-panel {
    padding: 0 0 2.5rem;
    border-bottom: 1px solid var(--color-border);
    scroll-margin-top: 120px; /* offset voor sticky header */
}
.info-tab-panel:last-child { border-bottom: none; }
.info-tab-panel + .info-tab-panel { padding-top: 2.5rem; }
.info-tab-panel h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.info-tab-panel p, .info-tab-panel li { line-height: 1.75; }

.info-arrow-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.info-arrow-list li {
    padding: .35rem 0 .35rem 1.75rem;
    position: relative;
}
.info-arrow-list li::before {
    content: '❯';
    position: absolute;
    left: 0; top: .4rem;
    color: var(--color-secondary);
    font-weight: 700;
}

/* =============================================================================
   GENERIEKE PAGINA CONTENT
   ============================================================================= */

.site-content { padding: 0; }
.page-template .entry-content,
.single-post .entry-content { font-size: 1.05rem; }
.entry-content h2, .entry-content h3, .entry-content h4 { margin-top: 1.8em; }
.entry-content a { color: var(--color-secondary); text-decoration: underline; }
.entry-content img { border-radius: var(--radius); margin: 1em 0; }

.entry-header { padding: 2rem 0; }
.entry-title { margin-top: 1rem; }
.entry-meta { color: var(--color-muted); font-size: .9rem; margin-bottom: 1rem; }

/* Breadcrumbs */
.breadcrumbs { font-size: .85rem; margin: 1rem 0 1.5rem; color: var(--color-muted); }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .25rem; }
.breadcrumbs li + li::before { content: '›'; margin: 0 .4em; color: var(--color-muted); }

/* FAQ - inclusief WordPress core/details block (Gutenberg "Details") */
.faq-section { background: var(--color-bg-grey); padding: 3rem 0; }

/* Wanneer een gebruiker de native Gutenberg Details block gebruikt in
   page-content, krijgt die automatisch onze FAQ-item styling. */
.entry-content .wp-block-details,
.content-styled .wp-block-details {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: .75rem;
    overflow: hidden;
}
.entry-content .wp-block-details > summary,
.content-styled .wp-block-details > summary {
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--color-text);
    list-style: none;
    position: relative;
    padding-right: 3rem;
}
.entry-content .wp-block-details > summary::-webkit-details-marker,
.content-styled .wp-block-details > summary::-webkit-details-marker { display: none; }
.entry-content .wp-block-details > summary::after,
.content-styled .wp-block-details > summary::after {
    content: '+';
    position: absolute;
    right: 1.25rem; top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-size: 1.5rem; line-height: 1;
}
.entry-content .wp-block-details[open] > summary::after,
.content-styled .wp-block-details[open] > summary::after { content: '−'; }
.entry-content .wp-block-details[open] > summary,
.content-styled .wp-block-details[open] > summary { color: var(--color-primary); }
.entry-content .wp-block-details > *:not(summary),
.content-styled .wp-block-details > *:not(summary) { padding: 0 1.25rem 1rem; color: var(--color-muted); }
.faq-section h2 { text-align: center; margin-bottom: 2rem; }
.faq-list { max-width: var(--container-narrow); margin: 0 auto; }
.faq-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: .75rem;
    overflow: hidden;
}
.faq-item summary {
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    position: relative;
    padding-right: 3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.25rem; top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-size: 1.5rem; line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--color-primary); }
.faq-answer { padding: 0 1.25rem 1rem; color: var(--color-muted); }

/* Post grid */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.post-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.post-card-thumb img { width: 100%; height: 180px; object-fit: cover; }
.post-card-body { padding: 1.25rem; }
.post-card-title { font-size: 1.15rem; margin-bottom: .5em; }
.post-card-title a { color: var(--color-text); text-decoration: none; }
.post-card-title a:hover { color: var(--color-primary); }

/* =============================================================================
   FOOTER (4 kolommen)
   ============================================================================= */

.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,.85);
    padding: 3rem 0 1.5rem;
}
.site-footer a { color: rgba(255,255,255,.85); text-decoration: none; }
.site-footer a:hover { color: var(--color-primary); }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.25rem; font-weight: 800; }
.site-footer h5 { color: #fff; font-size: .95rem; margin-bottom: .8rem; }

.footer-brand { margin-bottom: 2rem; }
.footer-logo { display: inline-block; line-height: 0; }
.footer-logo img,
.footer-logo svg {
    height: 60px;
    width: auto;
    max-width: 280px;
    display: block;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
@media (min-width: 576px) { .footer-columns { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .footer-columns { grid-template-columns: 1.2fr 1fr 1fr 1fr; } }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55em; }
.footer-meta-links { list-style: none; padding: 0; margin: 1rem 0 0; }
.footer-meta-links li { margin-bottom: .3em; }
.footer-rating { margin-top: 1rem; font-size: .9rem; line-height: 1.7; }

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .footer-bottom { grid-template-columns: 2fr 1fr; }
}

.footer-cert-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}
.cert-img {
    height: 44px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    background: rgba(255,255,255,.06);
    padding: .25rem .5rem;
    border-radius: 4px;
}

.footer-social-icons { display: flex; gap: .6rem; align-items: center; }
.soc {
    display: inline-grid; place-items: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    text-decoration: none;
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,.12);
}
.soc:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); transform: translateY(-2px); }
.soc svg { display: block; }

.footer-copyright {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .85rem;
    opacity: .85;
}
.footer-copyright p { margin: 0; }
.footer-legal-links {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 1.5rem;
}

/* =============================================================================
   PAGINA HERO (werkgebied / service / verhuislift)
   ============================================================================= */

.page-hero {
    background-color: #2a2a2a;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 2rem 0 1.75rem;
    color: #fff;
    min-height: 320px;
    display: flex;
    align-items: center;
}
.page-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
}
@media (min-width: 992px) {
    .page-hero { padding: 2.5rem 0; min-height: 380px; }
    .page-hero-inner { grid-template-columns: 1.3fr 1fr; }
}
.page-hero-text {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,.18);
    color: #fff;
    padding: .25em .75em;
    border-radius: var(--radius);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
}
.hero-title-light {
    color: #fff;
    font-size: 1.85rem;
    margin-bottom: .5em;
    line-height: 1.15;
}
@media (min-width: 768px) { .hero-title-light { font-size: 2.4rem; } }
.hero-subtitle-light {
    color: rgba(255,255,255,.95);
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 560px;
}

/* =============================================================================
   PAGINA CONTENT SECTIE - 2-koloms layout (sidebar links + content rechts)
   Gebruikt door page.php, single-werkgebied.php, single-verhuislift.php, single.php
   ============================================================================= */

.content-with-sidebar { padding: 3rem 0; background: #fff; }
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 992px) {
    .content-grid { grid-template-columns: 320px 1fr; gap: 2.5rem; }
}
.content-main { min-width: 0; }
.content-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

/* SIDEBAR CARDS - shared styling */
.side-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.side-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* WAAROM KIES JE VOOR ONS */
.side-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.side-why-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .55rem 0;
    border-bottom: 1px solid var(--color-border);
    font-weight: 600;
}
.side-why-list li:last-child { border-bottom: none; }
.why-check {
    flex: 0 0 auto;
    color: var(--color-success);
    font-weight: 900;
    font-size: 1rem;
}

/* REVIEW CARD CARROUSEL */
.side-reviews { position: relative; }
.side-review-slider { position: relative; min-height: 140px; }
.side-review-slide {
    display: none;
}
.side-review-slide.is-active { display: block; }
.side-review-head {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: .85rem;
}
.side-review-img {
    width: 56px; height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}
.side-review-img.placeholder { background: var(--color-accent); }
.side-review-name { font-size: 1rem; line-height: 1.2; }
.side-review-quote {
    position: relative;
    margin: 0;
    padding: 0 0 0 1rem;
    color: var(--color-muted);
    border: none;
    background: none;
}
.side-review-quote::before {
    content: '“';
    position: absolute;
    left: -.25rem; top: -1rem;
    font-size: 3rem;
    color: var(--color-accent);
    line-height: 1;
    font-family: Georgia, serif;
}
.side-review-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}
.side-review-prev, .side-review-next {
    background: var(--color-secondary);
    color: #fff;
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition: background var(--transition);
    flex: 0 0 auto;
}
.side-review-prev:hover, .side-review-next:hover { background: var(--color-secondary-dark); }
.side-review-dots {
    display: inline-flex;
    gap: .35rem;
    align-items: center;
}
.side-review-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: background var(--transition);
}
.side-review-dot.is-active { background: var(--color-primary); }
.side-review-stars { display: block; color: var(--color-warning); font-size: .85rem; }

/* OFFERTE SIDEBAR CARD (donker met achtergrond foto) */
.side-offerte {
    background-color: var(--color-dark);
    background-size: cover;
    background-position: center;
    color: #fff;
    border: none;
    text-align: left;
    padding: 1.75rem;
}
.side-offerte-title {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}
.side-offerte-btn { display: inline-block; }

/* =============================================================================
   GOOGLE REVIEWS WIDGET
   ============================================================================= */

.google-reviews-section { padding: 3rem 0; background: #fff; }
.google-reviews-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .google-reviews-card { grid-template-columns: 280px 1fr; gap: 2rem; } }

.gr-badge {
    text-align: center;
    border-right: 1px solid var(--color-border);
    padding-right: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
}
@media (max-width: 767px) { .gr-badge { border-right: none; padding-right: 0; border-bottom: 1px solid var(--color-border); padding-bottom: 1.5rem; } }
.gr-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: .35rem;
}
.gr-company { font-size: 1rem; color: var(--color-text); }
.gr-stars { color: var(--color-warning); font-size: 1.1rem; letter-spacing: .05em; }
.gr-count { font-size: .85rem; color: var(--color-muted); margin-bottom: .65rem; }
.gr-write,
a[href*="writereview"],
a[href*="trustindex"] {
    display: none !important;
}

.gr-feed {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.gr-slider {
    flex: 1;
    min-width: 0;
}
.gr-slide { display: none; }
.gr-slide.is-active { display: block; }
.gr-slide-head {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: .5rem;
}
.gr-slide-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-text);
    display: grid;
    place-items: center;
    font-weight: 700;
    flex: 0 0 auto;
}
.gr-slide-meta { flex: 1; min-width: 0; line-height: 1.2; }
.gr-slide-meta strong { display: block; }
.gr-slide-meta small { color: var(--color-muted); font-size: .8rem; }
.gr-verified { color: var(--color-secondary); }
.gr-google-logo { flex: 0 0 auto; }
.gr-slide-stars { color: var(--color-warning); margin-bottom: .35rem; }
.gr-slide-text { color: var(--color-text); margin: 0; line-height: 1.5; }
.gr-arrow {
    background: var(--color-bg-grey);
    border: 1px solid var(--color-border);
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--color-text);
    cursor: pointer;
    flex: 0 0 auto;
    line-height: 1;
    transition: all var(--transition);
}
.gr-arrow:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* Verwijder oude page-content-section verwijzingen */
.page-content-section { padding: 3rem 0; background: #fff; }
.content-styled { font-size: 1.05rem; line-height: 1.7; }
.content-styled h2 {
    margin-top: 2.5em;
    font-size: 1.75rem;
    padding-bottom: .35em;
    border-bottom: 2px solid var(--color-accent);
}
.content-styled h2:first-child { margin-top: 0; }
.content-styled h3 { margin-top: 2em; font-size: 1.35rem; color: var(--color-primary); }
.content-styled p { margin-bottom: 1.25em; }
.content-styled ul, .content-styled ol { padding-left: 1.5rem; margin-bottom: 1.5em; }
.content-styled ul li, .content-styled ol li { margin-bottom: .5em; }
.content-styled ul { list-style: none; padding-left: 0; }
.content-styled ul li {
    padding-left: 1.75rem;
    position: relative;
}
.content-styled ul li::before {
    content: '❯';
    position: absolute;
    left: 0; top: 0;
    color: var(--color-secondary);
    font-weight: 700;
}
.content-styled a { color: var(--color-secondary); text-decoration: underline; }
.content-styled blockquote {
    border-left: 4px solid var(--color-primary);
    background: var(--color-bg-grey);
    padding: 1rem 1.5rem;
    margin: 1.5em 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.content-styled img {
    border-radius: var(--radius-lg);
    margin: 1.5em 0;
    box-shadow: var(--shadow-sm);
}
.content-styled table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: .95rem;
}
.content-styled th, .content-styled td {
    border: 1px solid var(--color-border);
    padding: .75em 1em;
    text-align: left;
}
.content-styled th {
    background: var(--color-bg-grey);
    font-weight: 700;
}

/* =============================================================================
   CTA BANNER (oranje, tussen-secties)
   ============================================================================= */

.cta-banner-section { padding: 0 0 3rem; }
.cta-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}
@media (min-width: 992px) { .cta-banner { grid-template-columns: 2fr 1fr; } }
.cta-banner h2 { color: #fff; margin-bottom: .5em; font-size: 1.6rem; }
.cta-banner p { color: rgba(255,255,255,.95); margin: 0; }
.cta-banner-buttons { display: flex; flex-direction: column; gap: .75rem; align-items: stretch; }
.btn-phone-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    padding: .9rem 1.6rem;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none !important;
    backdrop-filter: blur(4px);
    transition: all var(--transition);
}
.btn-phone-large:hover { background: rgba(255,255,255,.28); color: #fff; }

/* =============================================================================
   RELATED LOCATIONS ("Wij zijn ook beschikbaar in...")
   ============================================================================= */

.related-locations {
    background: var(--color-bg-grey);
    padding: 3rem 0;
}
.rl-title { text-align: center; margin-bottom: 2rem; }
.rl-grid {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: .75rem;
}
.rl-item a {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: .75rem 1rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition);
}
.rl-item a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}
.rl-pin { font-size: 1rem; }
.rl-more { text-align: center; margin: 0; }

/* =============================================================================
   RELATED POSTS ("Vergelijkbare artikelen")
   ============================================================================= */

.related-posts {
    background: var(--color-bg-grey);
    padding: 3rem 0;
}
.rp-title { text-align: center; margin-bottom: 2rem; }
.rp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .rp-grid { grid-template-columns: repeat(3, 1fr); } }
.rp-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}
.rp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rp-thumb { display: block; aspect-ratio: 16/10; overflow: hidden; }
.rp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rp-thumb-placeholder { background: var(--color-accent); }
.rp-body { padding: 1.25rem; }
.rp-cat {
    display: inline-block;
    color: var(--color-primary);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: .5rem;
}
.rp-name { font-size: 1.15rem; margin-bottom: .5rem; line-height: 1.3; }
.rp-name a { color: var(--color-text); text-decoration: none; }
.rp-name a:hover { color: var(--color-primary); }
.rp-excerpt { color: var(--color-muted); font-size: .9rem; margin-bottom: .75rem; line-height: 1.5; }
.rp-link { color: var(--color-secondary); font-weight: 700; }

/* =============================================================================
   BLOG POST template
   ============================================================================= */

.post-hero {
    background: var(--color-bg-grey);
    padding: 2.5rem 0;
}
.post-hero-cat {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: .25rem .75rem;
    border-radius: var(--radius);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-decoration: none;
    margin-bottom: 1rem;
}
.post-hero-cat:hover { background: var(--color-primary-dark); color: #fff; }
.post-hero-title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    max-width: 800px;
}
@media (min-width: 768px) { .post-hero-title { font-size: 2.5rem; } }
.post-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    font-size: .9rem;
    color: var(--color-muted);
}
.post-author { display: inline-flex; align-items: center; gap: .65rem; }
.post-author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--color-accent);
    flex: 0 0 auto;
}
.post-author-info { display: inline-flex; flex-direction: column; line-height: 1.2; }
.post-author-info strong { color: var(--color-text); }
.post-author-info small { font-size: .8rem; }
.post-dates { display: inline-flex; flex-direction: column; gap: .15rem; line-height: 1.2; }

.post-feature-image {
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.post-feature-image img { width: 100%; height: auto; }

.post-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .9rem;
}
.post-tags strong { margin-right: .5em; }
.post-share { display: inline-flex; align-items: center; gap: .5rem; }
.post-share a {
    display: inline-grid;
    place-items: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}
.post-share a:hover { background: var(--color-secondary-dark); color: #fff; }

/* Sidebar */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 1rem;
    align-self: start;
}
.sidebar-calculator .calculator-card {
    box-shadow: var(--shadow-sm);
}
.sidebar-cta {
    background: var(--color-bg-grey);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}
.sidebar-cta h3 { margin-bottom: .35em; }
.sidebar-cta p { color: var(--color-muted); margin-bottom: 1.25rem; }
.btn-block { display: block; width: 100%; margin-bottom: .65rem; text-align: center; }

@media (max-width: 991px) {
    .post-sidebar { position: static; }
}

/* =============================================================================
   Misc
   ============================================================================= */

.case-label {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: .25em .75em;
    border-radius: var(--radius);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .75rem;
}
.error-404 { padding: 4rem 0; text-align: center; }

/* Tag toggle JS support */
.intro-tab-panel.is-active { display: block; }
.info-tab-panel.is-active { display: block; }

@media print {
    .site-header, .site-footer, .header-cta, .menu-toggle,
    .topbar, .subnav { display: none; }
    body { color: #000; background: #fff; }
}

/* =============================================================================
   MINIMAAL TEMPLATE (page-minimal.php) - info/legal/formulier-pagina's
   ============================================================================= */
.page-template-minimal { background: #fff; }
.minimal-content { padding: 3rem 0 4rem; }
.minimal-content .container-narrow { max-width: 820px; }
.minimal-header { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--color-border); }
.minimal-title { font-size: 2.25rem; margin: 0; line-height: 1.2; }
@media (max-width: 600px) { .minimal-title { font-size: 1.75rem; } }
.minimal-article .entry-content { font-size: 1.05rem; line-height: 1.7; }

/* =============================================================================
   TARIEVENBLOK (gebruikt op /tarieven/ pagina)
   ============================================================================= */

.tariff-section {
    margin: 2rem 0 2.5rem;
}
.tariff-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--color-text);
}
.tariff-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.tariff-row {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.1rem 1.5rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition);
}
.tariff-row:hover { border-color: var(--color-primary); }
.tariff-icon { color: var(--color-text); display: grid; place-items: center; }
.tariff-icon svg { width: 44px; height: 44px; }
.tariff-text { min-width: 0; }
.tariff-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0 0 .15rem;
    line-height: 1.25;
}
.tariff-desc {
    color: var(--color-muted);
    margin: 0;
    font-size: .95rem;
    line-height: 1.4;
}
.tariff-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-text);
    white-space: nowrap;
    text-align: right;
}
@media (max-width: 600px) {
    .tariff-row {
        grid-template-columns: 44px 1fr;
        padding: 1rem 1.1rem;
    }
    .tariff-icon svg { width: 36px; height: 36px; }
    .tariff-price {
        grid-column: 1 / -1;
        text-align: left;
        padding-left: calc(44px + 1.25rem);
        margin-top: .25rem;
    }
}

/* =============================================================================
   OFFERTE-ONLY PAGINA (/verhuizen-offerte/)
   Minimale layout: alleen header + iframe, geen footer/topbar/subnav.
   ============================================================================= */

body.page-offerte-only {
    overflow: hidden;
    height: 100%;
    margin: 0;
}
html:has(body.page-offerte-only) { overflow: hidden; height: 100%; }

.site-header--minimal { border-bottom: 1px solid var(--color-border); }
.site-header--minimal .header-main-inner {
    padding: .85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}
.site-header--minimal .site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: auto; /* duwt phone-cta rechts, houdt logo bij back-link links */
    min-width: 0;
}
.site-header--minimal .site-logo img,
.site-header--minimal .site-logo svg { height: 50px; max-width: 260px; }

.header-back-link {
    color: var(--color-muted);
    text-decoration: none;
    font-weight: 600;
    order: -1;
    padding: .35rem .6rem;
    border-radius: var(--radius);
    white-space: nowrap;
    transition: color var(--transition), background var(--transition);
}
.header-back-link:hover { color: var(--color-primary); background: var(--color-bg-grey); }

.header-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--color-primary);
    color: #fff;
    padding: .65rem 1.1rem;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.header-phone-cta:hover { background: var(--color-primary-dark); color: #fff; }

@media (max-width: 600px) {
    .header-back-link { display: none; }
    .site-header--minimal .site-logo img,
    .site-header--minimal .site-logo svg { height: 40px; max-width: 200px; }
    .header-phone-cta { padding: .55rem .9rem; font-size: .9rem; }
}

.offerte-main {
    padding: 0;
    margin: 0;
}

/* ==========================================================================
   Bedankt / conversie-pagina layout
   Geen header, geen menu — minimale branding + content + terug-knop.
   ========================================================================== */
.bedankt-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f9 100%);
    padding: 3rem 1.25rem;
}
.bedankt-section {
    width: 100%;
}
.bedankt-brand {
    text-align: center;
    margin-bottom: 2.5rem;
}
.bedankt-brand a {
    display: inline-block;
    line-height: 0;
}
.bedankt-brand svg,
.bedankt-brand img {
    height: 60px;
    width: auto;
    max-width: 280px;
}
.bedankt-article {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    text-align: center;
}
.bedankt-article h1,
.bedankt-article h2 {
    color: var(--color-primary);
    margin-top: 0;
}
.bedankt-back {
    text-align: center;
    margin-top: 2rem;
}
@media (max-width: 600px) {
    .bedankt-main { padding: 2rem 1rem; }
    .bedankt-article { padding: 2rem 1.5rem; }
    .bedankt-brand svg,
    .bedankt-brand img { height: 44px; }
}
.iaf-container {
    /* 90px ruimte voor de header (kan iets variëren per breakpoint) */
    height: calc(100vh - 80px);
    width: 100%;
    overflow: hidden;
}
.iaf-container .h-100,
.iaf-container [woodland-affiliate-form] {
    height: 100%;
    width: 100%;
}
@media (max-width: 600px) {
    .iaf-container { height: calc(100vh - 68px); }
}
