/*
Theme Name: IT Live Child Theme
Theme URI: https://itlive.nl
Description: IT Live managed WordPress child theme
Author: IT Live
Author URI: https://itlive.nl
Template: hello-elementor
Version: 2.0.4
*/

/* ═══════════════════════════════════════════════════════════════
   IT Live Child Theme — v2.0.4
   Fixes: header, contrast, responsive, mobile layout
   ═══════════════════════════════════════════════════════════════ */

:root {
    --primary: #152B5D;
    --secondary: #F96706;
    --text: #1E293B;
    --accent: #F6F7F9;
    --bg: #ffffff;
    --primary-light: rgba(21, 43, 93, 0.05);
    --secondary-light: rgba(249, 103, 6, 0.12);
}

body {
    font-family: var(--e-global-typography-primary-font-family, 'Inter'), -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

/* ─── CONTRAST GUARANTEES (WCAG 4.5:1) ─── */
a { color: var(--primary); }
h1, h2, h3, h4, h5, h6 { color: var(--text); line-height: 1.1; letter-spacing: -0.01em; }
p { color: var(--text); }

/* Prevent horizontal scroll globally */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
* { box-sizing: border-box !important; }

/* Never white on white or dark on dark */
.elementor-widget-heading .elementor-heading-title {
    color: inherit;
}

/* ─── HEADER FIX ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 2147483000;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    padding: 0;
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    gap: 20px;
}

/* Logo / site title — NOT too big */
.site-header .site-branding {
    flex-shrink: 0;
    max-width: 250px;
}

.site-header .site-title {
    font-size: 1.1rem !important;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.site-header .site-title a {
    color: var(--text) !important;
    text-decoration: none;
}

.site-header .site-description {
    display: none !important; /* Hide tagline in header — too much text */
}

/* Custom logo */
.site-header .custom-logo {
    max-height: 40px;
    width: auto;
}

/* ─── NAVIGATION ─── */
.site-header nav {
    display: flex;
    align-items: center;
}
.site-header nav ul {
    display: flex;
    list-style: none;
    gap: 2px;
    margin: 0;
    padding: 0;
}
.site-header nav > ul > li {
    position: relative;
}
.site-header nav ul li a {
    padding: 10px 16px;
    color: var(--text);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}
.site-header nav ul li a:hover,
.site-header nav ul li.current-menu-item > a {
    background: rgba(21,43,93,.06);
    color: var(--primary);
}
/* ─── DROPDOWN SUBMENU ─── */
.site-header nav > ul > li > .sub-menu,
.site-header nav ul li ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 12px;
    min-width: 240px;
    z-index: 200;
    flex-direction: column;
    gap: 2px;
    animation: dropdownIn .25s cubic-bezier(0.16,1,0.3,1);
}
@keyframes dropdownIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.site-header nav > ul > li:hover > .sub-menu,
.site-header nav ul li:hover > ul.sub-menu {
    display: flex;
}
.site-header nav ul .sub-menu li {
    list-style: none;
}
.site-header nav ul .sub-menu li a {
    padding: 10px 16px;
    font-size: .85rem;
    font-weight: 500;
    color: #334155;
    border-radius: 8px;
    white-space: nowrap;
    transition: all .2s;
}
.site-header nav ul .sub-menu li a:hover {
    background: rgba(249,103,6,0.06);
    color: #F96706;
    padding-left: 20px;
}
/* Dropdown arrow on parent */
.site-header nav > ul > li.menu-item-has-children > a::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 4px;
    transition: transform .2s;
}
.site-header nav > ul > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* ─── FOOTER FULL WIDTH ─── */
.site-footer,
#site-footer,
footer#site-footer,
footer.site-footer {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    max-width: none !important;
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}
.site-footer .footer-inner,
.site-footer .site-branding,
.site-footer .copyright {
    display: none !important;
}

