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

        /* Skip Link for Accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #5aa454;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            z-index: 10001;
            font-weight: 600;
            border-radius: 0 0 8px 0;
            transition: top 0.3s;
        }

        .skip-link:focus {
            top: 0;
            outline: 3px solid #7bc96f;
            outline-offset: 2px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, #1a2e0f 0%, #2d4a35 100%);
            background-attachment: fixed;
            position: relative;
            overflow-x: hidden;
            min-height: 100vh;
            color: #cbd5e1;
            padding-top: 80px;
        }

        .header {
            background: linear-gradient(135deg, rgba(45, 80, 22, 0.98) 0%, rgba(74, 124, 89, 0.95) 100%);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            animation: slideDown 0.6s ease-out;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            width: 100px;
            height: 100px;
            display: block;
        }

        nav {
            display: flex;
            gap: 30px;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            padding: 10px 20px;
            border-radius: 25px;
            background: rgba(90, 164, 84, 0.1);
            border: 2px solid rgba(200, 200, 200, 0.3);
        }

        nav a:hover {
            background: linear-gradient(135deg, #5aa454 0%, #7bc96f 100%);
            border-color: #5aa454;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(90, 164, 84, 0.4);
        }

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

        .company-name {
            color: white;
            font-size: 2em;
            font-weight: 700;
        }

        .location {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1em;
        }

        .contact-header {
            text-align: right;
        }

        .phone {
            color: white;
            font-size: 1.4em;
            font-weight: 600;
            text-decoration: none;
        }

        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .hero {
            animation: fadeInUp 0.8s ease-out;
            padding: 140px 60px 60px;
            text-align: center;
            position: relative;
            z-index: 2;
            background: white;
            border-radius: 20px;
            margin: 20px auto 40px auto;
            max-width: 1200px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 20% 20%, rgba(90, 164, 84, 0.15) 0%, transparent 25%),
                        radial-gradient(circle at 80% 20%, rgba(123, 201, 111, 0.12) 0%, transparent 25%),
                        radial-gradient(circle at 20% 80%, rgba(74, 124, 89, 0.1) 0%, transparent 25%),
                        radial-gradient(circle at 80% 80%, rgba(90, 164, 84, 0.08) 0%, transparent 25%);
            pointer-events: none;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        h1 {
            color: #5aa454;
            font-size: 3em;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .tagline {
            font-size: 1.5em;
            color: #333333;
            margin-bottom: 30px;
            line-height: 1.4;
        }

        .experience {
            background: linear-gradient(135deg, #5aa454 0%, #7bc96f 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            display: inline-block;
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 1.1em;
        }

        #diensten {
            padding: 80px 20px;
            background: white;
            margin: 60px 0;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        #diensten::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 20% 20%, rgba(90, 164, 84, 0.15) 0%, transparent 25%),
                        radial-gradient(circle at 80% 20%, rgba(123, 201, 111, 0.12) 0%, transparent 25%),
                        radial-gradient(circle at 20% 80%, rgba(74, 124, 89, 0.1) 0%, transparent 25%),
                        radial-gradient(circle at 80% 80%, rgba(90, 164, 84, 0.08) 0%, transparent 25%);
            pointer-events: none;
            z-index: 0;
        }

        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 20px;
            position: relative;
            z-index: 1;
        }

        .service {
            background: linear-gradient(135deg, rgba(90, 164, 84, 0.08) 0%, rgba(123, 201, 111, 0.06) 100%);
            border: none;
            position: relative;
            animation: fadeInUp 0.6s ease-out forwards;
            padding: 0;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
        }

        .service:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 60px rgba(57, 255, 20, 0.4), 0 0 40px rgba(57, 255, 20, 0.3);
        }

        .service-icon-wrapper {
            text-align: center;
            margin-bottom: 20px;
        }

        .service-icon {
            font-size: 3em;
            color: #5aa454;
        }

        .service-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        .service-content {
            padding: 30px;
        }

        .service-title {
            font-size: 1.3em;
            font-weight: 700;
            color: #5aa454;
            margin-bottom: 18px;
            text-align: center;
        }

        .service-desc {
            color: #64748b;
            line-height: 1.7;
            font-size: 1.05em;
        }

        .service-list {
            margin-top: 15px;
            padding-left: 20px;
        }

        .service-list li {
            color: rgba(255, 255, 255, 0.9);
            margin: 10px 0;
            font-size: 1.05em;
        }

        .footer {
            background: linear-gradient(135deg, rgba(45, 80, 22, 0.98) 0%, rgba(74, 124, 89, 0.95) 100%);
            backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.6s ease-out;
            padding: 40px 0;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.05em;
        }

        .footer-links {
            margin: 20px 0;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
        }

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

        .contact-section {
            background: linear-gradient(135deg, rgba(74, 124, 89, 0.95) 0%, rgba(74, 124, 89, 0.9) 100%);
            backdrop-filter: blur(20px);
            animation: fadeInUp 0.8s ease-out;
            border-radius: 15px;
            padding: 50px;
            margin: 40px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .contact-title {
            text-align: center;
            color: #ffffff;
            font-size: 2.5em;
            margin-bottom: 40px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-info-card,
        .contact-form-card {
            background: linear-gradient(135deg, rgba(74, 124, 89, 0.8) 0%, rgba(74, 124, 89, 0.7) 100%);
            border: 1px solid rgba(200, 200, 200, 0.2);
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .contact-info-card h3,
        .contact-form-card h3 {
            color: #ffffff;
            font-size: 1.6em;
            margin-bottom: 25px;
        }

        .contact-info-card ul {
            list-style: none;
            padding: 0;
        }

        .contact-info-card li {
            color: #cbd5e1;
            padding: 12px 0;
            font-size: 1.05em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-info-card .icon {
            font-size: 1.2em;
        }

        .contact-info-card a {
            color: #ffffff;
            text-decoration: none;
        }

        .contact-info-card a:hover {
            text-decoration: underline;
        }

        .opening-hours,
        .partnership {
            margin-top: 30px;
        }

        .opening-hours h4,
        .partnership h4 {
            color: #5aa454;
            font-size: 1.3em;
            margin-bottom: 15px;
        }

        .opening-hours table {
            width: 100%;
            color: #64748b;
            font-size: 1.05em;
        }

        .opening-hours td {
            padding: 8px 0;
        }

        .opening-hours td:last-child {
            text-align: right;
            font-weight: 600;
        }

        .partnership p {
            color: #64748b;
            line-height: 1.7;
            font-size: 1.05em;
        }

        .partnership strong {
            color: #7bc96f;
            font-weight: 700;
        }

        .form-subtitle {
            color: #cbd5e1;
            margin-bottom: 25px;
            font-size: 1.05em;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

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

        .form-group label {
            display: block;
            color: #5aa454;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.05em;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid rgba(90, 164, 84, 0.3);
            background: rgba(255, 255, 255, 0.8);
            color: #333;
            border-radius: 8px;
            font-size: 16px;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #5aa454;
            background: rgba(255, 255, 255, 1);
        }

        .contact-form-card .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
            position: relative;
            overflow-x: hidden;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .contact-form-card .submit-btn:hover {
            transform: translateY(-2px);
        }

        /* Cookie Consent Banner */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, rgba(90, 164, 84, 0.95) 0%, rgba(90, 164, 84, 0.9) 100%);
            backdrop-filter: blur(10px);
            color: white;
            padding: 1.5rem;
            z-index: 10000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
        }

        .cookie-consent.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .cookie-text h3 {
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .cookie-text p {
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            opacity: 0.95;
        }

        .cookie-text a {
            color: #ffffff;
            text-decoration: underline;
            font-size: 0.9rem;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .cookie-btn.essential {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cookie-btn.essential:hover {
            background: linear-gradient(135deg, rgba(74, 124, 89, 0.8) 0%, rgba(74, 124, 89, 0.7) 100%);
            border: 1px solid rgba(200, 200, 200, 0.2);
            color: #ffffff;
        }

        .cookie-btn.accept-all {
            background: #f59e0b;
            color: white;
        }

        .cookie-btn.accept-all:hover {
            background: #e55a2b;
            transform: scale(1.05);
        }

        /* Legal Links */
        .legal-links {
            margin-top: 1rem;
            font-size: 0.9rem;
        }

        .legal-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .legal-links a:hover {
            color: white;
            text-decoration: underline;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #5aa454 0%, #39ff14 100%);
            border: 2px solid rgba(200, 200, 200, 0.3);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.25rem;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .back-to-top:hover {
            background: #5aa454;
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 60px rgba(90, 164, 84, 0.3), 0 0 20px rgba(90, 164, 84, 0.2);
            border-color: rgba(90, 164, 84, 0.6);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .back-to-top.show {
            display: flex;
        }

        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }

            .cookie-buttons {
                width: 100%;
                flex-direction: column;
            }

            .cookie-btn {
                width: 100%;
            }

            .header {
                padding: 10px 0;
                animation: none !important;
            }

            .header-content {
                flex-direction: column;
                gap: 8px;
                text-align: center;
                padding: 0 15px;
            }

            .logo-section {
                gap: 10px;
            }

            .logo {
                width: 50px;
                height: 50px;
                animation: none !important;
                transform: none !important;
            }

            .logo-section {
                animation: none !important;
            }

            .company-name {
                font-size: 1.2em;
            }

            .location {
                font-size: 0.8em;
            }

            .contact-header {
                text-align: center;
            }

            .phone {
                font-size: 1em;
            }

            .header-social-btn,
            .whatsapp-header {
                display: none !important;
            }

            .contact-header .header-social-btn {
                display: none !important;
            }

            nav {
                flex-direction: row;
                gap: 8px;
                align-items: center;
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
            }

            nav a {
                padding: 8px 15px;
                font-size: 13px;
            }

            .hero {
                padding: 40px 20px;
                margin: 5px auto 30px auto;
            }

            h1 {
                font-size: 2.2em;
            }

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

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

            .contact-section {
                padding: 30px 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }
    
    
        .whatsapp-button {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background: #25D366;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .whatsapp-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 50px rgba(0,0,0,0.25);
        }

        .whatsapp-button span {
            display: none;
        }

        .whatsapp-button:hover span {
            display: block;
        }

        @media (max-width: 768px) {
            .whatsapp-button {
                padding: 1rem;
                width: 60px;
                height: 60px;
                border-radius: 50%;
                justify-content: center;
            }

            .whatsapp-button span {
                display: none !important;
            }
        }

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-header {
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 42px;
    color: #5aa454;
    margin-bottom: 15px;
    text-shadow: none;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #333333;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: rgba(74, 124, 89, 0.3);
}

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

.about-content h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 30px;
}

.about-description {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat {
    background: rgba(45, 80, 22, 0.8);
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid rgba(200, 200, 200, 0.2);
    transition: all 0.3s;
}

.stat:hover {
    transform: translateY(-10px);
    border-color: #5aa454;
    box-shadow: 0 20px 60px rgba(90, 164, 84, 0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #94a3b8;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background: white;
    margin: 60px auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 20%, rgba(90, 164, 84, 0.15) 0%, transparent 25%),
                radial-gradient(circle at 80% 20%, rgba(123, 201, 111, 0.12) 0%, transparent 25%),
                radial-gradient(circle at 20% 80%, rgba(74, 124, 89, 0.1) 0%, transparent 25%),
                radial-gradient(circle at 80% 80%, rgba(90, 164, 84, 0.08) 0%, transparent 25%);
    pointer-events: none;
    z-index: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.contact .section-header {
    margin-bottom: 40px;
}

.contact-info, .contact-form {
    background: linear-gradient(135deg, rgba(90, 164, 84, 0.08) 0%, rgba(123, 201, 111, 0.06) 100%);
    border: none;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info:hover, .contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(57, 255, 20, 0.3), 0 0 30px rgba(57, 255, 20, 0.2);
    border-color: rgba(57, 255, 20, 0.4);
}

.contact-info h3, .contact-form h3 {
    font-size: 28px;
    color: #5aa454;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 24px;
    color: #5aa454;
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    color: #5aa454;
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-item p {
    color: #64748b;
    margin: 0;
}

.contact-item a {
    color: #5aa454;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #7bc96f;
}

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

.form-group label {
    display: block;
    color: #5aa454;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(90, 164, 84, 0.3);
    border-radius: 10px;
    color: #333;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #5aa454;
    background: rgba(255, 255, 255, 1);
}

.submit-btn {
    background: linear-gradient(135deg, #5aa454 0%, #7bc96f 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(90, 164, 84, 0.5);
}

/* Footer */
.footer {
    background: rgba(45, 80, 22, 0.95);
    padding: 30px 20px 20px;
    text-align: center;
    border-top: 1px solid rgba(200, 200, 200, 0.2);
}

.footer-copyright {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-legal {
    margin: 15px 0;
    padding: 15px 0;
}

.footer-legal a {
    color: #cbd5e1;
    text-decoration: none;
    padding: 0 8px;
    transition: color 0.3s;
    font-size: 13px;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
    padding: 0 5px;
}

.footer-legal a:hover,
.footer-legal a:focus {
    color: #7bc96f;
    text-decoration: underline;
    outline: 2px solid #7bc96f;
    outline-offset: 2px;
}

.footer-sbuilder {
    margin-top: 5px;
    padding-top: 0;
    border-top: none;
}

.footer-sbuilder p {
    margin: 0;
    font-size: 14px;
    color: #cbd5e1;
}

.footer-sbuilder a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-sbuilder a:hover,
.footer-sbuilder a:focus {
    color: #7bc96f;
    text-decoration: underline;
    outline: 2px solid #7bc96f;
    outline-offset: 2px;
}

.sbuilder-slogan {
    color: #64748b;
    font-size: 13px;
    font-style: italic;
}

.back-to-top {
    display: none;
}

.back-to-top:hover {
    transform: translateY(-3px);
    color: #7bc96f;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    z-index: 1001;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-info, .contact-form {
        padding: 30px 20px;
    }

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

/* Services Section Container */
#diensten {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

#diensten .services {
    max-width: 100%;
}

/* Comprehensive Responsive Design */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 36px;
    }
    
    .about-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 160px;
    }

    body {
        padding-top: 200px;
    }

    #diensten, .contact {
        margin: 30px 0;
        padding: 40px 15px;
        border-radius: 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    .about-subtitle {
        font-size: 18px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h3, .contact-form h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    html {
        scroll-padding-top: 140px;
    }

    body {
        padding-top: 180px;
    }

    .header {
        padding: 8px 0;
        animation: none !important;
    }

    .header-content {
        gap: 6px;
        padding: 0 10px;
    }

    .hero {
        margin: 5px auto 20px auto;
        padding: 30px 15px;
    }

    .logo {
        width: 40px;
        height: 40px;
        animation: none !important;
        transform: none !important;
    }

    .logo-section {
        animation: none !important;
    }

    .header-social-btn,
    .whatsapp-header {
        display: none !important;
    }

    .contact-header .header-social-btn {
        display: none !important;
    }

    .company-name {
        font-size: 1em;
    }

    .location {
        font-size: 0.7em;
    }

    .phone {
        font-size: 0.9em;
    }

    nav {
        gap: 6px;
    }

    nav a {
        padding: 6px 12px;
        font-size: 12px;
    }

    #diensten {
        padding: 40px 15px;
    }

    .about {
        padding: 40px 15px;
    }

    .contact {
        padding: 40px 15px;
    }

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

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* Logo Icon Styling */
.logo-icon {
    font-size: 2.5em;
    color: #ffffff;
    margin-right: 15px;
}

/* Hero CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #5aa454 0%, #7bc96f 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(90, 164, 84, 0.3);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(90, 164, 84, 0.5);
}

.cta-button i {
    font-size: 16px;
}

/* Header Social Buttons */
.header-left {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: white;
    transition: all 0.3s ease;
}

.whatsapp-header {
    background: #25D366;
}

.whatsapp-header:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.facebook-header {
    background: #1877f2;
}

.facebook-header:hover {
    background: #0d65d9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.google-header {
    background: #4285f4;
}

.google-header:hover {
    background: #357ae8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.4);
}

/* Header responsive adjustments */
@media (max-width: 1200px) {
    .header-social-btn span {
        display: none;
    }
    
    .header-social-btn {
        width: 36px;
        height: 36px;
        padding: 0;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-left {
        gap: 5px;
    }
    
    .header-social-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* Header Center Section */
.header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.header-social {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Responsive header center */
@media (max-width: 1200px) {
    .header-center {
        gap: 8px;
    }
    
    .header-social {
        gap: 6px;
    }
}

/* Contact Section Compact */
.contact {
    padding: 60px 20px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 15px;
    padding: 10px 0;
}

.contact-item i {
    font-size: 18px;
}

.contact-item strong {
    font-size: 14px;
}

.contact-item p {
    font-size: 14px;
}

/* Contact Social Buttons */
.contact-social {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(200, 200, 200, 0.2);
}

.contact-social h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    color: white;
    transition: all 0.3s ease;
}

.whatsapp-contact {
    background: #25D366;
}

.whatsapp-contact:hover {
    background: #20ba5a;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.facebook-contact {
    background: #1877f2;
}

.facebook-contact:hover {
    background: #0d65d9;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.google-contact {
    background: #4285f4;
}

.google-contact:hover {
    background: #357ae8;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.4);
}

.contact-form h3 {
    font-size: 22px;
}

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

.form-group label {
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    font-size: 14px;
}

/* Header layout adjustment */
.contact-header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.contact-header .whatsapp-header {
    margin-top: 5px;
}

/* Enhanced Focus States for WCAG 2.1 AA */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
.service:focus,
.cta-button:focus {
    outline: 3px solid #7bc96f;
    outline-offset: 2px;
}

nav a:focus {
    outline: 3px solid #7bc96f;
    outline-offset: 2px;
}

.whatsapp-btn:focus {
    outline: 3px solid #25D366;
    outline-offset: 2px;
}

.submit-btn:focus {
    outline: 3px solid #7bc96f;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    * {
        outline-width: 4px !important;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
