/* Global Settings */
:root {
    --primary: #009d49;
    --secondary: #132316;
    --accent: #009d49;
    --text: #4E5652;
    --bg-light: #F4F6F4;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(19, 35, 22, 0.1);
}

.top-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-text {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-link {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}

.top-bar-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }
    .top-bar-content {
        justify-content: center;
    }
}

.google-badge {
    background: var(--white);
    padding: 4px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.google-logo-text {
    display: flex;
    font-family: 'Product Sans', Arial, sans-serif;
    font-size: 14px;
}

.google-badge .stars {
    display: flex;
    gap: 2px;
    color: #ffb800;
    font-size: 10px;
    height: 10px;
    align-items: center;
}

.google-badge i {
    margin: 0;
}

.google-rating {
    margin-left: 2px;
}

@media (max-width: 992px) {
    .google-badge {
        display: none;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Phone Button Upgrade */
.btn-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 24px;
    background: #f0fdf4;
    border: 2px solid var(--primary);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-phone i {
    background: var(--primary);
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    transition: all 0.4s;
}

.btn-phone:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(22, 110, 57, 0.2);
}

.btn-phone:hover i {
    background: white;
    color: var(--primary);
    transform: rotate(15deg);
}

@media (max-width: 992px) {
    .btn-phone span {
        display: none;
    }
    .btn-phone {
        padding: 10px;
        width: 45px;
        height: 45px;
        justify-content: center;
    }
    .btn-phone i {
        margin: 0;
    }
}

header {
    padding: 15px 0;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    transition: transform 0.3s;
}

.logo a:hover img {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown > a i {
    font-size: 10px;
    transition: transform 0.3s;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-content {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    min-width: 260px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 15px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content li {
    width: 100%;
    list-style: none;
}

.dropdown-content a {
    color: var(--secondary);
    padding: 12px 25px;
    display: block;
    text-transform: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    transition: all 0.2s;
}

.dropdown-content a:hover {
    background-color: #f8faf9;
    color: var(--primary);
    padding-left: 30px;
}

nav ul a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 700;
    font-size: 16px;
    text-transform: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav ul a:hover {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--secondary);
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    color: var(--primary);
}

.mobile-nav-btn {
    display: none;
}

.mobile-menu-header {
    display: none;
}

/* Buttons */
.btn-primary {
    background: var(--primary); 
    color: var(--white);
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    box-shadow: 0 10px 25px rgba(22, 110, 57, 0.25);
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(22, 110, 57, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--secondary);
    transition: all 0.3s;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--bg-light);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #d8eee2 0%, #bbdfcb 100%);
    padding: 80px 0 60px; /* Reduced padding */
    color: var(--secondary);
    overflow: hidden;
    position: relative;
}

/* Service Hero Styles */
.service-hero {
    background: linear-gradient(135deg, #009d49 0%, #007a39 100%);
    padding-top: 100px;
    color: var(--white);
    text-align: center;
}

.service-hero .container:first-of-type {
    padding-bottom: 100px;
}

.service-hero .label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.service-hero h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 7vw, 4rem); /* Iets kleiner basisfont voor smalle schermen */
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    word-wrap: break-word; /* Voorkom dat lange woorden buiten de container vallen */
    overflow-wrap: break-word;
    hyphens: auto;
}

.service-hero .subtitle {
    font-size: clamp(1rem, 4vw, 1.4rem); /* Iets kleiner op mobiel */
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    color: var(--white);
    padding: 0 10px; /* Extra ademruimte binnen container op mobiel */
}

.usp-bar-compact {
    background-color: var(--primary); /* Set background to green */
    padding: 25px 0;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.usp-bar-compact .container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--white) !important; /* Set text to white */
    font-size: 1.1rem;
}

.usp-item i {
    color: var(--white); /* Set icons to white */
    font-size: 1.2rem;
}

/* Fix spacing for sections following USP bar */
.usp-bar-compact + section {
    padding-top: 60px !important; /* Reduced space below USP bar */
}

@media (max-width: 768px) {
    .usp-bar .container {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding-left: 50px;
    }
}

.hero h1 {
    color: var(--secondary);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero .lead {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--text);
}

.hero-usps {
    list-style: none;
    padding: 0;
    margin: 0 0 45px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-usps li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.15rem;
    font-weight: 500;
}

.hero-usps li i {
    color: white;
    background: var(--primary);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(22, 110, 57, 0.3);
}

.hero-trust {
    margin-top: 30px;
    display: flex;
    gap: 30px;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-trust i {
    color: var(--primary);
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.mask-blob {
    width: 100%;
    height: 520px;
    max-width: 520px;
    object-fit: cover; /* Behoudt de vulling */
    padding: 30px; /* Minder padding = meer ingezoomde foto */
    background-color: transparent;
    margin: 0 auto;
    display: block;
    /* Sterkere blobvorm voor meer dynamiek */
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FF0066' d='M44.7,-76.4C58.1,-69.2,69.5,-57.4,77.3,-43.3C85.2,-29.2,89.5,-12.9,88.5,3.2C87.5,19.3,81.2,35.2,71,48.4C60.8,61.6,46.7,72.1,31,77.9C15.3,83.7,-2,84.8,-18.2,81.3C-34.4,77.8,-49.5,69.7,-60.8,57.7C-72.1,45.7,-79.6,29.8,-82.4,12.9C-85.2,-4.1,-83.4,-22.1,-75.4,-37.2C-67.4,-52.3,-53.2,-64.5,-38.3,-71.1C-23.4,-77.7,-7.8,-78.7,8.2,-74.3C24.2,-69.9,44.7,-76.4Z' transform='translate(100 100)' /%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FF0066' d='M44.7,-76.4C58.1,-69.2,69.5,-57.4,77.3,-43.3C85.2,-29.2,89.5,-12.9,88.5,3.2C87.5,19.3,81.2,35.2,71,48.4C60.8,61.6,46.7,72.1,31,77.9C15.3,83.7,-2,84.8,-18.2,81.3C-34.4,77.8,-49.5,69.7,-60.8,57.7C-72.1,45.7,-79.6,29.8,-82.4,12.9C-85.2,-4.1,-83.4,-22.1,-75.4,-37.2C-67.4,-52.3,-53.2,-64.5,-38.3,-71.1C-23.4,-77.7,-7.8,-78.7,8.2,-74.3C24.2,-69.9,44.7,-76.4Z' transform='translate(100 100)' /%3E%3C/svg%3E");
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    border: none;
    /* Sterkere drop shadow en subtiele glow voor "pop" effect */
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.4)) drop-shadow(0 0 15px rgba(255,255,255,0.2));
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: blobify 15s ease-in-out infinite alternate;
}

@keyframes blobify {
    0% { transform: scale(1) rotate(0deg) translate(0, 0); }
    33% { transform: scale(1.02) rotate(1deg) translate(2px, -2px); }
    66% { transform: scale(0.98) rotate(-1deg) translate(-2px, 2px); }
    100% { transform: scale(1.01) rotate(0.5deg) translate(0, 0); }
}

.mask-blob:hover {
    transform: scale(1.03) rotate(1deg);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)) drop-shadow(0 0 25px rgba(255,255,255,0.4));
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-light);
}

