@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Source+Code+Pro:wght@400;600&display=swap');

:root {
 --primary-color: #0d9488; /* Teal 600 */
 --primary-dark: #0f766e; /* Teal 700 */
 --secondary-color: #0891b2; /* Cyan 600 */
 --text-dark: #e5e7eb; /* Gray 200 */
 --text-light: #9ca3af; /* Gray 400 */
 --bg-dark: #111827; /* Gray 900 */
 --bg-light: #1f2937; /* Gray 800 */
 --bg-white: #ffffff;
 --border-color: #374151; /* Gray 700 */
 --accent-glow: 0 0 15px rgba(13, 148, 136, 0.6);
 --radius-md: 8px;
 --radius-lg: 16px;
 --transition: all 0.3s ease;
 --font-main: 'Inter', sans-serif;
 --font-mono: 'Source Code Pro', monospace;
}

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

html {
 scroll-behavior: smooth;
}

body {
 font-family: var(--font-main);
 font-size: 16px;
 line-height: 1.7;
 color: var(--text-light);
 background-color: var(--bg-dark);
 -webkit-font-smoothing: antialiased;
}

.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 24px;
}

h1, h2, h3, h4 {
 font-weight: 700;
 line-height: 1.3;
 color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

a {
 color: var(--primary-color);
 text-decoration: none;
 transition: var(--transition);
}
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-md); }

/* Header & Nav */
.header {
 position: fixed;
 top: 0; left: 0; right: 0;
 z-index: 1000;
 background: rgba(17, 24, 39, 0.8);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--border-color);
 transition: var(--transition);
}
.header.scrolled {
 background: rgba(17, 24, 39, 0.95);
}
.nav {
 height: 70px;
 display: flex;
 align-items: center;
 justify-content: space-between;
}
.nav-logo {
 font-family: var(--font-mono);
 font-size: 1.5rem;
 font-weight: 600;
 color: var(--text-dark);
}
.nav-links {
 display: flex;
 gap: 32px;
 list-style: none;
}
.nav-links a {
 font-weight: 500;
 color: var(--text-light);
 padding: 8px 0;
 position: relative;
}
.nav-links a::after {
 content: '';
 position: absolute;
 bottom: 0; left: 0;
 width: 0; height: 2px;
 background: var(--primary-color);
 transition: var(--transition);
 box-shadow: var(--accent-glow);
}
.nav-links a:hover,
.nav-links a.active {
 color: var(--text-dark);
}
.nav-links a:hover::after,
.nav-links a.active::after {
 width: 100%;
}
.nav-toggle {
 display: none;
 background: none; border: none;
 cursor: pointer;
 padding: 8px; z-index: 1001;
}
.nav-toggle span {
 display: block;
 width: 24px; height: 2px;
 background: var(--text-dark);
 margin: 6px 0;
 transition: var(--transition);
}

/* Sections */
.section { padding: 80px 0; }
.section.bg-light { background-color: var(--bg-light); }
.section-header {
 text-align: center;
 max-width: 700px;
 margin: 0 auto 50px;
}
.section-label {
 font-family: var(--font-mono);
 color: var(--primary-color);
 font-size: 0.9rem;
 margin-bottom: 1rem;
 display: inline-block;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; max-width: 600px; margin: 0 auto;}

/* Hero */
.hero {
 min-height: 80vh;
 display: flex;
 align-items: center;
 text-align: center;
 padding-top: 70px;
 position: relative;
 background: url('assets/img-787a859d.jpg') no-repeat center center/cover;
}
.hero::before {
 content:'';
 position: absolute;
 inset: 0;
 background: linear-gradient(to top, var(--bg-dark) 5%, rgba(17, 24, 39, 0.7) 100%);
}
.hero-content { position: relative; }
.hero-subtitle { color: var(--text-light); }
.hero-cta {
 margin-top: 32px;
 display: flex; justify-content: center; gap: 16px;
}
.badge {
 display: inline-block;
 padding: 8px 16px;
 border-radius: 20px;
 font-weight: 500;
 font-size: 0.9rem;
 margin-bottom: 24px;
 background: rgba(13, 148, 136, 0.2);
 color: var(--primary-color);
 border: 1px solid var(--primary-color);
}
.badge-glow { box-shadow: var(--accent-glow); }

