
/* Open Sans font faces */
@font-face {
    font-family: 'Open Sans';
    src: url('../Content/Fonts/Open_Sans/static/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/*#region Variables & Reset — Global color/font variables, box-sizing reset and base element styles */
:root {
    --color-primary: #0079c5;
    --color-primary-dark: #007cca;
    --color-text: #3d3d3d;
    --color-text-muted: #445166;
    --color-white: #fff;
    --color-black: #000;
    --color-border: #ccc;
    --color-input-border: #c8c8c8;
    --color-star: #e9a647;
    --font-main: 'Open Sans', Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-x: clip;
    background-color: #e8e8e8;
}

body {
    background-color: #e8e8e8;
    color: var(--color-black);
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    transition: opacity 0.5s ease;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

body.page-load {
    opacity: 0;
}

/* Extend navbar color into iOS status bar safe area */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: env(safe-area-inset-top);
    background: rgba(0, 121, 197, 1);
    pointer-events: none;
    z-index: 900;
}

main {
    background-color: var(--color-white);
    flex: 1 0 auto;
}

p {
    color: var(--color-text);
}

h1 {
    font-size: 48pt;
    font-weight: 700;
    color: var(--color-primary);
    position: relative;
    margin-top: 50px;
    text-align: center;
    font-family: var(--font-main);
}

@media (max-width: 768px) {
    h1 {
        font-size: 28pt;
        margin-top: 20px;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 20pt;
    }
}
/*#endregion Variables & Reset*/

/*#region Navbar — Sticky top navigation bar with logo, links, active state, overflow menu and mobile layout */
.navbar {
    background-color: rgba(0, 88, 183, 0.8);
    color: var(--color-white);
    height: auto;
    min-height: 50px;
    height: 65px;
    display: flex;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 0 120px;
    padding-top: env(safe-area-inset-top);
    padding-left: max(120px, env(safe-area-inset-left));
    padding-right: max(120px, env(safe-area-inset-right));
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--color-primary-dark);
}

.navbar::after {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
}

.navbar .logo {
    height: 75px;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle,
.more-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
}

.nav-toggle {
    font-size: 22pt;
    margin-left: 8px;
}

.more-toggle {
    font-size: 24pt;
    padding: 6px 20px;
}

.nav-items {
    flex: 0 1 auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    height: 100%;
    overflow: hidden;
    min-width: 0;
    position: relative;
}

.nav-items a {
    text-decoration: none;
    color: var(--color-white);
}

.nav-items span {
    display: inline-block;
    flex: 0 0 auto;
    text-align: center;
    margin: 0;
    padding: 30px 12px;
    line-height: normal;
    white-space: nowrap;
    font-size: 15pt;
    font-weight: bold;
    transition: transform 0.3s;
    will-change: transform;
    transform-origin: center bottom;
}

.nav-items span:hover {
    cursor: pointer;
    color: var(--color-white);
    transform: scale(1.075);
}

.nav-items a {
    position: relative;
}

.nav-items a:not(.nav-active):not(.nav-external-link)::after {
    content: '';
    position: absolute;
    bottom: 22px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-items a:not(.nav-active):not(.nav-external-link):hover::after {
    width: 85%;
    left: 7.5%;
}

/* Active Nav Link */
.nav-active::after {
    content: '';
    position: absolute;
    bottom: 22px;
    left: 7.5%;
    width: 85%;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 2px;
}

/* External Link Icon */
.nav-external-link span::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 4px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* More Menu (overflow dropdown) */
.nav-more {
    display: inline-flex;
    align-items: center;
    position: absolute;
    right: 18px;
    top: 53%;
    transform: translateY(-50%);
    flex: 0 0 auto;
}

.more-menu {
    display: none;
    position: absolute;
    top: 135%;
    left: 0;
    background-color: rgba(0, 88, 183, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    flex-direction: column;
    min-width: 140px;
    z-index: 100;
    text-align: center;
}

.more-menu::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 30px;
}

.more-menu.open {
    display: flex;
}

@media (hover: hover) {
    .nav-more:hover .more-menu {
        display: flex;
    }
}

.more-menu a {
    color: var(--color-white);
    text-decoration: none;
    padding: 12px 6px;
    display: block;
    font-size: 13pt;
    font-weight: bold;
    white-space: nowrap;
    line-height: 1.3;
}

.more-menu a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.more-menu .nav-active {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.more-menu .nav-active span::after {
    display: none;
}

.more-menu .nav-active::after {
    display: none;
}

@media (max-width: 768px) {
    .navbar {
        height: auto;
        min-height: 56px;
        padding: 0 56px;
        padding-top: env(safe-area-inset-top);
        padding-left: max(56px, env(safe-area-inset-left));
        padding-right: max(56px, env(safe-area-inset-right));
        align-items: center;
    }

    .navbar .logo {
        height: 40px;
        left: 15px;
    }
}
/*#endregion Navbar*/

/*#region HomeIntroductie — Full-screen hero section on homepage with background image and overlay */
.HomeIntroductie {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    min-height: calc(100dvh + 10px);
    margin: 0;
    margin-top: -75px;
    padding: 75px 20px 20px;
    z-index: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.85)), url(../Content/Pictures/CTSbalen.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100vw;
    max-width: 100%;
}

.HomeIntroductie h1 {
    font-size: 56pt;
    font-weight: 650;
    font-style: italic;
    color: var(--color-white);
    font-family: var(--font-main);
    text-shadow: 6px 6px 8px rgba(0, 0, 0, 1);
    animation: headerSlideDown 0.8s ease-out 0.3s both;
}

.HomeIntroductie h2 {
    font-size: 18pt;
    font-weight: 350;
    color: var(--color-white);
    text-shadow: 2px 1px 4px rgba(0, 0, 0, 1);
    margin-top: 20px;
    max-width: 80%;
    font-family: var(--font-main);
    animation: headerFadeUp 0.8s ease-out 0.6s both;
}

.HomeIntroductie-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    animation: headerFadeUp 0.8s ease-out 0.6s both;
}

.HomeIntroductie-bg,
.HomeIntroductie-overlay {
    display: none;
}

@media (max-width: 768px) {
    .HomeIntroductie {
        background: none;
        position: relative;
        min-height: 100svh;
        height: calc(var(--fixed-vh, 100svh) * 1.15);
        width: 100vw;
        max-width: none;
        margin-left: calc(-1 * env(safe-area-inset-left, 0px));
        margin-right: calc(-1 * env(safe-area-inset-right, 0px));
        overflow: hidden;
        justify-content: center;
        padding-top: calc(56px + env(safe-area-inset-top, 0px) + 30px);
    }

    .HomeIntroductie::before {
        display: none;
    }

    .HomeIntroductie-bg {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: -2;
        pointer-events: none;
        transform: translateZ(0);
        will-change: transform;
    }

    .HomeIntroductie-overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.85));
        z-index: -1;
        pointer-events: none;
        will-change: transform;
    }

    .HomeIntroductie-logo {
        max-width: 130px;
    }
}
/*#endregion HomeIntroductie*/