.itl-footer {
    background: #0f172a;
    color: #94a3b8;
    font-family: var(--e-global-typography-text-font-family, 'Nunito'), sans-serif;
}
.itl-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 24px;
}
.itl-footer-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.itl-footer-brand h3 {
    color: #fff;
    font-family: var(--e-global-typography-primary-font-family, 'Lexend'), sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
}
.itl-footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0 0 16px;
}
.itl-footer-logo img {
    max-height: 40px;
    width: auto;
    margin-bottom: 12px;
    filter: brightness(10);
}
.itl-footer-social {
    display: flex;
    gap: 10px;
}
.itl-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #94a3b8;
    text-decoration: none;
    transition: all .3s ease;
}
.itl-footer-social a:hover {
    background: var(--e-global-color-primary, #ea580c);
    color: #fff;
    transform: translateY(-2px);
}
.itl-footer-col h4 {
    color: #fff;
    font-family: var(--e-global-typography-primary-font-family, 'Lexend'), sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 20px;
}
.itl-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.itl-footer-col ul li {
    margin-bottom: 10px;
}
.itl-footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color .3s, padding-left .3s;
}
.itl-footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}
.itl-footer-contact {
    font-size: 14px;
    line-height: 2.2;
}
.itl-footer-contact div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.itl-footer-contact svg {
    flex-shrink: 0;
    opacity: .6;
}
.itl-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748b;
}
.itl-footer-bottom a {
    color: #64748b;
    text-decoration: none;
    transition: color .3s;
}
.itl-footer-bottom a:hover {
    color: #94a3b8;
}
.itl-footer-bottom .itl-powered {
    color: var(--e-global-color-primary, #ea580c);
    font-weight: 600;
}

/* Footer responsive */
@media (max-width: 768px) {
    .itl-footer-cols {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .itl-footer-inner {
        padding: 40px 20px 20px;
    }
    .itl-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ─── ELEMENTOR SECTION SPACING ─── */
.elementor-top-section {
    padding: 0 !important;
}
.elementor-top-section:not(:first-child):not(:last-child) {
    padding: 80px 0 !important;
}
.elementor-top-section:first-child,
.elementor-top-section:last-child {
    padding: 0 !important;
}
/* CTA section (last before footer): proper spacing */
.elementor-top-section:last-child {
    overflow: visible !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
/* Ensure alternating section backgrounds are visible */
.elementor-top-section:not(:first-child):not(:last-child) {
    border-top: 1px solid rgba(0,0,0,0.03);
}
/* Form section needs more visual weight */
.elementor-top-section:nth-last-child(2) {
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

/* ─── ELEMENTOR CONTAINER FIXES ─── */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px;
    padding-left: 40px !important;
    padding-right: 40px !important;
}
/* Hero container needs full width */
.elementor-top-section:first-child > .elementor-container,
.elementor-top-section:last-child > .elementor-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Widgets should have NO extra spacing */
.elementor-widget-html .elementor-widget-container {
    padding: 0 !important;
}
.elementor-widget-html {
    margin-bottom: 0 !important;
}

/* ─── RESPONSIVE: TABLET ─── */
@media (max-width: 1024px) {
    .site-header .header-inner {
        padding: 8px 16px;
    }

    .site-header nav ul {
        gap: 2px;
    }

    .site-header nav ul li a {
        padding: 6px 10px;
        font-size: .85rem;
    }
}

/* ─── RESPONSIVE: MOBILE ─── */
@media (max-width: 767px) {
    /* Header compact */
    .site-header .header-inner {
        flex-wrap: wrap;
        padding: 8px 12px;
    }

    .site-header .site-branding {
        max-width: 180px;
    }

    .site-header .site-title {
        font-size: .95rem !important;
    }

    .site-header .custom-logo {
        max-height: 32px;
    }

    /* Nav mobile: horizontal scroll */
    .site-header nav {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .site-header nav ul {
        flex-wrap: nowrap;
        gap: 2px;
    }

    .site-header nav ul li a {
        white-space: nowrap;
        padding: 6px 10px;
        font-size: .8rem;
    }

    /* ═══ AGGRESSIVE MOBILE FULL WIDTH FIX ═══ */
    .elementor-section,
    .elementor-top-section {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        /* Clip horizontal bleed only — vertical overflow:hidden cut off hero form */
        overflow-x: hidden !important;
        overflow-y: visible !important;
    }

    .elementor-column {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .elementor-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin: 0 auto !important;
    }

    /* Hero section: true bleed for background and content */
    .elementor-top-section:first-child {
        padding: 0 !important;
    }

    /* Hero: no lateral “gutter” — was 40px 15px */
    .elementor-top-section:first-child > .elementor-container {
        padding: 0 !important;
        max-width: none !important;
        width: 100% !important;
    }

    /* Fix text rendering: ensure enough line height and spacing */
    h1, h2, h3 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }

    /* Hero mobile */
    .itlive-hero {
        min-height: 40vh !important; 
        padding: 40px 12px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .itlive-hero h1 {
        font-size: clamp(1.7rem, 8vw, 2.4rem) !important;
        line-height: 1.1 !important;
        letter-spacing: -0.02em !important;
        margin-bottom: 16px !important;
    }

    .itlive-hero p {
        font-size: 1.05rem !important;
        line-height: 1.5 !important;
        margin-bottom: 24px !important;
    }

    /* Buttons stack on mobile */
    .itlive-hero div[style*="display:flex"] {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .itlive-btn-primary,
    .itlive-btn-outline-white {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        margin: 5px 0 !important;
    }

    /* Services grid mobile */
    .itlive-services-grid {
        grid-template-columns: 1fr !important;
    }

    /* Stats 2 columns on mobile */
    .itlive-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* Testimonials single column */
    .itlive-testimonials-grid {
        grid-template-columns: 1fr !important;
    }

    /* Section padding mobile: tighter padding for "full width" feel */
    .elementor-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* Force sections to be truly full width on mobile if needed */
    .elementor-section {
        width: 100% !important;
        left: 0 !important;
        margin: 0 !important;
    }

    /* Footer mobile */
    .site-footer {
        padding: 24px 16px;
    }
}

/* Services grid: 3 columns on desktop (but NOT stats counters) */
@media (min-width: 1025px) {
    .itlive-services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
    }
    /* Service cards with images only — not stat counters */
    div[style*="grid-template-columns:repeat(auto-fit,minmax(280px"] {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
    }
}

/* Stats counter grid: ALWAYS 4 columns on desktop, 2 on mobile */
div[style*="grid-template-columns:repeat(4,1fr)"],
div[style*="grid-template-columns:repeat(4, 1fr)"] {
    grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 768px) {
    div[style*="grid-template-columns:repeat(4,1fr)"],
    div[style*="grid-template-columns:repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ─── RESPONSIVE: SMALL MOBILE ─── */
@media (max-width: 480px) {
    .itlive-stats-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .itlive-hero h1 {
        font-size: 1.4rem !important;
    }
}

/* ─── ELEMENTOR HTML WIDGET FIXES ─── */
/* Remove default Elementor padding that causes double spacing */
.elementor-widget-html {
    margin-bottom: 0 !important;
}
.elementor-widget-html .elementor-widget-container {
    padding: 0 !important;
}
/* Full-bleed sections: remove section padding when widget handles it */
.elementor-section .elementor-container {
    max-width: 100% !important;
    padding: 0 !important;
}
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px;
    padding: 0 20px !important;
}
/* First hero section: true edge-to-edge (overrides boxed horizontal padding above) */
.elementor-top-section:first-child.elementor-section-boxed > .elementor-container,
.elementor-element-f34f3a7 > .elementor-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
/* Fix Iconify icons display */
.iconify {
    display: inline-flex !important;
    vertical-align: middle;
}
/* Service card image hover zoom */
a:hover img {
    transform: scale(1.06);
}
img {
    transition: transform .4s ease;
}
/* Service cards: prevent border flash */
a[style*="border-radius:16px"] {
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease !important;
}

/* ─── RESPONSIVE: INLINE GRIDS ─── */
@media (max-width: 1024px) {
    div[style*="grid-template-columns:repeat(auto-fit"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    div[style*="grid-template-columns:1fr 1.2fr"],
    div[style*="grid-template-columns:1.2fr 1fr"],
    div[style*="grid-template-columns:1.3fr 1fr"],
    div[style*="grid-template-columns:1fr 1.1fr"],
    div[style*="grid-template-columns:1.4fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    div[style*="grid-template-columns:repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    div[style*="grid-template-columns:repeat(3"]:not([style*="text-align:center"]) {
        grid-template-columns: 1fr !important;
    }
    div[style*="grid-template-columns:repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
    }
    /* Fix hero/section padding on mobile - specifically for the "De Verhuizing" template */
    div[style*="padding:130px 40px"],
    div[style*="padding:160px 40px"],
    div[style*="padding:100px 40px"],
    div[style*="padding:120px 40px"] {
        padding: 60px 12px 40px !important;
    }
    div[style*="padding:80px 40px"],
    div[style*="padding:90px 40px"],
    div[style*="padding:70px 40px"] {
        padding: 40px 12px !important;
    }
    /* Ensure the hero column with the form doesn't have huge top margin when stacked */
    div[style*="display:grid"] > div:nth-child(2) {
        margin-top: 20px !important;
    }
    /* Fix hero heading size */
    h1[style*="clamp(2.4rem"] {
        font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    }
    /* Stats smaller on mobile — use class to not break JS selectors */
    div[style*="font-size:3.2rem"] {
        font-size: 2.2rem !important;
    }
    /* Flex wrapping */
    div[style*="display:flex;gap:16px;justify-content:center"],
    div[style*="display:flex;gap:14px;justify-content:center"],
    div[style*="display:flex;gap:14px;flex-wrap:wrap"] {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    div[style*="display:flex;gap:14px;flex-wrap:wrap"] a,
    div[style*="display:flex;gap:16px;justify-content:center"] a {
        text-align: center !important;
        justify-content: center !important;
    }
    /* Location pills wrap better */
    div[style*="display:flex;flex-wrap:wrap;gap:12px;justify-content:center"] {
        gap: 8px !important;
    }
}

@media (max-width: 480px) {
    div[style*="grid-template-columns:repeat(2"] {
        grid-template-columns: 1fr !important;
    }
    div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    /* Maximize content space on small screens */
    div[style*="padding:32px"],
    div[style*="padding:36px"],
    div[style*="padding:40px"] {
        padding: 24px 15px !important;
    }
    
    /* Hero title specific fix for small screens */
    h1 {
        font-size: 1.6rem !important;
        line-height:1.2 !important;
    }
}

/* ─── ACCESSIBILITY ─── */
.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 8px 16px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
}

.skip-link:focus {
    left: 8px;
    top: 8px;
}

/* ─── PRINT ─── */
@media print {
    .site-header, .site-footer, .itlive-hero-glow,
    .ilchat-widget, .itlive-btn-pulse { display: none !important; }
}


/* ═══ BLOG CONTENT STYLING ═══ */
.dv-blog-content h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #152B5D;
    margin: 40px 0 16px;
    line-height: 1.3;
}
.dv-blog-content h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #152B5D;
    margin: 32px 0 12px;
}
.dv-blog-content p {
    margin: 0 0 16px;
    color: #334155;
}
.dv-blog-content ul, .dv-blog-content ol {
    margin: 16px 0;
    padding-left: 24px;
    color: #334155;
}
.dv-blog-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.dv-blog-content strong {
    color: #152B5D;
    font-weight: 600;
}
.dv-blog-content a {
    color: #F96706;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.dv-blog-content blockquote {
    border-left: 4px solid #F96706;
    margin: 24px 0;
    padding: 16px 24px;
    background: #F8FAFC;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #475569;
}

/* Sidebar link hover */
aside a:hover {
    background: rgba(249,103,6,0.05) !important;
    color: #F96706 !important;
}

/* Blog card hover */
article:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
article:hover img {
    transform: scale(1.06);
}

/* Pagination styling */
.nav-links {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}
.nav-links a, .nav-links span {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
}
.nav-links a {
    color: #152B5D;
    background: #F1F5F9;
}
.nav-links a:hover {
    background: #F96706;
    color: #fff;
}
.nav-links .current {
    background: #F96706;
    color: #fff;
}

/* Responsive blog grid */
@media (max-width: 1024px) {
    div[style*="grid-template-columns:1fr 340px"] {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 768px) {
    div[style*="grid-template-columns:repeat(2,1fr)"] {
        grid-template-columns: 1fr !important;
    }
    div[style*="grid-template-columns:repeat(3,1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* Home hero: reserve space for absolutely positioned USP strip (CTA/tel vs bar overlap) */
@media (max-width: 900px) {
    .elementor-element-89bc651 div[style*="min-height:620px"] {
        padding-bottom: 108px !important;
    }
}
@media (max-width: 480px) {
    .elementor-element-89bc651 div[style*="min-height:620px"] {
        padding-bottom: 120px !important;
    }
}


/* ─── v2.0.3: mobiel menu stacking (max z-index Safari/Chrome) + hero-form geen clip/off-screen ─── */
/* Safari/Chrome: header + dropdown boven hero/Elementor (sticky + transform stacking) */
#site-header.site-header {
    z-index: 2147483000 !important;
    overflow: visible !important;
    position: sticky !important;
    top: 0 !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.site-header .header-inner {
    position: relative;
    z-index: 2147483001 !important;
    overflow: visible !important;
}
.site-header .site-navigation-toggle-holder {
    position: relative;
    z-index: 2147483600 !important;
    overflow: visible !important;
}
.site-header .site-navigation-toggle {
    position: relative;
    z-index: 2147483601 !important;
}
.site-header .site-navigation-dropdown {
    z-index: 2147483646 !important;
}
/* Hero-sectie onder header houden in root-stacking (WebKit sibling order) */
.elementor-top-section.elementor-element-f34f3a7 {
    z-index: 0 !important;
}
@media (max-width: 992px) {
    .site-header.menu-dropdown-tablet .site-navigation,
    .site-header.menu-dropdown-mobile .site-navigation {
        width: auto !important;
        max-width: none !important;
        overflow: visible !important;
    }
}
@media (max-width: 1024px) {
    .elementor-element-89bc651 div[style*="grid-template-columns:1fr 380px"] {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .elementor-element-89bc651 div[style*="border-radius:20px;padding:28px"] {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .elementor-element-89bc651 input,
    .elementor-element-89bc651 select,
    .elementor-element-89bc651 button[type="submit"] {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}
/* ─── De Verhuizing hero: full viewport width + tighter inner padding ─── */
.elementor-top-section.elementor-element-f34f3a7 {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
    box-sizing: border-box;
}
.elementor-top-section.elementor-element-f34f3a7 .elementor-widget-wrap {
    padding: 0 !important;
}
@media (max-width: 1024px) {
    .elementor-element-89bc651 div[style*="padding:60px 48px"] {
        padding: 28px 16px !important;
        gap: 28px !important;
    }
}
@media (max-width: 767px) {
    .elementor-element-89bc651 div[style*="padding:60px 48px"] {
        padding: 16px 12px !important;
        gap: 20px !important;
    }
}
@media (max-width: 480px) {
    .elementor-element-89bc651 div[style*="padding:60px 48px"] {
        padding: 14px 10px !important;
        gap: 16px !important;
    }
}

/* ─── v2.0.4: gesloten mobiel menu-paneel mag geen clicks stelen (Hello scaleY) ─── */
.site-header .site-navigation-toggle-holder:not(.elementor-active) + .site-navigation-dropdown {
    pointer-events: none !important;
}
.site-header .site-navigation-toggle-holder.elementor-active + .site-navigation-dropdown {
    pointer-events: auto !important;
}
.site-header .site-navigation-toggle {
    pointer-events: auto !important;
    touch-action: manipulation;
}

/* ─── v2.0.5: Formulier mobiele padding fix ─── */
@media (max-width: 768px) {
    /* Elementor sectie met formulier: padding toevoegen */
    .elementor-section .elementor-widget-shortcode,
    .elementor-element .elementor-widget-shortcode {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    /* Hero formulier card: meer padding op mobiel */
    .elementor-section .dv-verhuisform,
    .e-con .dv-verhuisform {
        padding: 0 8px;
    }
    /* Elementor container/kolom: voorkom dat content tegen rand zit */
    .e-con > .e-con-inner,
    .elementor-column-wrap,
    .elementor-widget-wrap {
        padding-left: max(8px, env(safe-area-inset-left)) !important;
        padding-right: max(8px, env(safe-area-inset-right)) !important;
    }
    /* Trust badges onder formulier: wrap + spacing */
    .elementor-widget-text-editor p,
    .elementor-widget-heading .elementor-heading-title {
        padding-left: 8px;
        padding-right: 8px;
    }
}
@media (max-width: 480px) {
    .elementor-section .elementor-widget-shortcode,
    .elementor-element .elementor-widget-shortcode {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    .e-con > .e-con-inner {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
}
