:root {
    --bg-main: #f0f7f3;
    --bg-card: #ffffff;
    --text-main: #1b3d28;
    --text-muted: #2f5c40;
    --accent-green: #3fa15e;
    --accent-hover: #2c7a45;
    --whatsapp: #25D366;
    --whatsapp-hover: #1da851;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 21px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.3; font-weight: 700; color: var(--text-main); }
p { margin-bottom: 1rem; }
a { color: var(--accent-green); text-decoration: none; }

.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Navigatie */
.navbar {
    background-color: var(--bg-card);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: sticky; top: 0; z-index: 100;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: bold; }
.nav-phone { font-weight: bold; font-size: 1.2rem; }

/* Hero */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #e3f2e8 100%);
    padding: 80px 20px; text-align: center; border-bottom: 2px solid #d1e8d9; margin-bottom: 60px;
}
.hero-badge {
    display: inline-block; background-color: #d1e8d9; padding: 8px 20px; border-radius: 50px;
    font-size: 1.1rem; font-weight: bold; margin-bottom: 25px;
}
.hero h1 { font-size: 2.8rem; margin-bottom: 25px; }
.hero .subtitle { font-size: 1.3rem; color: var(--text-muted); max-width: 800px; margin: 0 auto 40px auto; }

/* Knoppen */
.cta-group { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn {
    display: inline-block; padding: 18px 35px; font-size: 1.2rem; font-weight: bold;
    border-radius: 50px; transition: all 0.3s ease; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn-primary { background-color: var(--accent-green); color: white; }
.btn-primary:hover { background-color: var(--accent-hover); transform: translateY(-2px); color: white; }
.btn-whatsapp { background-color: var(--whatsapp); color: white; }
.btn-whatsapp:hover { background-color: var(--whatsapp-hover); transform: translateY(-2px); color: white; }

/* Info Block */
.info-block {
    background-color: var(--bg-card); border-radius: 15px; padding: 40px; display: flex;
    align-items: flex-start; gap: 30px; margin-bottom: 60px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-left: 8px solid var(--text-main);
}
.info-icon { font-size: 4rem; line-height: 1; }
.info-block h2 { font-size: 2rem; margin-bottom: 15px; }

/* Diensten Grid */
.section-title { text-align: center; font-size: 2.4rem; margin-bottom: 40px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-bottom: 80px; }
.card {
    background-color: var(--bg-card); padding: 30px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease; border: 1px solid #e3f2e8;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06); }
.card .icon { font-size: 2.5rem; margin-bottom: 15px; }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; }

/* Footer */
.footer { background-color: var(--text-main); color: white; padding: 60px 20px 40px 20px; }
.footer-card {
    background-color: white; color: var(--text-main); border-radius: 15px; padding: 50px 30px;
    text-align: center; max-width: 700px; margin: 0 auto; box-shadow: 0 10px 30px rgba(0,0,0,0.15); transform: translateY(-20px);
}
.footer-card h2 { font-size: 2.2rem; margin-bottom: 15px; }
.big-number { display: block; font-size: 3rem; font-weight: bold; color: var(--accent-green); margin: 20px 0; }
.email-link a { font-weight: bold; color: var(--text-main); text-decoration: underline; }
.footer-divider { border: none; height: 1px; background-color: #d1e8d9; margin: 30px 0; }
.footer-note { font-size: 1.1rem; color: var(--text-muted); font-style: italic; }

/* Subtiele Animaties voor een 'aantrekkelijk maar rustig' gevoel */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in { animation: fadeIn 1s ease-out forwards; }
.fade-in-up { opacity: 0; animation: fadeInUp 0.8s ease-out forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .info-block { flex-direction: column; text-align: center; align-items: center; }
    .big-number { font-size: 2.2rem; }
    .cta-group { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
}
