/* ========================================
   NH Dakwerken - Main Stylesheet
   ======================================== */

:root {
    --nh-green: #88B828;
    --nh-green-light: #9ACC2C;
    --nh-green-dark: #6A9020;
    --nh-black: #0D0D0D;
    --nh-dark: #1A1A1A;
    --nh-gray: #888888;
    --nh-white: #FFFFFF;
    --nav-width: 320px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--nh-dark);
    color: var(--nh-white);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== MOBILE HEADER ========== */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--nh-black);
    z-index: 1001;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

.mobile-header .mobile-logo img {
    height: 42px;
    width: auto;
}

.menu-toggle {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.1);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--nh-white);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ========== NAV PANEL ========== */
.nav-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--nav-width);
    height: 100vh;
    background: var(--nh-black);
    padding: 40px;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.nav-logo {
}

.nav-logo img {
    width: 80%;
    height: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    margin-bottom: auto;
}

.nav-menu a {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--nh-gray);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--nh-white);
    padding-left: 12px;
}

.nav-menu a.active {
    color: var(--nh-green);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--nh-green);
    transition: var(--transition);
}

.nav-menu a:hover::before {
    width: 6px;
}

.nav-menu a.active::before {
    display: none;
}

.nav-footer {
    /* Wrapper voor CTA + Socials */
}

.nav-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: var(--transition);
}

/* Primary CTA - Gratis Offerte */
.nav-cta-primary {
    background: var(--nh-green);
    color: var(--nh-white);
}

.nav-cta-primary:hover {
    background: var(--nh-green-dark);
    transform: translateY(-2px);
}

/* Secondary CTA - Lekkage Melden */
.nav-cta-secondary {
    background: transparent;
    color: var(--nh-white);
    border: 1px solid var(--nh-gray);
}

.nav-cta-secondary:hover {
    border-color: var(--nh-white);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Social icons in nav panel */
.nav-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.nav-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nh-gray);
    transition: var(--transition);
    border-radius: 6px;
}

.nav-socials a:hover {
    color: var(--nh-white);
    background: rgba(255,255,255,0.1);
}

.nav-socials svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ========== OVERLAY (Mobile only) ========== */
.nav-overlay {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

/* ========== MAIN CONTENT ========== */
.main-content {
    margin-left: var(--nav-width);
    min-height: 100vh;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    background: var(--nh-dark);
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    background: url('../images/Achtergrondtest.png') center center / cover no-repeat;
}

/* Donkere overlay voor leesbaarheid */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-watermark {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-text {
    font-size: 0.9rem;
    color: var(--nh-white);
    font-weight: 500;
}

.badge-stars {
    color: #F5B800;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.hero-title {
    display: inline;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    color: var(--nh-white);
    background: var(--nh-black);
    padding: 8px 20px;
    border-radius: 12px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 2em 0px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-hero {
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-primary-hero {
    background: var(--nh-black);
    color: var(--nh-white);
    border: 1px solid var(--nh-black);
}

.btn-primary-hero:hover {
    background: var(--nh-green);
    border-color: var(--nh-green);
    transform: translateY(-2px);
}

.btn-secondary-hero {
    background: transparent;
    color: var(--nh-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 80px 60px;
    position: relative;
    background: url('../images/Achtergrondtest.png') center center / cover no-repeat;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 0;
}

.why-card {
    position: relative;
    z-index: 1;
    background: var(--nh-black);
    border-radius: 20px;
    padding: 48px;
    max-width: 520px;
    width: 100%;
}

.why-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--nh-white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.why-card > p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Accordion Tabs */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: var(--nh-white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active {
    background: var(--nh-white);
}

.accordion-item.highlight {
    background: var(--nh-green);
}

.accordion-item.highlight .accordion-header {
    color: var(--nh-white);
}

.accordion-item.highlight .accordion-content p {
    color: var(--nh-white);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nh-black);
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    opacity: 0.8;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.accordion-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-content p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--nh-gray);
    line-height: 1.7;
}

/* Scroll reveal animation */
.accordion-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease;
}

.accordion-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.accordion-item:nth-child(1) { transition-delay: 0.1s; }
.accordion-item:nth-child(2) { transition-delay: 0.2s; }
.accordion-item:nth-child(3) { transition-delay: 0.3s; }

/* ========== SERVICES HERO SECTION ========== */
.serviceshero-section {
    background: var(--nh-black);
    padding: 80px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.serviceshero-content {
    text-align: center;
    max-width: 600px;
}

.serviceshero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nh-white);
    margin-bottom: 12px;
}

.serviceshero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ========== CONTACT HERO SECTION ========== */
.contacthero-section {
    background: var(--nh-black);
    padding: 80px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contacthero-content {
    text-align: center;
    max-width: 600px;
}

.contacthero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nh-white);
    margin-bottom: 12px;
}

.contacthero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contacthero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    justify-content: center;
}

