/* Algemene stijlen */
:root {
    /* Basisstructuur kleuren */
    --primary: #c22303;
    --primary-dark: #a01d02;
    --secondary: #19323c;
    --secondary-light: #264450;
    --complement: #f7f3e8;
    --dark: #333;
    --light: #f8f9fa;
    --text: #444;
    --border: #e9ecef;
    --shadow: rgba(0, 0, 0, 0.1);
    
    /* ITK huisstijl kleuren */
    --primary-color: #c22303;
    --secondary-color: #19323c;
    --complement-color: #f7f3e8;

    /* RGB versies voor rgba() */
    --primary-rgb: 194, 35, 3;
    --secondary-rgb: 25, 50, 60;
    --complement-rgb: 247, 243, 232;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    text-rendering: optimizeSpeed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 0.5em;
    color: var(--dark);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Verbeter consistentie in hover-effecten */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

section {
    padding: 100px 0;
    will-change: transform; /* Optimalisatie voor scroll performance */
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: var(--secondary);
}

.section-heading h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--complement-color);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid var(--primary-color);
    /* Verbeter klik-target voor mobiel */
    touch-action: manipulation;
}

/* Consistentie in knoppen */
.btn:hover {
    background-color: var(--primary-dark);
    color: var(--complement-color);
    border-color: var(--primary-dark);
}

.btn-light {
    background-color: var(--complement-color);
    color: var(--secondary-color);
    border-color: var(--complement-color);
}

.btn-light:hover {
    background-color: var(--complement-color);
    color: var(--primary-color);
    border-color: var(--complement-color);
}

.btn-submit {
    width: 100%;
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--complement-color);
}

/* Header & Navigatie */
#header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); /* Safari ondersteuning */
    transition: background-color 0.3s ease, padding 0.3s ease;
    padding: 5px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    will-change: transform, opacity; /* Optimalisatie voor scroll effect */
}

#header.scrolled {
    background-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 5px 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

#header.scrolled .logo-img {
    height: 65px;
    filter: brightness(0) invert(1); /* Maakt het logo wit bij scrollen */
}

#header.scrolled .nav-links a,
#header.scrolled .dropdown-trigger {
    color: var(--complement-color);
    text-shadow: none;
}

#header.scrolled .nav-links a:hover,
#header.scrolled .dropdown-trigger:hover {
    color: var(--complement-color); /* Verbeterde contrast voor hover op donkere achtergrond */
    opacity: 0.9;
}

#header.scrolled .nav-links a::after {
    background-color: var(--complement-color); /* Onderlijn kleur aangepast voor betere zichtbaarheid */
}

#header.scrolled .burger div {
    background-color: var(--complement-color); /* Lijnen wit op donkere achtergrond */
    box-shadow: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 90px;
    transition: height 0.3s ease, filter 0.3s ease;
    filter: none; /* Laat het logo de originele kleur behouden */
    transform: translateZ(0); /* Hardware acceleration voor betere animaties */
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: baseline;
}

.nav-links li {
    margin-left: 30px;
    vertical-align: baseline;
}

/* Nav-links aanpassen voor doorzichtige header */
.nav-links a, 
.dropdown-trigger {
    color: var(--complement-color); /* Witte tekst op doorzichtige achtergrond */
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9); /* Tekstschaduw voor betere leesbaarheid */
    display: inline-block;
}

.nav-links a:hover,
.dropdown-trigger:hover {
    color: var(--primary-color);
}

/* Nav-links hovers aanpassen naar nieuwe kleuren */
.nav-links a::after,
.dropdown-trigger::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    will-change: width; /* Optimalisatie voor hover animatie */
}

.nav-links a:hover::after,
.dropdown-trigger:hover::after {
    width: 100%;
}

/* Dropdown Menu Styling */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

/* Verwijder underline voor dropdown trigger */
.dropdown-trigger::after {
    display: none;
}

.dropdown-icon {
    font-size: 0.7em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    /* Herstel naar oorspronkelijke waarden, met toevoeging list-style & padding-left */
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 10px 0; /* Oorspronkelijke padding top/bottom */
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 100;
    list-style: none; /* Verwijder standaard list bullets */
    padding-left: 0; /* Verwijder standaard browser padding */
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--primary-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    /* Herstel naar oorspronkelijke waarden, met toevoeging list-style-type */
    margin: 0;
    padding: 0;
    list-style-type: none; /* Zekerheidshalve ook hier verwijderen */
}

