/* --- Basis & Typografie --- */
html{
    scroll-behavior: smooth;
}

:root {
    --primary-red: #eb5f2a;
    --light-red: #ff926b;
    --text-dark: #000000;
    --text-light: #00000088;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* --- NIEUW: Header Stijlen --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: padding 0.3s ease, background-color 0.3s ease;
}

#main-header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
}

.header-container {
    max-width: 1300px; /* Iets breder voor de header */
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Linkerzijde: Logo's */
.header-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.main-logo img {
    height: 50px;
    transition: height 0.3s ease;
}
#main-header.scrolled .main-logo img {
    height: 40px;
}

/* Midden: Navigatie */
.main-nav {
    margin: 0 auto; /* Duwt de navigatie naar het midden */
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}
.nav-item a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 1rem 0.5rem;
    position: relative;
}
.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0.5rem;
    right: 0.5rem;
    height: 2px;
    background-color: var(--primary-red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}
.nav-item a:hover::after, .nav-item.is-active a::after {
    transform: scaleX(1);
}

/* Dropdown Menu's */
.nav-item.has-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    border: 1px solid #f0f2f5;
}
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Rechterzijde: Acties */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.webshop-btn {
    padding: 8px 20px !important;
    white-space: nowrap;
}

/* Mobiele Navigatie & Hamburger */
.mobile-nav-toggle {
    display: none; /* Verborgen op desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001; /* Boven de rest van de header content */
}
.hamburger-line {
    width: 30px;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Responsive Media Query */
@media (max-width: 1100px) {
    .main-nav, .search-container {
        display: none;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .header-container {
        justify-content: space-between;
    }
    .header-actions {
        gap: 1rem;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
    }
    .header-container.mobile-nav-open .main-nav {
        display: flex;
        max-height: 100vh; /* Een hoge waarde om de content te tonen */
        padding: 1rem 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        background-color: #f9fafb;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }
    .nav-item.is-open .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
        transform: translateX(0) translateY(0);
    }
    .nav-item a:hover::after, .nav-item.is-active a::after {
        transform: scaleX(0); /* Onderlijn uitzetten op mobiel */
    }
    .mobile-nav-toggle.is-active .hamburger-line:nth-child(1) {
        transform: rotate(36deg);
    }
    .mobile-nav-toggle.is-active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }
    .mobile-nav-toggle.is-active .hamburger-line:nth-child(3) {
        transform: rotate(-36deg);
    }
    .dropdown-item{
        border-radius: 0;
    }
}

/* --- Hoofd Layout --- */
#globe-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.scroll-container {
    position: relative;
    z-index: 1;
}

.content-section {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 4rem 5%;
    box-sizing: border-box;
}

/* --- Hero Sectie --- */
.hero.content-section {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 8rem; /* Iets meer ruimte */
    padding-left: 5%;
    padding-right: 5%;
    min-height: 90vh; /* Zorg voor voldoende hoogte */
}

.hero-subtitle {
    position: relative;
    display: inline-block;
    background-color: rgba(235, 95, 42, 0.1);
    color: var(--primary-red);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 999px;
    border: 1px solid rgba(235, 95, 42, 0.7);
    animation: rippleEffect 2.5s infinite ease-out;
}

@keyframes rippleEffect {
    0% { transform: scaleX(1) scaleY(1); opacity: 0; }
    10% { opacity: .5; }
    100% { transform: scaleX(1.2) scaleY(2); opacity: 0; }
}

.hero-text-container {
    flex-basis: auto;
    max-width: none;
}

h1 { font-size: 3.2rem; font-weight: 500; line-height: 1.2; margin-bottom: 2.5rem; }
.hero-text-container p { font-size: 1.1rem; color: var(--text-light); line-height: 1.7; margin-bottom: 2.5rem; }

/* Knoppen */
.btn {
    display: inline-block; /* BELANGRIJK: Zorgt dat transform werkt */
    text-decoration: none;
    border-radius: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    font-weight: 600; /* Goed om dit als standaard te hebben */
}