.btn-contacthero {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contacthero-primary {
    background: var(--nh-green);
    color: var(--nh-white);
    border: 1px solid var(--nh-green);
}

.btn-contacthero-primary:hover {
    background: var(--nh-black);
    border-color: var(--nh-black);
    transform: translateY(-2px);
}

.btn-contacthero-secondary {
    background: transparent;
    color: var(--nh-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-contacthero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Team Avatars */
.team-avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.team-member {
    position: relative;
    margin-left: -12px;
    cursor: pointer;
    transition: transform 0.3s ease, z-index 0s;
    text-decoration: none;
    display: block;
}

.team-member:first-child {
    margin-left: 0;
}

.team-member:hover {
    transform: scale(1.1);
    z-index: 10;
}

.team-member img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--nh-black);
    object-fit: cover;
    transition: border-color 0.3s ease;
}

.team-member:hover img {
    border-color: var(--nh-green);
}

/* Tooltip */
.team-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    background: #222222;
    border-radius: 8px;
    padding: 10px 16px;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.team-name {
    color: var(--nh-green);
    font-weight: 700;
    font-size: 0.9rem;
}

.team-role {
    color: var(--nh-green);
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
}

.team-member:hover .team-tooltip {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* ========== SERVICES GRID SECTION ========== */
.services-section {
    padding: 80px 60px;
    position: relative;
    background: url('../images/Achtergrondtest.png') center center / cover no-repeat;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.services-grid,
.services-buttons {
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: var(--nh-white);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.15s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.45s; }

.service-header {
    background: var(--nh-black);
    padding: 16px 20px;
}

.service-header h3 {
    color: var(--nh-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.service-image {
    width: 100%;
    height: 160px;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-description {
    padding: 20px;
    font-size: 0.9rem;
    color: var(--nh-gray);
    line-height: 1.6;
    flex-grow: 1;
}

.service-link {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nh-green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--nh-black);
}

.service-link span {
    transition: transform 0.2s ease;
}

.service-link:hover span {
    transform: translateX(4px);
}

.services-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.btn-services-primary {
    background: var(--nh-white);
    color: var(--nh-black);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--nh-white);
}

.btn-services-primary:hover {
    background: var(--nh-green);
    border-color: var(--nh-green);
    color: var(--nh-white);
}

.btn-services-secondary {
    color: var(--nh-white);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-services-secondary:hover {
    color: var(--nh-green);
}

.btn-services-secondary span {
    transition: transform 0.2s ease;
}

.btn-services-secondary:hover span {
    transform: translateX(4px);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    background: var(--nh-black);
    padding: 80px 60px;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(136, 184, 40, 0.15);
    color: var(--nh-green);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nh-white);
    margin-bottom: 12px;
}

.testimonials-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-container {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.testimonials-column {
    flex: 1;
    overflow: hidden;
}

.testimonials-scroll {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scroll-up 25s linear infinite;
}

.testimonials-column:nth-child(2) .testimonials-scroll {
    animation-duration: 30s;
    animation-direction: reverse;
}

.testimonials-column:nth-child(3) .testimonials-scroll {
    animation-duration: 20s;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.testimonials-column:hover .testimonials-scroll {
    animation-play-state: paused;
}

.testimonial-card {
    background: #222222;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #444444;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--nh-green);
    color: var(--nh-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    color: var(--nh-white);
    font-size: 0.95rem;
}

.testimonial-location {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-decoration: none;
}

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

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

.testimonials-cta {
    text-align: center;
    margin-top: 40px;
}

.testimonials-link {
    color: var(--nh-white);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: var(--transition);
}

.testimonials-link:hover {
    color: var(--nh-green);
}

/* ========== PROJECTS SECTION ========== */
.projects-section {
    background: var(--nh-dark);
    padding: 80px 60px;
}

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

.projects-header {
    text-align: center;
    margin-bottom: 48px;
}

.projects-tagline {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nh-green);
    margin-bottom: 8px;
}

.projects-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nh-white);
    margin-bottom: 12px;
}

.projects-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.project-card {
    background: #222222;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    background: #111111;
}

.project-featured .project-image {
    height: 300px;
}

.project-featured .project-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.project-small {
    position: relative;
    min-height: 200px;
}

.project-small .project-image {
    position: absolute;
    inset: 0;
}

.project-small .project-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.project-small .project-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
}

.project-image {
    position: relative;
}

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

.project-card.in-view .project-image img {
    filter: grayscale(0%);
}

.project-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--nh-green);
    text-decoration: none;
    margin-bottom: 8px;
    transition: opacity 0.3s ease;
}

.project-location:hover {
    opacity: 0.8;
}

.project-location svg {
    flex-shrink: 0;
}

.project-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nh-white);
    margin-bottom: 12px;
}

