/* Geo-block overlay for contact form — non US/CA users */
.coastal-contact-form {
    position: relative;
}

.coastal-contact-form__geoblock-notice {
    display: none;
    margin: 0 0 18px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5a8a 100%);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 14px rgba(26, 58, 92, 0.18);
    position: relative;
    z-index: 10;
    line-height: 1.4;
}

.coastal-contact-form__geoblock-notice::before {
    content: '⚠ ';
    margin-right: 4px;
}

.coastal-contact-form.is-geoblocked .coastal-contact-form__geoblock-notice {
    display: block;
}

.coastal-contact-form__iframe-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.coastal-contact-form.is-geoblocked .coastal-contact-form__iframe {
    pointer-events: none;
    user-select: none;
    filter: blur(0.5px);
}

.coastal-contact-form.is-geoblocked .coastal-contact-form__iframe-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.55) 0%, rgba(220,232,245,0.55) 100%);
    backdrop-filter: blur(8px) saturate(140%);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    border-radius: 12px;
    pointer-events: auto;
    z-index: 5;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 8px 24px rgba(0,0,0,0.06);
    cursor: not-allowed;
}
