/* =========================
   VARIABELEN VOOR CONSISTENTIE & ONDERHOUD
========================= */
:root {
    --primary: #6da544;
    --primary-dark: #5b8f3a;
    --primary-light: #8dc663;
    --radius-lg: 32px;
    --radius-md: 24px;
    --radius-sm: 12px;
    --shadow-md: 0 15px 35px rgba(0,0,0,0.12);
    --shadow-lg: 0 28px 70px rgba(0,0,0,0.25);
    --glass-bg: rgba(255, 255, 255, 0.78);
    --glass-bg-hover: rgba(255, 255, 255, 0.88);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(20px);
}

/* =========================
   RESET & BASIS – Mooie, diepere en elegantere achtergrond
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", system-ui, sans-serif;
    color: #2b2b2b;
    background: linear-gradient(145deg, #0b331c 0%, #142f20 30%, #1c452d 60%, #255e38 100%);
    background-attachment: fixed;
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Subtiele radiale overlays voor diepte en luxe */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(109,165,68,0.14) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(100,140,80,0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 20%, rgba(90,130,70,0.09) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    opacity: 0.85;
}

/* Zeer subtiele noise voor premium textuur */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxMDAnIGhlaWdodD0nMTAwJyB2aWV3Qm94PScwIDAgMSAxJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC44JyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9JzEwMCUnIGhlaWdodD0nMTAwJScgZmlsdGVyPSd1cmwoI24pJyBvcGFjaXR5PScwLjAyJy8+PC9zdmc+');
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
    mix-blend-mode: overlay;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
}
/* MOVING LIGHTS */
.light {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    width: 10px;
    height: 10px;
    animation: float 15s linear infinite;
    filter: blur(3px);
}
@keyframes float {
    0% { transform: translate(0,0) scale(0.5); opacity:0.2; }
    50% { transform: translate(500px, -200px) scale(1); opacity:0.6; }
    100% { transform: translate(-300px, 300px) scale(0.7); opacity:0.2; }
}
/* =========================
   HEADER – Verbeterd glassmorphism
========================= */
.header {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 25px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 8px 35px rgba(0,0,0,0.18);
    border-bottom: 2px solid rgba(109,165,68,0.35);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo {
    height: 70px;
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.1);
}
.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}
.phone {
    font-size: 0.95rem;
    color: #4e6b3f;
    font-weight: 500;
}
.phone a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.phone a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
nav {
    display: flex;
    align-items: center;
}
nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #2b3d28;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
nav a:hover::after {
    width: 100%;
}
nav a:hover {
    color: var(--primary);
}
nav .cta {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(109,165,68,0.25);
}
nav .cta:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(109,165,68,0.35);
}
nav a.kampeertuin {
    position: relative;
    display: inline-block;
    color: #2b3d28;
    transition: color 0.3s ease;
}
nav a.kampeertuin::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -1.4rem;
    width: 1.1rem;
    height: 1.1rem;
    background: url('images/kampeertuinlogo.png') no-repeat center center;
    background-size: contain;
    opacity: 0;
    transform: translateX(-50%) translateY(6px) scale(0.8);
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
nav a.kampeertuin:hover {
    color: var(--primary-dark);
}
nav a.kampeertuin:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    animation: bounceIcon 0.5s ease forwards;
}
@keyframes bounceIcon {
    0% { transform: translateX(-50%) translateY(-6px) scale(0.9); }
    50% { transform: translateX(-50%) translateY(3px) scale(1.05); }
    70% { transform: translateX(-50%) translateY(-1px) scale(1); }
    100% { transform: translateX(-50%) translateY(0) scale(1); }
}
nav a.active:not(.cta) {
    color: var(--primary);
}
nav a.active:not(.cta)::after {
    width: 100%;
}
nav a.cta.active {
    background: var(--primary);
    outline: 2px solid white;
    outline-offset: -4px;
}

/* =========================
   HERO – Geen ruimte onderaan
========================= */
.hero-small {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
    margin-bottom: 0;
}
.hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 5s ease;
    transform: scale(1.1);
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
    z-index: 1;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 650px;
    color: white;
    text-align: center;
    padding: 0 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease both;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.2s ease both;
}

/* =========================
   BUTTONS
========================= */
.button {
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(109,165,68,0.2);
}
.button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(109,165,68,0.3);
}
.button.light {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}
.button.light:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 6px 12px rgba(109,165,68,0.3);
}

