.contact-block {
    width: 100%;
    font-family: 'Open Sans', sans-serif;
}

.contact-block__wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 6rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* ── Kolommen ── */
.contact-block__info {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-block__form {
    flex: 1 1 55%;
}

/* ── Hoofdtitel ── */
.contact-block__heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.contact-block__heading strong {
    font-weight: 700;
}

/* ── Intro tekst ── */
.contact-block__intro {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

/* ── Groep (adres / bel / mail / social) ── */
.contact-block__group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-block__group-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
}

.contact-block__group-title::first-letter {
  font-weight: 700;
}

.contact-block__group-title-bold {
  font-weight: 700;
}

/* ── Item rij (icoon + tekst) ── */
.contact-block__group-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ── Icoon ── */
.contact-block__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.contact-block__icon svg {
    width: 34px;
    height: 34px;
}

/* ── Adres ── */
.contact-block__address {
    display: flex;
    flex-direction: column;
    font-style: normal;
    font-size: 18px;
}

/* ── Telefoonnummers ── */
.contact-block__phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

/* ── Links ── */
.contact-block__link {
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

.contact-block__link:hover {
    text-decoration: underline;
}

/* ── Socials ── */
.contact-block__socials {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding-top: 8px;
}

.contact-block__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #3A528B;
    color: #fff;
    text-decoration: none;
    transition: 0.3s all;
    flex-shrink: 0;
}

.contact-block__social svg {
    width: 20px;
    height: 20px;
}

.contact-block__social:hover {
    background-color: #FCEB10;
    transition: 0.3s all;
}

/* ── Formulier titel ── */
.contact-block__form .contact-block__heading {
    margin-bottom: 1.5rem;
}

/* ── CF7 form styling ── */
.contact-block__form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-block__form .wpcf7-form input,
.contact-block__form .wpcf7-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid #ccc;
    border-radius: 0;
    padding: 0.6rem 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #333;
    background: transparent;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.contact-block__form .wpcf7-form input:focus,
.contact-block__form .wpcf7-form textarea:focus {
    border-bottom-color: #333;
}

.contact-block__form .wpcf7-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-block__form .wpcf7-form input[type="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;
	max-width: 150px;
    width: 100%;
}

.contact-block__form .wpcf7-form input[type="submit"]:hover {
	background-color: transparent;
    color: #3A528B;
    border: 1px solid #3A528B;
    transition: 0.3s all;
    background-color: white;
	cursor: pointer;
}

/* ── Responsive ── */
@media ( max-width: 768px ) {
    .contact-block__wrapper {
        flex-direction: column;
        gap: 3rem;
    }
}

.name-row p {
    display: flex;
    gap: 10px;
}

.mail-row {
    margin-bottom: unset !important;
}

.contact-block__form .wpcf7-textarea:focus {
    border-color: #3A528B;
}

.contact-block__form .wpcf7-textarea::placeholder {
    color: #aaa;
}

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

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

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

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

.wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column-reverse;
}