/* ================================================
   INTERCONNECT — WERKEN BIJ
   ================================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --nav-bg:     #001B51;   /* donkerblauw */
    --stats-bg:   #011540;   /* iets donkerder voor contrast */
    --accent:     #A5BCE8;   /* light blue – iconen, accenten */
    --red:        #DA262E;   /* rood – CTA knoppen */
    --blue:       #A5BCE8;   /* light blue – contact knop achtergrond */
    --white:      #ffffff;
    --muted:      rgba(255, 255, 255, 0.72);
    --light-blue: #A5BCE8;   /* lichtblauw */
    --grey-blue:  #CDD4DC;   /* grijsblauw */
    --light-grey: #ECECF0;   /* lichtgrijs – sectie achtergronden */
    --sand:       #F5E8CE;   /* zandkleur – sectie achtergronden */
    --font:       'Poppins', system-ui, sans-serif;
    --max-w:      1280px;
    --nav-h:      96px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--nav-bg);
    background: #ffffff;
}

/* ── Utility ──────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Buttons ──────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
    line-height: 1;
}

/* Outline / ghost – used in hero */
.btn--ghost {
    color: var(--nav-bg);
    border-color: var(--nav-bg);
    border-width: 1px;
    background: var(--white);
}
.btn--ghost:hover {
    background: var(--nav-bg);
    color: var(--white);
}

/* Badge circle inside button */
.btn__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

/* Red pill – SOLLICITEER */
.btn--red {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    border-radius: 5px;
    padding-left: 2rem;
    padding-right: 2rem;
}
.btn--red:hover {
    background: var(--white);
    color: var(--red);
    border-color: var(--red);
    border-width: 1px;
}

.btn--red:hover .btn__badge {
    background: var(--red);
    color: var(--white);
}

.btn--darkblue {
    background: var(--nav-bg); 
    color: var(--white);
    border-color: var(--nav-bg);
    border-radius: 5px;
    padding-left: 2rem;
    padding-right: 2rem;
}
.btn--darkblue:hover {
    background: var(--white);
    color: var(--nav-bg);
    border-color: var(--nav-bg);
    border-width: 1px;
}

/* Light blue – CONTACT in nav */
.btn--contact {
    background: rgba(210, 221, 243, 0.5);
    color: var(--nav-bg);
    border-color: rgba(210, 221, 243, 0.5);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.65rem 1.5rem;
    flex-shrink: 0;
    margin-left: 1.5rem;
    border-radius: 4px;
}

.btn--contact svg path {
    fill: #001B51;
}
.btn--contact:hover {
    background: #8aaad8;
    border-color: #8aaad8;
    color: var(--nav-bg);
}

/* ── Header / Navbar ──────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 27, 81, 0.1);
    border-bottom: 1px solid var(--grey-blue);
}

.nav {
    height: var(--nav-h);
    font-weight: 500;
}

.nav__inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0;
}

/* ── Logo ─────────────────────────────────────── */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: auto;
}

.logo__icon {
    width: 42px;
    height: 42px;
}

.logo__img {
    height: 40px;
    width: auto;
    display: block;
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo__name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--nav-bg);
    letter-spacing: 0.04em;
}

.logo__sub {
    font-size: 0.52rem;
    font-weight: 500;
    color: rgba(0, 27, 81, 0.55);
    letter-spacing: 0.14em;
}

/* ── Nav menu ─────────────────────────────────── */
.nav__menu {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    list-style: none;
    margin: 0 1rem;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.85rem;
    color: var(--nav-bg);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 4px;
    white-space: nowrap;
    transition: background 0.15s;
}

.nav__link:hover,
.nav__link:focus-visible {
    background: rgba(0, 27, 81, 0.07);
    outline: none;
}

.nav__link svg {
    flex-shrink: 0;
    transition: transform 0.2s;
}

/* ── Dropdowns ────────────────────────────────── */
.dropdown {
    position: relative;
}

.dropdown__panel {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    min-width: 210px;
    padding: 0.5rem 0;
    z-index: 200;
    transform: translateY(-4px);
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}

