@import url("consent/consent.css");

/* Reset en basis stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1F2937;
    --accent-orange: #006FAD;
    --neutral-gray: #F6F5F3;
    --text-dark: #1F2937;
    --white: #FFFFFF;
    --light-blue: #374151;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(31, 41, 55, 0.1);
    --shadow-hover: 0 8px 25px rgba(31, 41, 55, 0.15);
    --accent-red: #DC2626;
    --accent-yellow: #F59E0B;
    --van-gray: #6b7280;
    --van-dark-gray: #374151;
    --van-light-gray: #f3f4f6;
    --terracotta: #B45309;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Sticky Call Button */
.sticky-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.sticky-call-btn:hover {
    background: #005a8f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Header – fixed so navbar always floats on top regardless of scroll */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(31, 41, 55, 0.1);
}

/* Prevent content from sitting under the fixed header */
body {
    padding-top: 86px;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-logo-placeholder {
    font-size: 2rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(31, 41, 55, 0.2));
    animation: logoFloat 3s ease-in-out infinite, logoPulse 4s ease-in-out infinite;
}

.nav-logo-placeholder:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 4px 8px rgba(31, 41, 55, 0.4));
    animation-play-state: paused;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.nav-brand h1 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(31, 41, 55, 0.1);
}

.nav-brand:hover h1 {
    color: var(--primary-blue);
    text-shadow: 0 2px 4px rgba(31, 41, 55, 0.2);
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Diensten dropdown */
.nav-menu {
    align-items: center;
}

.nav-item-dropdown {
    position: relative;
}

.nav-link-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-link-dropdown::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-top: 4px;
    transition: transform 0.2s ease;
}

.nav-item-dropdown:hover .nav-link-dropdown::before {
    transform: rotate(180deg);
}

/* Diensten is not a link (diensten.html not navigable); span trigger has default cursor */
.nav-item-dropdown span.nav-link-dropdown {
    cursor: default;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: var(--white);
    box-shadow: var(--shadow-hover);
    border-radius: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 100;
}

.nav-item-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.nav-dropdown-link {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-link:hover {
    background: var(--neutral-gray);
    color: var(--accent-orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: 0.3s;
}

/* Hero Section – img element for Safari (CSS background often fails on iOS) */
.hero {
    position: relative;
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.75) 0%, rgba(55, 65, 81, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--van-gray);
    transition: all 0.3s ease;
    justify-content: center;
    text-align: center;
    min-height: 60px;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.badge-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    opacity: 0.8;
}

/* Diensten Section */
.diensten {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--van-light-gray) 0%, var(--white) 100%);
}

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (min-width: 1200px) {
    .diensten .container {
        max-width: 1400px;
    }
    .diensten-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dienst-card {
    background: var(--white);
    padding: 0 30px 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--van-light-gray);
    overflow: hidden;
}

.dienst-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.dienst-image {
    position: relative;
    width: calc(100% + 60px);
    margin: 0 -30px 20px -30px;
    height: 0;
    padding-bottom: 60%;
    overflow: hidden;
    background: var(--neutral-gray);
}

.dienst-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dienst-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dienst-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.dienst-card p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.dienst-card ul {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.dienst-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.dienst-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

/* Werkwijze Section */
.werkwijze {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--neutral-gray) 100%);
}

.werkwijze-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--van-light-gray);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    background: #005a8f;
    transform: scale(1.1);
}

.step h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.step p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Realisaties Teaser (portfolio-style zoals Hans Van der Steen) */
.realisaties-teaser {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--van-light-gray) 0%, var(--white) 100%);
}

.realisaties-teaser .realisaties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.realisaties-teaser .realisatie-item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.realisaties-teaser .realisatie-item:hover {
    transform: scale(1.05);
}

.realisaties-teaser .realisatie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.realisaties-teaser .realisatie-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(2px);
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.realisaties-teaser .realisatie-item:hover .realisatie-overlay {
    transform: translateY(0);
}

.realisaties-teaser .realisatie-overlay h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.realisaties-teaser .realisatie-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

.realisaties-teaser .realisaties-cta {
    text-align: center;
    margin-top: 0;
}

/* Regio Teaser */
.regio-teaser {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--neutral-gray) 100%);
}

.regio-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.location-item:hover {
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--accent-orange);
}

