/* Elegant Variant L - Based on J with client feedback */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #2d3a2e;
    line-height: 1.7;
    background-color: #fafbf8;
    overflow-x: hidden;
}

/* Navbar - donkerblauwe accent */
.navbar-elegant {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container-elegant {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-prominent {
    max-width: 380px;
    height: auto;
    transition: transform 0.3s ease;
}

.nav-logo-prominent:hover {
    transform: scale(1.02);
}

.nav-links-elegant {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links-elegant a {
    color: #2d3a2e;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links-elegant a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6b8f6b, #7da07d);
    transition: width 0.3s ease;
}

.nav-links-elegant a:hover::after {
    width: 100%;
}

.nav-cta-elegant {
    background: linear-gradient(135deg, #6b8f6b 0%, #7da07d 100%);
    color: #fff !important;
    padding: 10px 28px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(107, 143, 107, 0.3);
    transition: all 0.3s ease;
}

.nav-cta-elegant::after {
    display: none;
}

.nav-cta-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(107, 143, 107, 0.4);
}

/* Hero Section */
.hero-elegant {
    margin-top: 90px;
    height: calc(100vh - 90px);
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(220, 228, 220, 0.85) 0%,
        rgba(180, 200, 180, 0.55) 40%,
        rgba(107, 143, 107, 0.25) 70%,
        rgba(220, 228, 220, 0.2) 100%
    );
    mix-blend-mode: multiply;
}

.hero-content-elegant {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    padding: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.hero-text-box {
    max-width: 580px;
    background: rgba(255, 255, 255, 0.96);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    margin-left: auto;
    border-top: 4px solid #8fa88f;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: #2d3a2e;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #8fa88f, #a8bfa8, #c4d4c4);
    margin-bottom: 25px;
    border-radius: 2px;
}

.hero-lead {
    font-size: 1.3rem;
    color: #5a7a5a;
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-btn-elegant {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #6b8f6b 0%, #7da07d 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(107, 143, 107, 0.35);
}

.hero-btn-elegant:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(107, 143, 107, 0.45);
    background: linear-gradient(135deg, #5a7e5a 0%, #6b8f6b 100%);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #fff, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* Section Styling */
.elegant-heading {
    font-size: 3rem;
    font-weight: 300;
    color: #2d3a2e;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-align: left;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #5a7a5a;
    font-style: italic;
    font-weight: 400;
    text-align: left;
}

.subsection-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3a2e;
    margin-bottom: 18px;
    margin-top: 8px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 50px;
    background: linear-gradient(to bottom, #fff 0%, #fbfcfd 100%);
}

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

.philosophy-content {
    text-align: left;
}

.content-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 35px;
}

.content-columns p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

/* Services Section */
.services-elegant {
    padding: 100px 50px;
    background: linear-gradient(135deg, #fbfcfd 0%, #f5f4f2 100%);
    position: relative;
}

.services-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #fbfcfd);
    pointer-events: none;
}

.services-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-header-elegant {
    text-align: left;
    margin-bottom: 70px;
}

.services-grid-elegant {
    display: grid;
    gap: 40px;
}

.service-card-elegant {
    background: #fff;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ALLE CARDS OMKADERD */
.service-card-elegant.bordered-card {
    border: 2px solid #8fa88f;
}

.service-card-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transform: scaleY(0);
    transition: transform 0.5s ease;
}

.service-card-elegant:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.15);
}

.service-card-elegant:hover::before {
    transform: scaleY(1);
}

/* GEDIFFERENTIEERDE KLEURACCENTEN PER PRODUCT */
/* Product 1: Loopbaan - Warme terracotta/roze (uit foto) */
.service-loopbaan::before {
    background: linear-gradient(to bottom, #8fa88f, #7d9a7d);
}

.service-loopbaan .credential-tag {
    background: linear-gradient(135deg, #8fa88f, #7d9a7d);
    box-shadow: 0 4px 15px rgba(143, 168, 143, 0.3);
}

.service-loopbaan .service-toggle {
    color: #6b8f6b;
}

.service-loopbaan .service-toggle::after {
    color: #6b8f6b;
}

/* Product 2: CSR - Donkerblauwe accent (complementair) */
.service-csr.featured-card {
    background: linear-gradient(135deg, #fff 0%, #f8fafb 100%);
}

.service-csr::before {
    background: linear-gradient(to bottom, #5a7a5a, #6b8f6b);
    width: 6px;
}

.service-csr .credential-tag.featured-tag {
    background: linear-gradient(135deg, #5a7a5a, #6b8f6b);
    box-shadow: 0 4px 15px rgba(90, 122, 90, 0.35);
}

.service-csr .service-toggle.featured-toggle {
    color: #5a7a5a;
}

.service-csr .service-toggle.featured-toggle::after {
    color: #5a7a5a;
}

/* Product 3: Re-integratie - Donkergroene accent (natuur/groei) */
.service-reintegratie::before {
    background: linear-gradient(to bottom, #4a6e4a, #5a7e5a);
}

.service-reintegratie .service-essence {
    color: #4a6e4a;
}

.service-reintegratie .service-toggle {
    color: #4a6e4a;
}

.service-reintegratie .service-toggle::after {
    color: #4a6e4a;
}

.card-number {
    font-size: 5rem;
    font-weight: 100;
    color: rgba(143, 168, 143, 0.3);
    line-height: 1;
    margin-bottom: 18px;
    transition: all 0.5s ease;
}

.featured-number {
    color: rgba(107, 143, 107, 0.2);
}

.service-card-elegant:hover .card-number {
    color: rgba(143, 168, 143, 0.5);
}

.featured-marker {
    position: absolute;
    top: 35px;
    right: 35px;
}

.featured-logo {
    width: auto;
    height: 100px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.card-content-elegant h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #2d3a2e;
}

.service-essence {
    font-size: 1.25rem;
    font-style: italic;
    color: #5a7a5a;
    margin-bottom: 20px;
    font-weight: 400;
}

.service-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.credentials-box {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(228, 227, 226, 0.5);
}

.credential-tag {
    display: inline-block;
    padding: 8px 22px;
    color: #fff;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.credential-info {
    font-size: 0.95rem;
    font-style: italic;
    color: #5a7a5a;
    line-height: 1.6;
}

/* Expandable Details */
.service-details {
    margin-top: 25px;
}

.service-toggle {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid currentColor;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    list-style: none;
    position: relative;
    padding-right: 50px;
}

.service-toggle::-webkit-details-marker {
    display: none;
}

.service-toggle::after {
    content: '↓';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

details[open] .service-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.service-toggle:hover {
    background: rgba(0, 0, 0, 0.03);
    transform: translateY(-2px);
}

.service-expanded {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(228, 227, 226, 0.3);
    animation: expandDown 0.4s ease-out;
}

@keyframes expandDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-expanded h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2d3a2e;
    margin-bottom: 20px;
}

.service-expanded h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3a2e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-expanded p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.emphasis-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5a7a5a;
    margin: 25px 0;
}

.note-text {
    font-size: 1rem;
    font-style: italic;
    color: #6b8f6b;
    margin-top: 18px;
}

/* CONSISTENT INFO GRID - met product-specifieke kleuren */
.info-grid {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.info-item {
    font-size: 1.05rem;
    padding: 15px 20px;
    background: rgba(249, 249, 249, 0.8);
    border-radius: 10px;
    border-left: 3px solid rgba(107, 143, 107, 0.5);
    transition: all 0.3s ease;
    color: #4a4a4a;
    line-height: 1.6;
}

.info-item:hover {
    background: rgba(249, 249, 249, 1);
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Product-specifieke kleuren voor info items */
.service-loopbaan .info-item {
    border-left-color: #8fa88f;
    background: linear-gradient(135deg, rgba(245, 250, 245, 0.8), rgba(248, 252, 248, 0.9));
}

.service-loopbaan .info-item:hover {
    border-left-color: #6b8f6b;
    background: linear-gradient(135deg, rgba(245, 250, 245, 1), rgba(248, 252, 248, 1));
}

.service-csr .info-item {
    border-left-color: #6b8f6b;
    background: linear-gradient(135deg, rgba(245, 250, 245, 0.8), rgba(248, 252, 248, 0.9));
}

.service-csr .info-item:hover {
    border-left-color: #5a7a5a;
    background: linear-gradient(135deg, rgba(245, 250, 245, 1), rgba(248, 252, 248, 1));
}

.service-reintegratie .info-item {
    border-left-color: #5a7e5a;
    background: linear-gradient(135deg, rgba(245, 250, 245, 0.8), rgba(248, 252, 248, 0.9));
}

.service-reintegratie .info-item:hover {
    border-left-color: #4a6e4a;
    background: linear-gradient(135deg, rgba(245, 250, 245, 1), rgba(248, 252, 248, 1));
}

/* Phases Compact - blauw accent */
.phases-compact {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.phase-item {
    padding: 18px 22px;
    background: linear-gradient(135deg, #f8fafb, #fff);
    border-radius: 12px;
    border-left: 4px solid #6b8f6b;
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.phase-item:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 20px rgba(107, 143, 107, 0.12);
    border-left-color: #5a7a5a;
}

/* Video Section */
.video-section {
    margin: 30px 0;
}

.video-section h5 {
    text-align: center;
    margin-bottom: 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* CSR Logos */
.csr-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.csr-logo {
    max-width: 160px;
    height: auto;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.csr-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Practical Info */
.practical-info {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(228, 227, 226, 0.3);
}

.practical-info p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.external-link a {
    color: #5a7a5a;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.external-link a:hover {
    color: #6b8f6b;
    text-decoration: underline;
}

/* About Section */
.about-section {
    padding: 100px 50px;
    background: linear-gradient(to bottom, #fff 0%, #fbfcfd 100%);
}

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

.about-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.about-text {
    text-align: left;
}

.about-intro {
    margin: 35px 0;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
    font-weight: 400;
}

.about-image {
    position: sticky;
    top: 120px;
}

.portrait-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.portrait-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Approach Section - gedifferentieerde kleuren */
.approach-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(228, 227, 226, 0.3);
}

.approach-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3a2e;
    margin-bottom: 40px;
    text-align: left;
}

.approach-grid {
    display: grid;
    gap: 15px;
}

.approach-item {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 20px 25px;
}

/* Verschillende kleuren per approach item */
.approach-item:nth-child(1) .approach-icon {
    background: linear-gradient(135deg, #8fa88f, #7d9a7d);
    box-shadow: 0 4px 15px rgba(143, 168, 143, 0.25);
}

.approach-item:nth-child(2) .approach-icon {
    background: linear-gradient(135deg, #5a7a5a, #6b8f6b);
    box-shadow: 0 4px 15px rgba(107, 143, 107, 0.25);
}

.approach-item:nth-child(3) .approach-icon {
    background: linear-gradient(135deg, #4a6e4a, #5a7e5a);
    box-shadow: 0 4px 15px rgba(74, 110, 74, 0.25);
}

.approach-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.approach-item:hover .approach-icon {
    transform: scale(1.1);
}

.approach-item:nth-child(1):hover .approach-icon {
    box-shadow: 0 6px 25px rgba(143, 168, 143, 0.4);
}

.approach-item:nth-child(2):hover .approach-icon {
    box-shadow: 0 6px 25px rgba(107, 143, 107, 0.4);
}

.approach-item:nth-child(3):hover .approach-icon {
    box-shadow: 0 6px 25px rgba(74, 110, 74, 0.40);
}

.approach-content {
    flex: 1;
}

.approach-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3a2e;
    margin-bottom: 8px;
}

.approach-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Contact Section - uitgebreid met formulier */
.contact-elegant {
    padding: 100px 50px;
    background: linear-gradient(to bottom right, #eef3ee, #dfe8df, #eef3ee);
}

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

.contact-text-elegant {
    text-align: left;
}

.contact-text-elegant h2 {
    margin-bottom: 25px;
}

.contact-text-elegant p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2d3a2e;
    margin-bottom: 40px;
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.contact-info-box h3 {
    font-size: 1.5rem;
    color: #2d3a2e;
    margin-bottom: 20px;
}

.contact-info-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3a2e;
    margin-bottom: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2d3a2e;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e4e3e2;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a7a5a;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background: linear-gradient(135deg, #6b8f6b 0%, #7da07d 100%);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(107, 143, 107, 0.35);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(107, 143, 107, 0.45);
    background: linear-gradient(135deg, #5a7e5a 0%, #6b8f6b 100%);
}

.form-note {
    color: #5a7a5a;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

.partner-showcase-section {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 60px;
    border-top: 2px solid rgba(228, 227, 226, 0.3);
}

.partner-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #5a7a5a;
    font-weight: 600;
    margin-bottom: 35px;
    display: block;
}

.partner-logo-elegant {
    max-width: 260px;
    height: auto;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.partner-logo-elegant:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Footer - uitgebreid */
.footer-elegant {
    padding: 60px 50px 40px;
    background: #2d3a2e;
}

.footer-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    color: rgba(228, 227, 226, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links a {
    color: rgba(228, 227, 226, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(228, 227, 226, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(228, 227, 226, 0.7);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .nav-container-elegant {
        padding: 20px 35px;
    }

    .nav-logo-prominent {
        max-width: 340px;
    }

    .hero-text-box {
        padding: 50px 45px;
        max-width: 550px;
    }

    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 1200px) {
    .content-columns,
    .contact-layout,
    .about-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-image {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 968px) {
    .nav-container-elegant {
        flex-direction: column;
        gap: 20px;
        padding: 18px;
    }

    .nav-logo-prominent {
        max-width: 280px;
    }

    .nav-links-elegant {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    /* MOBILE HERO FIX */
    .hero-elegant {
        margin-top: 150px;
        height: auto;
        min-height: auto;
        flex-direction: column;
    }

    .hero-backdrop {
        position: relative;
        width: 100%;
        height: 50vh;
        min-height: 400px;
        flex-shrink: 0;
    }

    .hero-overlay-gradient {
        background: linear-gradient(
            to bottom,
            rgba(220, 228, 220, 0.3) 0%,
            rgba(107, 143, 107, 0.4) 100%
        );
    }

    .hero-content-elegant {
        position: relative;
        padding: 35px 20px;
        background: #fbfcfd;
    }

    .hero-text-box {
        padding: 35px 28px;
        max-width: 100%;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-lead {
        font-size: 1.12rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .elegant-heading {
        font-size: 2.3rem;
    }

    .philosophy-section,
    .services-elegant,
    .about-section,
    .contact-elegant {
        padding: 70px 25px;
    }

    .service-card-elegant {
        padding: 35px 25px;
    }

    .card-number {
        font-size: 3.8rem;
    }

    .service-expanded h4 {
        font-size: 1.4rem;
    }

    .service-expanded h5 {
        font-size: 1.2rem;
    }

    .approach-section {
        margin-top: 60px;
        padding-top: 50px;
    }

    .contact-form-container {
        padding: 30px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* CSR + Noloc logos kleiner op mobile, niet over tekst */
    .featured-marker {
        position: static;
        margin-bottom: 15px;
        text-align: right;
    }

    .featured-logo {
        height: 50px;
    }

    .csr-logo {
        max-width: 80px;
    }
}

@media (max-width: 600px) {
    .nav-links-elegant {
        gap: 12px;
    }

    .nav-links-elegant a {
        font-size: 0.95rem;
    }

    .hero-backdrop {
        height: 40vh;
        min-height: 300px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-lead {
        font-size: 1.05rem;
    }

    .hero-btn-elegant {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .elegant-heading {
        font-size: 1.9rem;
    }

    .card-content-elegant h3 {
        font-size: 1.7rem;
    }

    .service-toggle {
        padding: 10px 25px;
        padding-right: 45px;
        font-size: 0.95rem;
    }

    .approach-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info-box {
        padding: 25px 20px;
    }
}