.dropdown:hover .dropdown__panel,
.dropdown:focus-within .dropdown__panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown:hover .nav__link svg,
.dropdown:focus-within .nav__link svg {
    transform: rotate(180deg);
}

.dropdown__panel a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--nav-bg);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.13s;
}

.dropdown__panel a:hover {
    background: #e6edf8;
    color: var(--nav-bg);
}

/* ── Burger (mobile) ──────────────────────────── */
.nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--nav-bg);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────── */
.hero {
    position: relative;
    margin-top: var(--nav-h);
    min-height: calc(100vh - var(--nav-h) - 210px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            rgba(125, 160, 250, 0.1),
            rgba(125, 160, 250, 0.1)
        ),
        linear-gradient(to right,
            rgba(255, 255, 255, 1)    0%,
            rgba(255, 255, 255, 0.85) 40%,
            rgba(255, 255, 255, 0.2)  65%,
            rgba(255, 255, 255, 0)    82%
        ),
        url('assets/img/hero.png') center 25% / cover no-repeat;
    /* fallback when image is missing: */
    background-color: #011030;
}

.hero__lines {
    position: absolute;
    right: calc(100%);
    top: 0;
    height: 100%;
    width: auto;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    width: 100%;
}

.hero__content {
    max-width: 500px;
    flex-shrink: 0;
}

.hero__title {
    font-size: clamp(1.5rem, 2.4vw, 2.25rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--nav-bg);
    margin-bottom: 1.25rem;
    text-align: justify;
    text-align-last: justify;
}

.hero__desc {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.7;
    color: var(--nav-bg);
    margin-bottom: 2.25rem;
    text-align: justify;
}

.hero__btns {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1rem;
}

/* ── Widget card ──────────────────────────────── */
.hero__widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.widget {
    background: var(--white);
    border-radius: 14px;
    width: 320px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: var(--nav-bg);
    overflow: hidden;
}

.widget__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--nav-bg);
}

.widget__avatar-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.widget__avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.6);
    transform-origin: center 35%;
}

.widget__info {
    flex: 1;
    min-width: 0;
}

.widget__name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    margin: 0;
}

.widget__role {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0.1rem 0 0;
}

.widget__restore {
    display: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--nav-bg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    padding: 0;
    overflow: hidden;
    margin-left: auto;
    transition: transform 0.2s;
}

.widget__restore img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget__restore:hover { transform: scale(1.08); }

.hero__widget.is-minimized .widget { display: none; }
.hero__widget.is-minimized .widget__restore { display: block; }

.widget__close {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    transition: color 0.15s, background 0.15s;
}

.widget__close:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.widget__body {
    padding: 1.1rem 1.25rem 0.75rem;
}

.widget__message {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
}

.widget__msg-avatar-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.widget__msg-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.6);
    transform-origin: center 35%;
}

.widget__bubble {
    background: #eef2fa;
    border-radius: 0 10px 10px 10px;
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
    color: var(--nav-bg);
    line-height: 1.55;
}

.widget__time {
    display: block;
    font-size: 0.62rem;
    color: #aaa;
    margin-top: 0.35rem;
    text-align: right;
}

.widget__quick {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.widget__quick-btn {
    background: var(--white);
    border: 1.5px solid #cdd4e0;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-family: var(--font);
    font-size: 0.78rem;
    color: var(--nav-bg);
    cursor: pointer;
    text-align: left;
    line-height: 1.4;
    transition: background 0.15s, border-color 0.15s;
    width: 100%;
}

.widget__quick-btn:hover {
    background: #e8eef8;
    border-color: var(--accent);
}

.widget__input-row {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem 1.1rem;
    border-top: 1px solid var(--light-grey);
}

.widget__input {
    flex: 1;
    padding: 0.6rem 1rem;
    border: 1.5px solid var(--grey-blue);
    border-radius: 50px;
    font-family: var(--font);
    font-size: 0.82rem;
    color: var(--nav-bg);
    outline: none;
    transition: border-color 0.2s;
}

.widget__input:focus {
    border-color: var(--light-blue);
}

.widget__input::placeholder {
    color: #bbb;
}

.widget__send {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--red);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.2s;
}