/* =========================
   SECTIES
========================= */
.section {
    padding: 6rem 0;
    animation: fadeUp 1s ease both;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.section.visible {
    opacity: 1;
    transform: translateY(0);
}
.section:first-of-type {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
.section.alt {
    background: rgba(44, 107, 58, 0.12);
    backdrop-filter: blur(6px);
}
.section h2,
.section h4 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-align: center;
    position: relative;
}
.section h2::after,
.section h4::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 1rem auto 0;
}

/* =========================
   INTRO – Glassmorphism box met perfecte leesbaarheid
========================= */
.intro {
    background: transparent;
    position: relative;
    padding: 0 0 6rem 0;
    margin-top: 0;
}
.intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(109,165,68,0.06) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.7;
}
.intro-box {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 4.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.intro-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.08) 100%);
    border-radius: inherit;
    pointer-events: none;
}
.intro-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 90px rgba(0,0,0,0.32);
    background: var(--glass-bg-hover);
}
.intro-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 1.5rem;
    text-align: left;
}
.intro-header h2 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
    white-space: nowrap;
    color: #2b2b2b;
}
.intro-logo {
    max-height: 70px;
    width: auto;
    flex-shrink: 0;
}
.intro-lead {
    font-size: 1.3rem;
    color: #2a4528;
    margin-bottom: 2.5rem;
    font-weight: 500;
}
.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}
@media (max-width: 768px) {
    .intro-header {
        flex-direction: column;
        text-align: center;
    }
    .intro-header h2 {
        white-space: normal;
    }
    .intro-logo {
        max-height: 60px;
    }
}

/* =========================
   SERVICES – Premium cards met betere tekstleesbaarheid
========================= */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 5rem;
    padding: 0 2rem;
}
.service {
    position: relative;
    height: 340px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: center/cover no-repeat;
    box-shadow: var(--shadow-md);
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.7s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    transform: translateY(60px) scale(0.96);
    animation: fadeInUpPremium 1s ease-out forwards;
}
.service:nth-child(1) { animation-delay: 0.2s; }
.service:nth-child(2) { animation-delay: 0.4s; }
.service:nth-child(3) { animation-delay: 0.6s; }
.service:nth-child(4) { animation-delay: 0.3s; }
.service:nth-child(5) { animation-delay: 0.5s; }
.service:nth-child(6) { animation-delay: 0.7s; }
@keyframes fadeInUpPremium {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.service::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.25) 35%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0.82) 100%);
    z-index: 1;
    transition: background 0.7s ease;
}
.service:hover::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.35) 35%, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0.88) 100%);
}
.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2.2rem 2.4rem;
    color: white;
    text-align: center;
    z-index: 2;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.service-title {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.service-desc {
    font-size: 1.08rem;
    line-height: 1.65;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.8s ease 0.15s, max-height 0.8s ease 0.15s;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
}
.service:hover {
    transform: translateY(-24px) scale(1.03);
    box-shadow: 0 45px 90px rgba(0,0,0,0.45);
    border-color: var(--primary-light);
}
.service:hover .service-content {
    transform: translateY(-20px);
}
.service:hover .service-desc {
    opacity: 1;
    max-height: 160px;
}
.service::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    box-shadow: 0 0 20px rgba(109,165,68,0.4);
}
.service:hover::before {
    opacity: 0.6;
}

/* Services responsive */
@media (max-width: 1024px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem;
        padding: 0 1.5rem;
    }
    .service {
        height: 320px;
    }
}
@media (max-width: 768px) {
    .services {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0;
        margin-top: 4rem;
    }
    .service {
        height: 300px;
    }
    .service-title {
        font-size: 1.7rem;
    }
    .service-content {
        padding: 2.8rem 2rem 2.2rem;
    }
    .service:hover {
        transform: translateY(-16px) scale(1.015);
    }
}

/* =========================
   PROJECTS
========================= */
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    perspective: 1200px;
}
.project {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.project img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.6s ease;
}
.project:hover img {
    transform: scale(1.15);
}
.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.project-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}
.project:hover .project-caption {
    opacity: 1;
}

/* =========================
   CONTACT FORM – Glassmorphism met perfecte leesbaarheid
========================= */
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 3.2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.3, 1);
}
#contact-form::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.08) 100%);
    border-radius: inherit;
    pointer-events: none;
}
#contact-form:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 90px rgba(0,0,0,0.32);
    background: var(--glass-bg-hover);
}
#contact-form input,
#contact-form textarea {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(109,165,68,0.25);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    color: #2a4528;
}
#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: #666;
}
#contact-form input:focus,
#contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(109,165,68,0.3);
    outline: none;
}
#contact-form button {
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
#contact-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(109,165,68,0.3);
}
.fallback {
    display: inline-block;
    margin-top: 1.5rem;
    color: #555;
    font-size: 0.95rem;
}