.dropdown-menu a {
    color: var(--complement-color) !important;
    padding: 12px 20px;
    display: block;
    text-shadow: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--complement-color) !important;
}

.dropdown-menu a::after {
    display: none;
}

/* CTA Button */
.cta-button {
    margin-left: 20px;
}

.btn-call {
    background-color: var(--primary-color);
    color: var(--complement-color) !important;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.3);
    transition: all 0.3s ease !important;
    text-shadow: none !important;
}

.btn-call i {
    font-size: 0.9em;
}

.btn-call:hover {
    background-color: var(--primary-dark);
    color: var(--complement-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.4);
}

.btn-call::after {
    display: none !important;
}

/* CTA button in scrolled header */
#header.scrolled .btn-call {
    background-color: var(--complement-color);
    color: var(--primary-color) !important;
}

#header.scrolled .btn-call:hover {
    background-color: var(--light);
    color: var(--primary-color) !important;
}

/* Burger menu op doorzichtige header */
.burger {
    display: none;
    cursor: pointer;
    z-index: 1001; /* Hogere z-index zodat het boven het menu blijft */
    width: 40px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.burger div {
    width: 30px;
    height: 3px;
    background-color: var(--complement-color); /* Start wit */
    margin: 4px 0;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    will-change: transform, opacity; /* Optimalisatie voor menu animatie */
}

/* Burger menu animatie */
.toggle .line1 {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--complement-color);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--complement-color);
}

/* Hero Sectie */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/itkhero_compressed.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--text-light);
    overflow: hidden;
    transition: background-image 0.5s ease-in-out;
}

/* Pseudo-element voor de hoge resolutie afbeelding en transitie */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Hoge resolutie afbeelding + gradient */
    background: linear-gradient(rgba(194, 35, 3, 0.2), rgba(0, 0, 0, 0.5)), url('../images/itkhero.jpg'); 
    background-size: cover;
    background-position: center;
    opacity: 0; /* Start onzichtbaar */
    transition: opacity 0.8s ease-in-out; /* Vloeiende fade-in transitie */
    z-index: 0; /* Achter de content, maar boven de initiële achtergrond */
}

/* Klasse die wordt toegevoegd als hoge resolutie afbeelding geladen is */
.hero.hero-background-loaded::after {
    opacity: 1; /* Maak het pseudo-element zichtbaar */
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    position: relative; /* Zorg dat container boven ::after komt */
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    text-align: left;
    position: relative; /* Zorg dat content boven ::after komt */
    z-index: 2; /* Z-index was al 2, dat is prima */
    backdrop-filter: blur(2px);
}

.hero-content-inner {
    background: linear-gradient(135deg, rgba(194, 35, 3, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-left: 4px solid rgba(194, 35, 3, 0.8);
}

.hero h1 {
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.hero .btn {
    box-shadow: 0 4px 12px rgba(194, 35, 3, 0.3);
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(194, 35, 3, 0.4);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.scroll-down a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--primary-color);
    color: var(--complement-color);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-size: 20px;
    text-align: center;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-down a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    animation-play-state: paused;
}

/* Bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Over ons Sectie */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    box-shadow: 0 10px 30px var(--shadow);
    border-radius: 10px;
    overflow: hidden;
    transform: translateZ(0); /* Force GPU rendering voor soepelere hover effecten */
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    will-change: transform; /* Optimalisatie voor hover animatie */
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Kenmerken Sectie */
.features {
    background-color: var(--light);
}

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

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow; /* Optimalisatie voor hover animatie */
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow);
    border-bottom: 3px solid var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color); /* Consistentie in kleurgebruik */
    margin-bottom: 20px;
}

.feature-icon i {
    color: var(--primary-color); /* Icoon zelf gebruikt --primary-color */
}

/* Diensten Sectie */
.services-grid {
    display: grid;
    gap: 30px;
}