.widget__send:hover {
    background: #b01e25;
}

/* ── Stats bar ────────────────────────────────── */
.statsbar {
    background: var(--stats-bg);
    padding: 1.4rem 0;
}

.statsbar__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.5rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat:last-child {
    border-right: none;
}

.stat__top {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.stat__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: block;
}

.stat__number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin: 0;
}

.stat__label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.3;
    margin: 0;
}

/* ── Uitgelichte Vacatures ────────────────────── */
.vacatures {
    background: var(--light-grey);
    padding: 5rem 0 4rem;
}

.vacatures__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.vacatures__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.section-title {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: var(--nav-bg);
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.vacatures .section-title {
    font-weight: 600;
}

.events .section-title {
    font-weight: 600;
}

.testimonials .section-title {
    font-weight: 600;
}


.events__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.vacatures__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ── Job card ─────────────────────────────────── */
.job-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}

.job-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    transform: scale(1.03);
    background: #f7f8fc;
}

.job-card:hover .job-card__cta {
    transform: translate(7px, 7px);
}

.job-card__img {
    height: 185px;
    overflow: hidden;
    background: var(--grey-blue);
}

.job-card__img--fallback {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--grey-blue) 100%);
}

.job-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vacatures__grid .job-card:nth-child(3) .job-card__img img {
    transform: scale(1.1);
    transform-origin: center 45%;
}

.job-card__body {
    padding: 1.35rem 1.35rem 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

/* Department badge */
.job-card__dept {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.28rem 0.65rem;
    border-radius: 5px;
    margin-bottom: 0.6rem;
    width: fit-content;
}

.dept--marketing {
    background: var(--sand);
    color: var(--nav-bg);
}

.dept--it {
    background: var(--sand);
    color: var(--nav-bg);
}

.job-card__title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--nav-bg);
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Detail rows */
.job-card__details {
    list-style: none;
    display: flex;
    padding-left: 0;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
    flex: 1;
}

.job-card__details li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: #555;
    font-weight: 500;
}

.job-card__details li svg,
.job-card__details li img {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Arrow CTA */
.job-card__cta {
    align-self: flex-end;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--red);
    flex-shrink: 0;
    transition: transform 0.2s;
    margin-right: 0.5rem;
    margin-bottom: 0.25rem;
}


/* ── Ontmoet Ons Live (Events) ────────────────── */
.events {
    background: var(--white);
    padding: 5rem 0 4rem;
}

.events__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.events__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* ── Event card ───────────────────────────────── */
.event-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--nav-bg);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.event-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.event-card__bg {
    height: 200px;
    position: relative;
    background: linear-gradient(135deg, #0a2565 0%, #001B51 100%);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.event-card__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(0, 27, 81, 0.2) 0%,
        rgba(0, 27, 81, 0.5) 100%
    );
}

.event-card__date {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 1;
    background: var(--white);
    border-radius: 8px;
    padding: 0.4rem 0.65rem;
    text-align: center;
    line-height: 1.1;
    min-width: 44px;
}

.event-card__day {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--nav-bg);
    line-height: 1;
}

.event-card__month {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.08em;
    margin-top: 0.15rem;
}

.event-card__body {
    padding: 0.9rem 1.4rem 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    gap: 0.6rem;
}

.event-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 0.65rem;
    margin-top: 0.65rem;
    margin-left: 0.2rem;
}

.event-card__desc {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.55;
    text-align: justify;
    margin-left: 0.2rem;
}

.event-card__cta {
    align-self: flex-end;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.2s ease;
    margin-right: 0.5rem;
    margin-bottom: 1.25rem;
}

.event-card:hover .event-card__cta {
    transform: translate(6px, 6px);
}

/* ── Testimonials ─────────────────────────────── */
.testimonials {
    background: rgba(236, 228, 211, 0.4);
    padding: 5rem 0 4.5rem;
}

.testimonials__heading {
    margin-bottom: 4rem;
}