/* De primaire knop (rode achtergrond) */
.btn-primary { 
    color: white;
    background-color: var(--primary-red);
    padding: 16px 24px;
}
.btn-primary:hover { 
    background-color: var(--light-red);
    transform: translateY(-4px); /* Verplaatst de knop omhoog */
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* De secundaire knop (rode rand) */
.btn-secondary { 
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
    padding: 15px 24px;
    backdrop-filter: blur(5px);
}
.btn-secondary:hover {
    background-color: var(--light-red);
    border-color: var(--light-red); /* Ook de randkleur aanpassen */
    color: white;
    transform: translateY(-4px); /* Verplaatst de knop omhoog */
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Specifieke styling voor de knoppen in de hero sectie (indien nodig) */
.hero-buttons .btn {
    margin-right: 8px; /* Houd de marge specifiek voor de hero knoppen */
}

.pane-button {
    margin-top: 1.5rem;
}

/* --- VERNIEUWD: Hero Slider Stijlen --- */
.hero-slider-container {
    position: relative;
    width: 80%;
    height: 40vh;
    max-height: 500px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden; /* Belangrijk om de inhoud te clippen */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Achtergrondafbeelding van de slide */
.hero-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Donkere overlay voor leesbaarheid */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.slide-caption {
    position: relative;
    z-index: 3;
    width: 85%;
    text-align: center;
    transform: translateY(0); /* Reset eventuele eerdere transforms */
}

.slide-caption h2 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    color: black; /* Witte tekst voor contrast */
}

.slide-caption h2 span {
    color: var(--light-red); /* Gebruik de lichtere rood voor betere zichtbaarheid */
}

/* AANGEPASTE Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 5;
}

#slider-pause-play {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.7);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    color: black;
}
#slider-pause-play svg { fill: currentColor; }
.play-icon { display: none; }
#slider-pause-play.paused .play-icon { display: block; }
#slider-pause-play.paused .pause-icon { display: none; }

.slider-pagination {
    display: flex;
    gap: 8px;
}
.pagination-dot {
    width: 30px;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}
.pagination-dot .progress {
    width: 0%;
    height: 100%;
    background-color: black;
    transition: width 0.1s linear;
}
.pagination-dot.active .progress {
    width: 100%;
}

.slider-navigation {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}
.slider-arrow:hover { background: white; }
.slider-arrow svg { width: 24px; height: 24px; fill: #000; }

.btn-slider {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: var(--text-dark);
    color: white;
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}
.btn-slider:hover {
    background-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-slider svg {
    width: 18px;
    height: 18px;
    fill: white;
    transition: transform 0.3s;
}
.btn-slider:hover svg { transform: translateX(4px); }


@media (max-width: 1100px) {
    .hero.content-section {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding-top: 140px; /* Ruimte voor header */
        padding-bottom: 4rem;
    }
    .hero-text-container {
        margin-bottom: 2rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-slider-container {
        margin: auto;
        height: 50vh;
        max-height: 400px;
    }
    .slide-caption h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .hero.content-section h1 {
        font-size: 8vw;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary{
        margin-bottom: 1rem;
    }

    .hero-slider-container{
        width: 100%;
    }

    .slider-controls{
        display: none;
    }

}

/* --- X-Waarden Sectie --- */
.x-values-section {
    justify-content: center;
    width: 100%;
}

.x-values-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.x-values-text-container {
    max-width: 600px;
    padding: 8rem 3rem;
    position: relative;
}

.x-values-text-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-mask-image: radial-gradient(ellipse 50% 50% at center, black 60%, transparent 100%);
    mask-image: radial-gradient(ellipse 50% 50% at center, black 60%, transparent 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.x-values-text-container h2 { font-size: 2.8rem; font-weight: 500; margin-bottom: 1rem; }
.x-values-text-container p { font-size: 1.1rem; color: var(--text-light); }

.x-value {
    position: absolute;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-red);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 18px 12px 18px 36px;
    border: 1px solid var(--primary-red);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(5px);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: scale(0.3);
    cursor: pointer;
    transition: 0.3s ease;
}

.x-value:hover {
    background-color: var(--primary-red);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 18px 24px 18px 36px;
}

.plus-icon {
    opacity: 0;
    transition: 0.3s ease;
    transform: rotate(0);
}

.x-value:hover .plus-icon {
    opacity: 1;
    transform: rotate(90deg);
}

.value-top-left { top: 20%; left: 12%; }
.value-top-right { top: 20%; right: 12%; }
.value-bottom-left { bottom: 20%; left: 12%; }
.value-bottom-right { bottom: 20%; right: 12%; }

/* --- Lightbox Stijlen --- */
#lightbox-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
#lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-content {
    position: relative;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: scale(0.95);
    transition: transform 0.4s ease;
}
#lightbox-overlay.active .lightbox-content { transform: scale(1); }
.close-button {
    position: absolute;
    top: 15px; right: 25px;
    font-size: 3rem; font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}
.close-button:hover { color: var(--text-dark); transform: rotate(90deg); }
#lightbox-image { width: 100%; height: auto; border-radius: 8px; margin-bottom: 2rem; display: block; }
#lightbox-title { font-size: 2.2rem; color: var(--primary-red); margin: 0 0 1rem 0; }
#lightbox-text { font-size: 1.1rem; line-height: 1.8; color: var(--text-dark); margin: 0; }

@media (max-width: 1100px) {
    .value-top-left { top: 20%; left: auto; }
    .value-top-right { top: 30%; right: auto; }
    .value-bottom-left { bottom: 30%; left: auto; }
    .value-bottom-right { bottom: 20%; right: auto; }
}

@media (max-width: 600px) {
    
    .x-values-text-container {
        padding: 0;
    }

    .x-value {
        position: relative;
        top: auto;
        bottom: auto;
        margin-top: 1rem;
    }

    .x-values-wrapper{
        height: auto;
        margin-bottom: 12rem;
    }

    .x-values-text-container::before {
        background-color: rgba(255, 255, 255, 0.8);
        -webkit-mask-image: radial-gradient(ellipse 50% 100% at center, black 60%, transparent 100%);
        mask-image: radial-gradient(ellipse 50% 100% at center, black 60%, transparent 100%);
        height: 100%;
    }

}


/* --- Digitale Blueprint Achtergrond --- */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(235, 95, 42, 0.1), transparent 15%),
        radial-gradient(circle at 80% 30%, rgba(235, 95, 42, 0.08), transparent 100%),
        radial-gradient(circle at 40% 70%, rgba(235, 95, 42, 0.12), transparent 18%),
        linear-gradient(rgba(235, 95, 42, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(235, 95, 42, 0.07) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 50px 50px, 50px 50px;
    background-position: 0 0;
    animation: pulseGrid 15s ease-in-out infinite alternate;
    opacity: var(--grid-opacity, 1);
    transition: opacity 0.5s ease-in-out;
}
@keyframes pulseGrid { from { opacity: 0.5; background-position: 0% 0%; } to { opacity: 1; background-position: -10% 20%; } }

/* --- Samengevoegde Diensten Sectie Stijlen --- */
.core-services-section {
    justify-content: center;
    background-color: #fff;
    z-index: 5;
    position: relative;
}

/* Gradient overlay om overgang van vorige sectie vloeiend te maken */
.core-services-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1; 
}