/* Buttons */
.btn {
 display: inline-block;
 padding: 12px 28px;
 font-size: 1rem;
 font-weight: 600;
 border-radius: var(--radius-md);
 cursor: pointer;
 transition: var(--transition);
 border: 2px solid transparent;
}
.btn-primary {
 background: var(--primary-color);
 color: var(--bg-white);
 box-shadow: var(--accent-glow);
}
.btn-primary:hover {
 background: var(--primary-dark);
 transform: translateY(-2px);
}
.btn-secondary {
 background: transparent;
 color: var(--text-dark);
 border-color: var(--border-color);
}
.btn-secondary:hover {
 background-color: var(--border-color);
 border-color: var(--border-color);
 color: var(--bg-white);
}
.btn-submit { width: 100%; padding: 16px 28px; font-size: 1.1rem; }

/* Stats Section */
.stats-grid {
 display: grid; grid-template-columns: repeat(3, 1fr);
 gap: 30px; margin-top: 40px;
}
.stat-item {
 background: var(--bg-light);
 padding: 30px;
 border-radius: var(--radius-lg);
 text-align: center;
 border: 1px solid var(--border-color);
}
.stat-number-wrapper {
 margin-bottom: 16px;
}
.stat-number {
 font-size: 3.5rem;
 font-weight: 700;
 color: var(--primary-color);
 font-family: var(--font-mono);
 text-shadow: var(--accent-glow);
}
.stat-title { margin-bottom: 8px; color: var(--text-dark); }
.stat-text { font-size: 0.95rem; }

/* Card & Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card {
 background: var(--bg-light);
 border-radius: var(--radius-lg);
 border: 1px solid var(--border-color);
 transition: var(--transition);
 display: flex; flex-direction: column;
}
.card:hover { 
 transform: translateY(-5px); 
 border-color: var(--primary-color);
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.card-image {
 height: 200px;
 width: 100%;
 object-fit: cover;
 border-radius: var(--radius-lg) var(--radius-lg) 0 0;
 border-bottom: 1px solid var(--border-color);
}
.card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.card-title {
 font-size: 1.25rem;
 color: var(--text-dark);
 margin-bottom: 12px;
}
.card-text { margin-bottom: 16px; flex-grow: 1; }
.card-link {
 color: var(--primary-color);
 font-weight: 600;
 align-self: flex-start;
}
.card-link::after { content: ' →'; }
.card-meta {
 font-family: var(--font-mono);
 font-size: 0.8rem;
 color: var(--text-light);
 margin-bottom: 12px;
}

/* Media Object */
.media-object { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.media-object.reverse .media-visual { order: 2; }
.media-object .section-title {
 font-size: clamp(1.5rem, 4vw, 2.2rem);
}
.checklist { list-style: none; margin-top: 24px; }
.checklist li {
 padding-left: 28px;
 position: relative;
 margin-bottom: 12px;
}
.checklist li::before {
 content: '';
 position: absolute;
 left: 0;
 color: var(--primary-color);
 font-weight: 700;
}
.media-copy .btn { margin-top: 24px; }

/* Timeline */
.timeline {
 position: relative;
 max-width: 800px;
 margin: 0 auto;
}
.timeline::after {
 content: '';
 position: absolute;
 width: 3px;
 background-color: var(--border-color);
 top: 0; bottom: 0; left: 30px;
}
.timeline-step {
 padding: 10px 40px 30px 80px;
 position: relative;
}
.timeline-number {
 position: absolute;
 left: 0; top: 10px;
 width: 60px; height: 60px;
 display: flex; align-items: center; justify-content: center;
 background-color: var(--bg-light);
 border: 2px solid var(--border-color);
 border-radius: 50%;
 z-index: 1;
 font-family: var(--font-mono);
 font-size: 1.2rem;
 font-weight: 600;
 color: var(--primary-color);
 transition: var(--transition);
}
.timeline-step:hover .timeline-number {
 border-color: var(--primary-color);
 box-shadow: var(--accent-glow);
}
.timeline-content h3 { color: var(--text-dark); margin-bottom: 8px;}

/* Forms */
.contact-form-container {
 background: var(--bg-light);
 padding: 40px; border-radius: var(--radius-lg);
 border: 1px solid var(--border-color);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px;}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500;}
