/* ── Contact Form Modal section ──────────────────────────────── */

.contact-form-modal {
    padding: 80px 0;
    background: var(--wp--preset--color--dark);
}

.cfm-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.cfm-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--wp--preset--color--purple-100);
    border-radius: 50%;
    color: var(--wp--preset--color--purple-500);
    flex-shrink: 0;
    line-height: 0;
}

.cfm-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.cfm-icon-wrap .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: var(--wp--preset--color--purple-500);
}

.cfm-title {
    margin: 0;
    color: var(--wp--preset--color--white);
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
}

.cfm-desc {
    margin: 0;
    color: var(--wp--preset--color--neutral-200);
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    max-width: 352px;
}

/* ── Mobile (≤767px) ─────────────────────────────────────────── */

@media (max-width: 767px) {
    .contact-form-modal {
        padding: 48px 0;
    }

    .cfm-btn {
        width: 100%;
    }
}