.project-small .project-name {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.project-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--nh-white);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: auto;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: var(--nh-green);
}

.project-small .project-text {
    display: flex;
    flex-direction: column;
}

.project-arrow {
    color: var(--nh-white);
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.project-arrow:hover {
    color: var(--nh-green);
}

.projects-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.btn-projects {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-projects-secondary {
    background: transparent;
    color: var(--nh-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-projects-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-projects-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--nh-white);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-projects-link:hover {
    color: var(--nh-green);
}

/* ========== SERVICEGEBIEDEN SLIDER ========== */
.servicegebieden-section {
    background: var(--nh-black);
    padding: 60px 60px;
    overflow: hidden;
}

.servicegebieden-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.servicegebieden-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--nh-white);
    margin-bottom: 8px;
}

.servicegebieden-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.servicegebieden-slider {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.servicegebieden-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.servicegebieden-slider:hover .servicegebieden-track {
    animation-play-state: paused;
}

.servicegebied-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(136, 184, 40, 0.1);
    border: 1px solid rgba(136, 184, 40, 0.3);
    border-radius: 50px;
    color: var(--nh-green);
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
    text-decoration: none;
}

.servicegebied-item:hover {
    background: rgba(136, 184, 40, 0.2);
    border-color: var(--nh-green);
}

.servicegebied-item svg {
    flex-shrink: 0;
}

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

/* ========== FAQ SECTION ========== */
.faq-section {
    background: var(--nh-dark);
    padding: 80px 60px;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nh-white);
    margin-bottom: 12px;
}

.faq-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--nh-black);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    --x: 0;
    --y: 0;
    --glow-opacity: 0;
    transition: --glow-opacity 0.3s ease;
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: radial-gradient(
        300px circle at var(--x) var(--y),
        var(--nh-green),
        transparent 40%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: var(--glow-opacity);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    color: var(--nh-white);
    font-weight: 600;
    font-size: 1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--nh-white);
    stroke-width: 2;
    fill: none;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.faq-answer p {
    padding: 0 24px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
    background: url('../images/Achtergrondtest.png') center center / cover no-repeat;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(136, 184, 40, 0.15);
    color: var(--nh-green);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--nh-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-text {
    font-size: 1.05rem;
    color: var(--nh-gray);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta-primary {
    background: var(--nh-green);
    color: var(--nh-white);
    border: 1px solid var(--nh-green);
}

.btn-cta-primary:hover {
    background: var(--nh-green-dark);
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--nh-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-cta svg {
    flex-shrink: 0;
}

/* Contact page CTA buttons */
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--nh-green);
    color: var(--nh-white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition);
}

.cta-btn-primary:hover {
    background: var(--nh-green-dark);
    transform: translateY(-2px);
}

.cta-btn-primary svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--nh-white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.cta-btn-secondary:hover {
    border-color: var(--nh-green);
    color: var(--nh-green);
    transform: translateY(-2px);
}

.cta-btn-secondary svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ========== REVEAL FOOTER ========== */
#site-footer {
    position: sticky;
    bottom: 0;
    z-index: 0;
    margin-left: var(--nav-width);
}

.reveal-footer {
    height: 100vh;
    background: var(--nh-black);
}

.reveal-footer-inner {
    height: 100%;
    padding: 80px 60px 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 1200px;
    margin: 0 auto;
}

.reveal-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-top: 40px;
    align-content: center;
    flex: 1;
}

/* Column headings */
.reveal-footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--nh-green);
    margin-bottom: 24px;
}

