:root {
    --primary-color: #0f172a;   /* Diep Navy */
    --secondary-color: #0f172a; /* Zelfde voor consistentie */
    --accent-color: #f97316;    /* Bouw Oranje */
    --background-light: #f8fafc; /* Clean White/Gray */
    --text-dark: #1e293b;
    --text-light: #ffffff;
    --gray-bg: #f1f5f9;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

body.no-scroll {
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- CHAT WIDGET STYLES --- */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Lato', sans-serif;
}

.chat-button {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.chat-button:hover {
    transform: scale(1.1) rotate(5deg);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    overflow: hidden;
    display: none;
    flex-direction: column;
    transform: translateY(20px);
    transition: all 0.3s ease;
    opacity: 0;
}

.chat-window.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-header img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
}

.chat-header-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.chat-header-info span {
    font-size: 12px;
    opacity: 0.8;
}

.chat-body {
    padding: 25px;
    background: #f8fafc;
}

.chat-message {
    background: white;
    padding: 15px;
    border-radius: 15px;
    border-bottom-left-radius: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.chat-options {
    padding: 15px 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.chat-option:hover {
    border-color: var(--accent-color);
    background: #fffaf0;
    transform: translateX(5px);
}

.chat-option i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.opt-wa i { background: #25d366; color: white; }
.opt-mail i { background: #f1f5f9; color: var(--primary-color); }
.opt-call i { background: #f1f5f9; color: var(--primary-color); }

@media (max-width: 480px) {
    .chat-window {
        width: 300px;
        right: -10px;
    }
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }
}

/* Base Layout Fixes */
.section-padding {
    padding: 80px 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* Top Bar */
.top-bar {
    background-color: #000000;
    color: #ffffff;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-links {
    display: flex;
    gap: 20px;
}

.top-bar-links a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar-links a:hover {
    opacity: 0.8;
}

/* Header & Nav */
header {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-center {
    flex: 1;
    max-width: 500px;
    margin: 0 40px;
    display: block !important; /* Zorg dat de zoekbalk altijd zichtbaar is */
}

.search-bar {
    position: relative;
    width: 100%;
}

.search-bar input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    background-color: #f8fafc;
}

.search-bar i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.header-right-btns {
    display: flex;
    gap: 15px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
}

.btn-project {
    background-color: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

/* Sub Nav */
.sub-nav {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}

.sub-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.sub-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-radius: 12px;
    min-width: 280px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid #edf2f7;
    margin-top: 5px;
    display: flex;
    flex-direction: column; /* Alles onder elkaar */
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Navigation & Header Fixes */
.sub-nav {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
}

.sub-nav ul {
    display: flex;
    justify-content: flex-start; /* Tegen de linkerkant */
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sub-nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.sub-nav ul li a:hover {
    color: var(--accent-color);
}

.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
    font-size: 15px;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    padding-left: 30px;
}

.dropdown-menu li a::after {
    display: none !important;
}

/* Hero refinements */
.hero-content-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 15px;
    align-items: center;
    padding: 80px 0;
}

.hero-text-left {
    text-align: left;
}

.hero-content-split .image-box {
    display: flex;
    justify-content: flex-end;
}

.hero-content-split .image-box img {
    max-width: 100%;
    height: auto;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-tag {
    background: #ffffff;
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.hero-tag:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.hero-text-left h1 {
    font-size: clamp(2rem, 4.5vw, 4.2rem) !important; /* Schaalbaar voor alle schermen */
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

/* Forceert 'Slimmer bouwen,' op één lijn op PC */
.hero-text-left h1 .line-1 {
    white-space: nowrap;
    display: inline-block;
}

/* Zorg dat de tweede regel wel kan breken */
.hero-text-left h1 .line-2 {
    display: block;
}

.hero-text-left .lead {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 30px;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 40px;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1e293b;
}

.hero-bullets li i {
    color: var(--accent-color);
    font-size: 18px;
}

.hero-image-right {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.hero-image-right img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: var(--accent-color);
    font-size: 24px;
    margin-left: 5px;
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
    max-width: 800px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.category-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-img img {
    transform: scale(1.1);
}

.category-info {
    padding: 25px;
    flex-grow: 1;
}

.category-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.category-info p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.category-link {
    color: var(--accent-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Steps Section */
.steps-section {
    background-color: #f8fafc;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.step-item {
    position: relative;
    padding: 30px;
}

.step-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.step-item h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 0.95rem;
    color: #64748b;
}

/* Black USP Bar refinements */
.black-usp-bar {
    background-color: #000000;
    color: #ffffff;
    padding: 20px 0;
}

.black-usp-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.black-usp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.black-usp-item i {
    color: var(--accent-color);
}

/* Mobile responsive */
@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content-split {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
    }
    .hero-content-split .image-box {
        width: 100%;
        justify-content: center;
    }
    .hero-text-left h1 { 
        font-size: 3.2rem !important; 
        line-height: 1.2;
    }
    .hero-bullets li { justify-content: flex-start; }
    .hero-btns { justify-content: flex-start; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid { grid-template-columns: 1fr; }
    .black-usp-bar .container { flex-direction: column; gap: 15px; }
}

.black-usp-item i {
    color: var(--accent-color);
}


/* Product Cards */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-content {
    padding: 30px;
}

/* USP Bar */
.usp-bar-compact {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
}

.usp-bar-compact .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 25px;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .sub-nav ul { display: none; }
}

/* Contact Page Styles */
.contact-hero {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.contact-page {
    background-color: #ffffff;
    padding: 60px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-card {
    background: #ffffff;
    border-radius: 20px;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--primary-color);
}

.method-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.method-card:hover {
    transform: translateX(10px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
    transition: all 0.3s;
}

.method-card:hover .method-icon {
    background: var(--accent-color);
    color: #ffffff;
}

.method-details h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.method-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 2px;
}

.method-link:hover {
    color: var(--accent-color);
}

.company-details-modern {
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.social-btn {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    margin-right: 12px;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.modern-input {
    width: 100%;
    padding: 14px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
}

.modern-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.btn-submit-upgrade {
    background: var(--accent-color);
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-submit-upgrade:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
}

/* Extra Contact Styling */
.intake-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.btn-outline-white {
    padding: 10px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: var(--primary-color);
    border-color: #ffffff;
}

.contact-info .contact-card img {
    border-bottom: 4px solid var(--accent-color);
}

.map-section iframe {
    grayscale: 100%;
    filter: contrast(1.1) brightness(1.1);
    transition: all 0.5s;
}

.map-section iframe:hover {
    grayscale: 0%;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero { padding: 80px 0 120px; }
    .contact-hero h1 { font-size: 32px; }
    .contact-hero p { font-size: 16px; }
    .contact-page { margin-top: -80px; padding: 40px 0; }
    .contact-form-container { padding: 30px 20px; }
    .intake-banner { flex-direction: column; text-align: center; }
    .intake-banner img { order: -1; width: 100%; height: 200px; }
}
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.1);
}

.btn-submit {
    background-color: var(--accent-color);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #ea580c;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info {
        max-width: 100%;
    }
}

/* Utility Classes */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-4 { gap: 1.5rem; }
.gap-6 { gap: 2rem; }
.gap-8 { gap: 2.5rem; }
.gap-12 { gap: 3.5rem; }
.mt-32 { margin-top: 8rem; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-block-end: 1rem; }
.mb-8 { margin-block-end: 2rem; }
.mb-16 { margin-block-end: 4rem; }
.mb-10 { margin-block-end: 2.5rem; }
.mb-6 { margin-block-end: 1.5rem; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-tighter { letter-spacing: -0.05em; }
.uppercase { text-transform: uppercase; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.z-10 { z-index: 10; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-blue-100 { color: #dbeafe; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.p-8 { padding: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.opacity-10 { opacity: 0.1; }
.transition { transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
/* Mission & Vision Styling */
.mission-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #0f172a;
    color: white;
    border-radius: 24px;
    overflow: hidden;
    margin-top: -80px;
    position: relative;
    z-index: 50;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}

.mission-box > div {
    padding: 80px 60px;
}

.mission-box > div:first-child {
    background-color: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-box h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    font-weight: 800;
}

.mission-box p {
    color: #e2e8f0;
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .mission-box {
        grid-template-columns: 1fr;
        margin-top: -40px;
    }
    .mission-box > div {
        padding: 50px 40px;
    }
}

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.about-hero-ext {
    background-color: #0f172a;
    background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('../images/ai/luxe-woonwagen.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0 100px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.about-hero-ext .container {
    width: 100%;
}

.about-hero-ext h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
    max-width: 1100px;
    margin: 0 auto 30px;
}

.about-hero-ext p.text-gray-300 {
    color: #94a3b8 !important;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 5vw, 100px);
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
    flex-wrap: wrap;
}

/* Extra ruimte tussen tekst en afbeelding in grid op PC */
@media (min-width: 1024px) {
    .gap-20 { 
        gap: 120px; 
    }
}

.stat-box {
    text-align: center;
}

.stat-box h2 {
    font-size: 4rem;
    color: var(--accent-color) !important;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-box p {
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff !important;
    opacity: 0.6;
}

/* Responsive adjustments for about hero */
@media (max-width: 1024px) {
    .about-hero-ext h1 { font-size: 3.5rem; }
    .hero-stats { gap: 40px; }
    .stat-box h2 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .about-hero-ext { padding: 100px 0 60px; }
    .about-hero-ext h1 { font-size: 2.5rem; }
    .hero-stats { 
        flex-wrap: wrap;
        gap: 30px;
    }
    .stat-box { width: calc(50% - 15px); }
}

/* Legal Pages Upgrade */
.legal-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('../images/ai/luxe-woonwagen.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.legal-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.legal-hero .last-updated {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.legal-section {
    padding: 80px 0;
    background: #ffffff;
}

.legal-card {
    background: #f8fafc;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #f1f5f9;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}

.legal-content p, .legal-content li {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

.legal-content ul {
    list-style: none;
    margin-left: 0;
}

.legal-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.legal-content li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .legal-hero { padding: 80px 20px 40px; }
    .legal-hero h1 { font-size: 2.5rem; }
    .legal-card { padding: 30px 20px; }
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-bottom: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.value-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) { left: 0; padding-right: 50px; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; padding-left: 50px; }

.timeline-dot {
    position: absolute;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot { right: -8px; }
.timeline-item:nth-child(even) .timeline-dot { left: -8px; }

.timeline-content h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Mission & Vision Overlay */
.mission-box {
    background: var(--primary-color);
    color: white;
    padding: 100px 50px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 0; /* Verwijder negatieve margin */
    margin-bottom: 80px; /* Ruimte onder de box */
    position: relative;
    z-index: 5;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.mission-box h3 {
    color: var(--accent-color);
    font-size: 28px;
    margin-bottom: 20px;
}

/* Footer Section Overwrite for About Page */
.py-24.bg-dark {
    background-color: #0f172a;
    padding-top: 120px;
    padding-bottom: 120px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.py-24.bg-dark h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white !important;
}

.py-24.bg-dark p.text-xl {
    color: #ffffff !important;
    font-size: 1.35rem;
    font-weight: 400;
}

.text-black { color: #000000 !important; }

@media (max-width: 768px) {
    .values-grid, .mission-box { grid-template-columns: 1fr; gap: 40px; }
    .mission-box { padding: 50px 30px; }
    
    /* Timeline Mobile Reset */
    .timeline { 
        margin: 40px 0; 
        padding-left: 15px;
    }
    .timeline::before { 
        left: 0; 
    }
    .timeline-item { 
        width: 100% !important; 
        text-align: left !important; 
        padding-left: 35px !important; 
        padding-right: 0 !important;
        left: 0 !important;
        margin-bottom: 40px;
    }
    .timeline-dot { 
        left: -7px !important; 
        right: auto !important;
    }
    .timeline-content h4 { font-size: 1.25rem; margin-bottom: 8px; }
    .timeline-content p { font-size: 0.95rem; line-height: 1.5; }

    .about-hero-ext h1 { font-size: 36px; }
    .hero-stats { 
        flex-direction: column; 
        gap: 40px; 
        align-items: center;
        width: 100%;
    }
    .stat-box { width: 100%; }
    
    /* Waarom Unit4You sectie optimalisatie */
    .mt-32 { 
        margin-top: 60px; 
        display: flex; 
        flex-direction: column-reverse; 
    }
    .gap-20 { gap: 40px; }
    .about-text { text-align: center; width: 100%; }
    .about-text h2 { font-size: 1.8rem !important; margin-bottom: 20px; line-height: 1.3; }
    .about-text p { font-size: 1rem !important; margin-bottom: 30px; }
    
    .about-text ul { 
        text-align: left; 
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: calc(100% + 40px);
        margin: 0 -20px 40px -20px;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .about-text ul li {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        font-size: 0.95rem;
        font-weight: 700;
        line-height: 1.4;
    }
    .about-text ul li i {
        font-size: 1.2rem;
        width: 25px;
        text-align: center;
        flex-shrink: 0;
        color: var(--accent-color);
        margin-top: 3px;
    }
    .about-image-wrapper {
        width: 100%;
        margin-bottom: 30px;
    }
    .about-image-main { 
        width: 100% !important;
        max-width: none !important;
        height: auto !important; 
        border-radius: 20px; 
        margin: 0 auto;
        display: block;
        object-fit: cover;
    }
    .btn-project {
        width: 100%;
        text-align: center;
    }
}


/* --- CONTACT PAGE STYLES --- */
:root {
    --contact-primary: #0f172a;
    --contact-accent: #f97316;
    --contact-bg: #f8fafc;
    --contact-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.contact-hero {
    background: var(--contact-primary);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.contact-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-wrapper {
    background: var(--contact-bg);
    padding: 100px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

/* Side Info */
.main-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--contact-shadow);
    margin-bottom: 30px;
}

.card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.contact-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.4);
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.card-content {
    padding: 40px;
}

.card-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--contact-primary);
}

.contact-methods-list {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 56px;
    height: 56px;
    background: #f1f5f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--contact-primary);
}

.method-item h3 {
    font-size: 1rem;
    margin: 0;
    color: #64748b;
    font-weight: 600;
}

.method-item a {
    font-weight: 800;
    color: var(--contact-primary);
    text-decoration: none;
    font-size: 1.25rem;
}

/* Intake Banner */
.intake-banner {
    background: var(--contact-primary);
    color: white;
    border-radius: 24px;
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.intake-banner img {
    width: 110px;
    height: 110px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.banner-text h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: white;
}

.btn-minimal {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    border: 2px solid rgba(255,255,255,0.15);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-minimal:hover {
    background: white;
    color: var(--contact-primary);
}

/* Form Section */
.form-container {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--contact-shadow);
}

.form-container h2 {
    font-size: 2.25rem;
    margin-bottom: 35px;
    color: var(--contact-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--contact-primary);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
    background: #f8fafc;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--contact-primary);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.05);
}

.btn-main {
    width: 100%;
    padding: 20px;
    background: var(--contact-primary);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.btn-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

/* Map */
.full-map {
    margin-top: 0;
    line-height: 0;
}

/* Mobile responsive fixes */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-hero { padding: 80px 0 40px; }
    .contact-hero h1 { font-size: 2.75rem; }
    .form-container { padding: 40px; }
}

@media (max-width: 768px) {
    .contact-hero h1 { font-size: 2.25rem; }
    .form-row { grid-template-columns: 1fr; }
    .intake-banner { flex-direction: column; text-align: center; }
    .intake-banner img { width: 100%; height: 200px; }
}

/* --- FAQ SECTION STYLES --- */
.faq-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-card {
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card-header {
    width: 100%;
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #0f172a;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.faq-card.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    background: #ffffff;
}

.faq-card.active .faq-content {
    max-height: 2000px;
    transition: max-height 0.5s ease-in;
}

.faq-items-list {
    padding: 10px 35px 35px;
}

.faq-item {
    border-bottom: 1px solid #f1f5f9;
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 0;
}

.faq-item-question h4 {
    font-size: 1.1rem;
    margin: 0;
    color: #1e293b;
    font-weight: 600;
}

.faq-item-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-item-answer {
    max-height: 500px;
    padding-top: 15px;
}

.faq-item .item-icon {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.faq-item.active .item-icon {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .faq-card-header { padding: 20px; }
    .faq-items-list { padding: 5px 20px 20px; }
    .faq-card-header h3 { font-size: 1.25rem; }
}
/* --- UPDATED FAQ SECTION WITH IMAGE --- */
.faq-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.faq-container-flex {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.faq-image-side {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.faq-image-side img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.faq-content-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-content-side .section-header {
    text-align: left;
    margin-bottom: 20px;
}

.faq-content-side .faq-grid {
    width: 100%;
    max-width: none;
    margin: 0;
}

@media (max-width: 1024px) {
    .faq-container-flex {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .faq-image-side img {
        height: 400px;
    }
}
/* --- UPGRADED FOOTER STYLES --- */
footer {
    background-color: #0d1b2a;
    color: #ffffff;
    padding: 80px 0 30px;
    font-family: 'Lato', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 25px;
    /* filter: brightness(0) invert(1); */ /* Verwijderd om het originele logo te tonen */
}

.footer-col p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background-color: #f97316; /* Accent oranje */
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #f97316;
    transform: translateY(-3px);
}

.footer-contact-info {
    margin-top: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: #f97316;
    width: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* --- Responsive & Mobile Menu CSS --- */

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

.logo img {
    height: 50px;
    width: auto;
}

/* Base styles for buttons on mobile */
.header-right-btns .btn-text {
    display: inline;
}

/* Mobile Menu Sidebar */
.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    height: 100dvh; /* Gebruik dynamic viewport height voor mobiele browsers */
    background: #ffffff;
    z-index: 2001;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: env(safe-area-inset-bottom, 20px); /* Ruimte voor home-indicator/navbalk */
}

.mobile-menu-sidebar .sidebar-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Vloeiende scroll op iOS */
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.mobile-logo img {
    height: 40px;
}

.mobile-menu-close {
    font-size: 24px;
    cursor: pointer;
}

.mobile-search {
    margin-bottom: 25px;
}

.mobile-nav {
    flex: 1;
    margin: 10px -20px;
    padding: 0 20px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav > ul > li {
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    padding: 15px 0;
    font-size: 16px;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.mobile-nav-link a {
    flex: 1;
    padding: 15px 0;
}

.mobile-nav-link i {
    cursor: pointer;
    padding: 15px;
    transition: transform 0.3s;
    color: #94a3b8;
    z-index: 5;
}

.mobile-nav-item.active .fa-chevron-down {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.mobile-dropdown {
    display: none;
    padding-left: 15px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 30px !important;
    overflow: visible !important;
}

.mobile-nav-item.active .mobile-dropdown {
    display: block !important;
}

.mobile-dropdown li a {
    padding: 12px 10px;
    font-weight: 500;
    font-size: 15px;
    color: #475569;
    border-bottom: 1px solid #edf2f7;
}

.mobile-dropdown li:last-child a {
    border-bottom: none;
}

.mobile-nav-item i {
    font-size: 14px;
    padding: 5px;
    transition: transform 0.3s;
}

.mobile-nav-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-menu-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
}

.mobile-menu-footer .btn-whatsapp,
.mobile-menu-footer .btn-project {
    width: 100%;
    justify-content: center;
    padding: 12px;
}

/* Media Queries */

@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .header-center {
        margin: 0 20px;
    }
}

@media (max-width: 992px) {
    .sub-nav {
        display: none; /* Hide desktop sub-nav */
    }
    
    .mobile-menu-toggle {
        display: block;
        flex: 1; /* Neemt linker ruimte in */
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        flex: 2; /* Neemt centrale ruimte in */
        display: flex;
        justify-content: center;
    }

    .logo img {
        height: 45px;
    }

    .header-right-btns {
        flex: 0 0 auto;
        justify-content: flex-end;
    }

    .header-center {
        display: none !important; /* Hide desktop search */
    }
    
    .top-bar-links {
        display: none;
    }
    
    .top-bar-content {
        justify-content: center;
        text-align: center;
    }
    
    .header-right-btns .btn-text {
        display: none; /* Hide button text symbols remain */
    }
    
    .header-right-btns .btn-whatsapp, 
    .header-right-btns .btn-project {
        padding: 0;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 400px;
        margin: 0;
    }

    .hero-btns a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    .hero-text-left h1 { 
        font-size: 2.2rem !important; 
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .top-bar {
        font-size: 11px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .header-right-btns {
        gap: 10px;
        flex: 0 0 auto;
        display: flex;
        justify-content: flex-end;
    }
    
    .header-right-btns .btn-whatsapp, 
    .header-right-btns .btn-project {
        padding: 0;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex-shrink: 0;
    }

    .mobile-menu-toggle {
        font-size: 20px;
        flex: 1;
    }

    /* Section Mobile Optimizations */
    .section-padding {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 12px;
        word-break: break-word; /* Zorgt dat lange woorden niet uitbreken */
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 10px; /* Wat extra ademruimte voor de tekst */
    }
}

/* RESET MOBILE MENU */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100dvh; /* Gebruik dynamic viewport height om achter browserbalken weg te blijven */
    background: #ffffff;
    z-index: 2001;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: env(safe-area-inset-bottom, 20px); /* Ruimte voor de mobile swipe bar */
}

.mobile-menu-sidebar.active {
    left: 0;
}

.mobile-menu-sidebar .sidebar-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.mobile-logo img {
    height: 40px;
}

.mobile-menu-close {
    font-size: 24px;
    cursor: pointer;
}

.mobile-search {
    margin-bottom: 25px;
    flex-shrink: 0;
}

.mobile-nav {
    flex: 1;
    margin: 10px -20px;
    padding: 0 20px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav > ul > li {
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    padding: 15px 0;
    font-size: 16px;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.mobile-nav-link a {
    flex: 1;
    padding: 15px 0;
}

.mobile-nav-link i {
    cursor: pointer;
    padding: 15px;
    transition: transform 0.3s ease;
    color: #94a3b8;
    background: transparent;
    border-radius: 5px;
}

.mobile-nav-link i:active {
    background: rgba(0,0,0,0.05);
}

.mobile-nav-item.active > .mobile-nav-link .fa-chevron-down {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.mobile-dropdown {
    display: none;
    padding-left: 20px;
    background: #f8fafc;
    border-radius: 10px;
    margin: 5px 0 15px 10px;
    overflow: hidden;
    border-left: none; /* Grijs streepje mag weg */
}

.mobile-dropdown li a {
    padding: 12px 10px;
    font-size: 15px;
    font-weight: 500;
    color: #64748b;
    transition: all 0.3s ease;
    border-radius: 6px;
    display: block;
}

.mobile-dropdown li a:hover,
.mobile-dropdown li a:active {
    color: var(--accent-color);
    background: rgba(249, 115, 22, 0.05); /* Licht oranje achtergrond bij hover */
    padding-left: 15px; /* Kleine verschuiving voor effect */
}

.mobile-nav-item.active .mobile-dropdown {
    /* Beheerd door JS slideDown */
}

.mobile-menu-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    flex-shrink: 0;
}
