:root {
    --primary-color: #FF6600;
    --secondary-color: #004477;
    --wallonie-red: #E30613;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --hero-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

/* Basis Instellingen */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Roboto', sans-serif; 
    margin-top: 75px; 
    color: var(--dark-color); 
    line-height: 1.4; 
    overflow-x: hidden;
}
.container { width: 95%; max-width: 1150px; margin: 0 auto; }

/* Header & Logo */
header { 
    background: #fff; 
    padding: 10px 0; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo-main { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--dark-color); }
.logo-sub { color: var(--wallonie-red); font-size: 0.8rem; font-weight: 700; display: block; letter-spacing: 0.5px; }
.vlag-icon { height: 18px; width: auto; border-radius: 2px; }

.header-right { display: flex; align-items: center; gap: 20px; }
.phone-number { font-weight: 700; color: var(--secondary-color); text-decoration: none; font-size: 1rem; }

/* Hero Slider Section */
.hero {
    height: 70vh;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    animation: slideShow 12s infinite ease-in-out;
    background-image: url('https://georgebuildings.com/wp-content/uploads/2024/05/5Melamine-Kitchen-Cabinet-1536x1022.jpg');
}

@keyframes slideShow {
    0%, 45% { background-image: url('https://georgebuildings.com/wp-content/uploads/2024/05/5Melamine-Kitchen-Cabinet-1536x1022.jpg'); }
    50%, 95% { background-image: url('https://images.ctfassets.net/5kq8dse7hipf/1VRF3x1nOCGGi3pPoTWCnm/642dcf6ec341839bff6c88ba15df16c2/bathroom-lighting-feature.jpg?w=1024&fm=webp'); }
    100% { background-image: url('https://georgebuildings.com/wp-content/uploads/2024/05/5Melamine-Kitchen-Cabinet-1536x1022.jpg'); }
}

.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.45); z-index: 1; }
.hero-container { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; width: 100%; gap: 30px; }

/* Hero Content */
.hero-content { 
    max-width: 500px; 
    color: #fff; 
    background: rgba(0,0,0,0.4); 
    padding: 30px; 
    border-radius: 15px; 
    backdrop-filter: blur(8px); 
}
.hero-content h1 { 
    font-family: 'Oswald', sans-serif; 
    font-size: 2.2rem; 
    line-height: 1.1; 
    margin-bottom: 15px; 
    text-shadow: var(--hero-shadow); 
    text-transform: uppercase; 
}
.hero-subtext { font-size: 1.1rem; margin-bottom: 20px; font-weight: 300; text-shadow: 1px 1px 4px rgba(0,0,0,0.5); }

/* Vertrouwens Badges */
.trust-badges-hero {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.badge-item {
    font-size: 0.85rem;
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    font-weight: 500;
}

/* Oranje USP Banner */
.mortgage-benefit-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e65c00 100%);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 6px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
}
.mortgage-benefit-box strong { 
    display: block; 
    font-size: 1rem; 
    font-weight: 700; 
    margin-bottom: 5px; 
    text-transform: uppercase;
}
.mortgage-benefit-box span { 
    font-size: 0.9rem; 
    line-height: 1.4; 
    font-weight: 400; 
    display: block; 
}

/* Sticky Form */
.sticky-form { 
    background: #fff; 
    padding: 30px; 
    border-radius: 15px; 
    width: 340px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.4); 
    border-top: 5px solid var(--primary-color);
}
.sticky-form h3 { font-family: 'Oswald', sans-serif; font-size: 1.4rem; margin-bottom: 15px; color: var(--secondary-color); text-align: center; }

/* Knoppen & Velden */
.btn { padding: 14px 25px; border-radius: 8px; font-weight: 700; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; transition: 0.3s; display: inline-block; font-size: 0.95rem; text-align: center;}
.btn-primary { background: var(--primary-color); color: #fff; box-shadow: 0 4px 15px rgba(255,102,0,0.3); }
.btn-primary:hover { background: #e65c00; transform: translateY(-2px); }
.btn-secondary { background: var(--secondary-color); color: #fff; }
.btn-block { width: 100%; margin-top: 15px; }
input { width: 100%; padding: 14px; margin: 8px 0; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; }

/* Process Section */
.process-section {
    padding: 60px 0;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
}
.section-title-white { font-family: 'Oswald', sans-serif; font-size: 2.2rem; margin-bottom: 40px; color: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.process-step { padding: 20px; }
.step-num { 
    width: 50px; height: 50px; background: var(--primary-color); color: #fff; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    margin: 0 auto 20px; font-size: 1.5rem; font-weight: 700; 
}
.process-step h4 { font-family: 'Oswald', sans-serif; font-size: 1.3rem; margin-bottom: 10px; }
.process-step p { font-size: 0.95rem; opacity: 0.8; }

/* Realisaties Sectie */
.transformation-section { padding: 60px 0; background: #f8f8f8; }
.section-title { text-align: center; font-family: 'Oswald', sans-serif; font-size: 2.4rem; margin-bottom: 40px; color: var(--secondary-color); }
.transformation-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.project-card { background: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.project-card h3 { margin-bottom: 15px; font-family: 'Oswald', sans-serif; font-size: 1.2rem; color: var(--secondary-color); }

/* Image Comparison */
.image-compare { display: flex; gap: 10px; }
.compare-box { position: relative; flex: 1; height: 220px; overflow: hidden; border-radius: 8px; }
.compare-box img { width: 100%; height: 100%; object-fit: cover; }
.label { position: absolute; top: 10px; left: 10px; padding: 4px 10px; font-size: 0.7rem; color: #fff; border-radius: 4px; font-weight: 800; }
.label.before { background: rgba(0,0,0,0.7); }
.label.after { background: var(--primary-color); }

/* WhatsApp */
.whatsapp-sticky { position: fixed; bottom: 25px; right: 25px; width: 60px; height: 60px; z-index: 9999; transition: 0.3s; }
.whatsapp-sticky img { width: 100%; height: 100%; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
.whatsapp-sticky:hover { transform: scale(1.1); }

/* Responsive */
@media (max-width: 992px) {
    .hero { height: auto; min-height: 100vh; padding: 100px 0 50px; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; }
    .trust-badges-hero { justify-content: center; }
    .sticky-form { width: 100%; }
}