/* Link lists */
.reveal-footer-col ul {
    list-style: none;
}

.reveal-footer-col li {
    padding: 8px 0;
}

.reveal-footer-col a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--nh-gray);
    text-decoration: none;
    transition: color var(--transition);
}

.reveal-footer-col a:hover {
    color: var(--nh-white);
}

/* Werkgebied 2-column sub-grid */
.reveal-footer-cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 48px;
}

/* Recente Projecten — project name + location */
.reveal-footer-col .project-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--nh-gray);
    margin-bottom: 0;
    transition: color var(--transition);
}

.reveal-footer-col .project-location {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
    transition: color var(--transition);
}

.reveal-footer-col a:hover .project-name {
    color: var(--nh-white);
}

.reveal-footer-col a:hover .project-location {
    color: var(--nh-green);
}

/* Credits Bar */
.reveal-footer-credits {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.reveal-footer-credits-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reveal-footer-credits-left > span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.reveal-footer-credits-left a {
    font-size: 0.85rem;
    color: var(--nh-gray);
    text-decoration: none;
    transition: color var(--transition);
}

.reveal-footer-credits-left a:hover {
    color: var(--nh-white);
}

.reveal-footer-logo {
    width: 100px;
    height: auto;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.reveal-footer-logo:hover {
    opacity: 1;
}

.reveal-footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reveal-footer-contact a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--nh-gray);
    text-decoration: none;
    transition: color var(--transition);
}

.reveal-footer-contact a:hover {
    color: var(--nh-white);
}

.reveal-footer-dot {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.reveal-footer-credits-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reveal-footer-credits-right a {
    font-size: 0.85rem;
    color: var(--nh-gray);
    text-decoration: none;
    transition: color var(--transition);
}

.reveal-footer-credits-right a:hover {
    color: var(--nh-white);
}

.reveal-footer-socials {
    display: flex;
    gap: 8px;
}

.reveal-footer-socials a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nh-gray);
    transition: var(--transition);
    border-radius: 6px;
}

.reveal-footer-socials a:hover {
    color: var(--nh-white);
    background: rgba(255, 255, 255, 0.1);
}

.reveal-footer-socials svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.reveal-footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reveal-footer-legal a {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color var(--transition);
}

.reveal-footer-legal a:hover {
    color: var(--nh-white);
}

/* ==========================================
   PROJECTS PAGE
   ========================================== */

/* Projects Hero */
.projects-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    background: url('../images/Achtergrondtest.png') center center / cover no-repeat;
}

.projects-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.projects-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.projects-hero-tagline {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nh-green);
    margin-bottom: 16px;
}

.projects-hero-title {
    display: inline;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--nh-white);
    background: var(--nh-black);
    padding: 8px 20px;
    border-radius: 12px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.projects-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 2em auto;
    max-width: 600px;
}

.projects-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--nh-white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.projects-hero-badge svg {
    color: var(--nh-green);
}

/* Tab Navigation */
.project-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--nh-gray);
    cursor: pointer;
    position: relative;
    transition: color var(--transition);
    white-space: nowrap;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--nh-green);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.tab-btn:hover {
    color: var(--nh-white);
}

.tab-btn.active {
    color: var(--nh-white);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

/* Projects Portfolio Section */
.projects-portfolio {
    background: var(--nh-dark);
    padding: 80px 60px;
}

.projects-portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
}

.projects-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Portfolio Card */
.portfolio-card {
    background: #111111;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.portfolio-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-card:nth-child(1) { transition-delay: 0s; }
.portfolio-card:nth-child(2) { transition-delay: 0.1s; }
.portfolio-card:nth-child(3) { transition-delay: 0.2s; }
.portfolio-card:nth-child(4) { transition-delay: 0.3s; }
.portfolio-card:nth-child(5) { transition-delay: 0.4s; }
.portfolio-card:nth-child(6) { transition-delay: 0.5s; }

.portfolio-card:hover,
.portfolio-card.revealed:hover {
    transform: translateY(-4px);
}

.portfolio-card.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

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

.portfolio-card-image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    position: relative;
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-image img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.portfolio-card.in-view .portfolio-card-image img {
    filter: grayscale(0%);
}

.portfolio-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.portfolio-card-category {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    display: inline-block;
    padding: 5px 14px;
    background: rgba(136, 184, 40, 0.85);
    backdrop-filter: blur(4px);
    color: var(--nh-white);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.portfolio-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--nh-green);
    text-decoration: none;
    margin-bottom: 8px;
    transition: opacity 0.3s ease;
}