.narrow-text {
    max-width: 800px;
}

.welcome h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Service Details Section */
.service-details {
    padding: 100px 0;
    background: var(--white);
}

.details-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.details-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.details-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.details-list {
    list-style: none;
    margin-top: 30px;
    padding: 0;
}

.details-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.details-list li i {
    color: var(--primary);
    font-size: 1.2rem;
}

.details-info-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 120px;
}

.details-info-box h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.details-info-box ul {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.details-info-box ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
    .details-info-box {
        position: static;
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #f1f8f4 0%, #e1ebe5 100%);
    color: var(--secondary);
}

.services .section-title {
    margin-bottom: 50px;
}

.services .section-title h2 {
    color: var(--secondary);
    font-size: 2.7rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    border-color: var(--primary);
}

.service-icon {
    font-size: 32px;
    color: var(--primary);
    background: rgba(22, 110, 57, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--secondary);
}

.service-card p {
    color: var(--text);
    font-size: 0.95rem;
}

/* Request Section */
.request-section {
    padding: 120px 0;
    background: #082b14; /* Diep, rijk bosgroen - straalt rust en vertrouwen uit */
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.request-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(12, 134, 54, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.request-section h2 {
    color: var(--white);
    font-size: 3rem;
    line-height: 1.1;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.contact-info-box {
    margin-top: 50px;
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info-box p {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--primary);
}

.contact-info-box p strong {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

.contact-info-box a {
    color: var(--primary) !important;
}

/* Form Styling */
.form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 32px;
    color: var(--secondary);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    position: relative;
    z-index: 5;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 0.95rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    background: #fdfdfd;
    padding: 0;
    border-radius: 0;
    border: none;
    position: relative;
    z-index: 1;
}

.checkbox-grid label {
    font-weight: 600;
    font-size: 0.95rem; /* Iets groter voor betere leesbaarheid */
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center; /* Cruciaal voor verticale centrering */
    justify-content: center; /* Centraal in het vakje */
    text-align: left;
    gap: 15px;
    color: var(--secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 18px; /* Iets strakker */
    background: white;
    border-radius: 16px;
    border: 2px solid #eef2f0;
    user-select: none;
    min-height: 60px; /* Nog iets strakker voor PC */
    height: auto; /* Laat content de hoogte bepalen */
    box-sizing: border-box;
    position: relative;
    overflow: hidden; /* Zorg dat niets eruit steekt */
}

.checkbox-grid label .item-icon {
    font-size: 1.3rem; /* Iets groter icon */
    color: #888;
    transition: all 0.3s;
    width: 30px; /* Iets breder voor balans */
    text-align: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-grid label span {
    font-size: 0.9rem;
    line-height: 1.2; /* Iets strakker voor betere centrering */
    word-break: break-word;
    display: block;
    margin: 0;
}

.checkbox-grid label:hover {
    background: #f8faf9;
    border-color: #cbd5d0;
}

.checkbox-grid label:active {
    transform: scale(0.96);
}

.checkbox-grid label:has(input:checked) {
    border-color: var(--primary);
    background: #f0fdf4;
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 157, 73, 0.12);
}

.checkbox-grid label:has(input:checked) .item-icon {
    color: var(--primary);
    transform: scale(1.1);
}

/* Hidden checkbox but remains keyboard accessible */
.checkbox-grid input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    margin: 0 !important;
    cursor: pointer;
    z-index: 2;
}

/* Custom checkmark indicator */
.checkbox-grid label::after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.1rem;
    color: var(--primary);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s;
}

.checkbox-grid label:has(input:checked)::after {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 480px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid label {
        padding: 15px 20px;
        min-height: 60px;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    font-family: inherit;
    font-size: 16px;
    background: #fdfdfd;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--secondary);
    box-sizing: border-box;
}

textarea {
    height: 120px;
    margin-top: 1rem;
}

/* Fix for checkboxes and radios from being stretched by the global selector above */
input[type="checkbox"], 
input[type="radio"] {
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 10px 25px rgba(12, 134, 54, 0.08);
    transform: translateY(-2px);
}

textarea {
    min-height: 120px;
    margin-bottom: 20px;
    resize: vertical;
}

.full-width {
    width: 100%;
}

.btn-primary.full-width {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary.full-width:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(12, 134, 54, 0.25);
}

textarea {
    height: 120px;
}

.full-width {
    width: 100%;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: var(--white);
    color: var(--primary);
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    text-align: left;
    margin-bottom: 60px;
}

.footer-about p {
    color: var(--primary) !important;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--primary) !important;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--primary) !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.footer-links a:hover {
    color: var(--secondary) !important;
    text-decoration: none;
    border-bottom: 2px solid var(--secondary);
}

.footer-contact p {
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact p i {
    color: var(--primary);
}

.border-top {
    border-top: 1px solid #eee;
    padding-top: 40px;
    color: var(--primary);
    text-align: center;
}

.border-top p {
    color: var(--primary) !important;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.review-badge {
    margin-top: 20px;
}

/* CookieYes Custom Branding */
#cookieyes-banner .cky-btn-accept,
#cookieyes-banner .cky-btn-reject,
#cookieyes-banner .cky-adv-btn-accept,
.cky-btn-accept,
.cky-btn-reject {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

#cookieyes-banner .cky-btn-customize,
#cookieyes-banner .cky-btn-settings,
.cky-btn-customize {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    background-color: transparent !important;
}

.cky-notice-btn-wrapper button {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

.cky-notice-btn-wrapper .cky-btn-customize {
    background-color: transparent !important;
    color: var(--primary) !important;
}

#cookieyes-banner .cky-link {
    color: var(--primary) !important;
}

#cookieyes-banner .cky-pref-header .cky-btn-accept {
    background-color: var(--primary) !important;
}

/* Verberg de herbezoek consent knop van CookieYes */
.cky-btn-revisit-wrapper {
    display: none !important;
}

/* Method Section */
.method-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f1f8f4 0%, #e1ebe5 100%);
}

.alternate-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rounded-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 8px solid rgba(255, 255, 255, 0.8);
    transition: all 0.5s ease;
}

.rounded-image:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 35px 70px -15px rgba(22, 110, 57, 0.3);
}

/* Common Styles */
.section-title {
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

/* Method Steps */
.method-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.method-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.method-step i {
    font-size: 24px;
    color: var(--primary);
    background: var(--bg-light);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    flex-shrink: 0;
}

.method-step h4 {
    margin-bottom: 5px;
    color: var(--secondary);
    font-size: 1.1rem;
}

.method-step p {
    font-size: 0.95rem;
    color: var(--text);
}

.blob-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* De lichte rand / glow effect */
.blob-wrapper::before {
    content: '';
    position: absolute;
    width: 105%;
    height: 105%;
    background: linear-gradient(45deg, rgba(147, 192, 31, 0.4), rgba(255, 255, 255, 0.8));
    z-index: -1;
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FF0066' d='M44.7,-76.4C58.1,-69.2,69.5,-57.4,77.3,-43.3C85.2,-29.2,89.5,-12.9,88.5,3.2C87.5,19.3,81.2,35.2,71,48.4C60.8,61.6,46.7,72.1,31,77.9C15.3,83.7,-2,84.8,-18.2,81.3C-34.4,77.8,-49.5,69.7,-60.8,57.7C-72.1,45.7,-79.6,29.8,-82.4,12.9C-85.2,-4.1,-83.4,-22.1,-75.4,-37.2C-67.4,-52.3,-53.2,-64.5,-38.3,-71.1C-23.4,-77.7,-7.8,-78.7,8.2,-74.3C24.2,-69.9,44.7,-76.4Z' transform='translate(100 100)' /%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FF0066' d='M44.7,-76.4C58.1,-69.2,69.5,-57.4,77.3,-43.3C85.2,-29.2,89.5,-12.9,88.5,3.2C87.5,19.3,81.2,35.2,71,48.4C60.8,61.6,46.7,72.1,31,77.9C15.3,83.7,-2,84.8,-18.2,81.3C-34.4,77.8,-49.5,69.7,-60.8,57.7C-72.1,45.7,-79.6,29.8,-82.4,12.9C-85.2,-4.1,-83.4,-22.1,-75.4,-37.2C-67.4,-52.3,-53.2,-64.5,-38.3,-71.1C-23.4,-77.7,-7.8,-78.7,8.2,-74.3C24.2,-69.9,44.7,-76.4Z' transform='translate(100 100)' /%3E%3C/svg%3E");
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    animation: blobify 15s ease-in-out infinite alternate-reverse;
    filter: blur(10px);
}

.blob-wrapper::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: var(--primary);
    opacity: 0.1;
    z-index: -2;
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FF0066' d='M44.7,-76.4C58.1,-69.2,69.5,-57.4,77.3,-43.3C85.2,-29.2,89.5,-12.9,88.5,3.2C87.5,19.3,81.2,35.2,71,48.4C60.8,61.6,46.7,72.1,31,77.9C15.3,83.7,-2,84.8,-18.2,81.3C-34.4,77.8,-49.5,69.7,-60.8,57.7C-72.1,45.7,-79.6,29.8,-82.4,12.9C-85.2,-4.1,-83.4,-22.1,-75.4,-37.2C-67.4,-52.3,-53.2,-64.5,-38.3,-71.1C-23.4,-77.7,-7.8,-78.7,8.2,-74.3C24.2,-69.9,44.7,-76.4Z' transform='translate(100 100)' /%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FF0066' d='M44.7,-76.4C58.1,-69.2,69.5,-57.4,77.3,-43.3C85.2,-29.2,89.5,-12.9,88.5,3.2C87.5,19.3,81.2,35.2,71,48.4C60.8,61.6,46.7,72.1,31,77.9C15.3,83.7,-2,84.8,-18.2,81.3C-34.4,77.8,-49.5,69.7,-60.8,57.7C-72.1,45.7,-79.6,29.8,-82.4,12.9C-85.2,-4.1,-83.4,-22.1,-75.4,-37.2C-67.4,-52.3,-53.2,-64.5,-38.3,-71.1C-23.4,-77.7,-7.8,-78.7,8.2,-74.3C24.2,-69.9,44.7,-76.4Z' transform='translate(100 100)' /%3E%3C/svg%3E");
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    transform: rotate(-15deg);
    animation: blobify 20s ease-in-out infinite alternate;
}
    -webkit-mask-position: center;
}

/* Reviews */
.reviews-section {
    padding: 100px 0 140px; /* Extra ruimte aan de onderkant voor PC */
}

.reviews-main-title {
    color: #003366;
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.review-intro-wrapper {
    margin-bottom: 60px;
}

.review-alert {
    background-color: #fff9c4;
    border: 1px solid #f9e28e;
    padding: 20px 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.review-alert p {
    margin: 0;
    color: #7d6608;
    font-size: 1rem;
}

.review-info-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column; /* Veranderd naar column om de header over de volle breedte te laten lopen */
    overflow: hidden;
    border: 1px solid #eef2f5;
}

.review-source-header {
    background-color: #f8faf9;
    padding: 15px 40px;
    border-bottom: 1px solid #eef2f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.source-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.verified-badge {
    background: #eefdf3;
    color: #009d49;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(0, 157, 73, 0.1);
}

.source-text {
    font-size: 0.9rem;
    color: #6a736e;
}

.source-text a {
    color: #009d49;
    text-decoration: underline;
    font-weight: 600;
}

.source-logo-img {
    height: 25px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.review-source-header:hover .source-logo-img {
    opacity: 1;
}

.card-content-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.review-info-main {
    flex: 1.5;
    min-width: 300px;
    padding: 40px;
    border-right: 1px solid #f0f4f7;
}

.review-info-sidebar {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: #ffffff;
}

.review-info-card h3 {
    color: #003366;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.review-info-main p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4e5652;
}

.review-info-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.review-info-sidebar li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: #4e5652;
}

.review-info-sidebar i {
    color: #28a745;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .review-info-main {
        border-right: none;
        border-bottom: 1px solid #f0f4f7;
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    display: flex;
    gap: 5px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--secondary);
}

.reviewer {
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    max-width: 850px;
    background: var(--secondary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 20px;
    z-index: 10000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.1);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: nowrap;
}

.cookie-content p {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    .cookie-content p {
        white-space: normal;
    }
}

/* Responsive fixes */
@media (max-width: 992px) {
    .hero-grid, .alternate-grid, .form-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .mask-blob {
        height: 350px;
        max-width: 100%;
        padding: 20px;
    }
}

/* Utilities */
.mt-40 { margin-top: 40px; }
.mobile-br { display: none; }

/* Responsive Improvements */
@media (max-width: 900px) {
    .alternate-grid {
        grid-template-columns: 1fr;
    }
    .method-image {
        order: 2;
    }
    .method-text {
        order: 1;
    }
}

/* Global Logo replacement/styling */
.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.logo img {
    /* Hide the old logo if we want a fresh look, or keep it */
    max-height: 50px;
}

/* Chat & Scroll Top Widgets */
.scroll-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10000;
    pointer-events: none; /* Voorkom dat de container kliks blokkeert */
}

