/* =========================================
   1. BASIS & VARIABELEN
   ========================================= */
html {
    scroll-behavior: smooth; /* Zorgt voor het glijden! */
}

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

:root {
    --primary: #1A1A1A;
    --primary-light: #333333;
    --bg-color: #FAFAFA;
    --soft-blue: #F4F7F9; /* De nieuwe frisse, koele achtergrondkleur */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--primary);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* =========================================
   2. GLOBALE LAYOUT & TYPOGRAFIE
   ========================================= */
.container { max-width: 1200px; margin: 0 auto; }

section h2, .section-header h2 { font-family: var(--font-heading); font-weight: 400; color: var(--primary); }
.section-header h2 { font-size: 2.8rem; letter-spacing: -1px; }

/* De nieuwe achtergrond class */
.soft-bg { background-color: var(--soft-blue); }

/* =========================================
   3. NAVIGATIE
   ========================================= */
nav {
    position: fixed; top: 0; width: 100%; padding: 1.5rem 5%; display: grid; 
    grid-template-columns: 1fr auto 1fr; align-items: center; z-index: 100; transition: all 0.4s ease;
}
nav.scrolled { padding: 1rem 5%; background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05); }

.logo { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 500; letter-spacing: -1px; text-align: center; }
.nav-links { display: flex; gap: 3rem; list-style: none; }
.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; }
.nav-links a { text-decoration: none; color: var(--primary); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2.5px; font-weight: 500; transition: opacity 0.3s ease; }
.nav-links a:hover { opacity: 0.5; }

/* =========================================
   4. HERO SECTIE (Bovenaan)
   ========================================= */
.hero {
    height: 100vh; display: flex; align-items: center; justify-content: center; padding: 0 5%;
    background-image: url('../images/hero-bg.webp'); background-size: cover; background-position: center bottom; position: relative; text-align: center;
}
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; max-width: 800px; margin-top: -5vh; }
.hero h1 { font-family: var(--font-heading); font-size: clamp(4rem, 9vw, 6.5rem); line-height: 1; font-weight: 400; letter-spacing: -2px; margin-bottom: 2rem; color: #111; }
.hero p { font-size: 1rem; font-weight: 300; max-width: 480px; margin-bottom: 2.5rem; line-height: 1.9; color: var(--primary-light); }

.btn-premium {
    display: inline-block; padding: 1.1rem 2.8rem; background-color: var(--primary); color: #ffffff; text-decoration: none; font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 2px; border: none; border-radius: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-premium:hover { background-color: #333; transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,0,0,0.2); }

.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 2; }
.scroll-indicator span { font-family: var(--font-body); font-size: 0.55rem; text-transform: uppercase; letter-spacing: 3px; color: var(--primary-light); opacity: 0.6; }
.scroll-indicator .line { width: 1px; height: 40px; background-color: var(--primary); opacity: 0.4; animation: scrollLine 2s infinite cubic-bezier(0.65, 0, 0.35, 1); }

@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; opacity: 0; } 50% { transform: scaleY(1); transform-origin: top; opacity: 0.4; } 50.1% { transform: scaleY(1); transform-origin: bottom; opacity: 0.4; } 100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; } }

/* =========================================
   5. BLOK 2: PERSOONLIJKE INTRODUCTIE
   ========================================= */
.intro-elevated { padding: 8rem 5%; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.intro-image-wrapper { position: relative; }
/* HIER DE FIX VOOR DE FOTO: Aspect Ratio zorgt dat hij niet te lang wordt */
.intro-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); display: block; }

.intro-text-wrapper h2 { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; margin-bottom: 2rem; font-family: var(--font-heading); font-weight: 400; color: var(--primary); letter-spacing: -0.5px;}
.intro-text-wrapper p { font-size: 1.1rem; line-height: 1.8; color: var(--primary-light); margin-bottom: 1.5rem; }
.intro-text-wrapper strong { color: var(--primary); font-family: var(--font-heading); font-size: 1.3rem; font-weight: 500; font-style: italic;}

