:root {
    --blue: #2d4b9c;
    --blue-deep: #213879;
    --blue-bright: #3a5fbe;
    --blue-soft: #e8edf7;
    --blue-tint: #f4f6fc;
    --bg: #ffffff;
    --bg-soft: #f8f9fc;
    --ink: #0f1a3a;
    --ink-soft: rgba(15, 26, 58, 0.7);
    --ink-faint: rgba(15, 26, 58, 0.45);
    --line: rgba(15, 26, 58, 0.1);
    --line-strong: rgba(15, 26, 58, 0.18);
    --warn: #f4b942;
    --warn-deep: #e0a52a;
    --green: #4ec46e;
    --red: #e74c3c;
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
    background: var(--bg-soft);
    padding: 14px 32px;
    border-bottom: 1px solid var(--line);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.breadcrumb-inner {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-soft);
}
.breadcrumb a {
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-current { color: var(--ink); font-weight: 500; }
.breadcrumb-sep { color: var(--ink-faint); }

/* ============ HERO ============ */
.contact-hero {
    padding: 80px 32px 60px;
    text-align: center;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
}
.contact-hero-inner {
    max-width: 820px;
    margin: 0 auto;
}
.contact-hero-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 24px;
    font-weight: 500;
}
.contact-hero h1 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.contact-hero h1 em {
    font-style: normal;
    color: var(--blue);
}
.contact-hero p {
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 580px;
    margin: 0 auto;
}

/* ============ DRIE CONTACT CARDS ============ */
.contact-keuze {
    padding: 100px 32px 80px;
    max-width: 1480px;
    margin: 0 auto;
}
.contact-keuze-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.contact-card {
    background: white;
    border: 1.5px solid var(--line);
    border-radius: 22px;
    padding: 40px 36px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.contact-card:hover {
    border-color: var(--blue);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -16px rgba(45, 75, 156, 0.2);
}
.contact-card.primary {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
}
.contact-card.primary:hover {
    border-color: var(--warn);
}

/* Soft blue variant */
.contact-card.soft-blue {
    background: var(--blue-soft);
    border-color: var(--blue-soft);
    h3 {
        color: #0f1a3a;
    }
    .contact-card-cta .btn {
        &:hover {
            color: #fff;
        }
    }
}
.contact-card.soft-blue:hover {
    background: #dde4f2;
    border-color: var(--blue);
}
.contact-card.soft-blue .contact-card-icon {
    background: white;
    color: var(--blue);
}

/* Photo background variant */
.contact-card.photo-bg {
    color: white;
    border-color: var(--ink);
    position: relative;
    isolation: isolate;
}
.contact-card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-card.photo-bg:hover .contact-card-image {
    transform: scale(1.06);
}
.contact-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 26, 58, 0.4) 0%, rgba(15, 26, 58, 0.85) 60%, rgba(15, 26, 58, 0.95) 100%);
    z-index: 1;
    transition: background 0.3s;
}
.contact-card.photo-bg:hover .contact-card-overlay {
    background: linear-gradient(180deg, rgba(15, 26, 58, 0.3) 0%, rgba(15, 26, 58, 0.8) 60%, rgba(15, 26, 58, 0.95) 100%);
}
.contact-card.photo-bg .contact-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.contact-card.photo-bg .contact-card-icon {
    background: var(--warn);
    color: var(--ink);
}
.contact-card.photo-bg .contact-card-sub {
    color: rgba(255, 255, 255, 0.75);
}
.contact-card.photo-bg .contact-card-main {
    color: white;
}
.contact-card.photo-bg .contact-card-detail {
    color: rgba(255, 255, 255, 0.6);
}
.contact-card-icon {
    width: 56px; height: 56px;
    background: var(--blue-tint);
    color: var(--blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.3s;
}
.contact-card.primary .contact-card-icon {
    background: var(--warn);
    color: var(--ink);
}
.contact-card:hover .contact-card-icon {
    transform: rotate(-5deg) scale(1.05);
}
.contact-card-icon svg { width: 26px; height: 26px; }
.contact-card h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 26px;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #fff;
}
.contact-card-sub {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 24px;
    line-height: 1.5;
}
.contact-card.primary .contact-card-sub {
    color: rgba(255, 255, 255, 0.7);
}
.contact-card-main {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.15;
}
.contact-card.primary .contact-card-main {
    color: var(--warn);
    font-size: 28px;
}
.contact-card-detail {
    font-size: 13px;
    color: var(--ink-faint);
    margin-bottom: 24px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.02em;
}
.contact-card.primary .contact-card-detail {
    color: rgba(255, 255, 255, 0.5);
}
.contact-card-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--green);
    margin-bottom: 20px;
    padding: 6px 12px;
    background: rgba(78, 196, 110, 0.1);
    border-radius: 100px;
    width: fit-content;
}
.contact-card-status.closed {
    color: var(--red);
    background: rgba(231, 76, 60, 0.1);
}
.status-dot-card {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}
.contact-card-status.closed .status-dot-card {
    background: var(--red);
}
.contact-card-cta {
    margin-top: auto;
}
.contact-card-cta .btn {
    width: 100%; justify-content: center;
}