.core-services-wrapper {
    width: 100%;
    max-width: 1100px;
    text-align: center;
}

.core-services-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.core-services-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.core-services-container {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 3rem;
    text-align: left;
}

.core-services-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.core-service-tab {
    width: 100%;
    padding: 2rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    border: none;
    background-color: transparent;
    cursor: pointer;
    border-radius: 8px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.core-service-tab:hover {
    background-color: #f3f4f6;
    color: var(--primary-red);
}

.core-service-tab.active {
    font-weight: 600;
    color: var(--primary-red);
    background-color: rgba(235, 95, 42, 0.05);
    border-left: 4px solid var(--primary-red);
}

.core-services-content {
    position: relative;
    min-height: 650px;
}

.core-service-pane {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    flex-direction: column;
}

.core-service-pane.active {
    opacity: 1;
    visibility: visible;
}

.core-service-pane img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

/* AANGEPAST: Stijl voor de titel BOVEN de afbeelding */
.core-service-pane > h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1rem 0; /* Marge aan de onderkant voor ruimte */
}

/* NIEUW: Wrapper voor afbeelding en tags */
.pane-image-wrapper {
    position: relative;
    border-radius: 12px; /* Afronding aan de wrapper toevoegen */
    overflow: hidden; /* Zorgt dat de afbeelding en tags binnen de afronding blijven */
}