.testimonials__inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

/* Slider — only active slide is shown */
.testimonials__slider {
    position: relative;
    min-height: 180px;
}

.testimonial {
    display: none;
    animation: testimonialIn 0.35s ease;
}

.testimonial.is-active {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 1.5rem;
    text-align: left;
}

@keyframes testimonialIn {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: translateX(0); }
}

.testimonial__mark {
    display: block;
    font-size: 5rem;
    line-height: 0.6;
    color: var(--accent);
    font-family: Georgia, serif;
    user-select: none;
    grid-column: 1;
    grid-row: 1 / 3;
    padding-top: 0.5rem;
}

.testimonial__text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--nav-bg);
    line-height: 1.6;
    font-style: normal;
    margin-bottom: 1.5rem;
    grid-column: 2;
    grid-row: 1;
}

.testimonial__author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.875rem;
    grid-column: 2;
    grid-row: 2;
}

.testimonial__avatar-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--grey-blue);
}

.testimonial__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    flex-shrink: 0;
    border: 2px solid var(--grey-blue);
}

.testimonial__avatar--zoom {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    border: none !important;
    object-fit: cover !important;
}

.testimonial__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--nav-bg);
}

.testimonial__role {
    font-size: 0.78rem;
    color: #888;
    margin-top: 0.1rem;
}

/* Footer row */
.testimonials__inner {
    position: relative;
    overflow: visible;
}

.testimonials__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center; /* Dit centreert de inhoud horizontaal */
    margin-top: 2rem;
    width: 100%;
}

.testimonials__controls__spacer {
    display: none; /* Verborgen, want we hebben hem niet meer nodig */
}

.testimonials__controls__end {
    display: flex;
    justify-content: center;
}

.testimonials__nav-center {
    position: absolute;
    top: 48%;
    left: -13rem;
    right: -13rem;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.testimonials__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--nav-bg);
    background: transparent;
    color: var(--nav-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    pointer-events: auto;
}

.testimonials__btn:hover {
    background: var(--nav-bg);
    border-color: var(--nav-bg);
    color: var(--white);
}

/* ── Gallery ──────────────────────────────────── */
.gallery {
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
    padding: 5rem 0 1rem;
}

.gallery__top {
    padding-top: 0;
    padding-bottom: 1.5rem;
}

.gallery__title {
    color: var(--nav-bg);
    font-weight: 600;
}

.gallery__carousel {
    overflow: hidden;
    width: 100%;
    padding: 0 2rem;
}

.gallery__track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 22px;
    width: max-content;
    animation: none !important;
}

.gallery__track.is-running {
    animation: gallery-scroll 55s linear infinite !important;
}

@keyframes gallery-scroll {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Blok: 2 rijen met wisselende breedtes */
.gallery__block {
    display: flex;
    flex-direction: column;
    gap: 22px;
    flex-shrink: 0;
}

.gallery__block-row {
    display: flex;
    flex-direction: row;
    gap: 22px;
}

.gallery__item--block-narrow { width: 160px; }
.gallery__item--block-wide   { width: 280px; }
.gallery__item--block-std    { width: 220px; }

/* Kolomgroepen */
.gallery__col {
    display: flex;
    flex-direction: column;
    gap: 22px;
    flex-shrink: 0;
}

.gallery__col--narrow  { width: 160px; }
.gallery__col--medium  { width: 330px; }
.gallery__col--standard { width: 220px; }
.gallery__col--wide-tall { width: 440px; }

/* Speciale groep: foto8 boven, foto7+foto13 onder */
.gallery__col--group {
    display: flex;
    flex-direction: column;
    gap: 22px;
    flex-shrink: 0;
    width: calc(2 * 220px + 22px);
}

.gallery__col--group-row {
    display: flex;
    flex-direction: row;
    gap: 22px;
}

.gallery__col--group-row .gallery__item {
    width: 220px;
}

.gallery__item--group-top {
    width: 100%;
}

/* Foto items */
.gallery__item {
    overflow: hidden;
    border-radius: 0;
    background: #c8d4e8;
    position: relative;
    height: 185px;
    width: 100%;
}

.gallery__col--wide-tall .gallery__item {
    height: calc(2 * 185px + 22px);
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(125, 160, 250, 0.1);
    pointer-events: none;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.92);
    transition: filter 0.3s ease;
}

