@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@600;700&display=swap');

/* ==========================================================================
   1. ROOT VARIABLES & BASE STYLES
   ========================================================================== */
:root {
    --primary: #a68a64; /* Warm clay/gold */
    --primary-dark: #8c7352;
    --bg-dark: #1a1a1b; /* Deep slate */
    --bg-light: #f9f8f6; /* Off-white / warm light */
    --text-dark: #2d2d2d;
    --text-light: #ffffff;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    position: relative;
   -webkit-user-select: none; /* Safari */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;
}

h1, h2, h3, h4 { 
    font-family: 'Playfair Display', serif; 
    color: var(--bg-dark); 
}
input, textarea {
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
/* ==========================================================================
   2. NAVIGATIE & DROPDOWN
   ========================================================================== */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0rem 1rem; background: rgba(249, 248, 246, 0.95);
    backdrop-filter: blur(10px); position: fixed; width: 100%; top: 0; 
    z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 1.5rem; font-weight: 700; color: var(--bg-dark); letter-spacing: 1px;
    display: inline-flex; align-items: center; justify-content: center; text-decoration: none;
    padding: 12px 20px; border-radius: 8px; transition: background-color 0.3s ease;
}
.nav-brand span { color: var(--primary); }
.nav-brand:hover { background-color: rgba(235, 234, 232, 0.95); }
.nav-brand img { height: 40px; width: auto; display: block; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--bg-dark); font-weight: 500; font-size: 0.95rem; transition: var(--transition-fast); }
.nav-links a:hover { color: var(--primary); }
.mobile-menu-btn { display: none; z-index: 1001; }

/* --- Dropdown Menu --- */
.dropdown { position: relative; display: flex; align-items: center; }
.dropbtn { display: flex; align-items: center; gap: 6px; }
.dropdown-content {
    display: none; position: absolute; top: 100%; left: 0;
    background-color: #fff; min-width: 180px; box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 8px; z-index: 1000; padding: 0.5rem 0; list-style: none; border: 1px solid #eee;
}
.dropdown-content li { margin: 0; }
.dropdown-content a {
    color: var(--bg-dark); padding: 10px 20px; display: block; font-size: 0.95rem; font-weight: 500;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}
.dropdown-content a:hover { background-color: var(--bg-light); color: var(--primary); }

/* Toon dropdown op desktop */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-content { display: block; animation: fadeIn 0.3s ease; }
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   3. BUTTONS
   ========================================================================== */
.btn {
    display: inline-block; padding: 1rem 2rem; background-color: var(--bg-dark);
    color: var(--text-light); text-decoration: none; font-weight: 500; border: 1px solid var(--bg-dark);
    transition: var(--transition-fast); cursor: pointer;
}
.btn:hover { background-color: var(--primary); border-color: var(--primary); }
.btn-outline { background-color: transparent; color: var(--bg-dark); border-color: var(--bg-dark); }
.btn-outline:hover { background-color: var(--bg-dark); color: var(--text-light); }

