/* ==========================================================================
   ROYAL GARDEN | Premium Stylesheet
   ========================================================================== */

:root {
    --dark-bg: #090a0a;
    --dark-card: rgba(18, 20, 20, 0.75);
    --light-text: #eadecc;
    --glass-border: rgba(197, 160, 89, 0.25);
    --shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    --gold-gradient: linear-gradient(135deg, #a67c1e 0%, #fbf5b7 25%, #caa146 50%, #fdf0cd 75%, #946b24 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { width: 100%; scroll-behavior: smooth; background-color: var(--dark-bg); }

body {
    width: 100%; max-width: 100%; overflow-x: hidden; 
    color: var(--light-text); font-family: 'Urbanist', sans-serif;
    line-height: 1.65; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }
*:focus-visible { outline: 2px solid #caa146; outline-offset: 4px; border-radius: 4px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 60px 24px; }
.section-desc { text-align: center; color: #a1978b; margin-top: -10px; margin-bottom: 40px; font-weight: 300; font-size: 1rem; }

/* --- Gadgets & Micro-interacties --- */
.scroll-progress-container { position: fixed; top: 0; left: 0; width: 100%; height: 4px; background: rgba(0,0,0,0.4); z-index: 10001; pointer-events: none; }
.scroll-progress-bar { width: 0%; height: 100%; background: var(--gold-gradient); box-shadow: 0 0 10px rgba(251, 245, 183, 0.8); }
.gold-text-3d { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.7)); display: inline-block; }

/* --- Preloader --- */
.preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--dark-bg); display: flex; justify-content: center; align-items: center; z-index: 10000; }
.loader-content { text-align: center; }
.loader-logo { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 20px; opacity: 0; }
.loader-bar { width: 180px; height: 2px; background: rgba(255,255,255,0.05); margin: 0 auto; overflow: hidden; border-radius: 2px; }
.bar-inner { width: 0%; height: 100%; background: var(--gold-gradient); }

.content-wrapper { opacity: 0; transition: opacity 0.6s ease; }

/* --- Typografie & Knoppen --- */
h1, h2, h3 { line-height: 1.2; margin-bottom: 20px; font-weight: 700; letter-spacing: -0.5px; }
h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); text-align: center; width: 100%; }

/* High-End 'Less is More' Knoppen */
.btn-primary, .btn-secondary, a.btn-primary, button.btn-primary {
    -webkit-appearance: none !important;
    appearance: none !important;         
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; text-decoration: none;
    cursor: pointer; position: relative; overflow: hidden; z-index: 1;
    transition: border-color 0.4s ease;
    border: 1px solid rgba(202, 161, 70, 0.5) !important; 
    background: transparent !important; color: #caa146 !important; box-shadow: none !important; 
}
.btn-primary { margin-top: 25px; }

/* Liquid fill animatie (onzichtbaar klaarzetten) */
.btn-primary::before, .btn-secondary::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gold-gradient); z-index: -1; transform: scaleX(0);
    transform-origin: right; transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.magnetic-btn { position: relative; display: inline-block; }
.magnetic-btn .btn-text { display: inline-block; pointer-events: none; transition: color 0.4s ease; }