/* Scroll Top Button */
.scroll-top-btn {
    width: 55px;
    height: 55px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    pointer-events: auto; /* Zorg dat de knop zelf wel klikbaar is */
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
    color: white;
}

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    font-family: 'Lato', sans-serif;
    pointer-events: none; /* Voorkom dat de container kliks blokkeert */
    transition: transform 0.3s, opacity 0.3s;
}

/* Verberg chat widget als mobiel menu open is */
body.menu-open .chat-widget {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.chat-options {
    background: white;
    width: 280px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.chat-options.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* Alleen klikbaar als hij open is */
}

.chat-main-btn {
    width: 65px;
    height: 65px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(0, 157, 73, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    pointer-events: auto; /* Altijd klikbaar */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-header {
    background: var(--primary);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.chat-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.3);
}

.chat-header div strong {
    display: block;
    font-size: 15px;
}

.chat-header div span {
    font-size: 12px;
    opacity: 0.9;
}

.chat-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-body p {
    margin: 0 0 5px;
    font-size: 13px;
    color: #4e5652;
}

.chat-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s;
}

.chat-opt.wa { background: #e8faef; color: #25d366; }
.chat-opt.phone { background: #eef2f5; color: var(--secondary); }
.chat-opt.mail { background: #fef4e8; color: #f39c12; }

.chat-opt:hover { filter: brightness(0.95); }

.chat-main-btn {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 157, 73, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
}

.chat-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ff3b30;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mission-image img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 30px;
}

.contact-lead {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--text);
}

.contact-items {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 157, 73, 0.1);
}

.contact-item:hover .contact-icon {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(0, 157, 73, 0.2);
}

.contact-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--secondary);
}