/* ==========================================================================
   4. HERO SECTIES
   ========================================================================== */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 8rem 5% 4rem; background: linear-gradient(135deg, #f9f8f6 0%, #e8e5df 100%); }
.hero h1 { font-size: clamp(3rem, 5vw, 5rem); line-height: 1.1; margin-bottom: 1.5rem; max-width: 900px; }
.hero p { font-size: 1.2rem; color: #555; max-width: 600px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; }

.hero-sub { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 6rem 5% 0; background: linear-gradient(rgba(26, 26, 27, 0.8), rgba(26, 26, 27, 0.9)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2069&auto=format&fit=crop') center/cover; color: white; }
.hero-sub h1 { color: white; font-size: clamp(2.5rem, 4vw, 4rem); margin-bottom: 1rem; }
.hero-sub p { font-size: 1.15rem; color: #ccc; max-width: 600px; margin: 0 auto; }

.hero-full { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 5%; background: linear-gradient(rgba(26, 26, 27, 0.7), rgba(26, 26, 27, 0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop') center/cover fixed; color: white; }
.hero-full h1 { color: white; font-size: clamp(3rem, 5vw, 5.5rem); margin-bottom: 1.5rem; }
.hero-full p { font-size: 1.25rem; color: #e0e0e0; max-width: 700px; margin: 0 auto 2.5rem; }

.hero-construct { min-height: 85vh; display: flex; align-items: center; justify-content: flex-start; text-align: left; padding: 6rem 10% 0; background: linear-gradient(90deg, rgba(26, 26, 27, 0.9) 0%, rgba(26, 26, 27, 0.4) 100%), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=2070&auto=format&fit=crop') center/cover; color: white; }
.hero-construct h1 { color: white; font-size: clamp(3rem, 5vw, 4.5rem); margin-bottom: 1.5rem; max-width: 800px; }
.hero-construct p { font-size: 1.2rem; color: #e0e0e0; max-width: 600px; margin-bottom: 2rem; line-height: 1.8; }

.hero-tech { min-height: 85vh; display: flex; align-items: center; justify-content: flex-start; text-align: left; padding: 6rem 10% 0; background: linear-gradient(90deg, rgba(26, 26, 27, 0.95) 0%, rgba(26, 26, 27, 0.7) 100%), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2070&auto=format&fit=crop') center/cover; color: white; }
.hero-tech h1 { color: white; font-size: clamp(3rem, 5vw, 4.5rem); margin-bottom: 1.5rem; max-width: 800px; }
.hero-tech p { font-size: 1.2rem; color: #ccc; max-width: 600px; margin-bottom: 2rem; line-height: 1.8; }

.hero-clean { min-height: 85vh; display: flex; align-items: center; justify-content: flex-start; text-align: left; padding: 6rem 10% 0; background: linear-gradient(90deg, rgba(26, 26, 27, 0.85) 0%, rgba(26, 26, 27, 0.2) 100%), url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=2000&auto=format&fit=crop') center/cover; color: white; }
.hero-clean h1 { color: white; font-size: clamp(3rem, 5vw, 4.5rem); margin-bottom: 1.5rem; max-width: 800px; }
.hero-clean p { font-size: 1.2rem; color: #e0e0e0; max-width: 600px; margin-bottom: 2rem; line-height: 1.8; }

/* ==========================================================================
   5. ALGEMENE LAYOUT & GRIDS
   ========================================================================== */
.section { padding: 6rem 5%; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 4rem; }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
.card { background: #fff; padding: 4rem 3rem; border: 1px solid #eaeaea; transition: var(--transition-slow); position: relative; overflow: hidden; }
.card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); border-color: var(--primary); }
.card h3 { font-size: 2rem; margin-bottom: 1rem; }
.card p { margin-bottom: 2rem; color: #666; }

/* ==========================================================================
   6. PAGINA ELEMENTEN & COMPONENTEN
   ========================================================================== */
/* Story */
.story-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 6rem 5%; max-width: 1200px; margin: 0 auto; }
.story-content h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.story-content p { font-size: 1.1rem; color: #555; margin-bottom: 1.5rem; line-height: 1.8; }
.story-image { position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.story-image img { width: 100%; display: block; }
.experience-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary); color: white; padding: 2rem; border-radius: 4px; text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.experience-badge h3 { color: white; font-size: 2.5rem; margin: 0; font-family: 'Inter', sans-serif; }
.experience-badge span { font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* Kernwaarden */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; max-width: 1200px; margin: 0 auto; padding: 4rem 5% 6rem; }
.value-card { background: #fff; padding: 3rem 2.5rem; border-radius: 8px; border-top: 4px solid var(--primary); box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: transform 0.3s ease; }
.value-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.value-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--bg-dark); }
.value-card p { color: #666; font-size: 1rem; }
.value-icon { width: 60px; height: 60px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-bottom: 1.5rem; color: var(--primary); }

/* CEO Sectie */
.ceo-section { display: flex; flex-wrap: wrap; gap: 4rem; align-items: center; justify-content: center; max-width: 1000px; margin: 0 auto; padding: 6rem 5%; }
.ceo-content { flex: 1; min-width: 300px; }
.ceo-image-wrapper { flex: 1; min-width: 300px; text-align: center; }
.ceo-image-wrapper img { max-width: 320px; width: 100%; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 5px solid white; }

/* Stats & Features */
.stats-bar { background-color: var(--primary); color: white; padding: 4rem 5%; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.stat-item h3 { color: white; font-size: 3rem; margin-bottom: 0.5rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.stat-item p { font-size: 1rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

.feature-row { display: flex; align-items: center; gap: 4rem; padding: 6rem 5%; }
.feature-row.reverse { flex-direction: row-reverse; background-color: #fff; }
.feature-text { flex: 1; }
.feature-text h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.feature-text p { font-size: 1.1rem; color: #555; margin-bottom: 2rem; }
.feature-image { flex: 1; border-radius: 8px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.feature-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.feature-image:hover img { transform: scale(1.05); }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-top: 4rem; }
.step-card { text-align: left; position: relative; }
.step-number { font-size: 4rem; font-weight: 700; color: rgba(166, 138, 100, 0.2); position: absolute; top: -30px; left: -10px; z-index: 0; font-family: 'Playfair Display', serif; }
.step-card h4, .step-card p { position: relative; z-index: 1; }
.step-card h4 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--bg-dark); }

.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card { background: #fff; padding: 3rem; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid #eee; }
.testimonial-card p { font-style: italic; color: #555; margin-bottom: 1.5rem; }
.client-info { display: flex; align-items: center; gap: 1rem; }
.client-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: bold; }

/* ==========================================================================
   7. SECTOR SERVICES (Bouw, IT, Cleaning)
   ========================================================================== */
.build-services-grid, .tech-services-grid, .clean-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; max-width: 1200px; position: relative; z-index: 10; padding: 0 5%; }
.build-services-grid { margin: -3rem auto 4rem; }
.tech-services-grid { margin: -5rem auto 4rem; }
.clean-services-grid { margin: -5rem auto 4rem; }

.build-card, .tech-card, .clean-card { background: #fff; padding: 3rem 2rem; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-bottom: 4px solid transparent; transition: all 0.4s ease; }
.build-card:hover, .tech-card:hover, .clean-card:hover { border-bottom-color: var(--primary); transform: translateY(-10px); }

.icon-wrapper { width: 70px; height: 70px; background: rgba(166, 138, 100, 0.1); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; }
.clean-card .icon-wrapper { border-radius: 50%; } /* Ronde icons voor cleaning */

.clean-card h3, .tech-card h3, .build-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--bg-dark); }
.clean-card p, .tech-card p, .build-card p { color: #666; line-height: 1.7; margin-bottom: 1.5rem; }

/* Splits & Badges */
.construct-split, .it-split, .clean-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1200px; margin: 4rem auto; padding: 0 5%; }
.construct-split-img, .it-split-img, .clean-split-img { position: relative; }
.construct-split-img img, .it-split-img img, .clean-split-img img { width: 100%; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); display: block; }

.quality-badge { position: absolute; top: 30px; left: -30px; background: var(--primary); color: white; padding: 1.5rem; border-radius: 4px; font-family: 'Playfair Display', serif; font-size: 1.2rem; box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.hygiene-badge { position: absolute; bottom: 30px; right: -30px; background: #fff; color: var(--bg-dark); padding: 1.5rem; border-radius: 8px; font-family: 'Inter', sans-serif; font-weight: 600; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 15px; border-left: 4px solid var(--primary); }
.hygiene-badge svg { color: var(--primary); width: 30px; height: 30px; }

.checklist li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; color: #555; }
.checklist li svg { flex-shrink: 0; color: var(--primary); margin-top: 4px; }

.standards-pills, .tech-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 3rem; }
.standard-pill, .tech-pill { padding: 0.8rem 2rem; background: #fff; border: 1px solid #eaeaea; font-weight: 500; color: #444; box-shadow: 0 4px 10px rgba(0,0,0,0.02); transition: all 0.3s ease; }
.standard-pill { border-radius: 4px; display: flex; align-items: center; gap: 10px; }
.standard-pill svg { color: var(--primary); width: 18px; height: 18px; }
.standard-pill:hover { border-color: var(--primary); transform: translateY(-3px); }
.tech-pill { border-radius: 50px; }
.tech-pill:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-3px); }

/* ==========================================================================
   8. FORMS & CONTACT
   ========================================================================== */
.contact-header { padding: 10rem 5% 4rem; text-align: center; background: linear-gradient(135deg, #f9f8f6 0%, #e8e5df 100%); }
.contact-header h1 { font-size: clamp(2.5rem, 4vw, 4rem); margin-bottom: 1rem; color: var(--bg-dark); }
.contact-header p { font-size: 1.15rem; color: #555; max-width: 600px; margin: 0 auto; }

.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; max-width: 1200px; margin: -2rem auto 4rem; padding: 4rem 5% 0; position: relative; z-index: 10; }
.info-card { background: var(--bg-dark); color: white; padding: 4rem 3rem; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.info-card h3 { color: white; font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 2rem; }
.info-item { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 2rem; }
.info-item svg { color: var(--primary); flex-shrink: 0; width: 24px; height: 24px; }
.info-item p { color: #ccc; margin-bottom: 0.2rem; font-size: 0.95rem; }
.info-item a, .info-item strong { color: white; text-decoration: none; font-size: 1.1rem; font-weight: 500; }

.form-card { background: white; padding: 4rem 3rem; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #eee; }
.form-card h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.form-card p { color: #666; margin-bottom: 2.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-.full { grid-column: span 2; }
.form- { margin-bottom: 1.5rem; }
.form- label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
.form- input, .form- textarea, .form-control { width: 100%; padding: 1rem 1.2rem; background: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 4px; font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--text-dark); transition: all 0.3s ease; }
.form- input:focus, .form- textarea:focus, .form-control:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(166, 138, 100, 0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }

.checkbox- { display: flex; align-items: flex-start; gap: 0.8rem; margin-top: 1rem; }
.checkbox- input { margin-top: 4px; cursor: pointer; }
.checkbox- label { font-size: 0.85rem; color: #666; cursor: pointer; }
.checkbox- a { color: var(--primary); text-decoration: underline; }

.process-section { background: #fff; padding: 6rem 5%; text-align: center; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1000px; margin: 3rem auto 0; }
.process-step { position: relative; padding: 2rem; border: 1px solid #eee; border-radius: 8px; }
.process-step .step-num { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; border: 4px solid #fff; }

.map-container { width: 100%; height: 400px; background: #eee; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ==========================================================================
   9. FOOTER & GDPR
   ========================================================================== */
/* ==========================================================================
   9. FOOTER & GDPR
   ========================================================================== */
footer { 
    background-color: #111; 
    color: #fff; 
    padding: 5rem 5% 3rem; 
    margin-bottom: 0; 
}
html { background-color: #111; height: 100%; }
body {
    min-height: 100vh;
}

.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { color: var(--text-light); margin-bottom: 1.5rem; font-family: 'Inter', sans-serif; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col a { color: #aaa; text-decoration: none; transition: var(--transition-fast); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid #333; padding-top: 2rem; display: flex; justify-content: space-between; font-size: 0.9rem; color: #888; }

#cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background: var(--bg-dark); color: white; padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; transition: var(--transition-slow); z-index: 9999; }
#cookie-banner.show { bottom: 0; }
#cookie-banner p { font-size: 0.9rem; margin-right: 2rem; }

/* Animaties */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   10. BUSINESS CARD STYLES
   ========================================================================== */
.business-card-container { background-color: #2c2c2c; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; min-height: 100vh; margin: 0; font-family: 'Montserrat', sans-serif; gap: 40px; padding: 20px; }
.business-card { width: 85mm; height: 55mm; min-width: 600px; min-height: 388px; background-color: #111111; border-radius: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; overflow: hidden; border: 1px solid #333; }
.business-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 4px; box-shadow: inset 0 0 0 2px #C8A97E; opacity: 0.5; pointer-events: none; }
.text-white { color: #ffffff; }
.text-gold { color: #C8A97E; } 
.text-light-grey { color: #e0e0e0; }
.front-side .logo-container { font-size: 42px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
.front-side .logo-Consultyx { color: #ffffff; }
.front-side .logo- { background: linear-gradient(45deg, #AE8625, #F7EF8A, #D2AC47, #EDC967); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; }
.back-side { padding: 30px; box-sizing: border-box; }
.back-side .name { font-size: 28px; font-weight: 700; margin: 0; letter-spacing: 1px; }
.back-side .title { font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 3px; margin: 10px 0 25px 0; }
.divider { height: 2px; width: 60px; background: linear-gradient(90deg, transparent, #C8A97E, transparent); margin-bottom: 25px; }
.contact-info { display: flex; flex-direction: column; gap: 12px; font-size: 14px; font-weight: 400; letter-spacing: 0.5px; }
.contact-item { display: flex; align-items: center; justify-content: center; gap: 10px; }
.card-label { position: absolute; top: -30px; color: #C8A97E; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; }

/* ==========================================================================
   11. MEDIA QUERIES (ULTIEME FIX VOOR IPHONE & ANDERE SMARTPHONES)
   ========================================================================== */

/* --- TABLET & LAPTOP (Tot 1350px) --- */
@media (max-width: 1350px) {
/* Menu Fix: Logo exact in het midden, menu knop strak rechts */
    nav.navbar { 
        padding: 1.5rem 1.5rem; 
        display: flex; 
        justify-content: center; /* Centreert alles */
        align-items: center;
        width: 100%; 
    }
    .nav-brand { 
        position: absolute !important; 
        left: 50% !important; 
        transform: translateX(-50%) !important; 
        margin: 0; 
        z-index: 1002; /* Zorgt dat het logo altijd bovenaan ligt */
    }
    .mobile-menu-btn { 
        display: block; 
        position: absolute; 
        right: 1.5rem; 
        z-index: 1003; 
        margin-top: 0; 
    }

    /* Mobiel Menu Zijbalk - LUXE EDITIE */
    .nav-links {
        display: flex; 
        position: fixed; 
        top: 0; 
        right: 0; 
        height: 100vh; 
        height: 100dvh; 
        width: 85%; 
        max-width: 380px; /* Iets breder voor een ruimtelijker gevoel */
        background: #f9f8f6 !important; 
        backdrop-filter: none !important; 
        -webkit-backdrop-filter: none !important;
        flex-direction: column;
        justify-content: flex-start; 
        padding: 7rem 2.5rem 3rem; /* Meer ruimte bovenaan voor het sluitkruisje */
        box-shadow: -15px 0 30px rgba(0,0,0,0.15); 
        z-index: 1000; 
        transform: translateX(100%); 
        opacity: 0;
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s ease; 
        pointer-events: none; 
        overflow-y: auto; 
    }
    
    .nav-links.active { 
        transform: translateX(0); 
        opacity: 1; 
        pointer-events: all; 
    }
    
    /* Individuele Menu Links */
    .nav-links li { 
        text-align: left; 
        width: 100%; 
        margin: 0; 
        border-bottom: 1px solid rgba(0,0,0,0.04); /* Veel zachtere scheidingslijn */
    }
    
    .nav-links li:last-child {
        border-bottom: none; /* Geen lijn onder de laatste link */
    }

    .nav-links a { 
        font-family: 'Inter', sans-serif;
        font-size: 1.3rem; /* Iets groter en eleganter */
        font-weight: 500;
        display: block; 
        padding: 1.2rem 0; /* Groter klikvlak voor GSM */
        color: var(--bg-dark);
        transition: color 0.3s ease, padding-left 0.3s ease;
    }
    
    /* Interactie Effect op Mobiel */
    .nav-links a:hover, .nav-links a:active {
        color: var(--primary);
        padding-left: 8px; /* Link schuift subtiel in bij aantikken */
    }

    /* --- Dropdown / Submenu Styling --- */
    .dropdown { 
        flex-direction: column; 
        align-items: flex-start; 
    }
    
    .dropbtn { 
        pointer-events: auto !important; 
        color: var(--bg-dark); 
        font-weight: 500; 
        border: none; 
        padding: 1.2rem 0; 
        display: block;
        width: 100%;
        font-size: 1.3rem;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }
    
    .dropbtn:hover, .dropbtn:active {
        color: var(--primary);
        padding-left: 8px;
    }

    .dropbtn svg { display: none; } 

    .dropdown-content {
        display: block !important; 
        position: static; 
        box-shadow: none; 
        background: transparent; 
        border: none;
        margin: -0.5rem 0 1rem 1rem; /* Inspringen aangepast */
        padding-left: 1.2rem; 
        min-width: 100%;
        border-left: 2px solid rgba(166, 138, 100, 0.3); /* Chique gouden zijlijn */
    }
    
    .dropdown-content a { 
        font-size: 1.1rem; 
        padding: 0.8rem 0; 
        color: #666; 
    }
    
    .dropdown-content a:hover, .dropdown-content a:active { 
        color: var(--primary); 
    }
}

/* --- IPHONE & GSM WEERGAVE (Tot 900px) --- */
@media (max-width: 900px) {
    /* Voorkom dat grote elementen het scherm oprekken */
    img, svg, iframe, .map-container { max-width: 100%; }

    /* Paddings flink verkleinen voor smalle schermen */
    .section { padding: 3rem 1.5rem !important; }
    .hero, .hero-sub, .hero-construct, .hero-tech, .hero-clean { 
        padding: 7rem 1.5rem 3rem !important; 
        text-align: center; 
        justify-content: center; 
    }
    
    /* Grote teksten schalen naar iPhone formaat */
    .hero-full h1, .hero-construct h1, .hero-tech h1, .hero-clean h1, .hero-sub h1 { 
        font-size: 2.2rem !important; 
        line-height: 1.2; 
    }
    .section-title { font-size: 2rem !important; margin-bottom: 2.5rem !important; }

    /* Forceer alles in 1 strakke kolom */
    .story-section, .feature-row, .feature-row.reverse, .contact-wrapper, 
    .construct-split, .it-split, .clean-split, .ceo-section { 
        display: flex !important; 
        flex-direction: column !important; 
        gap: 2rem !important; 
        text-align: center; 
    }

    /* Grids aanpassen naar 1 kolom op iPhone */
    .grid-2, .values-grid, .steps-grid, .build-services-grid, .tech-services-grid, .clean-services-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Check dat de foto bovenaan staat bij secties */
    .construct-split-img, .it-split-img, .clean-split-img, .feature-image, .ceo-image-wrapper { 
        order: -1; 
        width: 100%; 
        margin-bottom: 1rem; 
    }

    /* Zwevende badges veilig in de tekst zetten */
    .experience-badge, .quality-badge, .hygiene-badge { 
        position: relative !important; 
        top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; 
        margin: 1.5rem auto !important; 
        display: inline-flex !important; 
        justify-content: center; 
        width: auto;
    }

    /* Formulieren passend maken */
    .form-grid { display: flex; flex-direction: column; gap: 1rem; }
    .form-.full { width: 100%; }
    .info-card, .form-card, .value-card, .card { padding: 2rem 1.5rem !important; }
    
    /* Zorg dat iconen en tekst netjes uitlijnen op mobiel */
    .value-icon, .icon-wrapper { margin: 0 auto 1.5rem; }
    .checklist li { justify-content: flex-start; text-align: left; }
    .hygiene-badge { flex-direction: column; text-align: center; }
    /* --- IPHONE/CHROME FOOTER FIX (Enkel voor mobiel) --- */
    body {
        overscroll-behavior-y: none; /* Stopt het witte 'elastiek' scrollen */
    }
    footer {
        position: relative;
    }
    footer::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #111;
        pointer-events: none;
    }

}

/* --- TIJDLIJN IPHONE FIX --- */
@media (max-width: 768px) {
    .timeline::after { left: 20px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 0; text-align: left; }
    .timeline-item::after { left: 11px; }
    .left, .right { left: 0; }
    .timeline-content { padding: 1.5rem; }
}

/* --- HAMBURGER MENU ANIMATIE --- */
.mobile-menu-btn svg line {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-box: fill-box;
    transform-origin: center;
}
.mobile-menu-btn.active svg line:nth-child(1) { opacity: 0; }
.mobile-menu-btn.active svg line:nth-child(2) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-btn.active svg line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   12. SPLASH SCREEN (Intro Animatie)
   ========================================================================== */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Voor de iPhone notch */
    background-color: var(--bg-dark);
    z-index: 99999; /* Zorgt dat het écht overal bovenop ligt */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s ease;
}

/* Het logo dat in-fadet */
.splash-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0; /* Begint onzichtbaar */
    animation: splashFadeIn 1s ease forwards 0.3s;
}

.splash-logo span {
    color: var(--primary);
}

/* De gouden lijn die uitschuift */
.splash-line {
    width: 0;
    height: 2px;
    background-color: var(--primary);
    margin-top: 20px;
    animation: splashLine 1s ease forwards 0.8s; /* Start na het logo */
}

/* Animaties */
@keyframes splashFadeIn {
    to { opacity: 1; }
}

@keyframes splashLine {
    to { width: 120px; }
}

/* Deze classes worden via JavaScript toegevoegd */
#splash-screen.hide {
    transform: translateY(-100%); /* Schuift naar boven weg */
    opacity: 0;
    pointer-events: none;
}

/* Voor als ze al eens op de pagina zijn geweest (geen animatie) */
#splash-screen.hidden-instant {
    display: none !important;
}