.form-group input, .form-group textarea {
 width: 100%;
 padding: 14px 18px;
 font-size: 1rem;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 background: var(--bg-dark);
 color: var(--text-dark);
 transition: var(--transition);
 font-family: var(--font-main);
}
.form-group input:focus, .form-group textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.3);
}
textarea { resize: vertical; min-height: 120px; }

/* Footer */
.footer {
 background: var(--bg-light);
 padding: 60px 0 30px;
 border-top: 1px solid var(--border-color);
 margin-top: 80px;
}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo {
 font-family: var(--font-mono);
 font-size: 1.5rem;
 font-weight: 600;
 color: var(--text-dark);
 display: block;
 margin-bottom: 16px;
}
.footer-about { margin-bottom: 20px; }
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: var(--text-dark);
 margin-bottom: 20px;
 text-transform: uppercase;
}
.footer-links, .footer-legal { list-style: none; }
.footer-links li a { margin-bottom: 12px; display: inline-block; }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px;}
.footer-contact svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 4px; color: var(--primary-color);}
.footer-contact a { color: var(--text-light); }
.footer-contact a:hover { color: var(--primary-color); }
.footer-bottom { 
 border-top: 1px solid var(--border-color);
 padding-top: 30px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.9rem;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-light); }
.footer-legal a:hover { color: var(--primary-color); }

/* Over Page Specifics */
.page-header-section {
 padding: 120px 0 80px;
 text-align: center;
 background: var(--bg-light);
}
.value-card {
 background: var(--bg-dark);
 padding: 30px; border-radius: var(--radius-lg);
 border: 1px solid var(--border-color);
}
.team-card {
 background: var(--bg-light);
 padding: 24px; border-radius: var(--radius-lg);
 text-align: center; border: 1px solid var(--border-color);
 transition: var(--transition);
}
.team-card:hover { 
 transform: translateY(-5px);
 border-color: var(--primary-color);
}
.team-photo {
 width: 120px; height: 120px;
 border-radius: 50%;
 margin: 0 auto 20px;
 border: 3px solid var(--border-color);
 object-fit: cover;
}
.team-name { color: var(--text-dark); font-size: 1.25rem; margin-bottom: 4px; }
.team-title { color: var(--primary-color); font-family: var(--font-mono); margin-bottom: 12px; }
.team-bio { font-size: 0.9rem; }

/* Diensten Page Specifics */
.service-item {
 display: flex;
 gap: 30px;
 background: var(--bg-light);
 padding: 30px; border-radius: var(--radius-lg);
 margin-bottom: 30px;
 border-left: 4px solid var(--border-color);
 transition: var(--transition);
}
.service-item:hover {
 border-left-color: var(--primary-color);
 transform: translateX(5px);
}
.service-icon {
 flex-shrink: 0;
 width: 50px; height: 50px;
 background: var(--bg-dark);
 border-radius: 50%;
 display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 24px; height: 24px; color: var(--primary-color); }