.pane-image-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block; /* Voorkomt extra witruimte */
}

/* AANGEPAST: Styling voor de tags OP de afbeelding */
.pane-tags {
    position: absolute;
    bottom: 3rem;
    left: 1rem;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* AANGEPAST: Stijl voor individuele tag OP de afbeelding */
.pane-tags .tag {
    padding: 6px 12px;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: white;;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.pane-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.pane-button {
    margin-top: 1.5rem;
}

@media (max-width: 1100px) {
    /* --- Tablet layout: Navigatie boven content --- */
    
    .core-services-wrapper {
        /* Titels en subtitels links uitlijnen voor een betere flow */
        text-align: left;
    }

    .core-services-subtitle {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .core-services-container {
        /* Van 2 kolommen naar 1 kolom layout */
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .core-services-nav {
        /* Maak van de verticale navigatie een horizontale rij */
        flex-direction: row;
        flex-wrap: wrap; /* Zorgt dat tabs kunnen 'wrappen' op smalle schermen */
        gap: 0.5rem;
        justify-content: flex-start; /* Lijn tabs links uit */
    }

    .core-service-tab {
        width: auto; /* Breedte baseren op inhoud */
        text-align: center;
    }

    .core-services-content {
        /* Belangrijk: verwijder de vaste minimale hoogte */
        height: auto;
    }

    .core-service-pane img, 
    .pane-image-wrapper img {
        height: 250px; /* Maak de afbeelding iets minder hoog */
    }

    .core-service-pane > h3 {
        font-size: 1.6rem;
    }
    
    .pane-tags {
        bottom: 3rem; /* Breng de tags iets omhoog */
    }
}

@media (max-width: 768px) {
    /* --- Mobiele layout: Verfijning van spacing en typografie --- */
    
    .core-services-title {
        font-size: 2.2rem;
    }

    .core-services-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .core-service-tab {
        /* Laat de tabs meegroeien voor een evenredige verdeling indien ze wrappen */
        flex-grow: 1;
    }

    .core-service-pane > h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .pane-text p {
        font-size: 0.95rem;
    }

    .pane-tags {
        bottom: 2rem;
        left: 0.75rem;
    }

    .pane-tags .tag {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}


/* --- NIEUW: Resultaten in Cijfers Sectie (GECORRIGEERDE VERSIE) --- */
#results-section {
    justify-content: center;
    background-color: #f7f9fc; 
    padding: 8rem 2rem; /* Padding aan zijkanten voor kleinere schermen */
    z-index: 5;
    position: relative;
    overflow: hidden;
}

.results-wrapper {
    width: 100%;
    max-width: 1100px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* --- DE ACHTERGROND GRID (AANGEPAST VOOR PARALLAX) --- */
.results-wrapper::before {
    content: '';
    position: absolute;
    inset: -200px; 
    z-index: -1;
    
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    
    background-size: 165px 165px;

    /* Deze CSS variabele wordt door het JavaScript (GSAP) aangepast */
    background-position: 50% var(--grid-y-pos, 0%);

    mask-image: radial-gradient(ellipse 50% 50% at center, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 50% 50% at center, black 60%, transparent 100%);
}

.results-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.results-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- DE LAYOUT GRID VOOR DE KAARTEN --- */
.stats-container {
    display: grid;
    /* Maak kolommen van 300px breed, en laat er zoveel naast elkaar passen als mogelijk is */
    grid-template-columns: repeat(auto-fit, 300px);
    
    /* De ruimte TUSSEN de kaarten. Dit creëert de zichtbare grid-lijnen. */
    gap: 30px;

    /* Centreer de hele grid van kaarten op de pagina */
    justify-content: center;
}

.stat-item {
    box-sizing: border-box; /* Zorgt dat padding en border binnen de width/height vallen */
    width: 300px;
    height: 300px;
    padding: 2rem; /* Padding binnen de 300x300 box */

    /* Flexbox gebruiken om de content perfect te centreren in de kaart */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 12px;
    border: 1px solid rgba(235, 95, 42, 0.15); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

.stat-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(235, 95, 42, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
    cursor: default;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* --- NIEUW: Testimonials Sectie --- */
#testimonials-section {
    display: none;
    background-color: #ffffff; /* Witte achtergrond om de kaarten te laten spreken */
    padding: 8rem 5%;
    position: relative;
    z-index: 5;
}

.testimonials-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    /* Responsive grid: 1 kolom op mobiel, 2 op tablet, 3 op desktop */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    text-align: left;
}

.testimonial-card {
    background-color: #f9fafb; /* Heel lichte grijze achtergrond voor de kaart */
    border: 1px solid #f0f2f5;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--primary-red); /* De themakleur voor de sterren */
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
}

.quote-icon svg {
    width: 70px;
    height: 70px;
    margin: -20px;
    color: #e5e7eb; /* Een lichte, neutrale kleur voor het icoon */
    opacity: 0.8;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
    flex-grow: 1; /* Zorgt dat deze tekst de beschikbare ruimte vult */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eef2f7; /* Subtiele scheidingslijn */
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 600px) {
    
}

/* --- NIEUW: Onze Aanpak Sectie --- */
/* --- Basis Stijlen (Desktop-first) --- */

#approach-section {
    background-color: #f7f9fc;
    padding: 8rem 5%;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.approach-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.approach-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.approach-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-color: #e5e7eb; /* Lichtgrijs */
    z-index: -1;
}

.timeline-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-color: var(--primary-red); /* De themakleur */
    height: var(--progress-height, 0%); /* Wordt geanimeerd door JS */
    z-index: -1;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    width: 100%;
    align-items: center;
    /* LET OP: 'padding: 8rem' is erg groot. Dit wordt op kleinere schermen hieronder aangepast. */
    padding: 8rem;
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.timeline-item.is-active {
    opacity: 1;
}

.item-title {
    grid-column: 1;
    text-align: right;
    padding-right: 2.5rem;
}

.item-title h3 {
    font-size: 2.2rem;
    font-weight: 500;
    margin: 0;
    color: var(--text-dark);
}

.item-dot {
    grid-column: 2;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #e5e7eb;
    border: 3px solid #f7f9fc;
    transition: background-color 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.timeline-item.is-active .item-dot {
    background-color: var(--primary-red);
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(235, 95, 42, 0.2);
}

.item-content {
    grid-column: 3;
    text-align: left;
    padding-left: 2.5rem;
}

.item-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}


/* --- Responsive Stijlen (Media Queries) --- */

/* Tablet: 1024px en kleiner */
@media (max-width: 1024px) {
  #approach-section {
    padding: 6rem 6%;
  }
  .approach-title {
    font-size: 2.4rem;
  }
  .approach-subtitle {
    font-size: 1rem;
    margin-bottom: 4rem;
  }
  .timeline-item {
    padding: 5rem 3rem; 
    gap: 0;
  }
  .item-title h3 {
    font-size: 1.9rem;
  }
  .item-content p {
    font-size: 0.975rem;
  }
  .item-title {
    padding-right: 2rem;
  }
  .item-content {
    padding-left: 2rem;
  }
}

/* Mobiel: 560px en kleiner */
@media (max-width: 600px) {

  .approach-title {
    font-size: 2rem;
  }
  .item-title h3 {
    font-size: 4vw;
  }
  .item-content p {
    font-size: 2.5vw;
    line-height: 1.65;
  }
}

/* --- NIEUW: CTA (Call to Action) Sectie --- */
#cta-section {
    background-color: #ffffff; /* Witte achtergrond voor de hele sectie */
    padding: 8rem 5%;
    position: relative; /* AANGEPAST: Noodzakelijk voor de positionering van de deeltjes-container */
    z-index: 5;
    overflow: hidden;   /* AANGEPAST: Zorgt dat de deeltjes binnen de sectie blijven */
}

#cta-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Plaats de animatie achter de content */
}

.cta-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative; /* AANGEPAST: Zorgt dat de content-wrapper boven de animatie ligt */
    z-index: 1;
}

