/* =====================================================
   LEKKAGEOPLOSING.NL - BRAND CSS (COMPLETE)
   Voor Elementor Custom CSS
   Gebaseerd op template screenshot en beste praktijken
   ===================================================== */

/* =====================================================
   CSS VARIABELEN (KLEUREN UIT TEMPLATE SCREENSHOT)
   GEOPTIMALISEERD VOOR CONSISTENTIE - GELEERD VAN AZMC & LUMEYA
   ===================================================== */
:root {
    /* ===== PRIMARY COLORS ===== */
    --lek-primary-blue: #1A73E8;        /* Donkerblauw (logo tekst, navigatie) */
    --lek-light-blue: #4A90E2;           /* Lichtblauw (logo dak, accenten) */
    --lek-white: #FFFFFF;               /* Wit (achtergrond) */
    --lek-yellow-accent: #FFC107;       /* Geel/Orange (navigatie bar, CTA buttons) */
    --lek-red-accent: #E53935;          /* Rood (cookie banner, speech bubble) */
    --lek-dark-text: #2D1B1A;          /* Donkerbruin/zwart (tekst) */
    --lek-light-gray: #F5F5F5;         /* Lichte achtergrond */
    --lek-border-gray: #E0E0E0;        /* Border kleur */
    --lek-dark-brown: #5D4037;          /* Donkerbruin (top bar cookie banner) */
    
    /* ===== TYPOGRAPHY ===== */
    --lek-font-heading: 'Roboto', 'Arial', sans-serif;
    --lek-font-body: 'Roboto', 'Arial', sans-serif;
    --lek-font-weight-normal: 400;
    --lek-font-weight-medium: 500;
    --lek-font-weight-semibold: 600;
    --lek-font-weight-bold: 700;
    
    /* ===== SPACING SYSTEM (CONSISTENT) ===== */
    --lek-spacing-xs: 0.5rem;      /* 8px */
    --lek-spacing-sm: 1rem;         /* 16px */
    --lek-spacing-md: 1.5rem;      /* 24px */
    --lek-spacing-lg: 2rem;        /* 32px */
    --lek-spacing-xl: 3rem;        /* 48px */
    --lek-spacing-2xl: 4rem;       /* 64px */
    --lek-spacing-3xl: 5rem;       /* 80px */
    
    /* Section Padding */
    --lek-section-padding: 80px;
    --lek-section-padding-tablet: 60px;
    --lek-section-padding-mobile: 40px;
    --lek-section-padding-small: 30px;
    
    /* Card & Component Spacing */
    --lek-card-spacing: 30px;
    --lek-card-padding: 40px;
    --lek-card-padding-mobile: 25px;
    
    /* ===== BORDER RADIUS (CONSISTENT) ===== */
    --lek-radius-sm: 8px;
    --lek-radius-md: 12px;
    --lek-radius-lg: 16px;
    --lek-radius-xl: 20px;
    --lek-radius-full: 999px;
    
    /* ===== SHADOWS (CONSISTENT) ===== */
    --lek-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --lek-shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --lek-shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
    --lek-shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.2);
    --lek-shadow-hover: 0 6px 20px rgba(26, 115, 232, 0.2);
    
    /* ===== TRANSITIONS (CONSISTENT) ===== */
    --lek-transition-fast: 150ms ease;
    --lek-transition-normal: 250ms ease;
    --lek-transition-slow: 350ms ease;
    --lek-transition-hover: all 0.3s ease;
    
    /* ===== LAYOUT ===== */
    --lek-content-max-width: 1200px;
    --lek-container-padding: 20px;
    --lek-container-padding-mobile: 15px;
    --lek-container-padding-small: 10px;
    
    /* ===== BREAKPOINTS (voor gebruik in media queries) ===== */
    --lek-breakpoint-xs: 480px;
    --lek-breakpoint-sm: 768px;
    --lek-breakpoint-md: 968px;
    --lek-breakpoint-lg: 1024px;
    --lek-breakpoint-xl: 1200px;
    
    /* NIEUW THEMA - compleet andere look */
    --lek-new-heading: 'Plus Jakarta Sans', 'Roboto', sans-serif;
    --lek-new-hero-bg: #0a1628;
    --lek-new-hero-overlay: rgba(10, 22, 40, 0.82);
    --lek-new-accent: #0ea5e9;
    --lek-new-card-bg: #f8fafc;
    --lek-new-border: #e2e8f0;
}

/* =====================================================
   GOOGLE FONTS IMPORT
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Roboto:wght@400;500;600;700&display=swap');

/* =====================================================
   GLOBAL RESET & BASE STYLES
   ===================================================== */
