/* CSS Variables */
:root {
    --primary: #205DA9;
    --primary-dark: #16487e;
    --primary-light: #3a7fc9;
    --dark: #0a0a0a;
    --gray-bg: #111111;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-hover: rgba(255, 255, 255, 0.07);
    --text: #f0f0f0;
    --text-muted: #b0b0b0;
    --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --border-radius: 24px;
    --shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(32, 93, 169, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--text);
    background: var(--dark);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(32, 93, 169, 0.6);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-right {
    animation: fadeRight 0.8s ease forwards;
}

.animate-fade-left {
    animation: fadeLeft 0.8s ease forwards;
}

.animate-scale {
    animation: scaleIn 0.6s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-slide-right {
    animation: fadeRight 0.6s ease forwards;
}

.animate-zoom {
    animation: scaleIn 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; opacity: 0; animation-fill-mode: forwards; }
.delay-2 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
.delay-3 { animation-delay: 0.3s; opacity: 0; animation-fill-mode: forwards; }
.delay-4 { animation-delay: 0.4s; opacity: 0; animation-fill-mode: forwards; }
.delay-5 { animation-delay: 0.5s; opacity: 0; animation-fill-mode: forwards; }

.pulse-btn {
    animation: pulse 2s infinite;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    min-height: 76px;
    position: relative;
}

.logo {
    flex-shrink: 0;
    z-index: 1002;
}

.logo-icon img {
    height: 52px;
    width: auto;
    transition: transform 0.3s;
}

.logo-icon img:hover {
    transform: scale(1.05);
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1002;
    padding: 10px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: var(--transition);
    flex-shrink: 0;
    margin: 0;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    margin-top: 76px;
    height: 280px;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #0c0c0c 0%, #070707 100%);
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-line.accent {
    background: linear-gradient(135deg, #3a7fc9, var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    transition: all 0.5s;
    animation: float 4s ease-in-out infinite;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(32, 93, 169, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(32, 93, 169, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-centered {
    display: inline-flex;
    margin: 0 auto;
}

.btn-wa-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 10px;
    transition: var(--transition);
    font-weight: 500;
}

.btn-wa-small:hover {
    transform: scale(1.03);
    background: #128C7E;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 18px auto 0;
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--gray-bg);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-frame {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.5s;
}

.image-frame:hover {
    transform: scale(1.02);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat {
    text-align: center;
    padding: 28px 20px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    transition: all 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
}

.stat:hover {
    background: var(--card-hover);
    transform: translateY(-8px);
    border-color: rgba(32, 93, 169, 0.4);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Facebook Gallery */
.facebook-gallery {
    background: linear-gradient(145deg, #0f0f0f, #0a0a0a);
    padding: 70px 0;
}

.facebook-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 45px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s;
}

.facebook-card:hover {
    transform: translateY(-8px);
    background: var(--card-hover);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.facebook-icon {
    background: #1877f2;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.facebook-card:hover .facebook-icon {
    transform: scale(1.1);
}

.facebook-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.facebook-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1877f2;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-facebook:hover {
    background: #0e62c9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

/* Services Grid */
.services-seo {
    background: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: var(--card-hover);
    border-color: rgba(32, 93, 169, 0.5);
    box-shadow: var(--shadow-glow);
}

.service-card i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Werk Section */
.werk-section {
    background: var(--gray-bg);
}

.werk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.slider-simple {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.compare-simple {
    position: relative;
}

.compare-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: ew-resize;
    box-shadow: var(--shadow);
}

.compare-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.compare-before {
    z-index: 1;
}

.compare-after {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

.compare-slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: white;
    z-index: 10;
    transform: translateX(-50%);
    cursor: ew-resize;
    box-shadow: 0 0 8px rgba(0,0,0,0.6);
}

.compare-slider-line::after {
    content: "⇄";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    padding: 10px 14px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.compare-container:hover .compare-slider-line::after {
    transform: translate(-50%, -50%) scale(1.1);
}

.compare-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    z-index: 12;
    color: white;
    backdrop-filter: blur(4px);
}

.contact { background: var(--dark); }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card { display: flex; align-items: flex-start; gap: 20px; padding: 25px; background: var(--card-bg); border-radius: var(--border-radius); transition: all 0.4s; }
.contact-card:hover { background: var(--card-hover); transform: translateX(8px); border-left: 3px solid var(--primary); }
.contact-icon { background: var(--primary); width: 55px; height: 55px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-details h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary); }
.contact-note { font-size: 0.8rem; margin-top: 8px; color: #ffaa33; }
.contact-form-wrapper { background: var(--card-bg); padding: 45px; border-radius: var(--border-radius); backdrop-filter: blur(10px); transition: transform 0.3s; }
.contact-form-wrapper:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.form-title { font-size: 1.6rem; margin-bottom: 8px; color: var(--primary); }
.form-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { position: relative; margin-bottom: 30px; }
.form-control { width: 100%; padding: 15px 0 8px; border: none; border-bottom: 1px solid rgba(255, 255, 255, 0.2); background: transparent; font-size: 0.95rem; color: var(--text); font-family: inherit; transition: border-color 0.3s; }
.form-control:focus { outline: none; border-bottom-color: var(--primary); }
.form-label { position: absolute; top: 15px; left: 0; color: var(--text-muted); transition: all 0.3s; pointer-events: none; font-size: 0.9rem; }
.form-control:focus + .form-label, .form-control:not(:placeholder-shown) + .form-label { top: -8px; font-size: 0.7rem; color: var(--primary); }
.form-underline { position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s; }
.form-control:focus ~ .form-underline { width: 100%; }

/* File Upload Styles */
.file-upload-group { margin-bottom: 25px; }
.file-label { display: block; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; }
.file-label i { margin-right: 8px; color: var(--primary); }
.file-upload-group input[type="file"] { background: var(--card-bg); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 12px; width: 100%; color: var(--text); cursor: pointer; }
.file-upload-group input[type="file"]::-webkit-file-upload-button { background: var(--primary); border: none; padding: 8px 16px; border-radius: 8px; color: white; cursor: pointer; margin-right: 12px; transition: var(--transition); }
.file-upload-group input[type="file"]::-webkit-file-upload-button:hover { background: var(--primary-dark); }
.file-hint { color: var(--text-muted); font-size: 0.7rem; display: block; margin-top: 8px; }
.file-name-display { font-size: 0.75rem; color: var(--primary-light); margin-top: 6px; }
.form-status { margin-top: 16px; text-align: center; font-size: 0.85rem; padding: 10px; border-radius: 12px; display: none; }
.form-status.success { background: rgba(40, 167, 69, 0.2); color: #28a745; display: block; }
.form-status.error { background: rgba(220, 53, 69, 0.2); color: #dc3545; display: block; }
.form-status.loading { background: rgba(32, 93, 169, 0.2); color: var(--primary); display: block; }

/* Footer */
footer {
    background: var(--gray-bg);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-description {
    color: var(--text-muted);
    margin: 15px 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--text-muted);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px) rotate(360deg);
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.copyright a {
    color: var(--primary);
    text-decoration: none;
}

/* WhatsApp Popup */
.whatsapp-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s;
}

.whatsapp-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #25D366;
    color: white;
    padding: 18px 34px;   /* Groter gemaakt */
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;      /* Groter gemaakt */
    transition: all 0.3s;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

.whatsapp-btn i {
    font-size: 22px;      /* Icoon groter */
}

.whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content, .about-container, .contact-container, .werk-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-text {
        text-align: center;
    }
    .hero-subtitle {
        max-width: 100%;
    }
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    /* Header Mobile Fix - Logo left, Hamburger top-right */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
    
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 16px;
        width: 100%;
        min-height: 70px;
    }
    
    .logo {
        margin: 0;
        padding: 0;
        flex-shrink: 0;
        z-index: 1002;
    }
    
    .logo-icon img {
        height: 45px;
        width: auto;
    }
    
    /* Hamburger button - top right corner */
.hamburger {
    display: flex;
    position: absolute; /* FIX */
    top: 50%;
    right: 16px; /* afstand van rand */
    transform: translateY(-50%);
    
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    width: 44px;
    height: 44px;

    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 10px;

    z-index: 1002;
}
    
    nav {
        position: static;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(20px);
        width: 280px;
        height: 100vh;
        padding: 90px 30px 40px;
        transition: right 0.4s ease-in-out;
        gap: 20px;
        z-index: 1001;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        margin: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 12px 0;
        display: block;
        text-align: left;
        width: 100%;
    }
    
    .hero-banner {
        height: 160px;
        margin-top: 70px;
    }
    
    .hero {
        padding: 50px 0 70px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }
    
    .btn-centered {
        display: flex;
        margin: 0 auto;
        width: fit-content;
        justify-content: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .slide img, .compare-container {
        height: 320px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .facebook-card {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .werk-grid {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .header-container {
        padding: 8px 12px;
    }
    
    .logo-icon img {
        height: 40px;
    }
    
    .hamburger {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .hamburger span {
        width: 22px;
        height: 2px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .slide img, .compare-container {
        height: 260px;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn {
        padding: 14px;
        border-radius: 50%;
    }
    
    .whatsapp-popup {
        bottom: 20px;
        right: 20px;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        width: 260px;
        padding: 80px 25px 30px;
    }
}