.location-icon {
    font-size: 1.2rem;
}

.regio-cta {
    text-align: center;
}

/* Buttons */
.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #005a8f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #0088d4 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
}

.footer-logo {
    height: 90px;
    width: auto;
    display: block;
    object-fit: contain;
}


.footer-section h3 {
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.footer-section p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-orange);
}

/* Footer Partners Section */
.footer-partners {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
    width: 100%;
    display: block;
}

.footer-partners h3 {
    color: var(--accent-orange) !important;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
}

.partners-logos {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.partner-link {
    display: inline-block !important;
    transition: all 0.3s ease;
    opacity: 0.8;
    text-decoration: none;
}

.partner-link:hover {
    opacity: 1;
    transform: translateY(-3px);
    text-decoration: none;
}

.partner-logo {
    height: 75px !important;
    width: auto !important;
    max-width: 225px !important;
    transition: all 0.3s ease;
    display: block;
}

.partner-link:hover .partner-logo {
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    /* Mobile: menu is an extension of the navbar (same fixed block), not a separate layer */
    .navbar .container {
        flex-wrap: wrap;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0;
        background: var(--white);
        flex-direction: column;
        gap: 20px;
        transition: max-height 0.35s ease, opacity 0.25s ease;
        border-top: 1px solid transparent;
        pointer-events: none;
    }

    .nav-menu.active {
        max-height: min(80vh, 500px);
        overflow-y: auto;
        opacity: 1;
        padding: 20px 0 10px;
        border-top-color: rgba(31, 41, 55, 0.08);
        pointer-events: auto;
    }

    /* Mobile: dropdown as inline submenu */
    .nav-item-dropdown .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 8px 0 8px 16px;
        margin-top: 4px;
        min-width: 0;
        border-left: 3px solid var(--accent-orange);
    }

    /* Keep "Diensten" centered like other mobile menu items */
    .nav-item-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-item-dropdown .nav-link-dropdown {
        justify-content: center;
    }

    .nav-item-dropdown .nav-link-dropdown::before {
        order: 2;
        margin-top: 0;
        margin-left: 6px;
    }

    .nav-item-dropdown:hover .nav-dropdown {
        transform: none;
    }

    .nav-dropdown-link {
        padding: 8px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-content {
        min-width: 0;
    }

    .hero-title {
        font-size: 2rem;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }

    .diensten-grid {
        grid-template-columns: 1fr;
    }

    .werkwijze-steps {
        grid-template-columns: 1fr;
    }

    .realisaties-grid {
        grid-template-columns: 1fr;
    }

    .realisaties-teaser .realisaties-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .regio-locations {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        gap: 0.75rem;
    }

    .footer-links > span {
        display: none;
    }

    .footer-links .flex {
        width: 100%;
        justify-content: center;
        margin-top: 0.25rem;
    }

    .partners-logos {
        gap: 20px !important;
        flex-direction: column;
        align-items: center;
    }

    .partner-logo {
        height: 60px !important;
        max-width: 180px !important;
    }

    .sticky-call-btn span {
        display: none;
    }

    .sticky-call-btn {
        padding: 15px;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 24px;
    }

    .hero {
        min-height: 100vh;
        padding: 60px 0;
    }

    .hero .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .dienst-card {
        padding: 0 20px 25px 20px;
    }

    .dienst-image {
        width: calc(100% + 40px);
        margin: 0 -20px 20px -20px;
    }

    .realisatie-card,
    .step {
        padding: 25px 20px;
    }

    .location-item {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .realisaties-teaser .realisaties-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-trust {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trust-badge {
        padding: 12px 18px;
        font-size: 0.9rem;
        min-height: 50px;
    }

    .over-ons-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .over-ons-image {
        min-height: 0;
        order: 1;
    }

    .over-ons-text {
        order: 0;
    }

    .over-ons-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        object-fit: cover;
    }

    .waarden-grid {
        grid-template-columns: 1fr;
    }

    .team-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-image {
        min-height: 0;
    }

    .team-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }

    .ervaring-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .certificeringen-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .realisaties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .regio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .regio-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gemeente-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        width: 100%;
        max-width: 300px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles voor toegankelijkheid */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

/* Loading states */
.btn-primary:disabled,
.btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success states */
.form-group.success input,
.form-group.success textarea {
    border-color: #28a745;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
}

.success-message {
    color: #28a745;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--neutral-gray);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.breadcrumb-list li {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: var(--accent-orange);
}

.breadcrumb-list a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: #005a8f;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Sections */
.service-section {
    padding: 80px 0;
}

.service-section.alt {
    background: linear-gradient(135deg, var(--neutral-gray) 0%, var(--white) 100%);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Eén kolom (alleen tekst): content centreren op desktop */
.service-content:has(> .service-text:only-child) {
    grid-template-columns: 1fr;
    justify-items: center;
}
.service-content:has(> .service-text:only-child) .service-text {
    max-width: 720px;
    width: 100%;
}

.service-text h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 20px;
}
.service-text h2:first-child {
    margin-top: 0;
}

.service-text h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin: 30px 0 1.25rem;
}

.service-text p {
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.7;
}

.service-text ul {
    margin-bottom: 25px;
    padding-left: 0;
    list-style: none;
}

.service-text li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: var(--text-dark);
    line-height: 1.6;
}