.cta-content {
    
    background-color: #f7f9fc;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.cta-subtitle {
    display: inline-block;
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background-color: rgba(235, 95, 42, 0.1);
    padding: 8px 16px;
    border-radius: 999px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-dark);
    max-width: 650px;
    margin: 0 auto 1rem auto;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.cta-button {
    font-size: 1.1rem;
    border-radius: 18px;
    text-decoration: none;
    transition: 0.2s;
}

@media (max-width: 600px) {
    .cta-content{
        padding: 2rem;
    }

    .cta-wrapper h2{
        font-size: 1.8rem;
    }
}

/* --- NIEUW: Footer Stijlen --- */
#main-footer {
    background-color: #0d1117; /* Een donkere, bijna zwarte achtergrond */
    color: #c9d1d9; /* Een lichtgrijze tekstkleur die prettig leest */
    padding: 6rem 5% 0; /* Padding boven, geen padding onder (die zit in footer-bottom) */
    position: relative;
    z-index: 5;
    border-top: 4px solid var(--primary-red);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* Responsive grid: 1 kolom op mobiel, 2 op tablet, 4 op desktop */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    position: relative;
    padding-bottom: 0.75rem;
}

/* Subtiele onderlijn onder de titels */
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-red);
}

/* Kolom 1: Over Ons */
.about-col .footer-logo img {
    max-width: 150px;
    margin-bottom: 1.5rem;
}

