/* over-ons style.css */
:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --card-bg: #ffffff;
    --bg-alt: #f3f4f6;

    --blue-50: #eff6ff;
    --blue-600: #2563eb;
    --orange-50: #fff7ed;
    --orange-600: #ea580c;
    --green-50: #f0fdf4;
    --green-600: #16a34a;
    --dark-50: #f3f4f6;
    --dark-600: #111827;

    --radius: 1.5rem;
    --font-family: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-family); color: var(--text-main); background: #ffffff; line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: all 0.2s; }
ul { list-style: none; }

/* Navbar */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); padding: 1rem 2rem; }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; width: auto; }
.nav-links { display: flex; gap: 2rem; font-weight: 600; color: var(--text-muted); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-actions { display: flex; gap: 1rem; align-items: center; }
.nav-login { font-weight: 600; color: var(--text-muted); display: flex; gap: 0.5rem; align-items: center; }
.nav-login:hover { color: var(--primary); background: var(--blue-50); padding: 0.5rem 1rem; border-radius: 0.5rem; margin: -0.5rem -1rem; }
.nav-phone { background: var(--primary); color: white; padding: 0.6rem 1.2rem; border-radius: 9999px; font-weight: 700; display: flex; gap: 0.5rem; align-items: center; }
.nav-phone:hover { background: var(--primary-hover); }

/* Héérlijke Hero */
.hero-section { background: linear-gradient(135deg, var(--bg-alt) 0%, #e0e7ff 100%); padding: 6rem 2rem; }
.text-center { text-align: center; }
.container { max-width: 1200px; margin: 0 auto; }
.hero-content { max-width: 800px; }
.badge-accent { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 255, 255, 0.8); border: 1px solid var(--border); padding: 0.4rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 700; color: var(--primary); margin-bottom: 1.5rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.hero-section h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; color: #111827; }
.text-blue { color: var(--primary); }
.hero-subtext { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.btn-primary { background: var(--primary); color: white; padding: 1rem 2rem; border-radius: 9999px; font-weight: 700; display: inline-flex; gap: 0.5rem; align-items: center; transition: all 0.2s; cursor: pointer; border: none; font-size: 1rem; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(37,99,235,0.3); }

/* Vision Section */
.section-vision { padding: 8rem 2rem; position: relative; overflow: hidden; }
.split-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
.section-heading { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.icon-circle { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.icon-blue { background: var(--blue-50); color: var(--blue-600); }
.section-heading h2 { font-size: 2.5rem; font-weight: 800; color: #111827; }
.text-block p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.text-block strong { color: #111827; }

/* Bento Values Grid */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card { background: white; padding: 1.5rem; border: 1px solid var(--border); border-radius: 1rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); transition: transform 0.2s; }
.value-card:hover { transform: translateY(-3px); border-color: #bfdbfe; }
.value-card i { font-size: 2rem; margin-bottom: 1rem; }
.text-orange { color: var(--orange-600); }
.text-green { color: var(--green-600); }
.text-dark { color: var(--dark-600); }
.value-card h4 { font-size: 1.125rem; font-weight: 700; color: #111827; margin-bottom: 0.25rem; }
.value-card p { font-size: 0.875rem; color: var(--text-muted); }

/* Vision Image */
.image-wrapper { position: relative; border-radius: var(--radius); overflow: visible; display: inline-block; }
.image-wrapper img { width: 100%; max-width: 500px; border-radius: var(--radius); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); display: block; object-fit: cover; }
.floating-badge { position: absolute; bottom: -2rem; left: -2rem; background: white; padding: 1rem 1.5rem; border-radius: 1rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border: 1px solid var(--border); display: flex; gap: 1rem; align-items: center; z-index: 10; animation: float 6s ease-in-out infinite; }
.badge-icon { background: var(--orange-50); color: var(--orange-600); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.font-bold { font-weight: 700; color: #111827; }
.text-sm { font-size: 0.875rem; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }

.section-divider { border: 0; border-top: 1px solid var(--border); width: 100%; margin: 2rem 0; }

/* Expert Section */
.section-expert { padding: 6rem 2rem; background: var(--bg-alt); }
.expert-layout { display: grid; grid-template-columns: 300px 1fr; gap: 4rem; align-items: center; max-width: 900px; }
.circle-image { width: 250px; height: 250px; border-radius: 50%; object-fit: cover; border: 8px solid white; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.quote-icon { font-size: 3rem; opacity: 0.2; position: absolute; top: -1rem; left: -1rem; z-index: 0; }
.expert-content { position: relative; padding-left: 1rem; }
.expert-content h2 { font-size: 2rem; font-weight: 800; color: #111827; margin-bottom: 1rem; position: relative; z-index: 1; }
.expert-content p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.expert-content strong { color: #111827; }
.testimonial-block { background: white; padding: 1.5rem 2rem; border-left: 4px solid var(--primary); font-style: italic; font-size: 1.125rem; color: #111827; border-radius: 0 1rem 1rem 0; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); margin-bottom: 2rem; }
.mt-4 { margin-top: 1.5rem; }
.btn-secondary { background: white; color: var(--text-main); border: 2px solid var(--border); padding: 1rem 2rem; border-radius: 9999px; font-weight: 700; display: inline-flex; gap: 0.5rem; align-items: center; transition: all 0.2s; cursor: pointer; font-size: 1rem; }
.btn-secondary:hover { background: var(--bg-alt); border-color: var(--text-muted); }

/* Footer */
.footer { background: #111827; color: white; padding: 5rem 2rem 2rem; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; }
.footer-logo { height: 50px; margin-bottom: 1.5rem; filter: brightness(0) invert(1); }
.footer-col p { color: #9ca3af; margin-bottom: 1rem; font-size: 0.875rem; }
.footer-col h4 { font-size: 1.125rem; margin-bottom: 1.5rem; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul a, .footer-bottom a { color: #9ca3af; }
.footer-col ul a:hover, .footer-bottom a:hover { color: white; text-decoration: underline; }
.footer-phone { color: #f97316; font-size: 1.25rem; font-weight: 700; display: flex; gap: 0.5rem; align-items: center; margin-bottom: 1rem; }
.socials a { color: #9ca3af; font-size: 1.5rem; margin-right: 1rem; }
.socials a:hover { color: white; }
.footer-bottom { border-top: 1px solid #374151; margin-top: 4rem; padding-top: 2rem; text-align: center; color: #6b7280; font-size: 0.875rem; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-section h1 { font-size: 2.5rem; }
    .split-layout, .expert-layout { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .section-heading { justify-content: center; }
    .floating-badge { left: 50%; transform: translateX(-50%) !important; bottom: -1rem; right: auto; animation: none; width: 90%; justify-content: center; }
    .expert-image { text-align: center; }
    .testimonial-block { border-left: none; border-top: 4px solid var(--primary); border-radius: 0 0 1rem 1rem; }
    .footer-container { grid-template-columns: 1fr; }
    .footer-phone { justify-content: center; }
}