.gallery__item:hover img {
    filter: brightness(1);
}

.gallery__item img[src=""],
.gallery__item img:not([src]) {
    display: none;
}



/* ── Footer ───────────────────────────────────── */
.footer {
    background: var(--nav-bg);
}

/* Footer logo overrides (dark background) */
.footer .logo__name {
    color: var(--white);
}
.footer .logo__sub {
    color: var(--muted);
}

/* Newsletter CTA */
.footer__cta {
    background: var(--white);
    border-bottom: 1px solid var(--grey-blue);
    padding: 2.5rem 0;
}

.footer__cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer__subscribe-text {
    color: var(--nav-bg);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
    margin-left: 14rem;
}

.footer__jobalert {
    color: var(--red);
    font-weight: 700;
}

.footer__email-form {
    display: flex;
    align-items: center;
    background: rgba(210, 221, 243, 0.4);
    border-radius: 5px;
    overflow: hidden;
    min-width: 260px;
}

.footer__email-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 0.75rem 1.25rem;
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--nav-bg);
}

.footer__email-input::placeholder {
    color: rgba(0, 27, 81, 0.45);
}

.footer__email-btn {
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    color: var(--red);
    display: flex;
    align-items: center;
    transition: background 0.15s;
}

.footer__email-btn:hover {
    background: rgba(0, 27, 81, 0.06);
}