.about-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    opacity: 0.8;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    text-decoration: none;
    color: #c9d1d9;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #30363d;
    border-radius: 50%;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.footer-socials a svg {
    width: 20px;
    height: 20px;
}

/* Kolom 2 & 3: Links */
.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col ul li {
    margin-bottom: 0.75rem;
}

.links-col ul a {
    color: #c9d1d9;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.links-col ul a:hover {
    color: white;
    padding-left: 5px;
}

/* Kolom 4: Contact */
.contact-col address {
    font-style: normal;
    display: flex;
    flex-direction: column;
}

.contact-col address span,
.contact-col address a {
    color: #c9d1d9;
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-col address a:hover {
    color: white;
}

.footer-badge {
    max-width: 80px;
    margin-top: 1rem;
    opacity: 0.7;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid #30363d; /* Lijn tussen de kolommen en de bottom bar */
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #8b949e; /* Nog iets donkerdere grijstint voor minder belangrijke tekst */
}

.bottom-links a {
    color: #8b949e;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: white;
}

/* --- NIEUW: Stijlen voor Service Pagina's --- */

/* --- Service Hero Sectie --- */
.service-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60vh;
    padding: 8rem 5%;
    background-size: cover;
    background-position: center center;
    color: white;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtiele gradient overlay voor betere leesbaarheid */
    background: linear-gradient(45deg, rgba(172, 95, 28, 0.7), rgba(66, 40, 0, 0.8));
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.service-hero-content .hero-subtitle {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.service-hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

.service-hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Algemene Sectie Titels --- */
.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Kerncomponenten Sectie --- */
.service-components-section {
    background-color: #f7f9fc;
    padding: 6rem 5%;
}

.service-components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.component-card {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid #eef2f7;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.component-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.component-card .component-icon {
    margin: 0 auto 1.5rem auto;
    width: 60px;
    height: 60px;
    background-color: rgba(172, 102, 28, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.component-card .component-icon i {
    width: 32px;
    height: 32px;
    color: var(--primary-red);
}

.component-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.component-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* --- Vernieuwde Voordelen Sectie --- */
.benefits-section {
    background-color: #ffffff;
    padding: 6rem 5%;
    overflow: hidden; /* Voorkomt dat elementen tijdens animatie buiten de sectie vallen */
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Twee gelijke kolommen op desktop */
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Linker kolom met tekst */
.benefits-text-content {
    text-align: left;
}

.benefits-text-content .section-title,
.benefits-text-content .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.benefits-text-content .btn-secondary {
    margin-top: 1.5rem;
}

/* Rechter kolom met afbeelding en kaarten */
.benefits-image-wrapper {
    position: relative; /* Cruciaal om de overlay-elementen te positioneren */
    border-radius: 16px;
    overflow: hidden; /* Zorgt dat de afbeelding en overlay de afgeronde hoeken respecteren */
    min-height: 500px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.benefits-image-wrapper > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Zorgt dat de afbeelding altijd de container vult */
    z-index: 1;
}

/* Donkere overlay voor leesbaarheid */
.benefits-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 23, 0.6);
    z-index: 2;
}

.benefits-overlay-grid {
    position: relative;
    z-index: 3; /* Zorgt dat de kaarten boven de afbeelding en overlay komen */
    width: 100%;
    height: 100%;
    padding: 2rem;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid voor de 4 voordelen */
    gap: 1.5rem;
}

.benefit-item {
    padding: 1.5rem;
    /* Glazen effect */
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.benefit-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.benefit-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Animatie vertraging voor een mooi effect */
.benefits-image-wrapper.animate-on-scroll {
    transition-delay: 0.2s;
}

/* Responsive aanpassingen voor mobiel */
@media (max-width: 900px) {
    .benefits-container {
        grid-template-columns: 1fr; /* Stapel de kolommen op elkaar */
    }

    .benefits-text-content {
        text-align: center; /* Centreer de tekst op mobiel */
    }

    .benefits-text-content .section-title,
    .benefits-text-content .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .benefits-overlay-grid {
        grid-template-columns: repeat(1, 1fr); /* 2x2 grid voor de 4 voordelen */
        gap: 1.5rem;
}
}

/* --- Animatie voor Scroll --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Aanpassingen */
@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* Stijl voor de tweede CTA sectie */
#cta-section-service {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.cta-content2 {
    background-color: #f7f9fc;
    padding: 4rem;
    text-align: center;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 600px) {
    .cta-content2 {
        padding: 2rem;
    }

    .cta-content2 h2 {
        font-size: 1.8rem;
    }
}

/* --- Over Ons Pagina Specifieke Stijlen --- */

/* About Main Section */
.about-main-section {
    background-color: #ffffff;
    padding: 6rem 5%;
    position: relative;
    z-index: 5;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-content .section-title-wrapper {
    text-align: left;
    margin-bottom: 3rem;
}

.about-text-blocks {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.text-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.text-block-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 136, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
}

.text-block-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-red);
}

.text-block-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: var(--text-dark);
}

.text-block-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.about-visual {
    position: relative;
}

.visual-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.visual-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(172, 86, 28, 0.1);
}