.service-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.service-text strong {
    color: var(--primary-blue);
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-gray);
    border-radius: 15px;
    min-height: 300px;
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.service-image .placeholder-image {
    font-size: 6rem;
    opacity: 0.3;
}

.service-image-inline {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.service-cta {
    margin-top: 30px;
    text-align: center;
}
.service-cta .btn-primary {
    display: inline-block;
}

/* Dienstpagina's: op mobile tekst bovenaan, afbeelding daaronder en responsief */
@media (max-width: 768px) {
    .service-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .service-text {
        order: 0;
    }
    .service-image {
        order: 1;
        min-height: 0;
    }
    .service-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        object-fit: cover;
    }
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--neutral-gray) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--van-light-gray);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.process-step h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.process-step p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Active nav link */
.nav-link.active {
    color: var(--accent-orange);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--van-light-gray) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form h2,
.contact-info h2 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-blue);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--van-gray);
    font-size: 0.9rem;
}

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: var(--accent-orange);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-top: 5px;
}

.contact-item strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--accent-orange);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-cta {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.map-container {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Contact: op mobile formulier bovenaan, daarna info + kaart */
@media (max-width: 768px) {
    .contact-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-form {
        order: 0;
    }
    .contact-info {
        order: 1;
    }
    .contact-cta {
        flex-direction: column;
    }
    .contact-cta .btn-primary,
    .contact-cta .btn-outline {
        width: 100%;
        text-align: center;
    }
    .map-container iframe {
        height: 260px;
    }
}

.map-placeholder {
    background: var(--neutral-gray);
    padding: 40px;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.map-placeholder p {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.map-placeholder small {
    color: var(--van-gray);
}

/* FAQ Teaser */
.faq-teaser {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--neutral-gray) 0%, var(--white) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--van-light-gray);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.faq-item h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.faq-cta {
    text-align: center;
}

/* FAQ Section (Hans Vandersteen-stijl: categorieën + accordionlijst) */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--van-light-gray) 0%, var(--white) 100%);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-category-btn {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--van-light-gray);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--neutral-gray);
}

.faq-question h3 {
    margin: 0;
    color: var(--primary-blue);
    font-size: 1.1rem;
    flex: 1;
    margin-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
}

/* FAQ CTA (Hans-stijl) */
.faq-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--neutral-gray) 100%);
}

.faq-cta .cta-content {
    text-align: center;
}

.faq-cta .cta-content h2 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.faq-cta .cta-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Legacy: faq-grid en .faq (andere pagina's) */
.faq {
    padding: 100px 0 120px 0;
    background: linear-gradient(135deg, var(--van-light-gray) 0%, var(--white) 100%);
    position: relative;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Over Ons Page Specific Styles */
.over-ons {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--van-light-gray) 0%, var(--white) 100%);
    position: relative;
}

.over-ons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.over-ons-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.over-ons-text h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 20px;
}

.over-ons-text h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.over-ons-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.over-ons-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-gray);
    border-radius: 15px;
    min-height: 400px;
}

.over-ons-image .placeholder-image {
    font-size: 8rem;
    opacity: 0.3;
}

.over-ons-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Waarden Section */
.waarden-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--neutral-gray) 100%);
}