/* =========================
   FOOTER – Rustiger met glass accent
========================= */
.footer {
    background: linear-gradient(135deg, #081a10 0%, #0f2618 25%, #163823 50%, #1f4d2f 75%, #0c2414 100%);
    color: #d8e6d0;
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
    clip-path: ellipse(160% 100% at 50% 0%);
    margin-top: -2px;
    box-shadow: 0 -12px 30px rgba(0,0,0,0.35), inset 0 1px 0 rgba(109,165,68,0.12);
    backdrop-filter: blur(10px);
}
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 40%, rgba(109,165,68,0.1) 0%, transparent 35%),
                radial-gradient(circle at 85% 60%, rgba(100,140,80,0.08) 0%, transparent 40%);
    pointer-events: none;
    opacity: 0.75;
    mix-blend-mode: soft-light;
}
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-light) 30%, var(--primary) 50%, var(--primary-light) 70%, transparent 100%);
    box-shadow: 0 0 18px rgba(109,165,68,0.45);
    opacity: 0.8;
    animation: glowPulse 5s ease-in-out infinite alternate;
}
@keyframes glowPulse {
    from { opacity: 0.7; }
    to   { opacity: 0.9; }
}
.footer-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    z-index: 2;
}
.footer p {
    margin: 0.6rem 0;
    font-size: 0.98rem;
    opacity: 0.94;
    line-height: 1.5;
}
.footer a {
    color: #c8e6b8;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.4s ease;
}
.footer a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--primary);
    transition: width 0.4s ease;
}
.footer a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(109,165,68,0.4);
}
.footer a:hover::after {
    width: 100%;
}
.footer-right {
    position: absolute;
    right: 2.5rem;
    bottom: 1.8rem;
    font-size: 0.86rem;
    color: #a8c8a0;
    opacity: 0.78;
    transition: all 0.4s ease;
}
.footer-right:hover {
    opacity: 1;
    color: #d8e6d0;
    transform: translateY(-2px);
}
.footer strong,
.footer .company-name {
    font-weight: 700;
    color: #e8f0e0;
    text-shadow: 0 0 8px rgba(109,165,68,0.25);
}

/* Footer responsive */
@media (max-width: 1024px) {
    .footer {
        padding: 2.8rem 0 1.8rem;
    }
}
@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    .footer p {
        margin: 0.5rem 0;
        font-size: 0.95rem;
    }
    .footer-right {
        position: static;
        margin-top: 1.8rem;
        font-size: 0.88rem;
    }
}
@media (max-width: 480px) {
    .footer-inner {
        padding: 0 1.5rem;
    }
}

/* =========================
   ANIMATIES & ALGEMENE RESPONSIVE
========================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1024px) {
    .services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .header-inner { flex-direction: column; height: auto; padding: 1.5rem 0; }
    .header-right { align-items: center; margin-top: 1rem; }
    nav { flex-direction: column; gap: 1rem; }
    nav a { margin-left: 0; }
    .services, .intro-grid, .projects { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    #contact-form { padding: 2rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .section { padding: 4rem 0; }
    .section h2, .section h4 { font-size: 2.2rem; }
    .service { height: 240px; }
}

/* =========================
   LIGHTBOX & OVERIGE
========================= */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}
.lightbox.active {
    display: flex;
    opacity: 1;
}
.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.lightbox.active .lightbox-img {
    transform: scale(1);
}
.lightbox .close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.3s ease;
}
.lightbox .close:hover {
    color: var(--primary);
}
a:focus, button:focus, input:focus, textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
.service-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.service-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease-in-out, transform 6s ease;
}
.service-slide.active {
    opacity: 1;
    transform: scale(1);
}
.before-after-label {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    background: rgba(255,255,255,0.85);
    color: #2f4a2a;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: opacity 0.4s ease;
}
.before-after-label.na {
    background: rgba(109,165,68,0.9);
    color: white;
}
.before-after-label.voor {
    background: rgba(255,255,255,0.9);
    color: #2f4a2a;
}
.google-reviews {
    margin-top: 10px !important;
}
.elfsight-app-60099a7e-bc0d-4ea6-8699-dc910013f76f {
    margin: 0 !important;
    padding: 0 !important;
}
.elfsight-app-60099a7e-bc0d-4ea6-8699-dc910013f76f iframe {
    height: 400px !important;
}