.overlay-stat .stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-red);
    display: block;
    line-height: 0.5;
}

.overlay-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Our Approach Section */
.our-approach-section {
    background-color: #f7f9fc;
    padding: 6rem 5%;
    position: relative;
    z-index: 5;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.approach-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #eef2f7;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.approach-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(172, 102, 28, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.approach-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary-red);
}

.approach-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--text-dark);
}

.approach-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Expertise Section */
.expertise-section {
    background-color: #ffffff;
    padding: 6rem 5%;
    position: relative;
    z-index: 5;
}

.expertise-container {
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.pillar {
    background-color: #f9fafb;
    border: 1px solid #f0f2f5;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(172, 98, 28, 0.1);
    background-color: white;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(238, 107, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    transition: background-color 0.3s ease;
}

.pillar:hover .pillar-icon {
    background-color: var(--primary-red);
}

.pillar-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-red);
    transition: color 0.3s ease;
}

.pillar:hover .pillar-icon i {
    color: white;
}

.pillar h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--text-dark);
}

.pillar p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 0 2rem 0;
}

.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.pillar-link:hover {
    gap: 1rem;
}

.pillar-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.pillar-link:hover svg {
    transform: translateX(4px);
}

.text-block-icon i,
.approach-icon i,
.pillar-icon i {
    color: #ff7b00; /* Professionele blauwe kleur, pas deze aan naar uw merkkleur */
}