/*#region PageHeader — Title and subtitle header used on all sub-pages */
.page-header {
    text-align: center;
    padding: 20px;
}

.page-header h1 {
    font-size: 34pt;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 8px;
    font-family: var(--font-main);
    animation: headerSlideDown 0.7s ease-out both;
}

.page-header p {
    font-size: 12pt;
    color: var(--color-text-muted);
    margin: 0 auto;
    max-width: 500px;
    line-height: 1.5;
    animation: headerFadeUp 0.7s ease-out 0.2s both;
}

.page-header::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 20px auto 0;
    border-radius: 2px;
    animation: underlineGrow 0.6s ease-out 0.45s both;
}

@media (max-width: 768px) {
    .page-header {
        padding: 32px 16px 28px;
    }

    .page-header h1 {
        font-size: 24pt;
    }

    .page-header p {
        font-size: 12pt;
    }
}

@media (max-width: 400px) {
    .page-header h1 {
        font-size: 20pt;
    }
}
/*#endregion PageHeader*/

/*#region SectionDivider — Animated horizontal line between content sections */
.section-divider {
    all: unset;
    display: block;
    width: 70%;
    height: 1px;
    margin: 50px auto;
    background-color: #e8e8e8;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.section-divider.visible {
    opacity: 1;
}
/*#endregion SectionDivider*/

/*#region GeneralSections — Reusable two-column content blocks with text, images and fade-in effects */
.GeneralSection {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 25px 20px;
    background-color: var(--color-white);
    color: var(--color-black);
    width: 100%;
    flex-wrap: wrap;
    position: relative;
}



.GeneralSection:nth-child(even) {
    background-color: var(--color-white);
}

