.section__contact-sectie {
    padding: 80px 0;
}

.inner__contact-sectie {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

/* ── Linker kolom ─────────────────────────────────────── */

.info__contact-sectie {
    display: flex;
    flex-direction: column;
    gap: 28px;
    font-family: 'Open Sans', sans-serif;
}

.intro__contact-sectie {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    color: #111;
    margin: 0;
}

.intro__contact-sectie strong {
    font-weight: 700;
}

.item__contact-sectie {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.item__contact-sectie strong {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.item__contact-sectie span,
.item__contact-sectie address {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    font-style: normal;
    line-height: 1.6;
}

.item__contact-sectie a {
    color: #333;
    text-decoration: none;
    transition: color 0.15s;
}

.item__contact-sectie a:hover {
    color: #3A528B;
}

.social__contact-sectie {
    display: inline-block;
    line-height: 0;
    transition: opacity 0.15s;
}

.social__contact-sectie:hover {
    opacity: 0.85;
}

/* ── Rechter kolom: formulier ─────────────────────────── */

.form__contact-sectie {
    padding-top: 4px;
}

.notice__contact-sectie {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #888;
}

/* ── CF7 reset & stijl ────────────────────────────────── */

.form__contact-sectie .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Rij-wrappers die CF7 in <p> plaatst */
.form__contact-sectie .wpcf7-form > p {
    margin: 0;
}

/* Naam-rij: voornaam + achternaam naast elkaar */
.form__contact-sectie .wpcf7-form .name-row p {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 0px;
}

/* Tekstvelden — alleen onderlijn */
.form__contact-sectie .wpcf7-text,
.form__contact-sectie .wpcf7-email {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid #ccc;
    border-radius: 0;
    padding: 12px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #111;
    background: transparent;
    outline: none;
    transition: border-color 0.15s;
}

.wpcf7-form-control-wrap {
    width: 100%;
}

.form__contact-sectie .wpcf7-text:focus,
.form__contact-sectie .wpcf7-email:focus {
    border-bottom-color: #3A528B;
}

.form__contact-sectie .wpcf7-text::placeholder,
.form__contact-sectie .wpcf7-email::placeholder {
    color: #aaa;
}

.mail-row {
    margin-bottom: 20px;
}

/* Textarea — volledige rand */
.form__contact-sectie .wpcf7-textarea {
    width: calc(100% - 30px);
    border: 1.5px solid #ccc;
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #111;
    background: #fff;
    resize: vertical;
    min-height: 140px;
    outline: none;
    transition: border-color 0.15s;
    margin-bottom: 24px;
}

.form__contact-sectie .wpcf7-textarea:focus {
    border-color: #3A528B;
}

.form__contact-sectie .wpcf7-textarea::placeholder {
    color: #aaa;
}

/* Verstuur-knop */
.form__contact-sectie .wpcf7-submit {
    background-color: #3A528B;
    border: 1px solid #3A528B;
    color: white;
    padding: 12px 24px 15px 24px;
    border-radius: 0px 100px 100px 100px;
    text-decoration: unset;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    transition: 0.3s all;
    display: inline-block;
}

.form__contact-sectie .wpcf7-submit:hover {
	background-color: transparent;
    color: #3A528B;
    border: 1px solid #3A528B;
    transition: 0.3s all;
    background-color: white;
	cursor: pointer;
}

/* Validatiemeldingen */
.form__contact-sectie .wpcf7-not-valid-tip {
    font-size: 13px;
    color: #c0392b;
    margin-top: -14px;
    margin-bottom: 12px;
    display: block;
}

.form__contact-sectie .wpcf7-response-output {
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 16px;
    border: none;
}

.form__contact-sectie .wpcf7-mail-sent-ok {
    background: #e8f5ee;
    color: #1a5c3a;
}

.form__contact-sectie .wpcf7-mail-sent-ng,
.form__contact-sectie .wpcf7-spam-blocked {
    background: #fdecea;
    color: #c0392b;
}

/* ── Mobiel ───────────────────────────────────────────── */

@media (max-width: 860px) {
    .inner__contact-sectie {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 30px;
    }

    .section__contact-sectie {
        padding: 48px 0;
    }

    .form__contact-sectie .name-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
