/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', Arial, sans-serif; color: #1a1a2e; background: #fff; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* === BRAND COLOR === */
:root {
    --brand: #113B5E;
    --brand-hover: #0d2e4a;
    --brand-light: #e8f0f7;
}

/* === NAVBAR === */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    height: 90px;
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.nav-logo img {
    height: 74px; width: auto;
    object-fit: contain;
}
.nav-logo-text {
    font-size: 1rem; font-weight: 800; color: var(--brand);
    letter-spacing: 0.5px; line-height: 1.2;
}
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a { font-weight: 600; font-size: 0.95rem; color: #333; transition: color 0.2s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--brand); }
.nav-menu .nav-btn {
    background: var(--brand); color: #fff !important;
    padding: 10px 18px; border-radius: 6px; font-size: 0.9rem;
    transition: background 0.2s !important;
}
.nav-menu .nav-btn:hover { background: var(--brand-hover) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: #333; border-radius: 2px; }

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        display: none; flex-direction: column; position: absolute;
        top: 90px; left: 0; right: 0; background: #fff;
        padding: 24px; gap: 20px; box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .nav-menu.open { display: flex; }
    .nav-logo img { height: 56px; }
}

/* === HERO === */
.hero {
    position: relative;
    height: 100vh; min-height: 500px;
    display: flex; align-items: center;
    margin-top: 90px; overflow: hidden;
}
.hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(17,59,94,0.82) 0%, rgba(17,59,94,0.55) 100%);
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    color: #fff;
}
.hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800; margin-bottom: 16px;
    line-height: 1.2;
}
.hero-content p {
    font-size: 1.05rem; max-width: 560px;
    margin-bottom: 32px; opacity: 0.92; line-height: 1.7;
}

/* === BUTTONS === */
.btn-primary {
    display: inline-block; background: var(--brand); color: #fff;
    padding: 12px 28px; border-radius: 6px;
    font-weight: 700; font-size: 0.95rem;
    transition: background 0.2s, transform 0.1s;
    border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--brand-hover); transform: translateY(-1px); }
.btn-white {
    display: inline-block; background: #fff; color: var(--brand);
    padding: 12px 28px; border-radius: 6px;
    font-weight: 700; font-size: 0.95rem;
    border: 2px solid #fff;
    transition: all 0.2s, transform 0.1s;
}
.btn-white:hover { background: transparent; color: #fff; transform: translateY(-1px); }

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

/* === DIENSTEN SECTIE === */
.services-section { padding: 72px 0; background: #f5f7fa; }
.services-section > .container > h2 {
    text-align: center; font-size: 1.8rem;
    font-weight: 800; margin-bottom: 8px; color: #1a1a2e;
}
.section-subtitle {
    text-align: center; color: #6b7280;
    margin-bottom: 44px; font-size: 1rem;
}

/* Grid: 2 columns (4 services), wraps to 1 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
    background: #fff; border-radius: 10px; padding: 36px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; color: #1a1a2e;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(17,59,94,0.14); }

/* Round icon circle */
.service-icon-circle {
    width: 80px; height: 90px;
    border-radius: 50%;
    background: var(--brand);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    transition: background 0.2s;
}
.service-card:hover .service-icon-circle { background: var(--brand-hover); }
.service-icon-circle i {
    font-size: 1.8rem; color: #fff;
}
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--brand); }
.service-card p { color: #6b7280; line-height: 1.6; font-size: 0.9rem; }

/* === CTA BAR === */
.cta-bar {
    background: var(--brand);
    color: #fff; padding: 60px 0; text-align: center;
}
.cta-bar h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 10px; }
.cta-bar p { font-size: 1rem; opacity: 0.88; margin-bottom: 28px; }

/* === PAGE HERO === */
.page-hero {
    background: linear-gradient(135deg, var(--brand) 0%, #0d2e4a 100%);
    color: #fff; padding: 110px 0 60px; margin-top: 90px; text-align: center;
}
.page-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 10px; }
.page-hero p { font-size: 1.05rem; opacity: 0.88; }