.GeneralContent {
    max-width: 40%;
    min-width: 300px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible .GeneralContent:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.fade-in.visible .GeneralContent:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

.GeneralContent h2 {
    font-size: 24pt;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.GeneralContent p {
    font-size: 12pt;
    line-height: 1.6;
    margin-bottom: 15px;
}

.GeneralContentImportant {
    color: #3d3d3d;
    font-weight: bold;
    font-size: 12pt;
}

.GeneralContent a,
.provider-info a,
footer a,
.FooterContentLeft a {
    text-decoration: none;
    color: var(--color-primary);
    font-style: italic;
}

.GeneralContent img {
    width: 400px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.GeneralContent img:hover {
    transform: scale(1.075);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Specifiek voor gecentreerde productafbeeldingen: altijd max 200px hoog, breedte automatisch */
.GeneralContent img.center-product-img {
    max-width: auto;
    max-height: 300px !important;
    height: auto ;
    object-fit: cover;
    object-position: top;
    display: block;
    margin-left: auto;
    margin-right: auto;
    cursor: zoom-in;
}

.GeneralSectionHulpPage,
.GeneralSectionOpeningsuren {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.GeneralSectionHulpPageButton {
    flex: 0 0 auto;
    text-align: center;
    padding: 0 20px;
    width: 400px;
    margin: 0 auto;
    display: block;
}

.GeneralContentHulpPage {
    max-width: 70%;
    text-align: left;
    font-size: 12pt;
}

.GeneralContentHulpPage p {
    margin-bottom: 25px;
}

.GeneralSectionOpeningsuren {
    max-width: 70%;
    margin: 25px auto;
    text-align: center;
}

.GeneralContentOpeningsuren p {
    line-height: 1;
    font-size: 12pt;
}

.GeneralContentOpeningsurenBold p {
    font-weight: bolder;
    font-style: italic;
    text-decoration: underline;
}

.GeneralContent.GeneralContentPrivacy h2,
.GeneralContent.GeneralContentPrivacy p {
    text-align: center;
}

@media (max-width: 768px) {
    .GeneralContentHulpPage {
        max-width: 95%;
    }
}
/*#endregion GeneralSections*/

/*#region Product Carousel — Scrollable image slider for featured products with dots and arrows */
.carousel-section {
    max-width: 1100px;
    margin: 60px auto;
    text-align: center;
    margin-top: 50px;
}

.carousel-section h2 {
    font-size: 24pt;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-window {
    width: 100%;
    max-width: 900px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carousel-window::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-track img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    height: 300px;
    object-fit: contain;
    padding: 20px;
    scroll-snap-align: center;
}

 .arrow {
     background-color: var(--color-white);
     color: var(--color-primary);
     border: 1px solid rgba(0,0,0,0.06);
     font-size: 20px;
     cursor: pointer;
     width: 44px;
     height: 44px;
     padding: 0;
     border-radius: 50%;
     box-shadow: 0 4px 12px rgba(0,0,0,0.06);
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: background-color 0.18s ease, color 0.18s ease, transform 0.12s ease;
 }

.dots {
    margin-top: 20px;
    text-align: center;
}

.dot {
    height: 7px;
    width: 7px;
    background: var(--color-border);
    border-radius: 50%;
    display: inline-block;
    margin: 0 3px;
    cursor: pointer;
}

.dot.active {
    background: var(--color-black);
}

@media (min-width: 901px) {
    .carousel-wrapper {
        display: grid;
        grid-template-columns: 44px minmax(0, 900px) 44px;
        align-items: center;
        column-gap: 12px;
        justify-content: center;
    }

    .carousel-wrapper .arrow {
        width: 44px;
        min-width: 44px;
        height: 44px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--color-white);
        color: var(--color-primary);
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        border: 1px solid rgba(0,0,0,0.06);
    }

    .carousel-wrapper .carousel-window {
        width: 100%;
        max-width: 900px;
    }
}

@media (max-width: 900px) {
    .carousel-track img {
        flex: 0 0 50% !important;
        height: 145px !important;
        padding: 6px !important;
    }

    .carousel-wrapper {
        position: relative;
        overflow: visible !important;
        width: 100%;
        max-width: 100%;
        padding: 0 12px;
    }

    .carousel-window {
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .carousel-wrapper .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 60;
        background: none;
        width: 44px;
        height: 44px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--color-white);
        color: var(--color-primary);
        border: 1px solid rgba(0,0,0,0.06);
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    }

    .carousel-wrapper .arrow.left {
        left: 8px;
    }

    .carousel-wrapper .arrow.right {
        right: 8px;
    }

    .dots {
        display: flex;
        justify-content: center;
        gap: 4px;
        margin-top: 12px;
        z-index: 70;
    }
}

@media (max-width: 600px) {
    .carousel-track img {
        flex: 0 0 100% !important;
        height: 105px !important;
        padding: 4px !important;
    }

    .carousel-window {
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }

    .carousel-wrapper .arrow.left {
        left: 12px;
    }

    .carousel-wrapper .arrow.right {
        right: 12px;
    }

    .dots {
        margin-top: 10px;
        z-index: 70;
    }

    .dot {
        height: 6px;
        width: 6px;
        margin: 0 2px;
    }
}
/*#endregion Product Carousel*/

/*#region 

s — Customer review cards carousel with star ratings and navigation dots */
.ReviewsSection {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.reviews-title {
    font-size: 24pt;
    font-weight: bold;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 10px;
}

.reviews-carousel-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.reviews-window,
.reviews-track {
    width: 100%;
}

.reviews-track {
    display: flex;
}

.ReviewsBoxes {
    flex: 0 0 calc(100% / var(--reviews-per-slide, 1));
    max-width: calc(100% / var(--reviews-per-slide, 1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 0 18px;
    scroll-snap-align: start;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.ReviewsBoxes:hover {
    transform: translateY(-4px);
    background-color: #f8fbff;
}

.ReviewsBoxes h3 {
    font-family: var(--font-main);
    color: var(--color-text);
    font-size: 22pt;
    line-height: 1.28;
    font-weight: 500;
    margin: 15px;
    max-width: 500px;
    font-style: italic;
}

.ReviewsBoxes p {
    color: var(--color-text-muted);
    margin: 0;
    font-size: 12pt;
}

.ReviewsBoxes .ReviewStars {
    color: var(--color-star);
    margin-bottom: 0;
    font-size: 20pt;
}

.reviews-dots {
    margin-top: 20px;
    text-align: center;
}

.reviews-dot {
    height: 7px;
    width: 7px;
    background: var(--color-border);
    border-radius: 50%;
    display: inline-block;
    margin: 0 3px;
    cursor: pointer;
}

.reviews-dot.active {
    background: var(--color-black);
}

.reviews-link {
    text-align: center;
    margin-top: 16px;
    font-size: 12pt;
    margin-bottom: 50px;
}

.reviews-link a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.reviews-link a:hover {
    text-decoration: underline;
    color: var(--color-primary-dark);
}

@media (max-width: 1400px) {
    .ReviewsBoxes h3 {
        font-size: 22pt;
    }

    .ReviewsBoxes p {
        font-size: 12pt;
    }

    .ReviewStars {
        font-size: 20pt !important;
    }
}

@media (max-width: 900px) {
    .reviews-carousel-wrapper {
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ReviewsBoxes h3 {
        font-size: 18pt;
    }

    .ReviewsBoxes p {
        font-size: 12pt;
    }

    .ReviewStars {
        font-size: 18pt !important;
    }
}
/*#endregion Reviews*/

/*#region Providers — Grid of provider/operator cards with image, name and details */
.ProvidersGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.provider {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 20px;
    flex-wrap: wrap;
    border-radius: 10px;
    background-color: var(--color-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8e8e8;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);

}

.provider img {
    width: 200px;
    max-width: 100%;
    height: 200px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.provider-info {
    flex: 1;
    min-width: 250px;
}

.provider-info h2 {
    margin: 0 0 15px;
    font-size: 24pt;
    color: var(--color-primary);
    text-align: center;
}

.provider-info p {
    margin: 6px 0;
    font-size: 12pt;
    color: var(--color-text);
    text-align: center;
}

@media (min-width: 769px) {
    .provider {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .provider-info {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ProvidersGrid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 95%;
        padding: 0;
    }

    .provider {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin: 0;
        padding: 12px;
    }

    .provider img {
        width: 140px;
        max-width: 40%;
        height: 140px;
        max-height: 140px;
    }

    .provider-info {
        text-align: center;
    }

    .provider-info h2 {
        font-size: 18pt;
    }

    .provider-info p {
        font-size: 12pt;
    }
}

@media (max-width: 400px) {
    .provider img {
        width: 120px;
        max-width: 45%;
        max-height: 120px;
    }
}
/*#endregion Providers*/

/*#region Stats Section — Animated number counters showing company statistics */
.stats-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 25px 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    flex-wrap: wrap;
    margin-top: 25px;
    margin-bottom: 25px;
}

.stat-item {
    text-align: center;
    color: var(--color-white);
    min-width: 140px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stats-section.visible .stat-item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stats-section.visible .stat-item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.stats-section.visible .stat-item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.stats-section.visible .stat-item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }

.stat-number {
    font-size: 36pt;
    font-weight: 800;
    display: inline;
    line-height: 1.1;
    font-family: var(--font-main);
}

.stat-plus {
    font-size: 28pt;
    font-weight: 700;
    display: inline;
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-size: 11pt;
    font-weight: 400;
    margin-top: 6px;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

@media (max-width: 600px) {
    .stats-section {
        display: grid;
        grid-template-columns: repeat(2, minmax(110px, 1fr));
        justify-items: center;
        gap: 30px;
        padding: 35px 16px;
        align-items: start;
    }

    .stat-number {
        font-size: 26pt;
    }

    .stat-plus {
        font-size: 20pt;
    }

    .stat-label {
        font-size: 10pt;
    }

    .stat-item {
        width: 100%;
        max-width: 360px;
        min-width: 0;
        margin: 0 auto;
    }
}
/*#endregion Stats Section*/

/*#region CTA Section — Call-to-action block with primary and secondary buttons */
.cta-section {
    text-align: center;
    margin-bottom: 75px;
}

.cta-section h2 {
    font-size: 24pt;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 12pt;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

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

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 13pt;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: var(--font-main);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 121, 197, 0.25);
}

.cta-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.cta-primary:hover {
    background-color: var(--color-primary-dark);
}

.cta-secondary {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.cta-secondary:hover {
    background-color: #f0f7fd;
}
/*#endregion CTA Section*/

/*#region Contact Form & Validation — Contact form layout, custom select dropdown and input validation states */
.ContactInfo,
.ContactForm {
    max-width: 70%;
    width: 100%;
    margin: auto;
    background-color: var(--color-white);
    text-align: left;
}

.ContactInfo h2,
.ContactForm h2 {
    font-size: 22pt;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--color-primary);
}

.ContactInfo p,
.ContactDetails p {
    font-size: 12pt;
    line-height: 1.6;
    margin-bottom: 10px;
}

.ContactForm form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ContactForm label {
    font-size: 14pt;
    font-weight: bold;
    color: #3d3d3d;
}

.ContactForm input,
.ContactForm textarea,
.ContactForm select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--color-input-border);
    border-radius: 5px;
    font-size: 12pt;
    height: 40px;
}

.ContactForm select {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(9pt, 2.5vw, 12pt);
}

.ContactForm select option {
    font-size: inherit;
}

.ContactForm textarea {
    min-height: 200px;
}

.ContactForm button {
    padding: 10px 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    height: 50px;
}

.ContactForm button:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 121, 197, 0.35);
}

.ContactForm button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 121, 197, 0.2);
}

/* Contact Success Popup — perfect gecentreerd en responsive */
#contactSuccessMsg {
    display: none;
    position: fixed;
    inset: 0;
    width: auto;
    height: 100vh;
    background: rgba(0,0,0,0.45);
    z-index: 10000;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contactSuccessMsg .contact-success-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    font-size: 1.2em;
    text-align: center;
    max-width: 370px;
    width: 100%;
    padding: 2em 1.5em 1.5em 1.5em;
    margin: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    #contactSuccessMsg .contact-success-box {
        padding: 1.2em 0.5em 1em 0.5em;
        font-size: 1em;
        max-width: 98vw;
    }
}

.close-success-msg {
    margin-top: 1em;
}


/* Field error: niet standaard tonen, alleen bij .show */
.field-error {
    color: #e53e3e;
    font-size: 10pt;
    margin-top: -10px;
    display: none;
    font-family: var(--font-main);
}

.field-error.show {
    display: block;
}

/* Custom Select Dropdown */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--color-input-border);
    border-radius: 5px;
    font-size: 12pt;
    height: 40px;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    box-sizing: border-box;
}