.testimonial-card {
 background: var(--bg-light);
 padding: 30px; border-radius: var(--radius-lg);
 border: 1px solid var(--border-color);
}
.testimonial-img {
 width: 60px; height: 60px;
 border-radius: 50%;
 float: left;
 margin-right: 20px;
 object-fit: cover;
}
.testimonial-card blockquote {
 font-size: 1.1rem;
 font-style: italic;
 margin-bottom: 16px;
 color: var(--text-dark);
}
.testimonial-card cite {
 display: block;
 font-weight: 600;
 color: var(--primary-color);
 font-style: normal;
}

/* Contact Page Specifics */
.contact-page-grid {
 display: grid; grid-template-columns: 2fr 1.5fr;
 gap: 40px; align-items: start;
}
.contact-info-container h3,
.contact-form-container h3 {
 font-size: 1.5rem;
 color: var(--text-dark);
 margin-bottom: 24px;
}
.contact-info-container {
 background: var(--bg-light);
 padding: 40px;
 border-radius: var(--radius-lg);
 border: 1px solid var(--border-color);
}
.contact-info-container .footer-heading { margin-top: 30px; }
.map-section { padding-top: 0; }
.map-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-color); }

/* Artikelen Page */
.pagination { 
 display:flex; justify-content: center;
 gap: 8px; margin-top: 40px;
}
.pagination a {
 padding: 10px 16px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 color: var(--text-light);
 font-weight: 500;
}
.pagination a:hover {
 background: var(--primary-color);
 color: var(--bg-white);
 border-color: var(--primary-color);
}
.pagination a.active {
 background: var(--primary-dark);
 color: var(--bg-white);
 border-color: var(--primary-dark);
}

/* Legal Pages */
.legal-content h2 { margin: 40px 0 15px; }
.legal-content h2:first-child { margin-top: 0;}
.legal-content ul { margin: 15px 0; padding-left: 20px; }
.legal-content li { margin-bottom: 10px; }
.cookie-table {
 width: 100%;
 border-collapse: collapse;
 margin: 30px 0;
}
.cookie-table th, .cookie-table td {
 border: 1px solid var(--border-color);
 padding: 12px;
 text-align: left;
}
.cookie-table th {
 background: var(--bg-light);
 color: var(--text-dark);
}

/* Thank You Page */
.thank-you-section {
 min-height: 60vh;
 display: flex;
 align-items: center;
 justify-content: center;
}
.text-center { text-align: center; }

/* Cookie Banner */
.cookie-banner {
 position: fixed;
 bottom: 0; left: 0; right: 0;
 background: var(--bg-light);
 color: var(--text-light);
 padding: 20px;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 z-index: 2000;
 border-top: 1px solid var(--border-color);
}
.cookie-buttons { display: flex; gap: 10px; }

/* Fade In Animation */
.fade-in {
 opacity: 0;
 transform: translateY(20px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.is-visible {
 opacity: 1;
 transform: translateY(0);
}

@media (max-width: 992px) {
 .grid-3, .stats-grid { grid-template-columns: 1fr; }
 .grid-2 { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: repeat(2, 1fr); }
 .media-object { grid-template-columns: 1fr; }
 .media-object.reverse .media-visual { order: 1; }
 .contact-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0; right: -100%;
 width: 70%; max-width: 300px;
 height: 100%;
 background: var(--bg-light);
 flex-direction: column;
 padding: 100px 40px 40px;
 gap: 16px;
 box-shadow: -5px 0 15px rgba(0,0,0,0.5);
 transition: right 0.4s ease-in-out;
 }
 .nav-links.active { right: 0; }
 .footer-grid { grid-template-columns: 1fr; }
 .footer-bottom { flex-direction: column; gap: 16px; text-align: center;}
 .cookie-banner { flex-direction: column; text-align: center; }
}

/* Responsive fixes for small screens */
@media (max-width: 576px) {
 .hero { min-height: 70vh; }
 .hero-cta { flex-direction: column; }
 .form-row { grid-template-columns: 1fr; }
 .contact-form-container, .contact-info-container { padding: 25px; }

}