.services-grid-4 {
    /* Standaard 2 kolommen */
    grid-template-columns: repeat(2, 1fr);
}

.service-card {
    background-color: var(--light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Zorgt dat kaarten even hoog zijn in grid */
    display: flex;
    flex-direction: column;
    will-change: transform, box-shadow; /* Optimalisatie voor hover animatie */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow);
    border-left: 3px solid var(--primary-color); /* Consistent hover effect */
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color); /* Verander naar primary-color (rood) */
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p:first-of-type { /* Stijl specifiek voor de eerste paragraaf */
    margin-bottom: 15px;
    font-weight: 500; /* Iets meer nadruk */
}

.service-card ul {
    padding-left: 20px;
    margin-top: auto; /* Duwt de lijst naar beneden als er ruimte is */
    margin-bottom: 0;
}

.service-card li {
    margin-bottom: 10px;
}

.service-card li:last-child {
    margin-bottom: 0;
}

/* Responsive voor diensten */
@media (max-width: 992px) {
    .services-grid-4 {
        /* 1 kolom op kleinere schermen */
        grid-template-columns: 1fr;
    }
}

/* Projecten Carousel Sectie */
.projects {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.projects .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.project-card {
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
    height: 100%;
}

.project-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 20px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.project-caption {
    color: white;
}

.project-caption h3 {
    margin: 0 0 5px;
    font-weight: 600;
}

.project-caption p {
    margin: 0;
    font-size: 0.9rem;
}

.project-image:hover img {
    transform: scale(1.05);
}

/* Swiper Navigation Buttons */
.projects .swiper-button-prev,
.projects .swiper-button-next {
    color: var(--complement-color); /* Witte pijl */
    width: 44px;
    height: 44px;
    background-color: var(--primary-color); /* Rode achtergrond */
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease;
    z-index: 10; /* Verhoogde z-index om te zorgen dat ze boven andere elementen komen */
    display: flex; /* Nodig voor het centreren van de Font Awesome iconen */
    align-items: center;
    justify-content: center;
}

.projects .swiper-button-prev:hover,
.projects .swiper-button-next:hover {
    background-color: #fff; /* Witte achtergrond bij hover */
    color: var(--primary-color); /* Rode pijl bij hover */
}

/* Verberg de standaard Swiper pijlen ::after pseudo-elementen */
.projects .swiper-button-prev::after,
.projects .swiper-button-next::after {
    display: none;
}

/* Font Awesome pijlen */
.projects .swiper-button-prev i,
.projects .swiper-button-next i {
    font-size: 18px;
    color: inherit;
}

/* Position adjustment if needed */
.projects .swiper-button-prev {
    left: 10px; /* Iets meer naar binnen geplaatst */
}

.projects .swiper-button-next {
    right: 10px; /* Iets meer naar binnen geplaatst */
}

/* Swiper Pagination Bullets */
.projects .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    opacity: 0.7;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.projects .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}

.projects .swiper-pagination {
    position: static;
    margin-top: 30px;
}

/* Financiën Sectie - Nieuwe Step Cards layout */
.financials {
    background-color: var(--light);
}

.finance-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.finance-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.finance-step {
    display: flex;
    background: linear-gradient(to right, var(--primary-color) 30%, var(--complement-color) 30%);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.finance-step-number {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    color: var(--complement-color);
    text-align: center;
}

.finance-step-number h3 {
    color: var(--complement-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.finance-step-number .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    height: 60px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.finance-step-content {
    flex: 0 0 70%;
    padding: 30px;
    background-color: var(--complement-color);
}

.finance-step-content p {
    margin-bottom: 10px;
    overflow-wrap: break-word;
}

.finance-step-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .finance-step {
        flex-direction: column;
        background: var(--complement-color);
    }
    
    .finance-step-number {
        flex: auto;
        padding: 20px;
        background-color: var(--primary-color);
        flex-direction: row;
        gap: 15px;
    }
    
    .finance-step-number h3 {
        margin-bottom: 0;
    }
    
    .finance-step-number .icon {
        margin-bottom: 0;
    }
    
    .finance-step-content {
        flex: auto;
    }
}

/* Werkwijze Sectie */
.process-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    padding: 30px;
    background-color: var(--light);
    border-radius: 10px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 5px 15px var(--shadow);
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--complement-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* CTA Sectie */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/itkhero_compressed.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--complement-color);
    text-align: center;
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.cta h2 {
    color: var(--complement-color);
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Contact Sectie */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 40px;
    height: 40px;
    background-color: rgba(var(--primary-rgb), 0.1); /* Gebruik primary met alpha */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon i {
    color: var(--secondary-color);
}

/* Social icons aanpassen naar nieuwe kleuren */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--complement-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--complement-color);
    padding: 70px 0 20px;
}

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