.custom-select-trigger:focus {
    outline: 1px solid var(--color-primary);
    outline-offset: -1px;
}

.custom-select-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.custom-select-arrow {
    margin-left: 8px;
    font-size: 10pt;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.custom-select.open .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: var(--color-white);
    border: 2px solid var(--color-primary);
    border-top: none;
    border-radius: 0 0 5px 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 999;
    box-sizing: border-box;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease;
}

.custom-select.open .custom-select-options {
    max-height: 250px;
    overflow-y: auto;
    opacity: 1;
}

.custom-select.open .custom-select-trigger {
    border: 2px solid var(--color-primary);
    border-bottom: none;
    border-radius: 5px 5px 0 0;
}

.custom-select-options li {
    padding: 10px;
    font-size: 12pt;
    cursor: pointer;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}

.custom-select-options li {
    transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.custom-select-options li:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding-left: 16px;
}

.custom-select-options li.selected {
    background-color: #e8f2fc;
    color: var(--color-black);
}

.custom-select-options li.selected:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Form Validation States */
.ContactForm input,
.ContactForm textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ContactForm input:focus,
.ContactForm textarea:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: -1px;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 121, 197, 0.1);
}

.ContactForm input.invalid,
.ContactForm textarea.invalid {
    border-color: #e53e3e;
    outline-color: #e53e3e;
}