/* Grootte voor iconen in 'Wie Zijn Wij' sectie */
.text-block-icon i {
    font-size: 1.5rem; /* 40px */
}
/* Grotere iconen voor 'Onze Aanpak' sectie */
.approach-icon i, .pillar-icon i{
    font-size: 2rem; /* 56px */
}

/* CTA Section About */
#cta-section-about {
    background-color: #f7f9fc;
    padding: 6rem 5%;
    position: relative;
    z-index: 5;
}

#cta-section-about .cta-content {
    background-color: white;
    border: 1px solid #e5e7eb;
}

/* Responsive Aanpassingen */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-content .section-title-wrapper {
        text-align: center;
    }
    
    .text-block {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .text-block-icon {
        margin: 0 auto;
    }
    
    .about-image {
        height: 400px;
    }
    
    .visual-overlay {
        position: static;
        margin-top: 2rem;
        border-radius: 12px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-pillars {
        grid-template-columns: 1fr;
    }
    
    .pillar {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .text-block-content h3 {
        font-size: 1.1rem;
    }
    
    .pillar-icon {
        width: 60px;
        height: 60px;
    }
    
    .pillar-icon svg {
        width: 30px;
        height: 30px;
    }
}



.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 5%;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.contact-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  height: 50px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0 1rem;
  font-size: 1rem;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  resize: none;
  transition: border-color 0.2s;
}
.contact-form textarea {
  min-height: 120px;
  height: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-red);
  outline: none;
}
.privacy-text {
  font-size: 0.97rem;
  color: #c96a21;
  margin-top: 1.15rem;
}

.direct-contact-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(28, 172, 64, 0.07);
  border: 1px solid #e5e7eb;
  padding: 2.3rem 2rem 2rem 2rem;
  min-width: 0;
  max-width:340px;
  margin: 0;
}
.direct-contact-box h3 { margin-top:0; margin-bottom:1.3rem; text-align:left; font-size:1.3rem; font-weight:600;}
.direct-contact-link {
  color: var(--primary-red);
  font-weight:600;
  text-decoration:none;
  transition: color 0.2s;
}
.direct-contact-link:hover { color: var(--light-red);}
.direct-contact-box p {
  font-size:1.07rem;
  text-align:left;
  margin:0;
}

@media (max-width: 1050px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 100%;
  }
  .direct-contact-box {
    max-width:100%;
  }
}

@media (max-width: 600px) {
  .contact-page-grid h2{
    font-size: 6.5vw;
}
}