.footer-column h3 {
    color: var(--complement-color);
    margin-bottom: 65px;
}

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

.footer-logo-img {
    height: 60px;
    margin-bottom: 15px;
    /* Filter om het logo wit te maken als het SVG donkere onderdelen heeft */
    filter: brightness(0) invert(1);
}

.tagline-footer {
    color: rgba(var(--complement-rgb), 0.8); /* Gebruik complement met alpha */
    font-style: italic;
    margin-top: 10px; /* Beetje ruimte toegevoegd */
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(var(--complement-rgb), 0.8); /* Gebruik complement met alpha */
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(var(--complement-rgb), 0.7); /* Gebruik complement met alpha */
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--complement-color);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none; /* Start verborgen, wordt getoond met JS */
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-text h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cookie-text p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--text);
}

.cookie-policy-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s ease;
    width: 160px; /* Fixed width instead of min-width */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.cookie-settings {
    background-color: var(--secondary-color);
    color: var(--complement-color);
}

.cookie-settings:hover {
    background-color: var(--secondary-light);
}

.cookie-reject {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.cookie-reject:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
    }
    
    .cookie-text {
        flex: 3;
    }
    
    .cookie-actions {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        min-width: unset;
        display: block;
        text-align: center;
    }
}

/* Terug naar boven knop - Verbeterd */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--complement-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998; /* Zorg dat deze onder de cookie banner maar boven andere content zit */
    text-decoration: none; /* Voorkom onderstreping van de link */
    cursor: pointer;
}

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

/* Back to top knop hover aanpassen */
.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--complement-color);
    transform: translateY(-5px);
}