.ContactForm input.valid,
.ContactForm textarea.valid {
    border-color: #38a169;
}

.field-error {
    color: #e53e3e;
    font-size: 10pt;
    margin-top: -10px;
    display: none;
    font-family: var(--font-main);
}

.field-error.show {
    display: block;
}

@media (max-width: 768px) {
    .ContactInfo,
    .ContactForm {
        max-width: 95%;
        padding: 16px;
    }
}
/*#endregion Contact Form & Validation*/

/*#region Help Page — Service list and numbered step-by-step instructions on the help page */
.help-services-list {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12pt;
}

.help-service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12pt;
    color: var(--color-text);
    padding: 6px 0;
}

.help-service-bullet {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.help-steps-title {
    font-size: 20pt;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-family: var(--font-main);
}

.help-step {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.help-step-number {
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18pt;
    font-weight: 700;
    flex-shrink: 0;
    font-family: var(--font-main);
}

.help-step p {
    font-size: 12pt;
    color: var(--color-text);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .help-services-list {
        gap: 6px;
    }

    .help-service-item {
        font-size: 12pt;
    }

    .help-step-number {
        font-size: 15pt;
    }

    .help-step p {
        font-size: 12pt;
    }

    .help-steps-title {
        font-size: 16pt;
    }
}
/*#endregion Help Page*/

/*#region Openingsuren & Open/Closed Status — Opening hours table and live open/closed status banner */
.openingsuren-tabel {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    border-collapse: separate;
    border-spacing: 0;
    font-family: var(--font-main);
    font-size: 14pt;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.openingsuren-tabel thead th {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 12px 16px;
    font-weight: 600;
    text-align: center;
}

.openingsuren-tabel thead th:last-child {
    text-align: right;
}

.openingsuren-tabel tbody td {
    padding: 10px 16px;
    color: var(--color-text);
    border-bottom: 1px solid #e8e8e8;
}

.openingsuren-tabel tbody td:last-child {
    text-align: right;
}

.openingsuren-tabel tbody tr:hover {
    background-color: #f0f7fd;
}

.openingsuren-tabel tbody tr:last-child td {
    border-bottom: none;
}

/* Open/Closed Status Banner */
.open-status-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 25px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 14pt;
    font-weight: 600;
    max-width: 250px;
    margin: 10px auto 0;
}

.open-status-banner.open {
    background-color: #e6f9ee;
    color: #1a7a3a;
}

.open-status-banner.closed {
    background-color: #fde8e8;
    color: #b91c1c;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

.status-dot.open {
    background-color: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

.status-dot.closed {
    background-color: #ef4444;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.5);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@media (max-width: 768px) {
    .openingsuren-tabel {
        font-size: 12pt;
    }

    .openingsuren-tabel thead th,
    .openingsuren-tabel tbody td {
        padding: 8px 10px;
    }
}
/*#endregion Openingsuren & Open/Closed Status*/

/*#region Map Section — Embedded Google Maps location block */
.map-section {
    max-width: 70%;
    width: 100%;
    margin: 20px auto 0;
    text-align: center;
    margin-bottom: 50px;
}

.map-section h2 {
    font-size: 22pt;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--color-primary);
    text-align: left;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .map-section {
        max-width: 95%;
    }
}
/*#endregion Map Section*/

/*#region Click to Copy — Clickable text that copies content to clipboard with tooltip feedback */
.copy-item {
    position: relative;
    cursor: pointer;
    transition: color 0.2s ease;
}

.copy-item:hover {
    color: var(--color-primary);
}

.copy-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12pt;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: var(--font-main);
    z-index: 10;
}

.copy-tooltip.show {
    opacity: 1;
}
/*#endregion Click to Copy*/

/*#region Footer — Site footer with contact info, logo and links */
footer {
        position: relative;
    background-color: #e8e8e8;
    color: #333;
    padding: 40px 20px;
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    position: relative;
    width: 100%;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    margin-bottom: 0;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

footer.visible {
    opacity: 1;
    transform: translateY(0);
}

footer img {
    width: 250px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.FooterContentBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.FooterContentLeft,
.FooterContentRight,
.FooterContentCenter {
    padding: 0 20px;
}

.FooterContentLeft {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.FooterContentLeft p,
.FooterContentRight p {
    margin: 5px 0;
    font-size: 12pt;
    line-height: 1.6;
}

.FooterContentLeft a {
    position: relative;
    display: inline-block;
}

.FooterContentLeft a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.FooterContentLeft a:hover::after {
    width: 100%;
}

.FooterContentCenter {
    flex: 0 0 auto;
    text-align: center;
}

.FooterContentRight {
    flex: 1;
    min-width: 200px;
    text-align: right;
    font-size: 14px;
}

.FooterSmallBold {
    font-size: 10pt !important;
    color: #3d3d3d;
    font-weight: bold;
    margin-top: 0.5em;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .FooterContentBox {
        flex-direction: column;
        text-align: center;
    }

    .FooterContentLeft,
    .FooterContentRight {
        text-align: center;
        padding: 0 10px;
    }
}
/*#endregion Footer*/

/*#region Back to Top — Fixed floating button that scrolls the page back to the top */
.back-to-top {
    position: fixed;
    bottom: max(30px, env(safe-area-inset-bottom));
    right: max(30px, env(safe-area-inset-right));
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    font-family: var(--font-main);
    font-size: 20pt;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
    line-height: 1;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
}
/*#endregion Back to Top*/

/*#region Cookie Consent — Bottom banner asking users to accept or decline cookies */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 30px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    padding-left: max(30px, env(safe-area-inset-left));
    padding-right: max(30px, env(safe-area-inset-right));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 9999;
    box-shadow: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    font-family: var(--font-main);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent p {
    color: #3d3d3d;
    margin: 0;
    font-size: 12pt;
    line-height: 1.5;
    flex: 1;
    min-width: 250px;
}

.cookie-consent a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-accept,
.cookie-decline {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 11pt;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    font-family: var(--font-main);
}

.cookie-accept {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.cookie-accept:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
}

.cookie-decline {
    background-color: transparent;
    color: #3d3d3d;
    border: 1px solid #555;
}

.cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}
/*#endregion Cookie Consent*/

/*#region Fade-in Animations — Scroll-triggered entrance animations (up, left, right, scale) with stagger delays */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.stagger-delay-4 { transition-delay: 0.4s; }
/*#endregion Fade-in Animations*/

/*#region Keyframe Animations — Reusable @keyframes for header slide-down, fade-up and underline grow */
@keyframes headerSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes headerFadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineGrow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*#endregion Keyframe Animations*/

/*#region Social Links — Social media icons in the footer */
.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-3px);
    background-color: var(--color-primary-dark);
}

.social-links svg {
    fill: var(--color-white);
}
/*#endregion Social Links*/

/*#region FAQ Section — Accordion-style frequently asked questions */
.faq-section {
    max-width: 70%;
    margin: 0 auto;
    padding: 0 25px;
}

.faq-section h2 {
    text-align: left;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: none;
    border: none;
    font-size: 14pt;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    font-size: 20pt;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-left: 12px;
}

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

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
    padding: 0 20px 18px;
}

.faq-answer > div {
    overflow: hidden;
}

.faq-answer p {
    font-size: 12pt;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
}

.faq-answer a {
    color: var(--color-primary);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-section {
        max-width: 100%;
        padding: 0 5px;
    }
    .faq-question {
        font-size: 12pt;
        padding: 14px 8px;
    }
    .faq-icon {
        font-size: 18pt;
    }
    .faq-answer p {
        font-size: 12pt;
    }
}
/*#endregion FAQ Section*/

/*#region Over Ons — Values grid and timeline for the about page */
.over-ons-waarden {
    margin-bottom: 50px;
    text-align: center;
    padding: 25px 20px;
}

.over-ons-waarden h2 {
    font-size: 24pt;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 40px;
}

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

.waarde-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.waarde-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-primary);
}