/* ============ FORMULIER + INFO ============ */
.contact-form-section {
    background: var(--bg-soft);
    padding: 100px 32px;
}
.contact-form-inner {
    max-width: 1480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    align-items: stretch;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(15, 26, 58, 0.18);
}

.form-left {
    background: var(--blue-deep);
    color: white;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
}
.form-left::before {
    content: '';
    position: absolute;
    bottom: -180px; right: -180px;
    width: 460px; height: 460px;
    border-radius: 50%;
    background:
            radial-gradient(circle, transparent 0%, transparent 60px, rgba(244, 185, 66, 0.25) 60px, rgba(244, 185, 66, 0.25) 62px, transparent 62px),
            radial-gradient(circle, transparent 0%, transparent 110px, rgba(255, 255, 255, 0.05) 110px, rgba(255, 255, 255, 0.05) 112px, transparent 112px),
            radial-gradient(circle, transparent 0%, transparent 170px, rgba(255, 255, 255, 0.04) 170px, rgba(255, 255, 255, 0.04) 172px, transparent 172px);
    pointer-events: none;
}
.form-left > * { position: relative; z-index: 1; }

.form-portret-wrap {
    position: relative;
    width: 88px;
    margin-bottom: 28px;
}
.form-portret {
    width: 88px; height: 88px;
    border-radius: 50%;
    background-size: cover;
    background-position: center top;
    background-color: white;
    border: 3px solid var(--warn);
    box-shadow: 0 12px 32px -8px rgba(244, 185, 66, 0.4);
}
.form-portret-badge {
    position: absolute;
    bottom: -4px; right: -4px;
    width: 32px; height: 32px;
    background: var(--warn);
    color: var(--ink);
    border-radius: 50%;
    border: 3px solid var(--blue-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warn);
    margin-bottom: 16px;
    font-weight: 500;
}
.form-left h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: white;
}
.form-left h2 em {
    font-style: normal;
    color: var(--warn);
}
.form-quote {
    font-family: 'Archivo', sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    padding-left: 18px;
    border-left: 3px solid var(--warn);
}
.form-quote-attribution {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px;
    padding-left: 18px;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.form-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}