/* --- Glassmorphism Navigatie --- */
.glass-nav { position: fixed; top: 0; left: 0; width: 100%; padding: 25px 6vw; display: flex; justify-content: space-between; align-items: center; background: rgba(9, 10, 10, 0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(197, 160, 89, 0.1); z-index: 999; color: var(--light-text); transform: translateY(-100%); transition: padding 0.4s ease, background 0.4s ease, transform 0.8s cubic-bezier(0.1, 0.8, 0.2, 1); }
.glass-nav.scrolled { padding: 15px 6vw; background: rgba(4, 5, 5, 0.95); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); }
.logo { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; display: flex; gap: 8px; perspective: 500px; position: relative; z-index: 1001; }
.logo-word { display: inline-block; transform-origin: top; will-change: transform, opacity; }
.hamburger { background: none; border: none; font-size: 2rem; cursor: pointer; color: #caa146; padding: 5px; position: relative; z-index: 1001; }
.nav-links { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(4, 5, 5, 0.98); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 30px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.4s ease, visibility 0.4s ease; z-index: 1000; }
.nav-links.active { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-links a { color: var(--light-text); text-decoration: none; font-weight: 500; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; position: relative; padding: 5px 0; display: block; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px; background: var(--gold-gradient); transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); }

/* --- 1. Hero Sectie --- */
.hero-section { position: relative; height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-video, .hero-bg-img-fallback { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: brightness(0.35); }
.hero-content { max-width: 900px; margin: 0 auto; width: 100%; padding: 0 20px; z-index: 2; position: relative; display: flex; flex-direction: column; align-items: center; }
.premium-frame { position: relative; padding: 30px 20px; margin-bottom: 35px; display: flex; flex-direction: column; align-items: center; }
.frame-line { position: absolute; background: var(--gold-gradient); box-shadow: 0 0 15px rgba(202, 161, 70, 0.6); border-radius: 2px; }
.line-top, .about-line-top, .partner-line-top { top: 0; left: 50%; width: 0; height: 2px; transform: translateX(-50%); }
.line-bottom, .about-line-bottom, .partner-line-bottom { bottom: 0; left: 50%; width: 0; height: 2px; transform: translateX(-50%); }
.line-left, .about-line-left, .partner-line-left { top: 50%; left: 0; width: 2px; height: 0; transform: translateY(-50%); }
.line-right, .about-line-right, .partner-line-right { top: 50%; right: 0; width: 2px; height: 0; transform: translateY(-50%); }
.hero-logo { width: 100%; max-width: 280px; height: auto; margin-bottom: 20px; filter: drop-shadow(0 15px 30px rgba(0,0,0,0.85)); opacity: 0; transform: scale(0.85) translateY(30px); will-change: transform, opacity; }
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.15rem); color: #eadecc; max-width: 650px; text-align: center; margin: 0; font-weight: 300; letter-spacing: 0.5px; text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9); opacity: 0; }

/* --- 2. Magische Voortuin --- */
.magic-garden { width: 100%; background: #040505; position: relative; margin: 0; padding: 0; }
.sticky-container { width: 100%; height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }

/* --- SCROLL INDICATOR PIJL --- */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.8;
    animation: premiumBounce 2.5s infinite ease-in-out;
}

.scroll-text {
    color: #caa146;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.scroll-arrow {
    width: 28px;
    height: 28px;
    color: #caa146;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.8));
}

@keyframes premiumBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

/* De nieuwe slimme lagen-structuur */
.garden-layer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.garden-layer img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }

.garden-text-overlay { 
    position: relative; 
    z-index: 2; 
    text-align: center; 
    pointer-events: none; 
    padding: 0 20px; 
    width: 100%; 
    /* DE FIX VOOR ONZICHTBARE TEKST OP MOBIEL (Hardware Acceleratie) */
    transform: translateZ(0); 
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.garden-title { font-size: clamp(2.2rem, 6vw, 4.5rem); margin-bottom: 10px; text-shadow: 0 10px 30px rgba(0,0,0,0.9); }
.garden-subtitle { font-size: clamp(1rem, 2vw, 1.3rem); color: #eadecc; text-shadow: 0 4px 15px rgba(0,0,0,0.9); }

.before-img { z-index: 1; }
.before-img img { filter: brightness(0.55); } /* Iets donkerder zodat de tekst goed leesbaar is */

.after-img { z-index: 2; clip-path: inset(0 100% 0 0); -webkit-clip-path: inset(0 100% 0 0); will-change: clip-path, transform; }
.after-img img { filter: brightness(0.65); }

/* --- 3. Over Ons --- */
.about-section { display: flex; justify-content: center; align-items: center; }
.about-frame { width: 100%; max-width: 1000px; padding: 60px 30px; text-align: center; background: rgba(14, 16, 16, 0.4); backdrop-filter: blur(10px); border-radius: 8px; margin: 0 auto; }
.about-content-centered { display: flex; flex-direction: column; align-items: center; gap: 35px; z-index: 2; position: relative; }
.about-content-centered p { color: #ccbfb0; font-size: 1.1rem; max-width: 750px; margin: 0 auto; line-height: 1.8; }
.about-image-centered img { width: 100%; max-width: 750px; height: auto; aspect-ratio: 21/9; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow); border: 1px solid var(--glass-border); }
.elegant-divider { width: 100%; max-width: 250px; margin: 20px auto 0; }
.wave-path { stroke-dasharray: 350; stroke-dashoffset: 350; will-change: stroke-dashoffset; }

/* --- 3.5 Premium Partners --- */
.partners-section { text-align: center; padding: 60px 24px; }
.partners-section h3 { font-size: 1.2rem; margin-bottom: 50px; letter-spacing: 2px; }
.logo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; max-width: 1000px; margin: 0 auto; }
.partner-frame { position: relative; padding: 15px; background: rgba(14, 16, 16, 0.4); backdrop-filter: blur(10px); border-radius: 8px; display: flex; justify-content: center; align-items: center; aspect-ratio: 4/3; width: 100%; min-width: 0; }
.partner-logo { max-width: 100%; max-height: 70px; object-fit: contain; display: block; opacity: 1; transition: transform 0.4s ease; }

/* --- 4. Exclusieve Tellers --- */
.stats-section { display: flex; flex-direction: column; gap: 20px; text-align: center; }
.stat-box { padding: 40px 30px; transition: transform 0.5s cubic-bezier(0.1, 0.8, 0.2, 1), box-shadow 0.5s ease, background 0.5s ease; display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; border-radius: 16px; }
.stat-icon { width: 40px; height: 40px; margin-bottom: 20px; color: #caa146; filter: drop-shadow(0 0 8px rgba(202, 161, 70, 0.3)); transition: transform 0.6s cubic-bezier(0.1, 0.8, 0.2, 1), color 0.4s ease; }
.stat-icon svg { width: 100%; height: 100%; display: block; }
.stat-box .counter { font-size: clamp(3rem, 5vw, 4rem); font-weight: 800; display: inline-block; margin-bottom: 5px; line-height: 1; }
.counter-wrap { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 5px; }
.stat-box p { font-weight: 600; color: #a1978b; letter-spacing: 1px; font-size: 0.85rem; text-transform: uppercase; margin: 0; }

/* --- 5. 3D Tegelverbanden --- */
.patterns-section { background: #0e1010; width: 100%; border-top: 1px solid rgba(197, 160, 89, 0.1); border-bottom: 1px solid rgba(197, 160, 89, 0.1); padding: 80px 24px; }
.patterns-grid { display: grid; grid-template-columns: 1fr; gap: 50px; margin-top: 50px; justify-items: center; max-width: 1000px; margin-left: auto; margin-right: auto; }
.pattern-card { perspective: 1200px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.pattern-card h3 { margin-top: 30px; font-size: 1.2rem; color: #eadecc; letter-spacing: 1px; }
.pattern-wrapper { width: 220px; height: 220px; border-radius: 16px; transform-style: preserve-3d; border: 2px solid rgba(197,160,89,0.3); overflow: hidden; will-change: transform; animation: premiumFloat 6s ease-in-out infinite; }
.pattern-wrapper img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); pointer-events: none; }
.pattern-card:nth-child(1) .pattern-wrapper { animation-delay: 0s; }
.pattern-card:nth-child(2) .pattern-wrapper { animation-delay: -2s; }
.pattern-card:nth-child(3) .pattern-wrapper { animation-delay: -4s; }

@keyframes premiumFloat {
    0%, 100% { transform: rotateX(50deg) rotateZ(-30deg) translateZ(0px); box-shadow: 15px 15px 35px rgba(0,0,0,0.6); }
    50% { transform: rotateX(44deg) rotateZ(-26deg) translateZ(15px); box-shadow: 5px 25px 50px rgba(166, 124, 30, 0.3); }
}

/* --- 6. Living Blueprint M² Calculator --- */
.calculator-section { background: url('https://images.unsplash.com/photo-1517646287270-a5a9ca602e5c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; position: relative; border-radius: 0px; overflow: hidden; padding: 80px 24px; }
.calculator-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5, 6, 6, 0.93); backdrop-filter: blur(5px); }
.calc-wrapper { 
    position: relative; z-index: 2; max-width: 650px; margin: 0 auto; text-align: center; padding: 40px 30px; 
    background: rgba(14, 16, 16, 0.85); border: 1px solid rgba(197, 160, 89, 0.3); border-radius: 16px; box-shadow: var(--shadow); 
    background-image: linear-gradient(rgba(197, 160, 89, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(197, 160, 89, 0.05) 1px, transparent 1px);
    background-size: 40px 40px; animation: flowLines 15s linear infinite;
}
@keyframes flowLines { 0% { background-position: 0 0; } 100% { background-position: 40px 40px; } }
.calc-wrapper::after {
    content: ''; position: absolute; inset: -1px; border-radius: 16px; padding: 1px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.4), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; 
}
.calc-inputs { display: flex; flex-direction: column; gap: 20px; margin-bottom: 25px; }
.premium-input-group { position: relative; width: 100%; text-align: left; }
.premium-input-group input { width: 100%; padding: 20px 15px 10px; background: rgba(0,0,0,0.4); border: 1px solid rgba(197, 160, 89, 0.3); border-radius: 8px; color: #fff; font-size: 1.1rem; outline: none; transition: border-color 0.3s, box-shadow 0.3s; }
.premium-input-group label { position: absolute; top: 16px; left: 15px; color: #a1978b; font-size: 1rem; pointer-events: none; transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); }
.premium-input-group input:focus, .premium-input-group input:not(:placeholder-shown) { border-color: #caa146; box-shadow: 0 0 15px rgba(202, 161, 70, 0.15); }
.premium-input-group input:focus + label, .premium-input-group input:not(:placeholder-shown) + label { top: 5px; font-size: 0.75rem; color: #caa146; font-weight: 600; }
.calc-visual-area { position: relative; width: 100%; max-width: 350px; margin: 0 auto; height: 0; opacity: 0; overflow: hidden; border-top: 1px solid rgba(197, 160, 89, 0.2); padding-top: 20px; margin-top: 20px; }
.garden-blueprint { width: 100%; height: auto; display: block; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8)); }
.blueprint-line { fill: rgba(0, 0, 0, 0.5); stroke: url(#calc-gold-grad); stroke-width: 3; stroke-dasharray: 1000; stroke-dashoffset: 1000; }
.calc-result-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.5); opacity: 0; display: flex; flex-direction: column; align-items: center; }
#calc-total { font-size: 3.5rem; font-weight: 800; line-height: 1; margin-bottom: -5px; }
.m2-label { font-size: 1.2rem; color: #a1978b; letter-spacing: 2px; text-transform: uppercase; }

/* --- 7. Premium Editorial Galerij --- */
.gallery-section { text-align: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; margin-top: 40px; }
.gallery-wrapper {
    position: relative; width: 100%; aspect-ratio: 4/5; border-radius: 12px; overflow: hidden; cursor: pointer;
    border: 1px solid rgba(197, 160, 89, 0.1); box-shadow: 0 15px 35px rgba(0,0,0,0.4); transition: border-color 0.6s ease, box-shadow 0.6s ease;
}
.gallery-wrapper::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-25deg); transition: 0.7s; z-index: 2; pointer-events: none;
}

/* Het watermerk over de uitvergrote lightbox foto */
.lightbox-wrapper { 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    max-width: 100%; 
    max-height: 100%;
}

.lightbox-wrapper::after {
    content: '© Royal Garden';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    color: rgba(255, 255, 255, 0.15);
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    pointer-events: none;
    z-index: 10003; /* Ligt bovenop de foto */
    white-space: nowrap;
    user-select: none;
}

/* --- PREMIUM VISUEEL WATERMERK & BEVEILIGING --- */
.gallery-wrapper::after {
    content: '© Royal Garden';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    color: rgba(255, 255, 255, 0.12); /* Zeer subtiel wit, niet storend voor de foto */
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    pointer-events: none; /* Zorgt dat klikken op 'Bekijk Project' gewoon werkt */
    z-index: 3;
    white-space: nowrap;
    user-select: none; /* Geen tekst selecteren */
}

/* We maken de bron-afbeelding on-klikbaar en on-sleepbaar voor de gemiddelde bezoeker */
.gallery-img {
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none; /* Doodt de 'rechtermuisknop -> opslaan als' op de foto */
}

.gallery-wrapper:hover::before { left: 150%; }
.gallery-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s ease; filter: brightness(1) contrast(1.05); }
.gallery-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(9, 10, 10, 0.95) 0%, rgba(9, 10, 10, 0.2) 50%, transparent 100%);
    display: flex; align-items: flex-end; justify-content: center; padding: 30px; opacity: 0; transition: opacity 0.5s ease; z-index: 1;
}
.gallery-overlay span { color: #caa146; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; transform: translateY(20px); transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }

/* --- PERFECT GECENTREERDE LIGHTBOX --- */
.lightbox { 
    display: none; 
    position: fixed; 
    z-index: 10002; 
    left: 0; top: 0; 
    width: 100%; height: 100%; 
    background-color: rgba(3, 4, 4, 0.97); 
    align-items: center; 
    justify-content: center; 
    backdrop-filter: blur(15px); 
    padding: 20px; 
}
.lightbox-content { 
    max-width: 100%; 
    max-height: 85vh; 
    object-fit: contain; 
    border-radius: 12px; 
    box-shadow: 0 10px 50px rgba(0,0,0,0.8); 
    border: 1px solid var(--glass-border);
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none; /* Blokkeert rechtsklikken op de uitvergrote foto */
}
.close-lightbox { position: absolute; top: 20px; right: 25px; color: #caa146; font-size: 35px; background: none; border: none; cursor: pointer; transition: transform 0.3s; }
.close-lightbox:hover { transform: rotate(90deg); }

/* --- 8. Premium Editorial Testimonials --- */
.reviews-section { position: relative; padding: 80px 24px; }

.testimonial-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    background: rgba(14, 16, 16, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 24px;
    padding: 60px 50px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Slimme grid lay-over: alle slides liggen exact op elkaar voor de fade */
.testimonial-slider {
    position: relative;
    min-height: 200px; 
    display: grid;
    grid-template-columns: 1fr;
}

.testimonial-card {
    grid-area: 1 / 1 / 2 / 2;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Wordt door JS aangestuurd */
.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.quote-icon {
    font-size: 5rem;
    line-height: 1;
    font-family: 'Times New Roman', serif;
    margin-bottom: -10px;
    opacity: 0.8;
}

.testimonial-text {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #eadecc;
    font-weight: 300;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    color: #caa146;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.05rem;
}

.author-location {
    color: #a1978b;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Minimalistische Luxury Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-arrow {
    background: transparent;
    border: none;
    color: #caa146;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s, transform 0.3s;
}

.slider-arrow:hover {
    color: #fdf0cd;
    transform: scale(1.15);
}

.slider-progress-wrapper {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.slider-progress-bar-horizontal {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%;
    background: var(--gold-gradient);
    box-shadow: 0 0 8px rgba(251, 245, 183, 0.5);
}

/* --- 9. Premium Contact Command Center --- */
.contact-section { padding: 60px 24px 100px; }

.premium-contact-window {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(14, 16, 16, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 24px;
    padding: 60px 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.premium-contact-window::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 0%, rgba(197, 160, 89, 0.05), transparent 60%);
    pointer-events: none;
}

.contact-header { text-align: center; margin-bottom: 50px; position: relative; z-index: 2; }

/* DE NIEUWE MOBIELE VRIENDELIJKE GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(5, 6, 6, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    min-width: 0; /* CRUCIAAL VOOR MOBIELE RESPONSIVENESS */
    overflow: hidden;
}

.contact-icon-wrapper {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.05);
    display: flex; justify-content: center; align-items: center;
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    flex-shrink: 0;
}

.contact-icon { width: 26px; height: 26px; color: #caa146; }

.contact-info { display: flex; flex-direction: column; text-align: left; min-width: 0; }
.contact-label { color: #a1978b; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px; }
.contact-value { 
    font-size: 1.1rem; 
    letter-spacing: 0.5px; 
    word-break: break-word; /* Zorgt dat lange mails niet buiten het scherm treden */
}

/* --- 10. Premium Luxury Footer --- */
.main-footer {
    padding: 80px 24px 40px;
    background: #040505;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: rgba(197, 160, 89, 0.3);
}

.footer-copy {
    color: #6e655b;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.footer-tag {
    font-size: 0.7rem;
    color: rgba(197, 160, 89, 0.4);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
}

/* --- 12. Onze Expertise (Bento Box Diensten) --- */
.expertise-section {
    padding: 80px 24px;
    text-align: center;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.expertise-card {
    background: rgba(14, 16, 16, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center; /* Gecentreerde tekst */
    display: flex;
    flex-direction: column;
    align-items: center; /* Gecentreerde inhoud */
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease, border-color 0.5s ease;
    position: relative;
    overflow: hidden;
}

/* Subtiele glow in het midden bovenin in plaats van rechtsboven */
.expertise-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(197, 160, 89, 0.08), transparent 60%);
    opacity: 0; transition: opacity 0.5s ease; pointer-events: none;
}

.expertise-icon {
    width: 45px;
    height: 45px;
    color: #caa146;
    margin: 0 auto 25px auto; /* Forceert het icoon perfect naar het midden */
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(202, 161, 70, 0.2));
}

.expertise-icon svg { width: 100%; height: 100%; }

.expertise-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.expertise-card p {
    color: #eadecc;
    font-weight: 300;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================================================
   Media Queries (Desktop en Effecten)
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {
   /* HIGH-END SUBTIELE KNOP HOVER (Geen massief goud meer) */
    .btn-primary:hover, .btn-secondary:hover { 
        background: rgba(202, 161, 70, 0.08) !important; /* Slechts een 8% gouden gloed in de knop */
        border-color: #fdf0cd !important; /* Rand licht mooi op */
        box-shadow: 0 5px 20px rgba(202, 161, 70, 0.15) !important; /* Zachte schaduw */
        transform: translateY(-2px); /* Subtiel lift-effect */
    }
    
    .btn-primary:hover .btn-text, .btn-secondary:hover .btn-text { 
        color: #fdf0cd !important; /* Tekst wordt iets lichter, blijft leesbaar */
    }
    
    /* Schakel de oude agressieve vul-animatie volledig uit */
    .btn-primary::before, .btn-secondary::before { 
        display: none !important; 
    }
    
    /* Hover effecten voor de Expertise kaarten */
    .expertise-card:hover {
        transform: translateY(-10px);
        border-color: rgba(197, 160, 89, 0.5);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(197, 160, 89, 0.15);
    }
    .expertise-card:hover::before { opacity: 1; }
    .expertise-card:hover .expertise-icon {
        transform: scale(1.15) rotate(5deg);
        filter: drop-shadow(0 0 15px rgba(253, 240, 205, 0.5));
        color: #fdf0cd;
    }
    
    /* Hover magie voor telefoon en e-mail */
    .interactive-contact:hover {
        transform: translateY(-8px);
        background: rgba(197, 160, 89, 0.05);
        border-color: rgba(197, 160, 89, 0.4);
        box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    }
    .interactive-contact:hover .contact-icon-wrapper {
        background: var(--gold-gradient);
        border-color: transparent;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
    }
    .interactive-contact:hover .contact-icon {
        color: #000;
        transform: scale(0.9);
    }
    
    .nav-links a:hover::after { width: 100%; }
    .nav-links a:hover { color: #fdf0cd; }
    .partner-frame:hover .partner-logo { transform: scale(1.1); }
    .stat-box:hover { transform: translateY(-12px); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 25px rgba(197, 160, 89, 0.15); background: rgba(22, 25, 25, 0.9); z-index: 2; }
    .stat-box:hover .stat-icon { transform: scale(1.15) rotateY(15deg); color: #fdf0cd; filter: drop-shadow(0 0 15px rgba(253, 240, 205, 0.6)); }
    .contact-item:hover { color: #fdf0cd; text-shadow: 0 0 10px rgba(253, 240, 205, 0.3); }
    
    .pattern-wrapper:hover { border-color: #fdf0cd; filter: brightness(1.1); transform: rotateX(20deg) rotateZ(-5deg) translateZ(20px); box-shadow: 10px 20px 35px rgba(166, 124, 30, 0.3); }

    .gallery-wrapper img { filter: brightness(0.7) contrast(1.1) grayscale(20%); }
    .gallery-wrapper:hover { border-color: rgba(197, 160, 89, 0.5); box-shadow: 0 20px 50px rgba(202, 161, 70, 0.2); }
    .gallery-wrapper:hover img { transform: scale(1.08); filter: brightness(1.1) contrast(1.1) grayscale(0%); }
    .gallery-wrapper:hover .gallery-overlay { opacity: 1; }
    .gallery-wrapper:hover .gallery-overlay span { transform: translateY(0); }
}

@media (min-width: 768px) {
    .container { padding: 90px 40px; }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); gap: 35px; }
    .section-desc { font-size: 1.1rem; margin-bottom: 50px; }
    .hamburger { display: none; }
    .nav-links { display: flex; flex-direction: row; position: static; background: none; border: none; padding: 0; gap: 35px; opacity: 1; visibility: visible; transform: none; width: auto; height: auto; pointer-events: auto; }
    .nav-links a { font-size: 0.95rem; }
    .premium-frame { padding: 45px 35px 30px 35px; }
    .hero-logo { max-width: 450px; margin-bottom: 25px; }
    .logo-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; }
    .partner-frame { padding: 25px; }
    .stats-section { flex-direction: row; justify-content: space-around; gap: 20px; }
    .stats-section .glass-card { flex: 1; }
    .patterns-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .pattern-wrapper { width: 250px; height: 250px; }
    .calc-inputs { flex-direction: row; }
    .calculator-section { border-radius: 32px; }
    .review-card { min-width: calc(50% - 10px); } 
    .contact-item { font-size: 1.4rem; }
    .close-lightbox { top: 25px; right: 35px; font-size: 45px; }
    .contact-grid { grid-template-columns: repeat(3, 1fr); gap: 25px; }
    .contact-card { flex-direction: column; text-align: center; padding: 40px 20px; }
    .contact-info { align-items: center; text-align: center; }
    .contact-value { font-size: 1.1rem; }
}

@media (min-width: 1024px) {
    .about-section { gap: 80px; }
    .pattern-wrapper { width: 260px; height: 260px; }
}

/* ==========================================================================
   NUCLEAIRE RESET VOOR MOBIELE KNOPPEN (Forceert de chique, dunne look)
   ========================================================================== */
@media (max-width: 767px) {
    .btn-primary, .btn-secondary, a.btn-primary, button.btn-primary {
        background: transparent !important; background-color: transparent !important; background-image: none !important;
        border: 1px solid rgba(202, 161, 70, 0.5) !important; box-shadow: none !important; color: #caa146 !important;
        -webkit-appearance: none !important; appearance: none !important;
    }
    .btn-primary::before, .btn-secondary::before { display: none !important; }
}

/* ==========================================================================
   11. Hoe Werkt Het (Timeline)
   ========================================================================== */
.steps-section {
    position: relative;
    padding: 80px 24px;
    text-align: center;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* De doffe achtergrondlijn */
.timeline-track {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(197, 160, 89, 0.1);
    z-index: 1;
}

/* De gouden lijn die volloopt */
.timeline-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%; /* Wordt geanimeerd door GSAP */
    background: var(--gold-gradient);
    box-shadow: 0 0 15px rgba(202, 161, 70, 0.5);
}

.step-item {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    opacity: 0; /* Klaarzetten voor GSAP fade-in */
    transform: translateY(30px);
}

.step-item.left { justify-content: flex-end; flex-direction: row-reverse; }
.step-item.right { justify-content: flex-start; }

.step-content {
    width: 45%;
    background: rgba(14, 16, 16, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 35px;
    text-align: center; /* FIX: Veranderd van 'left' naar 'center' voor PC */
    margin-bottom: 0; 
}

/* Zorgt dat jouw bestaande frame lijnen resetten voor deze specifieke widget */
.step-content .step-line { width: 0; height: 0; }

.step-item.left .step-content { margin-right: 55%; }
.step-item.right .step-content { margin-left: 55%; }

.step-content h3 {
    color: #caa146;
    font-size: 1.25rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.step-content p {
    color: #eadecc;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Het cirkeltje in het midden */
.step-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-bg);
    border: 2px solid rgba(197, 160, 89, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

/* FIX: Dit massieve zwarte vlakje voorkomt dat de tijdlijn door het transparante goud van de JS animatie heen schijnt */
.step-marker::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: #090a0a; border-radius: 50%; z-index: -1;
}

/* Het vinkje zélf klaarzetten voor animatie */
.gold-check {
    width: 24px;
    height: 24px;
    stroke-dasharray: 50;
    stroke-dashoffset: 50; /* Zorgt dat hij onzichtbaar is tot JS hem tekent */
    filter: drop-shadow(0 0 5px rgba(202,161,70,0.4));
}

/* --- 13. Floating Social Button --- */
.floating-social-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: rgba(14, 16, 16, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #caa146;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    animation: pulseGold 3s infinite;
}

.floating-social-btn svg { width: 25px; height: 25px; }

@keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(202, 161, 70, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(202, 161, 70, 0); }
}

@media (hover: hover) {
    .floating-social-btn:hover {
        background: var(--gold-gradient);
        color: #000;
        transform: translateY(-5px) scale(1.1);
    }
}

/* Mobiele layout (Lijn prachtig gecentreerd, vaste volgorde) */
@media (max-width: 767px) {
    .timeline-track { 
        left: 50%; 
        transform: translateX(-50%); 
        z-index: 1; 
    }
    
    .step-item {
        flex-direction: column !important;
        align-items: center !important;
        padding: 0;
        margin-bottom: 80px; /* Forceert 80px afstand tussen elke stap zodat vinkjes niet overlappen */
    }
    
    .step-item:last-child {
        margin-bottom: 0;
    }
    
    /* Het vinkje wordt geforceerd om als EERSTE te tonen (order: 1) */
    .step-marker { 
        order: 1; 
        position: relative; 
        left: auto; 
        transform: scale(0.9); 
        margin: 0 0 20px 0; 
        z-index: 3; 
    }
    
    /* De tekstbox wordt geforceerd om als TWEEDE te tonen (order: 2) */
    .step-item.left .step-content, 
    .step-item.right .step-content {
        order: 2; 
        width: 90%; 
        margin: 0 auto !important;
        text-align: center;
        z-index: 2; 
        background: #0b0c0c; /* FIX: Nu massief donker in plaats van transparant glas */
        border: 1px solid rgba(197, 160, 89, 0.15);
    }
    
    .step-content h3 {
        text-align: center;
    }
}

/* --- FIX: Mobiele Highlight Verwijderen --- */
* {
    -webkit-tap-highlight-color: transparent !important; 
    /* Verwijdert de blauwe box/highlight op iOS en Android */
    outline: none !important;
}

/* Voor de zekerheid ook specifiek voor knoppen en links */
a, button, input, textarea {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
}

/* ==========================================================================
   ROYAL GARDEN - COMPLETE TUIN PLANNER INTRO & MENU STYLING (PC & MOBIEL)
   ========================================================================== */

/* 1. Algemene Sectie Instellingen */
.rg-planner-sectie {
    background-color: #050505;
    background-image: radial-gradient(circle at 80% 20%, #151515 0%, #050505 60%);
    padding: 80px 20px;
    font-family: 'Urbanist', sans-serif;
    color: #fff;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(223, 186, 107, 0.1);
    border-bottom: 1px solid rgba(223, 186, 107, 0.1);
    width: 100%;
    box-sizing: border-box;
}

/* Voorkomt layout-shiften binnen de sectie */
.rg-planner-sectie * {
    box-sizing: border-box;
}

.rg-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.rg-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

/* 2. Tekst & Content Kolom */
.rg-text-content {
    flex: 1;
    max-width: 550px;
}

.rg-badge {
    display: inline-block;
    background: rgba(223, 186, 107, 0.1);
    border: 1px solid rgba(223, 186, 107, 0.3);
    color: #dfba6b;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.rg-titel {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    line-height: 1.15;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.rg-goud {
    color: #dfba6b;
}

.rg-beschrijving {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a0a0a0;
    margin-bottom: 30px;
    font-weight: 300;
}

/* 3. Vinkjes / Features Lijst (Kogelvrij Fixed voor PC & Mobiel) */
.rg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rg-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: #ccc;
    font-weight: 400;
    text-align: left;
}

.rg-features svg {
    color: #dfba6b;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    flex-shrink: 0 !important;
    margin-top: 3px;
}

/* 4. De Geanimeerde Premium Knop */
@keyframes rgGradientPan { 
    0% { background-position: 0% 50%; } 
    50% { background-position: 100% 50%; } 
    100% { background-position: 0% 50%; } 
}

.rg-btn-animated { 
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(270deg, #b89554, #fdf0cc, #dfba6b, #b89554); 
    background-size: 300% 300%; 
    animation: rgGradientPan 4s ease infinite; 
    color: #000; 
    padding: 16px 30px; 
    border-radius: 12px; 
    font-family: 'Urbanist', sans-serif; 
    font-weight: 800; 
    font-size: 0.95rem; 
    text-transform: uppercase; 
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(223, 186, 107, 0.25), inset 0 2px 3px rgba(255,255,255,0.4); 
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
    letter-spacing: 1px; 
}

.rg-btn-animated:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 15px 30px rgba(223, 186, 107, 0.4); 
}

.rg-btn-animated svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.rg-btn-animated:hover svg {
    transform: translateX(4px);
}

/* 5. Visuele Kolom (Abstracte App Mockup) */
.rg-visual-content {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rg-glass-card {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(223, 186, 107, 0.2);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.rg-glass-card:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.rg-card-header {
    background: rgba(0,0,0,0.5);
    padding: 12px 15px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.rg-dot { width: 10px; height: 10px; border-radius: 50%; }
.rg-dot.red { background: #ff5f56; }
.rg-dot.yellow { background: #ffbd2e; }
.rg-dot.green { background: #27c93f; }

.rg-card-body {
    position: relative;
    height: calc(100% - 35px);
    background: radial-gradient(circle at 50% 50%, #151515 0%, #050505 100%);
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.rg-mockup-grid {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(223, 186, 107, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(223, 186, 107, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
}

.rg-mockup-shape {
    position: absolute;
    border: 1px solid #dfba6b;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.shape-1 { width: 120px; height: 120px; background: #111; top: 20%; left: 20%; }
.shape-2 { width: 80px; height: 40px; background: #dfba6b; bottom: 30%; right: 25%; border-radius: 20px; opacity: 0.8;}

.rg-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(223, 186, 107, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* 6. Hoofdmenu Navigatie Link Item (Goud omrand) */
.nav-planner-link {
    color: #dfba6b !important;
    border: 1px solid rgba(223, 186, 107, 0.3) !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    display: inline-block;
    text-decoration: none;
}

.nav-planner-link:hover {
    background: rgba(223, 186, 107, 0.1) !important;
    border-color: #dfba6b !important;
    box-shadow: 0 0 15px rgba(223, 186, 107, 0.2) !important;
    transform: translateY(-1px);
}

/* ==========================================================================
   7. RESPONSIVE LAYER (MOBIEL & TABLET CODE)
   ========================================================================== */
@media (max-width: 992px) {
    .rg-planner-sectie {
        padding: 60px 15px;
    }

    .rg-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 45px;
    }

    .rg-text-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .rg-titel {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .rg-beschrijving {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Houdt de vinkjes strak uitgelijnd en klein op mobiel */
    .rg-features {
        width: 100%;
        max-width: 360px; 
        margin: 0 auto 35px auto;
    }

    .rg-features li {
        justify-content: flex-start;
        font-size: 0.95rem;
    }

    .rg-glass-card {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        max-width: 100%;
    }
}