.portfolio-card-location:hover {
    opacity: 0.8;
}

.portfolio-card-location svg {
    flex-shrink: 0;
}

.portfolio-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--nh-white);
    margin-bottom: 8px;
}

.portfolio-card-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.portfolio-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--nh-white);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
}

.portfolio-card-link:hover {
    color: var(--nh-green);
}

.portfolio-card-link span {
    transition: transform 0.2s ease;
}

.portfolio-card-link:hover span {
    transform: translateX(4px);
}

/* Projects Portfolio CTA */
.projects-portfolio-cta {
    text-align: center;
}

.btn-portfolio-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--nh-green);
    color: var(--nh-white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--nh-green);
}

.btn-portfolio-primary:hover {
    background: var(--nh-green-dark);
    border-color: var(--nh-green-dark);
    transform: translateY(-2px);
}

/* Projects CTA Section */
.projects-cta-section {
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('../images/Achtergrondtest.png') center center / cover no-repeat;
}

.projects-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.projects-cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.projects-cta-tagline {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nh-green);
    margin-bottom: 16px;
}

.projects-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nh-white);
    margin-bottom: 12px;
}

.projects-cta-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 32px;
}

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

/* ==========================================
   CONTACT PAGE
   ========================================== */

/* Contact Hero */
.contact-hero {
    padding: 112px 64px 80px;
    background: var(--nh-black);
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--nh-white);
}

.contact-hero-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--nh-gray);
    margin-bottom: 32px;
}

.contact-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--nh-green);
    color: var(--nh-white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--nh-green-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--nh-white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--nh-green);
    color: var(--nh-green);
    transform: translateY(-2px);
}

/* Contact Hero Image & Trust Bar */
.contact-hero-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.contact-hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.6) 50%, transparent 100%);
    padding: 60px 64px 32px;
    display: flex;
    justify-content: center;
}

.hero-trust-bar {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--nh-white);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--nh-green);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 64px 112px;
    background: var(--nh-dark);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(136, 184, 40, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--nh-green);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-item-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--nh-white);
}

.contact-item-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--nh-gray);
}

.contact-item-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--nh-white);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-item-link:hover {
    color: var(--nh-green);
}

.contact-item-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.contact-item-link:hover svg {
    transform: translateX(4px);
}

/* Contact Map */
.contact-map {
    border-radius: 16px;
    overflow: hidden;
    height: 516px;
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: invert(1) hue-rotate(180deg) brightness(0.95) contrast(0.9);
}

.contact-map::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    pointer-events: none;
}

/* Contact Form Section */
.contact-form-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 80px 60px;
    position: relative;
    background: url('../images/Achtergrondtest.png') center center / cover no-repeat;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 0;
}

.contact-form-card {
    position: relative;
    z-index: 1;
    background: var(--nh-black);
    border-radius: 20px;
    padding: 48px;
    max-width: 560px;
    width: 100%;
}

.contact-form-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--nh-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.contact-form-card > p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nh-white);
    margin-bottom: 8px;
}

.form-field label .required {
    color: var(--nh-green);
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--nh-white);
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.form-field select option {
    background: var(--nh-black);
    color: var(--nh-white);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-field input:hover,
.form-field textarea:hover,
.form-field select:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--nh-green);
    box-shadow: 0 0 0 3px rgba(136, 184, 40, 0.15);
}

.form-field textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    background: var(--nh-green);
    color: var(--nh-white);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 4px;
}

.form-submit:hover {
    background: var(--nh-green-dark);
    transform: translateY(-2px);
}

.form-submit svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ==========================================
   OVER ONS PAGE
   ========================================== */

/* About Hero */
.about-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    background: url('../images/Achtergrondtest.png') center center / cover no-repeat;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.about-hero-title {
    display: inline;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--nh-white);
    background: var(--nh-black);
    padding: 8px 20px;
    border-radius: 12px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.about-hero-card {
    margin-top: 32px;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.about-hero-card p + p {
    margin-top: 20px;
}

/* Team Section */
.team-section {
    background: var(--nh-black);
    padding: 80px 60px;
}

.team-container {
    max-width: 1100px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 72px;
}

.team-tagline {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nh-green);
    margin-bottom: 8px;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nh-white);
    margin-bottom: 12px;
}

