/* ============================================================
   Contact Form Widget
   ============================================================ */

.bcf-wrap {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bcf-fields {
    display: flex;
    gap: 16px;
}

.bcf-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bcf-label {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 150%;
    color: #FFFFFF;
}

.bcf-input {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.5px;
    color: #333333;
    background: #FFFFFF;
    border: 1px solid #F1F1F1 !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.bcf-input::placeholder {
    color: #AAAAAA;
}

.bcf-input:focus {
    border-color: #0485A9;
}

/* ── Phone field ─────────────────────────────────────────── */
.bcf-phone-wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid #F1F1F1;
    border-radius: 8px;
    overflow: hidden;
    background: #FFFFFF;
}

.bcf-country-code {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 10px;
    line-height: 150%;
    letter-spacing: -0.5px;
    color: #666666;
    background: #F8F8F8;
    border: none;
    border-right: 1px solid #F1F1F1;
    padding: 12px 10px;
    outline: none;
    cursor: pointer;
    width: 20%;
    min-width: 70px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 24px;
}

.bcf-input-phone {
    border: none !important;
    border-radius: 0;
    flex: 1;
}

.bcf-input-phone:focus {
    border-color: transparent;
}

/* ── Submit button ───────────────────────────────────────── */
.bcf-submit {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.5px;
    text-align: center;
    text-decoration: none !important;
    color: #FFFFFF;
    background-color: #0485A9 !important;
    border: none;
    border-radius: 50px;
    padding: 16px 28px;
    cursor: pointer;
    transition: background-color 0.25s;
    width: 100%;
}

.bcf-submit:hover {
    background-color: #036b8a;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 480px) {
    .bcf-fields {
        flex-direction: column;
    }
}