/* Footer columns */
.footer__main {
    padding: 3rem 0 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer__col-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.footer__links {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer__links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: color 0.15s;
}

.footer__links a:hover {
    color: var(--white);
}

.footer__col--address:hover .footer__links--address a {
    color: var(--white);
}

/* Route link opmaak */
.footer__route-link {
    display: inline-block;
    margin-top: 0.6rem;
    color: var(--muted) !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em;
}

.footer__route-link:hover {
    color: var(--white) !important;
}

/* Social icons */
.footer__social {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.18s;
}

.footer__social-link:hover {
    opacity: 1;
}

/* Copyright bar */
.footer__bottom {
    padding: 1.25rem 0;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__copy a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.15s;
}

.footer__copy a:hover {
    color: var(--white);
}

/* ── Responsive ───────────────────────────────── */

@media (max-width: 1100px) {
    /* Hero: widget iets kleiner */
    .widget { width: 270px; }

    /* Gallery: kleinere kolommen */
    .gallery__col--wide-tall { width: 360px; }
    .gallery__col--medium    { width: 280px; }
    .gallery__item--block-wide { width: 230px; }
    .gallery__col--group { width: calc(2 * 180px + 22px); }
    .gallery__col--group-row .gallery__item { width: 180px; }
}

@media (max-width: 900px) {
    /* Stats */
    .statsbar__inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat {
        border-right: none;
        padding: 0.75rem 1rem;
    }
    .stat:nth-child(1),
    .stat:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    /* Vacatures */
    .vacatures__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Events */
    .events__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Gallery: kleinere rijen */
    .gallery__track {
        height: calc(2 * 150px + 16px);
        gap: 16px;
    }
    .gallery__item { height: 150px; }
    .gallery__col--wide-tall .gallery__item { height: calc(2 * 150px + 16px); }
    .gallery__col { gap: 16px; }
    .gallery__block { gap: 16px; }
    .gallery__block-row { gap: 16px; }
    .gallery__col--group { gap: 16px; width: calc(2 * 160px + 16px); }
    .gallery__col--group-row .gallery__item { width: 160px; }
    .gallery__item--block-narrow { width: 130px; }
    .gallery__item--block-wide   { width: 190px; }
    .gallery__item--block-std    { width: 160px; }
    .gallery__col--narrow        { width: 130px; }
    .gallery__col--medium        { width: 240px; }
    .gallery__col--standard      { width: 160px; }
    .gallery__col--wide-tall     { width: 320px; }

    /* Testimonials */
    .testimonials__inner { max-width: 100%; }
}

@media (max-width: 768px) {
    /* Navigatie */
    .nav__burger { display: flex; }
    .btn--contact { display: none; }

    .nav__menu {
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0; bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid var(--grey-blue);
    }
    .nav__menu.is-open { transform: translateX(0); }

    .nav__link {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--light-grey);
        border-radius: 0;
        color: var(--nav-bg);
    }

    .dropdown__panel {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        background: var(--light-grey);
        border-radius: 4px;
        padding: 0.25rem 0;
        margin: 0.25rem 0 0.5rem 1rem;
        display: none;
    }
    .dropdown.is-open .dropdown__panel { display: block; }
    .dropdown__panel a {
        color: var(--nav-bg);
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    .dropdown__panel a:hover {
        background: var(--grey-blue);
        color: var(--nav-bg);
    }

    /* Hero */
    .hero__title { font-size: 1.7rem; }
    .hero__lines { display: none; }
    .hero__inner { flex-direction: column; justify-content: center; }
    .hero__content { max-width: 100%; }
    .hero__widget { display: none; }

    /* Stats */
    .statsbar__inner { grid-template-columns: repeat(2, 1fr); }

    /* Vacatures */
    .vacatures__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .vacatures__header, .events__header {
        flex-direction: column;
        align-items: center;
    }
    .vacatures__footer, .events__footer, .testimonials__section-footer {
        justify-content: center;
    }

    /* Events */
    .events__grid { grid-template-columns: 1fr; }

    /* Testimonials */
    .testimonials__inner { max-width: 100%; }
    .testimonials__controls { flex-direction: column; gap: 1.5rem; align-items: center; }
    .testimonials__controls__spacer { display: none; }
    .testimonials__controls__end { flex: unset; }
    .testimonial.is-active {
        grid-template-columns: auto 1fr;
    }

    /* Gallery: 1 rij zichtbaar, horizontaal scrollbaar */
    .gallery__carousel { padding: 0 1rem; overflow-x: auto; }
    .gallery__track {
        height: 200px;
        animation: none;
    }
    .gallery__item { height: 200px; }
    .gallery__col--wide-tall .gallery__item { height: 200px; }
    .gallery__block { height: 200px; }
    .gallery__block-row:last-child { display: none; }
    .gallery__item--block-narrow { width: 120px; }
    .gallery__item--block-wide   { width: 220px; }
    .gallery__col--narrow        { width: 120px; }
    .gallery__col--medium        { width: 220px; }
    .gallery__col--standard      { width: 180px; }
    .gallery__col--wide-tall     { width: 280px; }
    .gallery__col--group { width: auto; }

    /* Footer */
    .footer__cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .footer__subscribe-text { margin-left: 0; }
    .footer__email-form { width: 100%; }
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    /* Hero */
    .hero__btns {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Stats */
    .statsbar__inner { grid-template-columns: 1fr; }
    .stat { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
    .stat:last-child { border-bottom: none; }

    /* Vacatures */
    .vacatures__grid { grid-template-columns: 1fr; }

    /* Events */
    .events__grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer__grid { grid-template-columns: 1fr; }

    /* Section titles */
    .section-title { font-size: 1.4rem; }
}

/* ── Sollicitatieprocedure popup ────────────────── */



.proc-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 27, 81, 0.65);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.proc-overlay.is-open {
    display: flex;
}

.proc-modal {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 860px;
    padding: 2rem 2rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.proc-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.proc-modal__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--nav-bg);
    margin-bottom: 0.4rem;
}

.proc-modal__subtitle {
    font-size: 0.88rem;
    color: var(--nav-bg);
    line-height: 1.6;
}

.proc-modal__close {
    background: none;
    border: 1.5px solid var(--nav-bg);
    cursor: pointer;
    color: var(--nav-bg);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.proc-modal__close:hover {
    background: var(--nav-bg);
    color: var(--white);
}

.proc-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.proc-lines {
    position: absolute;
    top: 30px; /* center of 60px squares */
    left: 30px; /* center of first square */
    right: 30px; /* center of last square */
    height: 2px;
    background: linear-gradient(to right, #001B51, #DA262E);
    z-index: 0;
    pointer-events: none;
}

.proc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.proc-step__circle {
    width: 60px;
    height: 60px;
    background: var(--nav-bg);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.proc-step__circle--last { background: var(--red); }

.proc-step__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #eef1f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    flex-shrink: 0;
}

.proc-step__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.proc-step__icon--last { background: #fde8e8; }

.proc-step__label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--nav-bg);
    text-align: center;
    max-width: 80px;
    line-height: 1.3;
}

.proc-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--light-grey);
}