body {
    font-family: var(--lek-font-body);
    color: var(--lek-dark-text);
    background-color: var(--lek-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */

/* Headings */
h1, h2, h3, h4, h5, h6,
.elementor-heading-title,
.elementor-heading-title a {
    font-family: var(--lek-font-heading);
    color: var(--lek-dark-text);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1, .elementor-heading-title.elementor-size-xxl {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--lek-primary-blue);
}

h2, .elementor-heading-title.elementor-size-xl {
    font-size: clamp(28px, 4vw, 42px);
}

h3, .elementor-heading-title.elementor-size-large {
    font-size: clamp(22px, 3vw, 32px);
}

/* Body Text */
p, 
.elementor-text-editor,
.elementor-text-editor p {
    color: var(--lek-dark-text);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    p, .elementor-text-editor {
        font-size: 16px;
    }
}

/* =====================================================
   SECTIONS - BACKGROUND
   ===================================================== */

/* Primaire Sectie - Wit */
.elementor-section,
.elementor-section.elementor-section-boxed {
    background-color: var(--lek-white);
    padding: var(--lek-section-padding) 20px;
}

@media (max-width: 768px) {
    .elementor-section {
        padding: var(--lek-section-padding-mobile) 20px;
    }
}

/* Alternatieve Sectie - Licht Grijs */
.elementor-section.lek-light-bg {
    background-color: var(--lek-light-gray);
}

/* Hero Sectie - Blauw */
.elementor-section.lek-hero-bg {
    background-color: var(--lek-primary-blue);
    color: var(--lek-white);
}

.elementor-section.lek-hero-bg h1,
.elementor-section.lek-hero-bg h2,
.elementor-section.lek-hero-bg h3 {
    color: var(--lek-white);
}

.elementor-section.lek-hero-bg p {
    color: var(--lek-white);
    opacity: 0.95;
}

/* =====================================================
   CONTAINER - MAX WIDTH
   ===================================================== */
.elementor-container {
    max-width: var(--lek-content-max-width);
    margin: 0 auto;
}

/* =====================================================
   BUTTONS - CTA STYLING
   ===================================================== */

/* Primary Button - Geel Accent */
.elementor-button,
.elementor-button-wrapper .elementor-button,
.lek-btn-primary {
    background-color: var(--lek-yellow-accent);
    color: var(--lek-dark-text);
    border: none;
    border-radius: 6px;
    padding: 16px 32px;
    font-family: var(--lek-font-heading);
    font-weight: 600;
    font-size: 16px;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.elementor-button:hover,
.elementor-button-wrapper .elementor-button:hover,
.lek-btn-primary:hover {
    background-color: #FFB300;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
}

/* Secondary Button - Blauw */
.elementor-button.elementor-button-secondary,
.lek-btn-secondary {
    background-color: var(--lek-primary-blue);
    color: var(--lek-white);
    border: none;
}

.elementor-button.elementor-button-secondary:hover,
.lek-btn-secondary:hover {
    background-color: #1557B0;
    color: var(--lek-white);
}

/* Outline Button */
.lek-btn-outline {
    background-color: transparent;
    color: var(--lek-primary-blue);
    border: 2px solid var(--lek-primary-blue);
}

.lek-btn-outline:hover {
    background-color: var(--lek-primary-blue);
    color: var(--lek-white);
}

/* =====================================================
   CARDS - BEDRIJVENGIDS CARDS
   ===================================================== */
.lek-card,
.elementor-widget-container .lek-card {
    background-color: var(--lek-white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--lek-border-gray);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.lek-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--lek-primary-blue);
}

.lek-card h3 {
    color: var(--lek-primary-blue);
    margin-bottom: 15px;
}

.lek-card p {
    color: var(--lek-dark-text);
    margin-bottom: 10px;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.lek-hero {
    background-color: var(--lek-primary-blue);
    color: var(--lek-white);
    padding: 100px 20px;
    text-align: center;
}

.lek-hero h1 {
    color: var(--lek-white);
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lek-hero p {
    color: var(--lek-white);
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 40px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .lek-hero {
        padding: 60px 20px;
    }
}

/* =====================================================
   GRID LAYOUTS
   ===================================================== */
.lek-grid,
.elementor-row.lek-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--lek-card-spacing);
}

@media (max-width: 768px) {
    .lek-grid {
        grid-template-columns: 1fr;
    }
}

/* Provincie Grid */
.lek-provincie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .lek-provincie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================================
   HEADER STYLING - VERBETERDE VERSIE
   ===================================================== */
.lek-header,
.elementor-location-header {
    background-color: var(--lek-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

/* Top Bar - Logo, Contact, Promotie */
.lek-header-top {
    background-color: var(--lek-white);
    border-bottom: 1px solid var(--lek-border-gray);
}

.lek-header-container {
    max-width: var(--lek-content-max-width);
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* Logo Wrapper */
.lek-logo-wrapper {
    flex: 0 0 auto;
}

.lek-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.lek-logo-link:hover {
    opacity: 0.8;
}

.lek-logo-icon {
    flex-shrink: 0;
}

.lek-logo-icon img,
.lek-logo-img {
    display: block;
    max-height: 60px;
    width: auto;
    height: auto;
}

.lek-logo-text {
    display: flex;
    flex-direction: column;
}

.lek-logo-title {
    font-family: var(--lek-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--lek-primary-blue);
    line-height: 1.2;
}

.lek-logo-tagline {
    font-family: var(--lek-font-body);
    font-size: 12px;
    font-style: italic;
    color: var(--lek-primary-blue);
    line-height: 1.2;
    margin-top: 2px;
}

/* Contact Info */
.lek-header-contact {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

.lek-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--lek-dark-text);
    font-size: 14px;
    transition: color 0.3s ease;
}

.lek-contact-item:hover {
    color: var(--lek-primary-blue);
}

.lek-contact-icon {
    font-size: 16px;
}

.lek-contact-text {
    font-weight: 500;
}

/* Promotie Boodschap */
.lek-header-promo {
    flex: 0 0 auto;
}

.lek-promo-bubble {
    background-color: var(--lek-red-accent);
    color: var(--lek-white);
    padding: 12px 18px;
    border-radius: 12px;
    max-width: 300px;
    position: relative;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.3);
}

.lek-promo-bubble::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid var(--lek-red-accent);
}

.lek-promo-bubble p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--lek-white);
}

/* Navigatie Bar - Oranje/Geel achtergrond */
.lek-nav-bar {
    background-color: var(--lek-yellow-accent);
    padding: 0;
    width: 100%;
}

.lek-nav-bar .lek-header-container {
    padding: 15px 20px;
}