.rotating-stamp { position: absolute; right: -40px; bottom: -40px; width: 130px; height: 130px; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 50%; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.rotating-stamp svg { animation: rotateText 15s linear infinite; position: absolute; }
.rotating-stamp .stamp-center { font-family: var(--font-heading); font-size: 2rem; font-weight: 600; color: var(--primary); }
@keyframes rotateText { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* =========================================
   6. BLOK 3: VISUELE DIENSTEN
   ========================================= */
.services-rich { padding: 6rem 5%; background-color: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 3rem; }
.service-card-rich { background: var(--bg-color); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease; border: 1px solid rgba(0,0,0,0.05); }
.service-card-rich:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.service-img { height: 300px; background-size: cover; background-position: center; }
.service-content-rich { padding: 3rem; display: flex; flex-direction: column; flex-grow: 1; }
.service-content-rich h3 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 1rem; font-weight: 400; }
.service-content-rich p { color: var(--primary-light); margin-bottom: 2rem; flex-grow: 1; }
.link-arrow { color: var(--primary); text-decoration: none; font-weight: 500; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; transition: gap 0.3s ease; }
.link-arrow:hover { gap: 15px; }

/* =========================================
   7. BLOK 4: AANBOD & FUNDA (Grijze podium achtergrond)
   ========================================= */
body { background-color: #ffffff; } /* Zet de hele basis op wit */

.offerings-section { 
    padding: 6rem 5%; 
    background-color: #F4F5F7; /* Mooi, subtiel zachtgrijs als podium */
}

.section-header { text-align: center; margin-bottom: 4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }

/* De Woning Kaart + Het 3D Pop-out effect */
.property-card { 
    background: #ffffff; 
    border-radius: 4px; 
    overflow: hidden; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.03); 
    border: 1px solid rgba(0,0,0,0.03);
    /* Maak de transitie extra soepel voor zowel schaduw als positie */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
}

.property-card:hover { 
    transform: translateY(-10px) scale(1.02); /* Komt soepel omhoog en naar voren */
    box-shadow: 0 20px 40px rgba(0,0,0,0.12); /* Diepere schaduw waardoor hij 'zweeft' */
}

.property-image { height: 250px; background-size: cover; background-position: center; }
.property-info { padding: 2rem; text-align: center; }
.property-info h4 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 500; margin-bottom: 0.5rem; }
.property-info .location { display: block; font-size: 0.85rem; color: #888; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.property-info .price { font-weight: 500; font-size: 1.1rem; }

.center-btn { text-align: center; margin-top: 4rem; }
.btn-funda {
    display: inline-block; padding: 1.1rem 2.8rem; background-color: #F7A100;
    color: #fff; text-decoration: none; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px;
    border-radius: 50px; font-weight: 600; box-shadow: 0 10px 20px rgba(247, 161, 0, 0.2); transition: all 0.3s ease;
}
.btn-funda:hover { background-color: #e09200; transform: translateY(-3px); box-shadow: 0 12px 25px rgba(247, 161, 0, 0.3); }

/* =========================================
   8. BLOK 5: GOOGLE REVIEWS (Nu gekoppeld aan Contact)
   ========================================= */
/* Onderkant minder padding zodat hij strak overloopt in het formulier */
.google-reviews { padding: 8rem 5% 6rem; background-color: #ffffff; }
.review-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 2rem; }
.google-rating { text-align: right; }
.google-rating .score { font-size: 2rem; font-weight: 600; display: inline-block; margin-right: 10px; }
.google-rating .stars { color: #FBBC05; display: inline-block; font-size: 1.5rem; margin-right: 10px; }
.google-rating .count { display: block; font-size: 0.8rem; color: #70757a; margin-top: 5px; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.g-card { background: #fff; border: 1px solid rgba(0,0,0,0.03); padding: 2rem; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.04); transition: transform 0.3s ease; }
.g-card:hover { transform: translateY(-5px); }
.g-user { display: flex; align-items: center; margin-bottom: 1.5rem; position: relative; }
.g-user .avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1.2rem; margin-right: 15px; }
.g-user .user-info strong { display: block; font-size: 1rem; color: #202124; margin-bottom: 2px; }
.g-user .user-info span { font-size: 0.8rem; color: #70757a; }
.g-icon { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.g-stars { color: #FBBC05; font-size: 1.1rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.g-stars .time { color: #70757a; font-size: 0.8rem; font-family: var(--font-body); }
.g-card p { font-size: 0.95rem; color: #3c4043; line-height: 1.6; margin: 0; }

/* =========================================
   9. BLOK 6: CONTACT & FORMULIER
   ========================================= */
/* Bovenkant minder padding zodat hij oppakt waar reviews stopte */
.contact-section { padding: 8rem 5% 8rem; } 
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: stretch; }

.contact-info { display: flex; flex-direction: column; }
.contact-info h2 { font-size: 3rem; margin-bottom: 1.5rem; font-family: var(--font-heading); font-weight: 400; line-height: 1.1; }
.contact-info p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 3rem; color: var(--primary-light); }

.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.detail-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: #888; margin-bottom: 0.5rem; }
.detail-item p, .detail-item a { font-size: 1.05rem; color: var(--primary); text-decoration: none; line-height: 1.6; }
.detail-item a:hover { text-decoration: underline; }

.office-photo { flex-grow: 1; min-height: 250px; border-radius: 8px; background-size: cover; background-position: center; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.contact-form-wrapper { background: #fff; padding: 4rem; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.contact-form h3 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 2rem; font-weight: 400; }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--primary); }
.form-group input, .form-group textarea { width: 100%; padding: 1rem; border: 1px solid rgba(0,0,0,0.1); border-radius: 4px; font-family: var(--font-body); font-size: 1rem; background-color: var(--bg-color); transition: border-color 0.3s ease; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); background-color: #fff; }
.btn-full { width: 100%; text-align: center; cursor: pointer; margin-top: 1rem; }

/* =========================================
   10. FOOTER
   ========================================= */
.site-footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%); 
    color: #ffffff;
    padding: 6rem 5% 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow: hidden; /* Zorgt dat de gigantische tekst er niet 'uit' valt */
}

/* 1. De Gigantische LUVON tekst met fading effect */
.footer-giant-text {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 20vw, 18rem); /* Schaalt mee, wordt gigantisch op desktop! */
    font-weight: 600;
    line-height: 0.8;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: 5rem;
    /* Het magische fading gradient effect uit de BLITZ screenshot */
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
}

/* 2. De 3-koloms layout (2/4, 1/4, 1/4) */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; 
    gap: 4rem;
    margin-bottom: 4rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

/* Typografie & Spacing (Exact gelijk getrokken) */
.footer-col h4 { font-family: var(--font-body); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 0.5rem; opacity: 0.5; }
.footer-col p, .footer-col a, .footer-col ul li { color: #ffffff; font-size: 0.95rem; line-height: 1.8; text-decoration: none; opacity: 0.8; transition: opacity 0.3s ease; }
.footer-col a:hover { opacity: 1; }

.footer-col p { margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.2rem; } /* Marges verkleind zodat het exact de line-height van de tekst volgt */

/* Meer padding aan de onderkant van de hele zwarte footer */
.site-footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%); 
    color: #ffffff;
    padding: 6rem 5% 4rem; /* De 2rem is nu 4rem geworden voor meer ruimte onderaan */
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

/* Kolom 1 Specifiek */
.brand-col .logo { color: #ffffff; text-align: left; margin-bottom: 1rem; font-size: 2rem; }
.brand-col .tagline { max-width: 320px; font-size: 1.1rem; font-family: var(--font-heading); font-style: italic; opacity: 0.7; margin-bottom: 3rem; }
.opening-hours h4 { margin-bottom: 1rem; }

.contact-links a { display: inline-block; margin-top: 0.2rem; }

/* 3. Bottom Bar (Flexbox verdeelt alles naar links en rechts) */
.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding-top: 2rem; 
    display: flex;
    justify-content: space-between; /* Drukt de blokken naar de zijkanten */
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p, .footer-bottom a { font-size: 0.8rem; color: #fff; opacity: 0.5; text-decoration: none; transition: opacity 0.3s ease; }
.footer-bottom a:hover { opacity: 1; }

/* Styling specifiek voor de link van jouw eigen bureau */
.footer-bottom-left a { font-weight: 500; opacity: 0.8; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); }

/* Rechterkant (Privacy, Cookies, etc.) spreiden */
.footer-bottom-right { display: flex; gap: 2.5rem; }

/* Mobiele Fixes */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
    .footer-bottom-right { justify-content: center; width: 100%; gap: 1.5rem; flex-wrap: wrap; }
}

/* =========================================
   11. ANIMATIES (Hero direct, rest via JS)
   ========================================= */
/* Hero elementen laden direct */
.hero .fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUpAnim {
    to { opacity: 1; transform: translateY(0); }
}

.hero .delay-1 { animation-delay: 0.2s; } 
.hero .delay-2 { animation-delay: 0.4s; } 
.hero .delay-3 { animation-delay: 0.6s; } 

/* Scroll elementen (alles onder de hero) */
main .fade-up, .footer-col {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

main .fade-up.is-visible, .footer-col.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Zet de timing om voor elementen die via JS laden */
main .delay-1 { transition-delay: 0.15s; }
main .delay-2 { transition-delay: 0.30s; }
main .delay-3 { transition-delay: 0.45s; }
main .delay-4 { transition-delay: 0.60s; }

/* =========================================
   12. MOBIELE RESPONSIVITEIT (Geperfectioneerd)
   ========================================= */

/* Tablets en kleine laptops */
@media (max-width: 900px) {
    /* FIX: Dwing de grids in 1 kolom zodat ze niet uit het scherm worden gedrukt */
    .services-grid, .grid-3 { grid-template-columns: 1fr; }
    
    .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-form-wrapper { padding: 2rem; }
    .rotating-stamp { width: 100px; height: 100px; right: -10px; bottom: -10px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .review-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .google-rating { text-align: left; }
}

/* Telefoons (De Ultieme Detail-Fixes) */
@media (max-width: 600px) {
    /* 1. NAVIGATIE: Originele HTML op 1 rij geforceerd! */
   nav { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        padding: 0.5rem 5% 1.5rem;
    }
    nav.scrolled { padding: 1rem 5%; }
    
    .logo { width: 100%; order: 1; font-size: 2.2rem; text-align: center; margin-bottom: 1rem; }
    
    /* We drukken de linker- en rechterkant naast elkaar op de 2e rij */
    .nav-links { gap: 1rem; }
    .nav-left { order: 2; margin-right: 1rem; } 
    .nav-right { order: 3; }
    .nav-links a { font-size: 0.65rem; letter-spacing: 1px; }

    /* 2. HERO: Achtergrond vastzetten (svh voorkomt het irritante uitrekken!) */
    .hero { height: 100vh; height: 100svh; padding-top: 5rem; }
    .hero h1 { font-size: clamp(2.8rem, 12vw, 4rem); margin-bottom: 1.5rem; }
    .hero p { font-size: 0.9rem; margin-bottom: 2rem; }
    .scroll-indicator { bottom: 20px; }

    /* 3. PADDING FIXES: Grote gaten dichten tussen de secties */
    .intro-elevated { padding: 5rem 5% 2rem; } /* Onderkant is nu 2rem (bijna niks) */
    .services-rich { padding: 2rem 5% 4rem; } /* Bovenkant is nu ook maar 2rem */
    .offerings-section { padding: 5rem 5%; }
    .google-reviews { padding: 4rem 5% 3rem; }
    .contact-section { padding: 3rem 5% 5rem; }
    
    .section-header { margin-bottom: 2.5rem; }
    .section-header h2, .contact-info h2 { font-size: 2rem; line-height: 1.2; }

    /* 4. DIENSTEN KAARTEN: Tekst uit de knel halen */
    .service-content-rich { padding: 1.5rem; } 
    .service-content-rich h3 { font-size: 1.6rem; }

    /* 5. CONTACT: Gegevens dichter op elkaar */
    .contact-details { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }
    .contact-info p { margin-bottom: 2rem; }

    /* 6. FOOTER: Gaten dichten en links naast elkaar */
    .footer-giant-text { font-size: 30vw; margin-bottom: 2rem; }
    
    /* Ruimte tussen Kolom 1, 2 en 3 verkleind */
    .footer-grid { grid-template-columns: 1fr; text-align: left; gap: 2rem; }
    
    .brand-col .logo { text-align: left; }
    .brand-col .tagline { margin: 0 0 2.5rem 0; } 
    
    .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; gap: 1.5rem; }
    
    /* Linkjes (Privacy, Cookies) weer netjes naast elkaar op mobiel! */
    .footer-bottom-right { 
        flex-direction: row; 
        flex-wrap: wrap; 
        gap: 1.5rem; 
    }
    
    /* Extra ademruimte helemaal onderaan je telefoon */
    .site-footer { padding-bottom: 6rem; } 

    /* 7. WHATSAPP & COOKIE */
    .whatsapp-float { bottom: 20px; left: 20px; width: 50px; height: 50px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
    .cookie-banner { right: 15px; left: 15px; width: auto; }
}

/* =========================================
   13. WHATSAPP & COOKIE BANNER
   ========================================= */

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: var(--primary); /* Strak donkergrijs/zwart */
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    background-color: #000000;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -300px; /* Begint verstopt buiten beeld */
    right: 30px;
    width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    transition: bottom 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Deze class voegt Javascript toe om hem in beeld te schuiven */
.cookie-banner.show {
    bottom: 30px;
}

.cookie-content { padding: 2rem; }
.cookie-content h4 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--primary); }
.cookie-content p { font-size: 0.85rem; line-height: 1.6; color: var(--primary-light); margin-bottom: 1.5rem; }
.btn-cookie { width: 100%; padding: 0.8rem; font-size: 0.7rem; cursor: pointer; }

/* Mobiele optimalisatie voor de floaters */
@media (max-width: 600px) {
    .whatsapp-float { bottom: 20px; left: 20px; width: 50px; height: 50px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
    .cookie-banner { right: 20px; left: 20px; width: auto; }
}