.waarde-icon {
    display: block;
    margin-bottom: 16px;
    line-height: 0;
}

.waarde-icon svg {
    width: 56px;
    height: 56px;
    display: inline-block;
    vertical-align: middle;
    color: var(--color-primary);
}


.waarde-item h3 {
    font-size: 14pt;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 10px;
}

.waarde-item p {
    font-size: 12pt;
    line-height: 1.5;
    color: var(--color-text);
    margin: 0;
}

.timeline-section {
    text-align: center;
    padding: 0 auto;
    margin-bottom: 25px;
}

.timeline-section h2 {
    font-size: 24pt;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.timeline-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 16px auto 50px;
    border-radius: 2px;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 0 0 47px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-primary);
    opacity: 0.18;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -46px;
    top: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px var(--color-white), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.08);
    box-shadow: 0 0 0 5px var(--color-white), 0 4px 16px var(--color-primary);
}

.timeline-dot svg {
    display: block;
}

.timeline-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 22px 26px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #e8ecf0;
    flex: 1;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    margin-left: 25px;
}

.timeline-item:hover .timeline-card {
    transform: translateY(-3px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--color-primary);
}

.timeline-year {
    font-size: 11pt;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    display: block;
}

.timeline-text {
    font-size: 11pt;
    color: var(--color-text);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 40px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        gap: 14px;
        margin-bottom: 28px;
    }

    .timeline-dot {
        left: -40px;
        width: 40px;
        height: 40px;
    }

    .timeline-dot svg {
        width: 18px;
        height: 18px;
    }

    .timeline-card {
        padding: 16px 18px;
    }
}