.contact-item p, 
.contact-item a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form-container {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(19, 35, 22, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 157, 73, 0.05);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text);
    opacity: 0.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form > * {
    margin-bottom: 2rem;
}

.contact-form > *:last-child {
    margin-bottom: 0;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--secondary);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 20px;
    color: var(--primary);
    font-size: 1.1rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 18px 20px 18px 55px; /* Extra padding left for icon */
    border-radius: 16px;
    border: 1.5px solid #E2E8E1;
    outline: none;
    font-family: inherit;
    background: #F8FAF8;
    color: var(--secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.text-area-wrapper i {
    top: 22px;
}

.form-group textarea {
    resize: none;
    min-height: 140px;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 157, 73, 0.1);
}

.form-group input:focus + i,
.input-wrapper:focus-within i {
    opacity: 1;
}

/* Custom Checkbox */
.checkbox-container {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    position: relative;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
    font-weight: 500 !important;
    margin-bottom: 0 !important; /* Overwrite form-group label margin */
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 26px;
    width: 26px;
    background-color: #fff;
    border: 2px solid #a8b3a7; /* Darker border */
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 2px; /* Center align with text better */
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--primary);
    background-color: #f0fdf4;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 157, 73, 0.2);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 8px;
    top: 3px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    line-height: 1.5;
    color: var(--text);
}