/* === SERVICES DETAIL === */
.services-detail { padding: 72px 0; }
.service-detail-card {
    display: flex; gap: 32px; align-items: flex-start;
    background: #f5f7fa; border-radius: 10px; padding: 36px;
    margin-bottom: 24px;
}
.service-detail-icon {
    font-size: 2rem; color: var(--brand);
    background: #fff; border-radius: 10px; padding: 18px;
    min-width: 72px; text-align: center;
    box-shadow: 0 2px 10px rgba(17,59,94,0.12);
}
.service-detail-content h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: var(--brand); }
.service-detail-content p { color: #374151; line-height: 1.7; margin-bottom: 14px; }
.service-detail-content ul { list-style: disc; padding-left: 20px; color: #374151; }
.service-detail-content ul li { margin-bottom: 5px; line-height: 1.6; }

@media (max-width: 600px) { .service-detail-card { flex-direction: column; } }

/* === CONTACT === */
.contact-section { padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; margin-bottom: 44px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h2, .contact-form-wrapper h2 {
    font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; color: var(--brand);
}
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-item i { font-size: 1.1rem; color: var(--brand); margin-top: 2px; }
.contact-item strong { display: block; font-weight: 700; margin-bottom: 3px; }
.contact-item p, .contact-item a { color: #374151; line-height: 1.6; }
.contact-item a:hover { color: var(--brand); }

.contact-form .form-group { margin-bottom: 18px; }
.contact-form label { display: block; font-weight: 600; margin-bottom: 5px; font-size: 0.88rem; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid #e5e7eb; border-radius: 7px;
    font-family: inherit; font-size: 0.93rem;
    transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--brand);
}
.form-success {
    background: #f0fdf4; border: 1.5px solid #86efac;
    border-radius: 8px; padding: 18px; color: #166534;
    font-weight: 600; font-size: 1rem;
}

.map-wrapper { border-radius: 10px; overflow: hidden; }

/* === HULP OP AFSTAND === */
.remote-section { padding: 72px 0; }
.remote-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; }
@media (max-width: 900px) { .remote-grid { grid-template-columns: 1fr; } }

.remote-content h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 18px; color: var(--brand); }
.remote-steps { list-style: none; margin-bottom: 32px; }
.remote-steps li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 32px; }
.step-num {
    min-width: 34px; height: 34px; border-radius: 50%;
    background: var(--brand); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.95rem;
}
.remote-steps li strong { display: block; font-weight: 700; margin-bottom: 3px; }
.remote-steps li p { color: #374151; line-height: 1.6; }
.remote-steps li a { color: var(--brand); font-weight: 600; }

.download-box {
    display: flex; align-items: center; gap: 18px;
    background: var(--brand-light); border: 1.5px solid #b3cde0;
    border-radius: 10px; padding: 22px; margin-bottom: 20px;
    flex-wrap: wrap;
}
.download-box i { font-size: 1.8rem; color: var(--brand); }
.download-box strong { display: block; font-weight: 700; margin-bottom: 3px; }
.download-box p { color: #374151; font-size: 0.88rem; }

.remote-note {
    display: flex; gap: 10px; align-items: flex-start;
    background: #f0fdf4; border-left: 4px solid #22c55e;
    border-radius: 7px; padding: 14px 18px;
}
.remote-note i { color: #16a34a; font-size: 1.1rem; margin-top: 2px; }
.remote-note p { color: #374151; line-height: 1.6; font-size: 0.92rem; }

.remote-card {
    background: var(--brand); color: #fff;
    border-radius: 14px; padding: 36px 28px; text-align: center;
    position: sticky; top: 110px;
}
.remote-card i { color: #9ec9e8; margin-bottom: 18px; }
.remote-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.remote-card p { font-size: 0.95rem; opacity: 0.88; line-height: 1.6; margin-bottom: 24px; }

/* === FOOTER === */
.footer { background: #0d2e4a; color: #cbd5e1; padding: 56px 0 24px; }
.footer-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
    margin-bottom: 36px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; }
.footer p { font-size: 0.88rem; line-height: 1.7; }
.footer a { color: #93c5fd; transition: color 0.2s; }
.footer a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 20px; text-align: center;
    font-size: 0.82rem; color: #64748b;
}