.lek-nav-bar .lek-nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.lek-nav-bar .lek-nav-menu a {
    color: var(--lek-dark-text);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.lek-nav-bar .lek-nav-menu a:hover {
    color: var(--lek-primary-blue);
}

.lek-nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lek-nav-menu a {
    color: var(--lek-dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.lek-nav-menu a:hover {
    color: var(--lek-primary-blue);
}

/* Mobile Toggle */
.lek-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    order: 99;
}

.lek-mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--lek-dark-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.lek-mobile-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.lek-mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.lek-mobile-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.lek-mobile-menu {
    display: none;
    background-color: var(--lek-white);
    border-top: 1px solid var(--lek-border-gray);
    padding: 20px;
}

.lek-mobile-menu.is-open {
    display: block;
}

.lek-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lek-mobile-nav li {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--lek-light-gray);
    padding-bottom: 15px;
}

.lek-mobile-nav li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.lek-mobile-nav a {
    color: var(--lek-dark-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: block;
    padding: 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lek-mobile-nav a:hover {
    color: var(--lek-primary-blue);
}

@media (max-width: 991px) {
    .lek-header-contact {
        display: none;
    }

    .lek-header-promo {
        display: none;
    }

    .lek-nav-bar {
        display: none;
    }

    .lek-mobile-toggle {
        display: flex;
    }

    .lek-logo-title {
        font-size: 18px;
    }

    .lek-logo-tagline {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .lek-header-container {
        padding: 12px 15px;
    }

    .lek-logo-icon img,
    .lek-logo-img {
        max-height: 50px;
    }

    .lek-logo-title {
        font-size: 16px;
    }

    .lek-logo-tagline {
        font-size: 10px;
    }
}

/* =====================================================
   FOOTER STYLING - VERBETERDE VERSIE
   ===================================================== */
.lek-footer,
.elementor-location-footer {
    background-color: var(--lek-dark-text);
    color: var(--lek-white);
    padding: 60px 20px 30px;
}

.lek-footer-container {
    max-width: var(--lek-content-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.lek-footer-col {
    display: flex;
    flex-direction: column;
}

.lek-footer-col h4 {
    color: var(--lek-white);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--lek-font-heading);
}

.lek-footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 14px;
}

/* Footer Logo */
.lek-footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.lek-footer-logo-icon {
    flex-shrink: 0;
}

.lek-footer-logo-icon img,
.lek-footer-logo-img {
    display: block;
    max-height: 50px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
}

.lek-footer-logo-text {
    display: flex;
    flex-direction: column;
}

.lek-footer-logo-title {
    font-family: var(--lek-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--lek-white);
    line-height: 1.2;
}

.lek-footer-logo-tagline {
    font-family: var(--lek-font-body);
    font-size: 11px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
    margin-top: 2px;
}

/* Footer Links */
.lek-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lek-footer-links li {
    margin-bottom: 12px;
}

.lek-footer-links li:last-child {
    margin-bottom: 0;
}

.lek-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.lek-footer-links a:hover {
    color: var(--lek-yellow-accent);
    transform: translateX(3px);
}

/* Footer Contact */
.lek-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lek-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

/* FIX: Voorkom dubbele cookie banners op elkaar */
.cmplz-cookiebanner ~ .cmplz-cookiebanner {
    display: none !important;
}
.elementor-popup-modal[data-elementor-settings*="cookie"] {
    display: none !important;
}

.lek-footer-contact-item:hover {
    color: var(--lek-yellow-accent);
}

.lek-footer-contact-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.lek-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lek-footer a:hover {
    color: var(--lek-yellow-accent);
}

/* Footer Bottom */
.lek-footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.lek-footer-bottom-container {
    max-width: var(--lek-content-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.lek-footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.lek-footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.lek-footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.lek-footer-legal a:hover {
    color: var(--lek-yellow-accent);
}

.lek-footer-separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
}

@media (max-width: 1024px) {
    .lek-footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .lek-footer {
        padding: 40px 15px 20px;
    }

    .lek-footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lek-footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .lek-footer-legal {
        justify-content: center;
    }

    .lek-footer-logo-wrapper {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .lek-footer {
        padding: 30px 15px 15px;
    }

    .lek-footer-col h4 {
        font-size: 16px;
    }

    .lek-footer-logo-title {
        font-size: 16px;
    }

    .lek-footer-logo-tagline {
        font-size: 10px;
    }
}

/* =====================================================
   FORMS
   ===================================================== */
.lek-form input,
.lek-form textarea,
.lek-form select,
.elementor-field-group input,
.elementor-field-group textarea,
.elementor-field-group select {
    background-color: var(--lek-white);
    border: 1px solid var(--lek-border-gray);
    color: var(--lek-dark-text);
    padding: 15px;
    border-radius: 6px;
    font-family: var(--lek-font-body);
    font-size: 16px;
    width: 100%;
    transition: border-color 0.3s ease;
}

.lek-form input:focus,
.lek-form textarea:focus {
    outline: none;
    border-color: var(--lek-primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.lek-form label {
    color: var(--lek-dark-text);
    font-family: var(--lek-font-heading);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */

/* Text Colors */
.lek-text-blue {
    color: var(--lek-primary-blue);
}

.lek-text-white {
    color: var(--lek-white);
}

.lek-text-dark {
    color: var(--lek-dark-text);
}

/* Background Colors */
.lek-bg-blue {
    background-color: var(--lek-primary-blue);
}

.lek-bg-white {
    background-color: var(--lek-white);
}

.lek-bg-light {
    background-color: var(--lek-light-gray);
}

/* Spacing */
.lek-section-padding {
    padding: var(--lek-section-padding) 20px;
}

@media (max-width: 768px) {
    .lek-section-padding {
        padding: var(--lek-section-padding-mobile) 20px;
    }
}

/* Text Alignment */
.lek-text-center {
    text-align: center;
}

.lek-text-left {
    text-align: left;
}

.lek-text-right {
    text-align: right;
}

/* =====================================================
   MOBILE RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 22px;
    }
    
    .elementor-button,
    .lek-btn-primary {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .lek-card {
        padding: 20px;
    }
    
    .lek-hero {
        padding: 60px 20px;
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes lek-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lek-fade-in {
    animation: lek-fadeIn 0.6s ease-out;
}

/* =====================================================
   HOMEPAGE SPECIFIC STYLES
   ===================================================== */

/* Hero Section - Met achtergrondfoto */
.lek-hero {
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(26, 115, 232, 0.85);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.lek-hero .elementor-container {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.lek-hero h1 {
    color: white;
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.lek-hero p {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 30px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.lek-hero .lek-btn-primary {
    font-size: 18px;
    padding: 18px 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Value Proposition Section */
.lek-value-prop {
    padding: 80px 0;
}

.lek-value-prop-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.lek-value-prop-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lek-value-prop-text h2 {
    color: var(--lek-primary-blue);
    margin-bottom: 20px;
}

.lek-value-prop-text p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--lek-dark-text);
    margin: 0;
}

.lek-value-prop .lek-text-center {
    max-width: 900px;
    margin: 0 auto 60px;
}

.lek-value-prop h2 {
    color: var(--lek-primary-blue);
    margin-bottom: 20px;
}

.lek-value-prop > .lek-text-center p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--lek-dark-text);
}

/* 3 Kolommen met voordelen - Horizontaal over de breedte */
.lek-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 100%;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .lek-benefits-grid {
        gap: 30px;
    }
}

.lek-benefit-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lek-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.lek-benefit-icon {
    width: 90px;
    height: 90px;
    background: var(--lek-yellow-accent);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: var(--lek-dark-text);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    line-height: 1;
    font-family: 'Roboto', 'Arial', sans-serif;
}

.lek-benefit-item h3 {
    color: var(--lek-primary-blue);
    margin-bottom: 15px;
    font-size: 24px;
}

.lek-benefit-item p {
    color: var(--lek-dark-text);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Bedrijven Grid - Met foto's */
.lek-companies-section {
    padding: 80px 0;
}

.lek-companies-section .elementor-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.lek-companies-section .lek-text-center {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 50px !important;
    text-align: center !important;
}

.lek-companies-section h2 {
    color: var(--lek-primary-blue);
    margin-bottom: 15px;
}

.lek-companies-section .lek-text-center p {
    font-size: 18px;
}

.lek-companies-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    margin-top: 0 !important;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .lek-companies-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 968px) {
    .lek-companies-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
}

.lek-company-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lek-company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.lek-company-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background-color: #f5f5f5;
}

.lek-company-card-content {
    padding: 30px;
}

.lek-company-card h4 {
    color: var(--lek-primary-blue);
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lek-company-card h3 {
    color: var(--lek-primary-blue);
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
}

.lek-company-card p {
    color: var(--lek-dark-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.lek-company-card a {
    color: var(--lek-primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lek-company-card a:hover {
    color: var(--lek-light-blue);
}

/* Voor Vakbedrijven Sectie - Gradient */
.lek-vakbedrijven-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--lek-primary-blue) 0%, var(--lek-light-blue) 100%);
}

.lek-vakbedrijven-section .lek-text-center {
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.lek-vakbedrijven-section h2 {
    color: white;
    margin-bottom: 25px;
    font-size: clamp(32px, 4vw, 48px);
}

.lek-vakbedrijven-section p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.95);
}

.lek-backlink-box {
    background: rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.lek-backlink-box p {
    font-size: 18px;
    margin-bottom: 10px;
}

.lek-backlink-box strong {
    font-weight: 600;
}

.lek-vakbedrijven-section .lek-btn-primary {
    background: var(--lek-yellow-accent);
    color: var(--lek-dark-text);
    font-size: 18px;
    padding: 18px 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-top: 40px;
}

/* Provincies Grid Sectie - Onder Tekst */
.lek-provincies-section {
    padding: 60px 0;
}

.lek-provincies-section .elementor-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.lek-provincies-section .lek-text-center {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 40px !important;
    text-align: center !important;
}

.lek-provincies-section h2 {
    color: var(--lek-primary-blue);
    margin-bottom: 15px;
}

.lek-provincies-section > .elementor-container > .lek-text-center p {
    font-size: 18px;
    color: var(--lek-dark-text);
}

.lek-provincies-box {
    max-width: 1200px;
    margin: 0 auto !important;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
    margin-top: 0 !important;
    overflow: hidden;
}

.lek-provincies-box .lek-provincies-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
}

.lek-provincies-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.lek-provincie-link {
    padding: 16px 20px !important;
    background: var(--lek-light-gray) !important;
    border-radius: 8px;
    text-decoration: none;
    color: var(--lek-primary-blue) !important;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid transparent;
    width: 100%;
    min-height: 50px;
}

.lek-provincie-link:hover {
    background: var(--lek-yellow-accent) !important;
    color: var(--lek-dark-text) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 193, 7, 0.3);
    border-color: var(--lek-yellow-accent);
}

/* Final CTA Sectie */
.lek-final-cta {
    padding: 80px 0;
    background: var(--lek-primary-blue);
}

.lek-final-cta .lek-text-center {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.lek-final-cta h2 {
    color: white;
    margin-bottom: 20px;
    font-size: clamp(32px, 4vw, 48px);
}

.lek-final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.95);
}

.lek-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.lek-cta-buttons .lek-btn-primary {
    background: var(--lek-yellow-accent);
    color: var(--lek-dark-text);
    font-size: 18px;
    padding: 18px 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.lek-cta-buttons .lek-btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-size: 18px;
    padding: 18px 40px;
}

.lek-cta-buttons .lek-btn-outline:hover {
    background: white;
    color: var(--lek-primary-blue);
}

/* Responsive voor Homepage */
@media (max-width: 1024px) {
    .lek-value-prop-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lek-benefits-grid {
        gap: 30px;
    }
    
    .lek-benefit-item {
        padding: 35px 20px;
    }
    
    .lek-benefit-icon {
        width: 80px;
        height: 80px;
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .lek-hero {
        min-height: 50vh;
        padding: 40px 20px;
    }
    
    .lek-value-prop-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lek-value-prop-text {
        text-align: center;
    }
    
    /* Elementor container padding op mobiel */
    .lek-companies-section .elementor-container,
    .lek-provincies-section .elementor-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
    }

    .lek-value-prop,
    .lek-companies-section,
    .lek-vakbedrijven-section,
    .lek-provincies-section,
    .lek-final-cta {
        padding: 50px 0;
    }
    
    .lek-companies-section .lek-text-center {
        margin-bottom: 30px !important;
        padding: 0 10px;
    }
    
    .lek-companies-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
        padding: 0;
    }
    
    .lek-company-card {
        width: 100%;
        margin: 0;
    }
    
    .lek-company-card img {
        height: 200px;
    }
    
    .lek-company-card-content {
        padding: 25px 20px;
    }
    
    .lek-provincies-section .lek-text-center {
        margin-bottom: 30px !important;
        padding: 0 10px;
    }
    
    .lek-provincies-box {
        padding: 25px 15px !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .lek-provincies-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .lek-provincie-link {
        padding: 14px 12px !important;
        font-size: 14px !important;
        min-height: 50px;
        text-align: center;
    }
    
    /* Benefits grid: verticaal op mobiel */
    .lek-benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 0;
    }
    
    .lek-benefit-item {
        padding: 30px 20px;
    }
    
    .lek-benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .lek-benefit-item h3 {
        font-size: 20px;
    }
    
    .lek-benefit-item p {
        font-size: 15px;
    }
    
    .lek-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .lek-cta-buttons .lek-btn-primary,
    .lek-cta-buttons .lek-btn-outline {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
    }
    
    .lek-vakbedrijven-section h2 {
        font-size: 28px;
    }
    
    .lek-vakbedrijven-section p {
        font-size: 18px;
    }
    
    .lek-backlink-box {
        padding: 20px;
        margin: 25px 0;
    }
    
    .lek-backlink-box p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .lek-hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .lek-hero p {
        font-size: 16px;
    }
    
    .lek-hero .lek-btn-primary {
        font-size: 16px;
        padding: 14px 30px;
        width: 100%;
        max-width: 100%;
    }
    
    .lek-value-prop,
    .lek-companies-section,
    .lek-vakbedrijven-section,
    .lek-provincies-section,
    .lek-final-cta {
        padding: 40px 0;
    }
    
    /* Elementor container padding op kleine mobiel */
    .lek-companies-section .elementor-container,
    .lek-provincies-section .elementor-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .lek-value-prop h2 {
        font-size: 24px;
        padding: 0 10px;
    }
    
    .lek-value-prop > .lek-text-center p {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .lek-companies-section h2 {
        font-size: 22px;
        padding: 0 10px;
    }
    
    .lek-companies-section .lek-text-center p {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .lek-companies-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .lek-company-card {
        width: 100%;
        margin: 0;
    }
    
    .lek-company-card img {
        height: 180px;
    }
    
    .lek-company-card-content {
        padding: 20px 15px;
    }
    
    .lek-company-card h4 {
        font-size: 12px;
    }

    .lek-company-card h3 {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .lek-company-card p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .lek-provincies-section h2 {
        font-size: 22px;
        padding: 0 10px;
    }
    
    .lek-provincies-section .lek-text-center p {
        font-size: 16px;
        padding: 0 10px;
    }

    .lek-provincies-box {
        padding: 20px 10px !important;
        margin: 0 !important;
    }

    .lek-provincies-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .lek-provincie-link {
        padding: 12px 8px !important;
        font-size: 13px !important;
        min-height: 48px;
        line-height: 1.3;
        word-break: break-word;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
        hyphens: auto;
    }
    
    .lek-final-cta h2 {
        font-size: 24px;
    }
    
    .lek-final-cta p {
        font-size: 16px;
    }
}

/* =====================================================
   BLOG TEMPLATE CSS - Overzicht + Artikelpagina's
   ===================================================== */

.lek-blog-section,
.blogs .elementor-section {
    padding: var(--lek-section-padding) 20px;
}

@media (max-width: 768px) {
    .lek-blog-section,
    .blogs .elementor-section {
        padding: var(--lek-section-padding-mobile) 20px;
    }
}

/* Blog overzicht - titel en intro */
.lek-blog-section h1,
.blogs .elementor-section h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--lek-primary-blue);
    text-align: center;
    margin-bottom: 16px;
}

.lek-blog-section > .elementor-container > p:first-of-type,
.blogs .elementor-section > .elementor-container > p.lek-text-center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--lek-dark-text);
}

/* Blog grid - kaarten */
.lek-blog-section .lek-grid,
.blogs .lek-grid,
.lek-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 0;
}

.lek-blog-card,
.lek-blog-section .lek-card,
.blogs .lek-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lek-blog-card:hover,
.lek-blog-section .lek-card:hover,
.blogs .lek-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(26, 115, 232, 0.15);
    border: none;
}

.lek-blog-card img,
.lek-blog-section .lek-card img,
.blogs .lek-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.lek-blog-card > div:last-child,
.lek-blog-section .lek-card > div:last-child {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.lek-blog-card h3,
.lek-blog-section .lek-card h3,
.blogs .lek-card h3 {
    font-size: clamp(18px, 2.5vw, 22px);
    margin-bottom: 12px;
    color: var(--lek-primary-blue);
    line-height: 1.3;
}

.lek-blog-card p,
.lek-blog-section .lek-card p,
.blogs .lek-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    color: var(--lek-dark-text);
}

.lek-blog-card .lek-btn-outline,
.lek-blog-section .lek-card .lek-btn-outline,
.blogs .lek-card .lek-btn-outline {
    align-self: flex-start;
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 10px;
    font-weight: 600;
}

/* Blog artikelpagina - single post */
.lek-blog-article .elementor-container {
    max-width: 800px;
}

.lek-blog-article h1 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--lek-primary-blue);
    margin-bottom: 24px;
    line-height: 1.25;
}

.lek-blog-article h2 {
    font-size: clamp(22px, 3vw, 28px);
    color: var(--lek-dark-text);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--lek-light-gray);
}