/* Styling voor de iconen in de donkere vierkantjes */
.proc-step__circle img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    /* Dit filter maakt donkere/zwarte iconen helder wit zodat ze zichtbaar zijn op de donkere achtergrond */
    filter: invert(1) brightness(100); 
}


.proc-footer__text {
    font-size: 0.82rem;
    color: var(--nav-bg);
    line-height: 1.5;
}

@media (max-width: 560px) {
    .proc-lines { display: none; }

    .proc-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .proc-step {
        flex-direction: row;
        gap: 1rem;
    }

    .proc-step__circle {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        flex-shrink: 0;
        clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
    }

    .proc-step__icon {
        display: none;
    }

    .proc-step__label {
        font-size: 0.85rem;
        text-align: left;
        max-width: none;
    }
}

/* ================================================
   HOEKEN 90 GRADEN (VERWIJDER BORDER-RADIUS)
   ================================================ */

.btn,
.btn--red,
.btn--contact,
.btn--darkblue,
.job-card,
.job-card__dept,
.event-card,
.event-card__date,
.dropdown__panel,
.footer__email-form,
.widget,
.widget__quick-btn,
.widget__input,
.proc-modal {
    border-radius: 0 !important;
}

/* ================================================
   MOBIELE WEERGAVE: CONTACTKNOP & CHAT & TESTIMONIALS PIJLTJES
   ================================================ */

/* Standaard (Desktop): Verberg de contact-link in het menu */
.mobile-only-contact {
    display: none;
}

@media (max-width: 992px) {
    /* --- 1. Header knop verbergen, Menu link tonen --- */
    .nav__inner > .btn--contact {
        display: none !important; /* Verbergt de losse knop bovenaan */
    }

    .mobile-only-contact {
        display: block; /* Toont het extra item in het hamburgermenu */
    }

    /* --- 2. Chat Wrapper tonen (open/dicht functie blijft intact) --- */
    .hero__widget {
        display: block !important; 
        bottom: 15px;
        right: 15px;
    }

    /* Zorgt dat een open chatvenster niet buiten beeld valt op smalle telefoons */
    .widget {
        max-width: calc(100vw - 2rem);
    }

    /* --- 3. Hero Tekst perfect leesbaar maken (Moderne Card lay-out) --- */
    .hero__content {
        background-color: rgba(255, 255, 255, 0.92);  /* Vrijwel wit, foto schemert héél zacht door */
        padding: 2rem 1.5rem;                         /* Zorgt voor mooie ademruimte om de tekst */
        border-radius: 12px;                          /* Professionele afgeronde hoeken */
        box-shadow: 0 8px 24px rgba(0, 10, 40, 0.08); /* Subtiele schaduw om het 'los' te trekken van de foto */
        margin-top: 4rem;                             /* Duwt het vlak wat naar beneden zodat gezichten zichtbaar blijven */
        margin-bottom: 2rem;
        position: relative; 
        z-index: 2;
    }

    /* --- 4. Fix voor de verkeerde uitlijning / rand aan de zijkant --- */
    .hero__inner {
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow-x: hidden; /* Voorkomt dat de pagina breder wordt dan je scherm */
    }
}

@media (max-width: 768px) {
    /* --- 5. Pijltjes Testimonials centreren --- */
    .testimonials__nav-center {
        position: static !important; 
        transform: none !important;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
}