/* Responsief ontwerp */
@media screen and (max-width: 992px) {
    section {
        padding: 80px 0;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        flex-direction: column;
        justify-content: flex-start;
        gap: 10px;
        transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
        transform: translateX(100%);
        z-index: 1000;
        box-shadow: none;
        padding-top: 80px;
        padding-bottom: 30px;
        padding-left: 30px;
        padding-right: 30px;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: left;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition-delay: 0s;
    }

    /* Mobiele Bel-ons knop bovenaan */
    .nav-links .cta-button {
        margin: 0 0 20px;
        order: -1; /* Plaats deze aan het begin van de flex container */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
        margin-bottom: 20px;
        width: 100%;
    }

    .nav-links .btn-call {
        width: 100%;
        justify-content: center;
        background-color: var(--complement-color);
        color: var(--primary-color) !important;
        border-radius: 5px;
        padding: 15px;
        font-size: 1.1rem;
    }
    
    .nav-links .btn-call:hover {
        background-color: var(--light);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Sequentiële vertraging voor elk item */
    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links li:nth-child(6) { transition-delay: 0.6s; }
    .nav-links li:nth-child(7) { transition-delay: 0.7s; }

    .nav-links a {
        color: var(--complement-color);
        font-size: 1.1rem;
        text-shadow: none;
        display: block;
        padding: 12px 15px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .nav-links a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--complement-color);
    }

    /* Verberg de standaard onderlijn effect en voeg nieuw effect toe */
    .nav-links a::after {
        content: none;
    }

    /* Dropdown menu styling voor mobiel */
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        padding: 0;
        margin: 0 0 0 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu li {
        opacity: 1;
        transform: none;
        border-left: 2px solid rgba(255, 255, 255, 0.2);
    }

    .dropdown-menu a {
        font-size: 1rem;
        padding: 10px 15px;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px; /* Groot genoeg om alle items te tonen */
    }

    .dropdown-trigger {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 12px 15px; /* Match de padding van de reguliere nav-links a op mobiel */
    }

    .dropdown-icon {
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    /* Een wazige overlay achter het menu */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(3px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    body.menu-open::after {
        opacity: 1;
        visibility: visible;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text, .about-image {
        flex: 100%;
    }

    .process-step::before {
        left: 50%;
        top: -20px;
        transform: translateX(-50%);
    }

    /* Mobile Hero Styles */
    .hero {
        min-height: 70vh; /* Reduce the height on mobile */
        padding: 60px 0 40px; /* Add padding top and bottom */
        align-items: flex-start; /* Align content to the top */
        justify-content: flex-start; /* Align content to the left */
        background-position: 65% center; /* Adjust background focus point for mobile */
    }
    
    .hero .container {
        padding: 0 20px; /* More horizontal padding */
        width: 100%;
        max-width: calc(100% - 40px);
    }
    
    .hero-content {
        margin-top: 100px; /* Increased space for the fixed header */
        max-width: 100%; /* Full width on mobile */
        text-align: left; /* Left-align text instead of center */
    }
    
    .hero-content-inner {
        background: linear-gradient(135deg, rgba(194, 35, 3, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
        padding: 25px; /* Reduced padding for mobile */
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        border-left: 4px solid var(--primary-color); /* Keep accent border */
    }
    
    .hero-content-inner h1 {
        font-size: 2rem; /* Smaller heading size */
        margin-bottom: 15px; /* Less bottom margin */
        text-align: left;
    }
    
    .hero-content-inner p {
        font-size: 1rem; /* Smaller paragraph text */
        margin-bottom: 20px; /* Adjust spacing */
        max-width: 100%; /* Allow text to use full width */
        text-align: left;
    }
    
    .hero .btn {
        padding: 12px 24px; /* Slightly smaller button */
        font-size: 0.9rem; /* Smaller button text */
        width: auto; /* Auto width button */
        display: inline-block; /* Left-aligned */
    }
    
    .scroll-down {
        bottom: 20px; /* Position closer to the content */
    }

    /* Mobile Header - Solid red on mobile */
    #header {
        background: var(--primary-color);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 5px 0;
        transition: transform 0.3s ease, background-color 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    #header .logo-img {
        filter: brightness(0) invert(1); /* White logo on mobile */
        height: 65px;
    }
    
    #header .nav-links a,
    #header .dropdown-trigger {
        color: var(--complement-color);
        text-shadow: none;
    }
    
    /* Hide header on scroll down, show on scroll up - controlled by JS */
    #header.nav-up {
        transform: translateY(-100%);
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 60px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        text-align: center;
    }
    
    .hero-content-inner {
        padding: 20px; /* Slightly less padding for very small screens */
    }
    
    .hero-content-inner h1, 
    .hero-content-inner p {
        text-align: center; /* Center text on very small screens */
    }
    
    .hero .btn {
        display: block;
        width: 100%; /* Full width button on smallest screens */
        text-align: center;
    }
}

/* Contact formulier status */
.form-status {
    padding: 15px;
    margin-top: 15px;
    font-weight: 500;
    display: none;
    text-align: center;
    border-radius: 5px;
}

.form-status.success {
    display: block;
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

/* Verbeterde focus states voor toegankelijkheid */
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    height: 250px;
}

.project-image {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #f0f0f0;
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
}

.project-caption {
    text-align: center;
}

.project-caption h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.project-caption p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        height: 200px;
    }
}

/* ========================================
   VACATURES PAGES - NEW STYLES
   ======================================== */

/* Job Hero Section */
.job-hero {
    position: relative;
    min-height: 50vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--complement-color);
    padding: 150px 0 100px;
    text-align: center;
}

.job-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.job-hero h1 {
    color: var(--complement-color);
    margin-bottom: 20px;
    font-size: 3rem;
}

.job-hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(var(--complement-rgb), 0.95);
}

/* Jobs Section */
.jobs-section {
    padding: 100px 0;
    background-color: var(--light);
}

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* Job Card */
.job-card {
    background-color: white;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary-color);
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.job-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--complement-color);
}