.team-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-member-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.team-member-row:last-child {
    margin-bottom: 0;
}

.team-member-row--reverse {
    direction: rtl;
}

.team-member-row--reverse > * {
    direction: ltr;
}

.team-member-photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transform: rotate(8deg) scale(0.9);
    opacity: 0;
    filter: grayscale(100%);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.6s ease,
                filter 0.8s ease;
}

.team-member-row.revealed .team-member-photo {
    transform: rotate(0deg) scale(1);
    opacity: 1;
    filter: grayscale(0%);
}

.team-member-row--reverse .team-member-photo {
    transform: rotate(-8deg) scale(0.9);
}

.team-member-row--reverse.revealed .team-member-photo {
    transform: rotate(0deg) scale(1);
}

.team-member-photo img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.team-member-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.3s,
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.team-member-row.revealed .team-member-content {
    opacity: 1;
    transform: translateY(0);
}

.team-member-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--nh-green);
    color: var(--nh-white);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
}

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

.team-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(136, 184, 40, 0.15);
    color: var(--nh-green);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.team-member-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nh-white);
    line-height: 1.3;
}

.team-member-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Hiring CTA Section */
.hiring-cta-section {
    position: relative;
    padding: 100px 60px;
    background: url('../images/Achtergrondtest.png') center center / cover no-repeat;
    overflow: hidden;
}

.hiring-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.hiring-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hiring-cta-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(136, 184, 40, 0.15);
    color: var(--nh-green);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.hiring-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nh-white);
    margin-bottom: 16px;
}

.hiring-cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

/* ========== DIENSTEN HERO ========== */
.diensten-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    background: url('../images/Achtergrondtest.png') center center / cover no-repeat;
}

.diensten-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.diensten-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.diensten-hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--nh-white);
    font-size: 0.9rem;
    font-weight: 500;
}

.diensten-hero-badge svg {
    color: var(--nh-green);
}

.diensten-hero-title {
    display: inline;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--nh-white);
    background: var(--nh-black);
    padding: 8px 20px;
    border-radius: 12px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.diensten-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 2em auto;
    max-width: 600px;
}

/* ========== DIENSTEN DETAIL GRID ========== */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-detail-body {
    padding: 20px;
    flex-grow: 1;
}

.service-detail-body .service-description {
    padding: 0;
    margin-bottom: 16px;
}

.service-sublist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-sublist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--nh-gray);
    line-height: 1.4;
}

.service-sublist li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: rgba(136, 184, 40, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2388B828' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

/* ========== DOELGROEPEN SECTION ========== */
.audience-section {
    padding: 80px 60px;
    background: var(--nh-dark);
}

.audience-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.audience-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nh-white);
    margin: 16px 0 12px;
}

.audience-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-card {
    background: var(--nh-black);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease;
}

.audience-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.audience-card:nth-child(1) { transition-delay: 0s; }
.audience-card:nth-child(2) { transition-delay: 0.15s; }
.audience-card:nth-child(3) { transition-delay: 0.3s; }

.audience-card:hover {
    border-color: rgba(136, 184, 40, 0.3);
}

.audience-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(136, 184, 40, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--nh-green);
}

.audience-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nh-white);
    margin-bottom: 12px;
}

.audience-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.audience-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.audience-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: var(--nh-green);
}

/* ========== LEGAL PAGES ========== */
.legal-page {
    padding: 120px 60px 80px;
    max-width: 860px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nh-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.legal-page .legal-subtitle {
    font-size: 1rem;
    color: var(--nh-gray);
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--nh-white);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-page h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nh-white);
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-page p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-page a {
    color: var(--nh-green);
    transition: var(--transition);
}