@media (max-width: 768px) {
    .waarden-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .waarde-item {
        padding: 20px 14px;
    }

    .waarde-icon {
        font-size: 28pt;
    }

    .waarde-item h3 {
        font-size: 12pt;
    }

    .waarde-item p {
        font-size: 12pt;
    }

    .timeline-section h2,
    .over-ons-waarden h2 {
        font-size: 20pt;
    }
}

@media (max-width: 400px) {
    .waarden-grid {
        grid-template-columns: 1fr;
    }
}

/*#endregion Over Ons*/

/*#region 404 Error Page — Layout and styling for the page-not-found error page */
.error-page {
    text-align: center;
    padding: 80px 20px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-page h1 {
    font-size: 96pt;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
    line-height: 1;
}

.error-page h2 {
    font-size: 24pt;
    color: var(--color-text);
    margin: 10px 0 20px;
}

.error-page p {
    font-size: 12pt;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.error-page .cta-button {
    margin-top: 10px;
}
/*#endregion 404 Error Page*/

/*#region Reduced Motion — Disables animations for users who prefer reduced motion (accessibility) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    html {
        scroll-behavior: auto;
    }

    .fade-in,
    .fade-in-left,
    .fade-in-right,
    .fade-in-scale {
        opacity: 1;
        transform: none;
    }

    .GeneralContent,
    .stat-item {
        opacity: 1;
        transform: none;
    }

    footer {
        opacity: 1;
        transform: none;
    }

    .section-divider {
        opacity: 1;
    }

    .page-header h1,
    .page-header p,
    .page-header::after {
        animation: none;
    }

    body.page-load {
        opacity: 1;
    }

    .HomeIntroductie {
        background-attachment: scroll;
    }
}
/*#endregion Reduced Motion*/

/*#region Safari iOS Fixes — Workarounds for Safari/iOS viewport height and scroll behavior */
@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }

    .HomeIntroductie {
        min-height: -webkit-fill-available;
    }

    .carousel-window {
        -webkit-overflow-scrolling: touch;
    }

    .reviews-window {
        -webkit-overflow-scrolling: touch;
    }

    .navbar::after {
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }
}
/*#endregion Safari iOS Fixes*/

/*#region Lightbox */
#lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: zoom-out;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#lightbox-overlay.active {
    display: flex;
    animation: lightboxFadeIn 0.25s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    cursor: default;
    animation: lightboxImgIn 0.25s ease;
}

@keyframes lightboxImgIn {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: var(--color-primary);
    border: none;
    color: var(--color-white);
    font-size: 20pt;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10001;
    line-height: 1;
    padding: 0;
    vertical-align: middle;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-img {
        max-width: 95vw;
        max-height: 80vh;
    }
    .lightbox-close {
        top: 12px;
        right: 12px;
    }
}
/*#endregion Lightbox */