.lek-blog-article p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.lek-blog-article img {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.lek-blog-article .elementor-button-wrapper {
    margin-top: 40px;
    text-align: center;
}

.lek-blog-article .lek-btn-primary {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 10px;
}

.lek-blog-article p a[href*="/nl/blog"] {
    color: var(--lek-primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.lek-blog-article p a[href*="/nl/blog"]:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .lek-blog-section .lek-grid,
    .blogs .lek-grid,
    .lek-blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lek-blog-card img,
    .lek-blog-section .lek-card img,
    .blogs .lek-card img {
        height: 180px;
    }

    .lek-blog-article h2 {
        margin-top: 32px;
    }
}

/* =====================================================
   NIEUWE HEADER - Compleet ander ontwerp (geen oranje/rode look)
   ===================================================== */

.lek-header-new {
    background: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.lek-header-new .lek-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.lek-header-new .lek-logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.lek-header-new .lek-logo-link:hover {
    opacity: 0.85;
}

.lek-header-new .lek-logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.lek-header-new .lek-logo-title {
    font-family: var(--lek-new-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--lek-new-hero-bg);
    letter-spacing: -0.02em;
}

.lek-header-new .lek-logo-tagline {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    margin-top: 1px;
}

.lek-header-new .lek-nav-main {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lek-header-new .lek-nav-main a {
    color: #334155;
    text-decoration: none;
    font-family: var(--lek-new-heading);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.lek-header-new .lek-nav-main a:hover {
    color: var(--lek-primary-blue);
    background: #f1f5f9;
}

.lek-header-new .lek-nav-cta {
    margin-left: 8px;
}

.lek-header-new .lek-nav-cta .lek-btn-primary {
    background: var(--lek-new-hero-bg);
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: none;
}

.lek-header-new .lek-nav-cta .lek-btn-primary:hover {
    background: #0f172a;
    color: #fff;
    transform: none;
}

.lek-header-new .lek-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.lek-header-new .lek-mobile-toggle span {
    width: 22px;
    height: 2px;
    background: #334155;
    border-radius: 1px;
}

.lek-header-new .lek-mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--lek-new-border);
    padding: 20px 24px;
}

.lek-header-new .lek-mobile-menu.is-open {
    display: block;
}

.lek-header-new .lek-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lek-header-new .lek-mobile-nav li {
    margin-bottom: 4px;
}

.lek-header-new .lek-mobile-nav a {
    display: block;
    padding: 14px 0;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.lek-header-new .lek-mobile-nav a:hover {
    color: var(--lek-primary-blue);
}

@media (max-width: 968px) {
    .lek-header-new .lek-nav-main,
    .lek-header-new .lek-nav-cta {
        display: none;
    }
    .lek-header-new .lek-mobile-toggle {
        display: flex;
    }
}

/* =====================================================
   NIEUWE HOMEPAGE - Compleet ander ontwerp
   ===================================================== */

.lek-hero-new {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: var(--lek-new-hero-bg);
    position: relative;
}

.lek-hero-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--lek-new-hero-overlay);
}

.lek-hero-new .elementor-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 24px;
}

.lek-hero-new h1 {
    font-family: var(--lek-new-heading);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.lek-hero-new .lek-hero-sub {
    font-size: clamp(18px, 2.2vw, 22px);
    color: rgba(255,255,255,0.92);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.lek-hero-new .lek-btn-primary {
    background: #fff;
    color: var(--lek-new-hero-bg);
    font-family: var(--lek-new-heading);
    font-weight: 700;
    padding: 18px 40px;
    font-size: 17px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.lek-hero-new .lek-btn-primary:hover {
    background: #f8fafc;
    color: var(--lek-new-hero-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.lek-section-new {
    padding: 100px 24px;
}

.lek-section-new.lek-section-alt {
    background: var(--lek-new-card-bg);
}

.lek-section-new h2 {
    font-family: var(--lek-new-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--lek-new-hero-bg);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.lek-section-new .lek-section-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
}

.lek-cards-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.lek-card-new {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid var(--lek-new-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lek-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 22, 40, 0.1);
}

.lek-card-new img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.lek-card-new .lek-card-body {
    padding: 28px;
}

.lek-card-new h3 {
    font-family: var(--lek-new-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--lek-new-hero-bg);
    margin-bottom: 8px;
}

.lek-card-new h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lek-new-accent);
    margin-bottom: 12px;
}

.lek-card-new p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 20px;
}

.lek-card-new a.lek-link-arrow {
    color: var(--lek-primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.lek-card-new a.lek-link-arrow:hover {
    text-decoration: underline;
}

.lek-cta-section-new {
    background: var(--lek-new-hero-bg);
    padding: 80px 24px;
    text-align: center;
}

.lek-cta-section-new h2 {
    color: #fff;
    margin-bottom: 16px;
}

.lek-cta-section-new p {
    color: rgba(255,255,255,0.88);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.lek-cta-section-new .lek-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.lek-cta-section-new .lek-btn-primary {
    background: #fff;
    color: var(--lek-new-hero-bg);
}

.lek-cta-section-new .lek-btn-outline {
    border: 2px solid rgba(255,255,255,0.8);
    color: #fff;
}

.lek-cta-section-new .lek-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* Provincies in nieuw thema */
.lek-section-new .lek-provincie-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: var(--lek-new-hero-bg);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.lek-section-new .lek-provincie-link:hover {
    background: var(--lek-new-hero-bg);
    color: #fff;
    border-color: var(--lek-new-hero-bg);
}

@media (max-width: 768px) {
    .lek-hero-new {
        min-height: 75vh;
    }
    .lek-section-new {
        padding: 64px 20px;
    }
    .lek-section-new .lek-cards-new {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    .lek-section-new .lek-provincies-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .lek-section-new .lek-provincies-box {
        padding: 20px 16px;
    }
    .lek-section-new .lek-provincie-link {
        padding: 14px 12px;
        font-size: 14px;
    }
}

/* =====================================================
   HOTFIX: Full-width, cards wit, referenties badge, mobile
   ===================================================== */

/* FULL-WIDTH: Elementor secties mogen breder */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1400px !important;
}
.elementor-section.elementor-section-full_width > .elementor-container {
    max-width: none !important;
}
/* Elementor V3 containers */
.e-con {
    --container-max-width: 1400px !important;
}
.e-con.e-con-full {
    --container-max-width: none !important;
    max-width: none !important;
}

/* BODY: geen max-width beperkingen */
body .elementor {
    max-width: none !important;
}

/* CARDS: achtergrond WIT, niet transparant */
.elementor-widget-html div[style*="border-radius"],
.elementor-widget-html div[style*="border:1px"],
.elementor-widget-html div[style*="box-shadow"],
div[style*="background:#F5F5F5"] div[style*="border-radius:12px"],
div[style*="background:#F5F5F5"] div[style*="border-radius:16px"],
div[style*="background:var(--lek-light-gray)"] div[style*="border-radius"] {
    background-color: #fff !important;
}

/* Specifiek: kaarten met border en shadow = altijd wit */
div[style*="border:1px solid"][style*="border-radius:12px"],
div[style*="border:1px solid"][style*="border-radius:16px"],
div[style*="border: 1px solid"][style*="border-radius"] {
    background-color: #fff !important;
}

/* "200+ gecertificeerde referenties" badge — VERBERG overal */
/* Dit is een platform badge, niet van de klant */
/* Verberg secties met deze specifieke teksten via content targeting */
.elementor-widget-text-editor:has(p:only-child) {
    /* Fallback: kan niet direct op content targeten, dus via JS */
}

/* Onafhankelijk zoeken kaart: achtergrond wit forceren */
div[style*="background:#f0f4ff"],
div[style*="background: #f0f4ff"],
div[style*="background:#EEF2FF"],
div[style*="background: #EEF2FF"] {
    background: #fff !important;
}

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 768px) {
    .elementor-section.elementor-section-boxed > .elementor-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    /* Alle grids: 1 kolom op mobiel */
    div[style*="grid-template-columns:repeat(3"],
    div[style*="grid-template-columns: repeat(3"],
    div[style*="grid-template-columns:repeat(4"],
    div[style*="grid-template-columns:1fr 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    div[style*="grid-template-columns:repeat(2"],
    div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    /* Padding reduceren */
    div[style*="padding:80px"],
    div[style*="padding:60px"],
    div[style*="padding: 80px"],
    div[style*="padding: 60px"] {
        padding: 32px 16px !important;
    }
    div[style*="padding:40px"],
    div[style*="padding: 40px"] {
        padding: 24px 14px !important;
    }
    /* Font sizes */
    h1, h1[style] { font-size: clamp(24px, 6vw, 36px) !important; }
    h2, h2[style] { font-size: clamp(20px, 5vw, 28px) !important; }
    /* Flex rijen wrappen */
    div[style*="display:flex"][style*="gap"] {
        flex-wrap: wrap !important;
    }
    /* Images niet overflow */
    img { max-width: 100% !important; height: auto !important; }
    /* CTA buttons full width */
    a[style*="border-radius:999px"][style*="background"],
    a[style*="border-radius: 999px"][style*="background"] {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
}
@media (max-width: 480px) {
    .elementor-section.elementor-section-boxed > .elementor-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    div[style*="padding:32px"],
    div[style*="padding: 32px"] {
        padding: 20px 12px !important;
    }
}

/* ===== ELEMENTOR SCROLL ANIMATIONS ===== */

/* Navbar scroll-shrink */
.elementor-sticky--effects .elementor-widget-theme-site-logo img,
header.elementor-sticky--effects .elementor-widget-image img {
  max-height: 40px !important;
  transition: max-height 0.4s cubic-bezier(0.34,1.56,0.64,1) !important;
}
header.elementor-sticky--effects {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  transition: padding 0.4s cubic-bezier(0.34,1.56,0.64,1), background-color 0.3s ease, box-shadow 0.3s ease !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15) !important;
}
header.elementor-sticky--effects .elementor-nav-menu a {
  font-size: 14px !important;
  transition: font-size 0.3s ease !important;
}

/* Enhanced Elementor entrance animations */
.elementor-invisible {
  visibility: visible !important;
}

/* Bounce-in keyframes for Elementor widgets */
@keyframes elBounceIn {
  0%   { opacity:0; transform:scale(0.4) translateY(40px); }
  55%  { opacity:1; transform:scale(1.08) translateY(-8px); }
  75%  { transform:scale(0.96) translateY(3px); }
  90%  { transform:scale(1.02) translateY(-2px); }
  100% { opacity:1; transform:scale(1) translateY(0); }
}
@keyframes elSpringUp {
  0%   { opacity:0; transform:translateY(60px) scale(0.95); }
  55%  { opacity:1; transform:translateY(-10px) scale(1.02); }
  75%  { transform:translateY(4px) scale(0.99); }
  100% { opacity:1; transform:translateY(0) scale(1); }
}
@keyframes elSlideLeft {
  0%   { opacity:0; transform:translateX(-50px); }
  60%  { opacity:1; transform:translateX(8px); }
  100% { opacity:1; transform:translateX(0); }
}
@keyframes elSlideRight {
  0%   { opacity:0; transform:translateX(50px); }
  60%  { opacity:1; transform:translateX(-8px); }
  100% { opacity:1; transform:translateX(0); }
}
@keyframes elZoomIn {
  0%   { opacity:0; transform:scale(0.6); }
  60%  { opacity:1; transform:scale(1.05); }
  100% { opacity:1; transform:scale(1); }
}
@keyframes elFloatLoop {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-12px); }
}
@keyframes elPulseGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(26,115,232,0.4); }
  50%      { box-shadow: 0 0 0 16px rgba(26,115,232,0); }
}
@keyframes elWiggle {
  0%,100% { transform:rotate(0deg) scale(1); }
  20%      { transform:rotate(-5deg) scale(1.1); }
  40%      { transform:rotate(4deg) scale(1.08); }
  60%      { transform:rotate(-3deg) scale(1.05); }
  80%      { transform:rotate(2deg) scale(1.02); }
}
@keyframes shimmerText {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Custom reveal classes for Elementor sections/widgets */
.el-reveal {
  opacity: 0;
  transform: translateY(40px);
}
.el-reveal.el-visible {
  animation: elSpringUp 0.7s cubic-bezier(0.34,1.56,0.64,1) both;
}
.el-reveal-left {
  opacity: 0;
  transform: translateX(-50px);
}
.el-reveal-left.el-visible {
  animation: elSlideLeft 0.7s cubic-bezier(0.34,1.56,0.64,1) both;
}
.el-reveal-right {
  opacity: 0;
  transform: translateX(50px);
}
.el-reveal-right.el-visible {
  animation: elSlideRight 0.7s cubic-bezier(0.34,1.56,0.64,1) both;
}
.el-reveal-scale {
  opacity: 0;
  transform: scale(0.8);
}
.el-reveal-scale.el-visible {
  animation: elZoomIn 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}

/* Elementor section/column auto-reveal on scroll */
.elementor-section .elementor-widget {
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34,1.56,0.64,1);
}

/* Icon box float + wiggle */
.elementor-widget-icon-box .elementor-icon {
  transition: transform 0.3s ease;
}
.elementor-widget-icon-box:hover .elementor-icon {
  animation: elWiggle 0.5s ease;
}
.elementor-widget-icon-box .elementor-icon i {
  animation: elFloatLoop 4s ease-in-out infinite;
}

/* CTA button pulse */
.elementor-widget-button .elementor-button.elementor-size-lg,
.elementor-widget-button .elementor-button.elementor-size-xl,
.el-pulse-cta {
  animation: elPulseGlow 2.5s ease-in-out infinite;
}
.elementor-widget-button .elementor-button {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease !important;
}
.elementor-widget-button .elementor-button:hover {
  transform: translateY(-3px) scale(1.02) !important;
}

/* Image widget hover zoom */
.elementor-widget-image img {
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.elementor-widget-image:hover img {
  transform: scale(1.03) !important;
}

/* Counter widget spring on visible */
.elementor-widget-counter .elementor-counter-number-wrapper {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

/* Testimonial card hover effect */
.elementor-widget-testimonial,
.elementor-widget-testimonial-carousel .swiper-slide {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.elementor-widget-testimonial:hover,
.elementor-widget-testimonial-carousel .swiper-slide:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12) !important;
}

/* Stagger delays for Elementor columns */
.elementor-row > .elementor-column:nth-child(1),
.elementor-section .elementor-container > .elementor-column:nth-child(1) { --el-delay: 0s; }
.elementor-row > .elementor-column:nth-child(2),
.elementor-section .elementor-container > .elementor-column:nth-child(2) { --el-delay: 0.1s; }
.elementor-row > .elementor-column:nth-child(3),
.elementor-section .elementor-container > .elementor-column:nth-child(3) { --el-delay: 0.2s; }
.elementor-row > .elementor-column:nth-child(4),
.elementor-section .elementor-container > .elementor-column:nth-child(4) { --el-delay: 0.3s; }

/* Shimmer effect on headings */
.el-shimmer {
  background: linear-gradient(90deg, currentColor 0%, #4A90E2 50%, currentColor 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
}

/* Reduced motion safety */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =====================================================
   END OF CSS
   ===================================================== */