.legal-page a:hover {
    color: var(--nh-green-light);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .mobile-header {
        display: flex;
    }

    .nav-overlay {
        display: block;
    }

    .nav-overlay.visible {
        opacity: 1;
        visibility: visible;
    }

    .nav-panel {
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        top: 0;
        height: 100vh;
        width: 100%;
        max-width: none;
        padding: 80px 40px 40px;
        align-items: flex-start;
        justify-content: center;
    }

    .nav-panel.open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-logo {
        display: none;
    }

    .nav-menu {
        align-items: flex-start;
        gap: 12px;
    }

    .nav-menu a {
        font-size: 1.2rem;
        font-weight: 600;
        text-align: left;
        padding: 14px 0;
    }

    .nav-menu a:hover {
        padding-left: 0;
    }

    .nav-footer {
        width: 100%;
    }

    .nav-cta {
        align-items: center;
    }

    .nav-socials {
        justify-content: flex-start;
    }

    .main-content {
        margin-left: 0;
        margin-top: 60px;
    }

    .hero-section {
        min-height: calc(100vh - 60px);
        padding: 60px 24px;
    }

    .hero-badge {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 12px 20px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 1.6rem;
        padding: 6px 14px;
        border-radius: 8px;
    }

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

    .hero-watermark {
        width: 280px;
        height: 220px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero {
        width: 100%;
        text-align: center;
    }

    .btn-primary-hero {
        background: var(--nh-green);
        border-color: var(--nh-green);
    }

    /* Why Section Mobile */
    .why-section {
        min-height: auto;
        padding: 60px 24px;
        justify-content: center;
        background: var(--nh-black);
    }

    .why-section::before {
        display: none;
    }

    .why-card {
        padding: 32px 24px;
        max-width: 100%;
        border-radius: 16px;
    }

    .why-card h2 {
        font-size: 1.4rem;
    }

    .accordion-header {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .accordion-content p {
        padding: 0 20px 16px;
        font-size: 0.85rem;
    }

    /* Services Hero Section Mobile */
    .serviceshero-section {
        padding: 60px 24px;
    }

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

    .serviceshero-description {
        font-size: 0.9rem;
    }

    /* Contact Hero Section Mobile */
    .contacthero-section {
        padding: 60px 24px;
    }

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

    .contacthero-description {
        font-size: 0.9rem;
    }

    .contacthero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-contacthero {
        width: 100%;
        text-align: center;
    }

    .team-member img {
        width: 48px;
        height: 48px;
    }

    .team-member {
        margin-left: -10px;
    }

    /* Services Grid Section Mobile */
    .services-section {
        padding: 60px 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Diensten Hero Mobile */
    .diensten-hero {
        min-height: 45vh;
        padding: 60px 24px;
    }

    .diensten-hero-title {
        font-size: 2rem;
    }

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

    /* Diensten Detail Grid Tablet - behoud 2 kolommen */
    .services-detail-grid {
        gap: 16px;
    }

    /* Doelgroepen Section Mobile */
    .audience-section {
        padding: 60px 24px;
    }

    .audience-heading {
        font-size: 1.75rem;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .audience-card {
        padding: 24px;
    }

    .service-image {
        height: 140px;
    }

    .services-buttons {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
    }

    .btn-services-primary {
        width: 100%;
        text-align: center;
    }

    /* Testimonials Section Mobile */
    .testimonials-section {
        padding: 60px 24px;
    }

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

    .testimonials-container {
        flex-direction: column;
        height: 400px;
        gap: 16px;
    }

    .testimonials-column {
        display: none;
    }

    .testimonials-column:first-child {
        display: block;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* Projects Section Mobile */
    .projects-section {
        padding: 60px 24px;
    }

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

    .projects-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .project-featured {
        grid-row: auto;
    }

    .project-featured .project-image {
        height: 200px;
    }

    .project-small {
        min-height: 180px;
    }

    .project-small .project-image {
        position: absolute;
        inset: 0;
        height: auto;
    }

    .projects-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .btn-projects {
        width: 100%;
        text-align: center;
    }

    /* Servicegebieden Section Mobile */
    .servicegebieden-section {
        padding: 48px 24px;
    }

    .servicegebieden-title {
        font-size: 1.5rem;
    }

    .servicegebieden-subtitle {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .servicegebied-item {
        font-size: 0.85rem;
        padding: 8px 16px;
        gap: 6px;
    }

    .servicegebieden-track {
        gap: 12px;
    }

    /* FAQ Section Mobile */
    .faq-section {
        padding: 60px 24px;
    }

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

    .faq-subtitle {
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 20px 16px;
        font-size: 0.9rem;
    }

    /* FAQ Glow Effect Mobile - Centered border glow */
    .faq-item::before {
        background: radial-gradient(
            600px circle at 50% 50%,
            var(--nh-green),
            transparent 40%
        );
        opacity: 0.3;
        transition: opacity 0.4s ease;
    }

    .faq-item:hover::before {
        opacity: 0.3;
    }

    .faq-item.active::before {
        opacity: 1;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 64px 24px;
    }

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

    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }

    /* Reveal Footer Mobile */
    #site-footer {
        position: relative;
        margin-left: 0;
    }

    .reveal-footer {
        height: auto;
    }

    .reveal-footer-inner {
        padding: 48px 24px 32px;
    }

    .reveal-footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 0;
    }

    .reveal-footer-diensten {
        order: 1;
    }

    .reveal-footer-projecten {
        order: 2;
    }

    .reveal-footer-werkgebied {
        order: 3;
    }

    .reveal-footer-credits {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .reveal-footer-credits-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .reveal-footer-credits-right {
        flex-wrap: wrap;
        gap: 12px;
    }

    /* --- Projects Page --- */
    .projects-hero {
        min-height: 50vh;
        padding: 60px 24px;
    }

    .projects-hero-title {
        font-size: 1.6rem;
        padding: 6px 14px;
        border-radius: 8px;
    }

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

    .projects-portfolio {
        padding: 60px 24px;
    }

    .project-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-bottom: 32px;
    }

    .project-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .projects-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .projects-cta-section {
        padding: 60px 24px;
    }

    .projects-cta-title {
        font-size: 1.75rem;
    }

    .projects-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .projects-cta-buttons .btn-cta {
        width: 100%;
        text-align: center;
    }

    /* --- Contact Page --- */
    .contact-hero {
        padding: 48px 24px 40px;
    }

    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-hero-heading {
        font-size: 2rem;
    }

    .contact-hero-text {
        font-size: 1rem;
    }

    .contact-hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
        text-align: center;
    }

    .contact-hero-image img {
        height: 240px;
    }

    .hero-image-overlay {
        padding: 40px 24px 20px;
    }

    .hero-trust-bar {
        gap: 20px;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .trust-item:nth-child(n+3) {
        display: none;
    }

    .contact-info-section {
        padding: 40px 24px 64px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-map {
        height: 300px;
    }

    .contact-form-section {
        min-height: auto;
        padding: 48px 24px;
        justify-content: center;
    }

    .contact-form-card {
        padding: 32px 24px;
        max-width: 100%;
    }

    .contact-form-card .form-row {
        grid-template-columns: 1fr;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        justify-content: center;
    }

    /* --- Legal Pages --- */
    .legal-page {
        padding: 80px 24px 60px;
    }

    .legal-page h1 {
        font-size: 1.75rem;
    }

    .legal-page h2 {
        font-size: 1.15rem;
        margin-top: 32px;
    }

    /* --- Over Ons Page --- */
    .about-hero {
        min-height: auto;
        padding: 60px 24px;
    }

    .about-hero-title {
        font-size: 1.6rem;
        padding: 6px 14px;
        border-radius: 8px;
    }

    .about-hero-card {
        margin-top: 24px;
        padding: 24px;
    }

    .about-hero-card p {
        font-size: 0.95rem;
    }

    .team-section {
        padding: 60px 24px;
    }

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

    .team-header {
        margin-bottom: 48px;
    }

    .team-member-row {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 56px;
    }

    .team-member-row--reverse {
        direction: ltr;
    }

    .team-member-photo img {
        height: 300px;
    }

    .team-member-tagline {
        font-size: 1.25rem;
    }

    .team-member-desc {
        font-size: 0.9rem;
    }

    .hiring-cta-section {
        padding: 60px 24px;
    }

    .hiring-cta-title {
        font-size: 1.75rem;
    }

    .hiring-cta-desc {
        font-size: 0.95rem;
    }

    .hiring-cta-buttons {
        flex-direction: column;
    }

    .hiring-cta-buttons .btn-cta {
        width: 100%;
        text-align: center;
    }

    /* --- CTA Section (unified) --- */
    .cta-section {
        padding: 60px 24px;
    }

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

    .cta-description {
        font-size: 0.95rem;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        justify-content: center;
    }

}

@media (max-width: 600px) {
    .projects-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .projects-hero {
        min-height: 45vh;
    }

    .contact-hero-heading {
        font-size: 1.75rem;
    }

    .contact-hero-image img {
        height: 200px;
    }

    .contact-map {
        height: 240px;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
    }

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

    .diensten-hero-title {
        font-size: 1.6rem;
    }

    /* --- Servicegebieden (Areas) compact --- */
    .area-heading {
        font-size: 1.25rem;
    }

    .area-reveal-img {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }
}
