/* === Self-hosted Inter Font === */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/inter-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/inter-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/inter-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/inter-700.woff2') format('woff2');
}

/* === Variabelen === */
:root {
    --color-primary: #E91E8C;
    --color-secondary: #00BCD4;
    --color-dark: #4A4A4A;
    --color-gray: #6B7280;
    --color-light: #F9FAFB;
    --color-white: #FFFFFF;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --transition: all 0.3s ease;
}

/* === Reset & Base === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
}

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

a:hover {
    color: var(--color-secondary);
}

/* === Container === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Navigatie === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid #E5E7EB;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 42px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: var(--color-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-links li a:hover {
    background: var(--color-light);
    color: var(--color-primary);
}

.nav-links li a.btn {
    background: var(--color-primary);
    color: white;
    padding: 10px 22px;
}

.nav-links li a.btn:hover {
    background: #C4177A;
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
}

.mobile-menu-btn:hover {
    background: var(--color-light);
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: #C4177A;
    border-color: #C4177A;
    color: var(--color-white);
}

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border-color: var(--color-dark);
}

.btn-secondary:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.btn-full {
    width: 100%;
}

/* === Hero Section === */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 74, 74, 0.85) 0%, rgba(74, 74, 74, 0.7) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero .btn-secondary {
    border-color: var(--color-white);
    color: var(--color-white);
}

.hero .btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

/* === Section Styling === */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    text-align: center;
    margin-bottom: 60px;
}

/* === HDD Section === */
.hdd-section {
    background: var(--color-dark);
    color: var(--color-white);
}

.hdd-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hdd-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
}

.hdd-content .lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.7;
}

.hdd-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.7;
}

.hdd-content strong {
    color: var(--color-secondary);
}

.hdd-specs {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec {
    text-align: center;
}

.spec-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.spec-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.hdd-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-white);
}

.hdd-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hdd-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
}

.hdd-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

.hdd-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hdd-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* === Werkwijze Section === */
.werkwijze {
    background: var(--color-white);
}

.stappen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stap {
    text-align: center;
    padding: 30px 20px;
}

.stap-nummer {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stap h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.stap p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* === Diensten Section === */
.diensten {
    background: var(--color-light);
}

.diensten-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dienst-card {
    background: var(--color-light);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.dienst-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.dienst-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dienst-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.dienst-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.dienst-card p {
    color: var(--color-gray);
    line-height: 1.7;
}

/* === Voor Wie Section === */
.voor-wie {
    background: var(--color-white);
}

.doelgroepen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.doelgroep {
    text-align: center;
    padding: 40px 25px;
    background: var(--color-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.doelgroep:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.doelgroep-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.doelgroep-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.doelgroep h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.doelgroep p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* === Over Ons Section === */
.over-ons {
    background: var(--color-light);
}

.over-ons-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.over-ons-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.over-ons-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.over-ons-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.over-ons .lead {
    font-size: 1.15rem;
    color: var(--color-dark);
    font-weight: 500;
    margin-bottom: 20px;
}

.over-ons p {
    color: var(--color-gray);
    margin-bottom: 15px;
}

.kenmerken {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.kenmerk {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkmark {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* === FAQ Section === */
.faq-section {
    background: var(--color-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === Contact Section === */
.contact {
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-white);
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 5px;
}

.contact-item a,
.contact-item p {
    color: var(--color-gray);
    font-size: 1rem;
}

/* === Contact Form === */
.contact-form {
    background: var(--color-light);
    padding: 40px;
    border-radius: var(--radius);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius);
    font-family: var(--font-family);
    font-size: 16px;
    transition: var(--transition);
    background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.form-intro {
    color: var(--color-gray);
    margin-bottom: 25px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-direct .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-direct .btn-secondary {
    background: transparent;
    border-color: var(--color-gray);
    color: var(--color-gray);
}

.contact-direct .btn-secondary:hover {
    background: var(--color-gray);
    color: white;
}

.contact-direct {
    flex-direction: row;
}

.btn-half {
    flex: 1;
}

.form-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.form-divider::before,
.form-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #E5E7EB;
}

.form-divider span {
    padding: 0 15px;
}

.form-status {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    display: none;
}

.form-status.success {
    display: block;
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.form-status.error {
    display: block;
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.form button[type="submit"] {
    width: 100%;
    margin-top: 10px;
}

.form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #C4177A 100%);
    padding: 50px 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn-white {
    background: white;
    color: var(--color-dark);
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white:hover {
    background: transparent;
    color: white;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #1EA952;
    border-color: #1EA952;
    color: white;
}

/* === Footer === */
.footer {
    background: #1a1a1a;
    color: var(--color-white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 45px;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* === WhatsApp Float Button === */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #1EA952;
    transform: scale(1.1);
    color: white;
}

/* === Responsive === */
@media (max-width: 992px) {
    .hdd-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hdd-image {
        order: -1;
    }

    .hdd-image img {
        height: 300px;
    }

    .hdd-specs {
        justify-content: space-around;
    }

    .stappen-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diensten-grid,
    .diensten-grid.two-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .doelgroepen-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .over-ons-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .over-ons-image {
        order: -1;
    }

    .over-ons-image img {
        height: 300px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 15px;
        gap: 5px;
        box-shadow: var(--shadow-lg);
        display: none;
        border-top: 1px solid #E5E7EB;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 120px 0 80px;
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stappen-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stap {
        padding: 20px;
    }

    .diensten-grid,
    .diensten-grid.two-col {
        grid-template-columns: 1fr;
    }

    .doelgroepen-grid {
        grid-template-columns: 1fr;
    }

    .doelgroep {
        padding: 30px 20px;
    }

    .hdd-content h2 {
        font-size: 1.75rem;
    }

    .hdd-specs {
        flex-wrap: wrap;
        gap: 20px;
    }

    .spec-value {
        font-size: 1.5rem;
    }

    .kenmerken {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}