.waarden-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.waarde-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--van-light-gray);
}

.waarde-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.waarde-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.waarde-icon img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

.waarde-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.waarde-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--van-light-gray) 0%, var(--white) 100%);
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-text h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.team-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.team-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-gray);
    border-radius: 15px;
    min-height: 300px;
}

.team-image .placeholder-image {
    font-size: 6rem;
    opacity: 0.3;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Over ons + Team: stack op mobile (na basis-grid zodat override wint) */
@media (max-width: 768px) {
    .over-ons-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .over-ons-text { order: 0; }
    .over-ons-image {
        order: 1;
        min-height: 0;
    }
    .over-ons-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        object-fit: cover;
    }
    .team-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .team-image {
        min-height: 0;
    }
    .team-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* Ervaring Section */
.ervaring-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    text-align: center;
}

.ervaring-section .section-title {
    color: var(--white);
}

.ervaring-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.ervaring-text {
    max-width: 800px;
    margin: 0 auto;
}

.ervaring-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}

/* Certificeringen Section */
.certificeringen-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--neutral-gray) 100%);
}

.certificeringen-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.certificering-item {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--van-light-gray);
}

.certificering-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.certificering-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.certificering-icon img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

.certificering-item h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.certificering-item p {
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Realisaties Page Specific Styles */
.realisaties {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--van-light-gray) 0%, var(--white) 100%);
}

/* Filter Section */
.filter-section {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: var(--primary-blue);
    padding: 12px 24px;
    border: 2px solid var(--primary-blue);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Realisaties Grid (portfolio-style, same as homepage teaser) */
.realisaties .realisaties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.realisaties .realisatie-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    opacity: 1;
    transform: none;
}

.realisatie-card.hidden {
    display: none;
}

.realisaties .realisatie-card:hover {
    transform: none;
    box-shadow: none;
}

.realisaties .realisatie-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.realisaties .realisatie-item:hover {
    transform: scale(1.05);
}

.realisaties .realisatie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.realisaties .realisatie-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(2px);
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.realisaties .realisatie-item:hover .realisatie-overlay {
    transform: translateY(0);
}

.realisaties .realisatie-overlay h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.realisaties .realisatie-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.realisaties .realisatie-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.realisaties .realisatie-overlay .tag {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.overlay-location,
.overlay-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.realisatie-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--accent-orange);
    font-weight: 500;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.realisatie-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: var(--neutral-gray);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--neutral-gray) 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--van-light-gray);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-rating {
    margin-bottom: 20px;
    text-align: center;
}

.star {
    font-size: 1.2rem;
    color: var(--accent-yellow);
    margin: 0 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.6;
    text-align: center;
}

.testimonial-author {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.author-location {
    color: var(--accent-orange);
    font-size: 0.9rem;
}

/* Regio Page Specific Styles */
.regio-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--van-light-gray) 100%);
}

.regio-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.regio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.regio-main {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--van-light-gray);
}

.regio-main h3 {
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 1.4rem;
    text-align: center;
}

.regio-dorpen {
    margin-bottom: 20px;
}

.dorp-category h4 {
    color: var(--accent-orange);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.dorp-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dorp-item {
    background: var(--neutral-gray);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dorp-item:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Regio Features */
.regio-features {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
}

.regio-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.regio-feature {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.regio-feature h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.regio-feature p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
}

/* Gemeente Details */
.gemeente-details {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--van-light-gray) 0%, var(--white) 100%);
}

.gemeente-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gemeente-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--van-light-gray);
    transition: all 0.3s ease;
}

.gemeente-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gemeente-card h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.gemeente-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.gemeente-services {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.service-tag {
    background: var(--accent-orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Regio CTA */
.regio-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #0088d4 100%);
    color: var(--white);
    text-align: center;
}

.regio-cta .cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.regio-cta .cta-content p {
    color: var(--white);
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--accent-orange);
    border: 2px solid var(--white);
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: var(--white);
}

.cta-buttons .btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--accent-orange);
}

/* Force partners section styling - higher specificity */
.footer .footer-partners {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer .footer-partners .partners-logos {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer .footer-partners .partner-link {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 0.8 !important;
}

.footer .footer-partners .partner-link:hover {
    opacity: 1 !important;
}

.footer .footer-partners .partner-logo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