.checkbox-text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 700;
}

.checkbox-text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 700;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 22px;
    font-size: 1.1rem;
    border-radius: 16px;
    margin-top: 10px;
    justify-content: center;
}

.contact-form .btn-primary i {
    margin-left: 12px;
    transition: transform 0.3s;
}

.contact-form .btn-primary:hover i {
    transform: translateX(5px) rotate(-10deg);
}

/* Mobile Responsive Overrides */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .mobile-br {
        display: block;
        content: "";
        margin-top: 0;
    }

    .reviews-main-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .header-content {
        padding: 5px 0;
    }

    .logo img {
        height: 60px;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 12000;
    }

    .header-btn-desktop {
        display: none;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        padding: 0;
        z-index: 11000;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        padding-bottom: env(safe-area-inset-bottom, 20px);
        visibility: hidden; /* Verberg het menu volledig als het niet actief is */
        pointer-events: none; /* Voorkom dat het menu touches blokkeert als het off-screen is */
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        border-bottom: 1px solid #f0f0f0;
        margin-bottom: 20px;
    }

    .mobile-menu-header img {
        height: 45px;
        width: auto;
    }

    .mobile-menu-close {
        background: none;
        border: none;
        color: var(--secondary);
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
        transition: color 0.3s;
    }

    .mobile-menu-close:hover {
        color: var(--primary);
    }

    /* Hide original toggle when menu is active */
    body.menu-open .mobile-menu-toggle {
        opacity: 0;
        visibility: hidden;
    }

    nav.active {
        right: 0;
        visibility: visible;
        pointer-events: auto;
    }

    /* Fix voor teksten in service-hero op mobiel */
    .service-hero .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Body overlay when menu is active */
    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::after {
        display: none !important;
        content: none !important;
        background: none !important;
        backdrop-filter: none !important;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 0 20px;
    }

    nav ul li {
        width: 100%;
    }

    nav ul a {
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        padding: 18px 0;
        width: 100%;
        border-bottom: 1px solid #f9f9f9;
        color: var(--secondary);
        position: relative;
        z-index: 5;
        pointer-events: auto !important;
    }

    .mobile-nav-btn {
        display: block;
        margin-top: auto;
        padding: 25px 20px;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #f0f0f0;
        position: relative;
        z-index: 10;
        /* Zorg dat de knop boven de veilige zone van mobiels uitkomt */
        margin-bottom: env(safe-area-inset-bottom, 0);
    }

    .mobile-nav-btn .btn-primary {
        display: block;
        width: 100%;
        text-align: center;
        padding: 18px;
        position: relative;
        z-index: 11;
        pointer-events: auto !important;
    }

    .dropdown-content {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0;
        display: none;
        min-width: 100%;
        border: none;
        background: #fbfcfc;
    }

    .dropdown-content li a {
        padding: 15px 0 15px 30px;
        font-size: 1rem;
        border-bottom: 1px solid #f0f0f0;
        font-weight: 500;
        display: block; /* Zorg dat het de volle breedte pakt */
        width: 100%;
        color: var(--secondary);
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown.active > a i {
        transform: rotate(180deg);
    }

    .dropdown > a {
        justify-content: space-between;
    }

    .dropdown:hover .dropdown-content {
        transform: none;
    }

    .hero {
        padding: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero .lead {
        font-size: 1.1rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn-secondary {
        margin-left: 0;
        margin-top: 20px;
        margin-bottom: 30px;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .blob-wrapper {
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .mask-blob {
        height: 350px;
        max-width: 100%;
        padding: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .usp-bar-compact .container {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .usp-item {
        justify-content: center;
        width: 100%;
    }

    /* Widgets Mobile Adjustments */
    .scroll-widget {
        left: 20px;
        bottom: 20px;
    }

    .chat-widget {
        right: 20px;
        bottom: 20px;
        gap: 10px;
    }

    .scroll-top-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .chat-main-btn {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .chat-options {
        width: 260px;
        right: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h4::after, .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact p {
        justify-content: center;
    }

    .about-section {
        padding-top: 80px !important;
        padding-bottom: 40px;
    }

    .reviews-section {
        margin-top: 40px;
        padding-top: 80px !important;
        padding-bottom: 120px !important;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mission-image {
        order: -1;
    }

    .mission-stats {
        gap: 15px;
    }

    form > input,
    form > select,
    form > textarea,
    .form-group textarea {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
    }

    .hero .lead {
        margin-bottom: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .scroll-widget {
        left: 15px;
        bottom: 15px;
    }

    .chat-widget {
        right: 15px;
        bottom: 15px;
    }

    .chat-options {
        width: calc(100vw - 30px);
        max-width: 280px;
    }
}

.chat-main-btn:hover {
    transform: scale(1.05);
}

/* Policy Pages Styles */
.policy-page {
    background-color: var(--white);
    color: var(--secondary);
}

.policy-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: var(--secondary);
}

.policy-content section h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
}

.policy-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text);
}

.policy-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text);
}

.policy-content strong {
    color: var(--secondary);
}

.footer-bottom-links a:hover {
    color: var(--primary) !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px !important;
    }
}