.form-feature-icon {
    width: 36px; height: 36px;
    background: rgba(244, 185, 66, 0.15);
    color: var(--warn);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.form-feature-icon svg { width: 16px; height: 16px; }
.form-feature strong {
    color: white;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-form {
    background: white;
    padding: 56px 48px;
    box-shadow: none;
    border-radius: 0;
    border: none;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.form-group {
    margin-bottom: 14px;
}
.form-group label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 6px;
    font-weight: 500;
}
.form-group label.required::after {
    content: ' *';
    color: var(--warn-deep);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    color: var(--ink);
    background: var(--bg-soft);
    transition: all 0.2s;
    font-weight: 500;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(45, 75, 156, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--ink-faint);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter Tight', sans-serif;
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f1a3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    padding-right: 44px;
}
.form-submit {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
}
.form-privacy {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    color: var(--ink-faint);
    text-align: center;
    line-height: 1.5;
}

/* ============ MAP SECTION ============ */
.map-section {
    padding: 0;
    background: var(--bg);
}
.map-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 100px 32px 60px;
}
.map-head {
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
    flex-wrap: wrap;
}
.map-head-text h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin: 12px 0 12px;
}
.map-head-text h2 em {
    font-style: normal;
    color: var(--blue);
}
.map-head-text p {
    font-size: 16px;
    color: var(--ink-soft);
    max-width: 480px;
}
.map-container {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 20px 48px -20px rgba(15, 26, 58, 0.15);
    position: relative;
    height: 480px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.map-card {
    position: absolute;
    bottom: 24px; left: 24px;
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 16px 32px -8px rgba(15, 26, 58, 0.2);
    max-width: 340px;
    display: flex;
    gap: 16px;
    align-items: center;
}
.map-card-pin {
    width: 48px; height: 48px;
    background: var(--warn);
    color: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.map-card-pin svg { width: 22px; height: 22px; }
.map-card-text strong {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}
.map-card-text span {
    font-size: 13px;
    color: var(--ink-soft);
    display: block;
    margin-bottom: 8px;
}
.map-card-text a {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.map-card-text a:hover { color: var(--blue-deep); }

/* ============ FAQ KORT ============ */
.faq-kort {
    padding: 80px 32px 100px;
    max-width: 1080px;
    margin: 0 auto;
}
.faq-kort-head {
    text-align: center;
    margin-bottom: 48px;
}
.faq-kort-head h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin: 12px 0;
}
.faq-kort-head h2 em { font-style: normal; color: var(--blue); }
.faq-kort-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.2s;
}
.faq-item:has(.faq-toggle:checked) {
    border-color: var(--blue);
    box-shadow: 0 8px 24px -12px rgba(45, 75, 156, 0.15);
}
.faq-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    cursor: pointer;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
    transition: color 0.2s;
}
.faq-question:hover { color: var(--blue); }
.faq-question .faq-plus {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--blue-tint);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.25s;
    flex-shrink: 0;
}
.faq-toggle:checked ~ .faq-question .faq-plus {
    background: var(--blue);
    color: white;
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-toggle:checked ~ .faq-answer {
    max-height: 400px;
}
.faq-answer-inner {
    padding: 0 26px 24px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
}

/* ============ BUTTONS ============ */
.btn {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.005em;
    padding: 16px 24px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1.5px solid transparent;
    white-space: nowrap;
}
.btn-warn {
    background: var(--warn);
    color: var(--ink);
    border-color: var(--warn);
    box-shadow: 0 8px 24px -8px rgba(244, 185, 66, 0.5);
}
.btn-warn:hover {
    background: var(--warn-deep);
    border-color: var(--warn-deep);
    transform: translateY(-2px);
}
.btn-blue {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}
.btn-blue:hover { background: var(--blue-deep); border-color: var(--blue-deep); transform: translateY(-2px); }
.btn-outline {
    background: white;
    color: var(--ink);
    border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-light {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}
.btn-light:hover { background: rgba(255, 255, 255, 0.15); border-color: white; }


/* ============ ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ TABLET ============ */
@media (max-width: 1100px) {
    .contact-keuze-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-form-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-container {
        height: 380px;
    }

    /* ============ MOBIEL ============ */
    @media (max-width: 640px) {
        .mobile-cta-bar {
            display: block;
        }

        .phone-btn {
            padding: 9px 14px;
            font-size: 13px;
        }

        .phone-btn .phone-text {
            display: none;
        }

        .breadcrumb {
            padding: 12px 14px;
            font-size: 10px;
        }

        .contact-hero {
            padding: 48px 14px 48px;
        }

        .contact-hero h1 {
            font-size: 38px;
        }

        .contact-hero p {
            font-size: 15px;
        }

        .contact-keuze {
            padding: 20px 14px;
        }

        .contact-card {
            padding: 32px 28px;
        }

        .contact-form-section {
            padding: 48px 14px;
        }

        .contact-form-inner {
            border-radius: 20px;
        }

        .form-left {
            padding: 40px 28px;
        }

        .form-left h2 {
            font-size: 28px;
        }

        .form-portret {
            width: 72px;
            height: 72px;
        }

        .form-portret-wrap {
            width: 72px;
        }

        .form-portret-badge {
            width: 28px;
            height: 28px;
        }

        .form-quote {
            font-size: 15px;
        }

        .contact-form {
            padding: 32px 28px;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .map-inner {
            padding: 56px 14px 32px;
        }

        .map-head h2 {
            font-size: 26px;
        }

        .map-container {
            height: 320px;
        }

        .map-card {
            left: 14px;
            right: 14px;
            bottom: 14px;
            max-width: none;
            padding: 16px 18px;
        }

        .faq-kort {
            padding: 48px 14px 56px;
        }

        .faq-kort-head h2 {
            font-size: 26px;
        }

        .faq-question {
            padding: 18px 20px;
            font-size: 14px;
        }

        .faq-answer-inner {
            padding: 0 20px 20px;
            font-size: 14px;
        }
    }
}