.job-level {
    background-color: var(--secondary-color);
    color: var(--complement-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text);
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-meta i {
    color: var(--primary-color);
}

.job-summary {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.job-highlights {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.job-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text);
}

.job-highlights i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.job-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.job-btn i {
    transition: transform 0.3s ease;
}

.job-btn:hover i {
    transform: translateX(5px);
}

/* Why ITK Section */
.why-itk {
    padding: 100px 0;
    background-color: white;
}

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

.why-card {
    text-align: center;
    padding: 30px;
    background-color: var(--light);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--complement-color);
}

.why-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.why-card p {
    margin-bottom: 0;
    color: var(--text);
}

/* ========================================
   JOB DETAIL PAGES
   ======================================== */

/* Breadcrumb */
.breadcrumb-section {
    padding: 120px 0 20px;
    background-color: var(--light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb-separator {
    color: var(--text);
    opacity: 0.5;
    font-size: 0.7rem;
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 600;
}

/* Job Detail Hero */
.job-detail-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
    color: var(--complement-color);
}

.job-detail-hero-content {
    text-align: center;
}

.job-detail-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--complement-color);
}

.job-detail-hero h1 {
    color: var(--complement-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.job-detail-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 1rem;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-meta-item i {
    font-size: 1.2rem;
}

/* Job Detail Content */
.job-detail-content {
    padding: 80px 0;
}

.job-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.job-detail-main {
    max-width: 800px;
}

.job-section {
    margin-bottom: 50px;
}

.job-section h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.job-section p {
    line-height: 1.8;
    color: var(--text);
}

.job-list {
    list-style: none;
    padding: 0;
}

.job-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.job-list li:last-child {
    margin-bottom: 0;
}

.job-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.job-list strong {
    color: var(--secondary-color);
}

.link-with-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
    transition: gap 0.3s ease;
}

.link-with-arrow:hover {
    gap: 12px;
}

/* Job Sidebar */
.job-sidebar {
    position: sticky;
    top: 100px;
}

.job-sidebar-card {
    background-color: var(--light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.job-sidebar-card h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.4rem;
}

.job-sidebar-info {
    margin-bottom: 25px;
}

.sidebar-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 15px;
}

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

.sidebar-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.sidebar-info-item strong {
    display: block;
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.sidebar-info-item span {
    color: var(--text);
}

.btn-apply {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    font-size: 1rem;
    margin-bottom: 25px;
}

.job-sidebar-contact {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid rgba(var(--secondary-rgb), 0.1);
}

.job-sidebar-contact p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text);
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-link:hover {
    background-color: var(--primary-color);
    color: var(--complement-color);
}

.contact-link i {
    font-size: 1rem;
}

/* Other Vacancies Card */
.job-other-vacancies {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.job-other-vacancies h3 {
    color: var(--complement-color);
}

.other-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.other-job-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--complement-color);
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.other-job-item:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.other-job-item i:first-child {
    font-size: 1.3rem;
}

.other-job-item span {
    flex-grow: 1;
}

.other-job-item i:last-child {
    font-size: 0.9rem;
}

/* Active nav link styling for vacatures pages */
.nav-links a.active {
    color: var(--primary-color);
}

#header.scrolled .nav-links a.active {
    color: var(--complement-color);
    font-weight: 600;
}

/* ========================================
   RESPONSIVE - VACATURES PAGES
   ======================================== */

@media (max-width: 992px) {
    .job-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .job-sidebar {
        position: relative;
        top: 0;
    }
    
    .jobs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .job-hero {
        padding: 120px 0 60px;
        min-height: 40vh;
    }
    
    .job-hero h1 {
        font-size: 2rem;
    }
    
    .job-hero p {
        font-size: 1rem;
    }
    
    .job-detail-hero h1 {
        font-size: 1.8rem;
    }
    
    .job-detail-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .job-detail-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb-section {
        padding: 100px 0 20px;
    }
}

@media (max-width: 576px) {
    .job-card {
        padding: 25px;
    }
    
    .job-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .job-card h3 {
        font-size: 1.3rem;
    }
    
    .job-detail-content {
        padding: 50px 0;
    }
    
    .job-section {
        margin-bottom: 40px;
    }
    
    .job-section h2 {
        font-size: 1.5rem;
    }
}