/*
 * BFV Contact Form — stylesheet
 *
 * All selectors are prefixed with .bfv-cf- to avoid conflicts with
 * any existing theme or plugin CSS. Override any rule here in your
 * theme's CSS or via Appearance -> Additional CSS in WordPress to
 * match your site's look and feel.
 *
 * This file is only loaded on pages that contain the [bfv_contact_form]
 * shortcode, so it adds no weight to any other page on your site.
 */

.bfv-cf-wrap {
    max-width: 640px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
                 Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* ---- Alerts ---- */

.bfv-cf-alert {
    border-radius: 8px;
    padding: .875rem 1rem;
    margin-bottom: 1.5rem;
    font-size: .92rem;
}

.bfv-cf-alert--success {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.bfv-cf-alert--error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.bfv-cf-alert ul {
    margin: .5rem 0 0 1.25rem;
    padding: 0;
}

.bfv-cf-alert li {
    margin-bottom: .25rem;
}

/* ---- Form layout ---- */

.bfv-cf-form {
    display: block;
}

.bfv-cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 520px) {
    .bfv-cf-row {
        grid-template-columns: 1fr;
    }
}

.bfv-cf-field {
    margin-bottom: 1.25rem;
}

/* ---- Labels ---- */

.bfv-cf-label {
    display: block;
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: .4rem;
    color: #374151;
}

.bfv-cf-req {
    color: #dc2626;
    margin-left: 2px;
}

/* ---- Inputs ---- */

.bfv-cf-input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: .6rem .875rem;
    font-size: .95rem;
    font-family: inherit;
    color: #111;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    box-sizing: border-box;
    /* Reset any aggressive theme normalisation */
    -webkit-appearance: none;
    appearance: none;
}

.bfv-cf-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .15);
}

/* Keep select arrow visible on all browsers */
select.bfv-cf-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b7280'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.17l3.71-3.94a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 1.1rem;
    padding-right: 2.25rem;
    cursor: pointer;
}

.bfv-cf-textarea {
    resize: vertical;
    min-height: 140px;
}

.bfv-cf-hint {
    font-size: .8rem;
    color: #6b7280;
    margin-top: .3rem;
}

/* ---- Honeypot ---- */

.bfv-cf-pot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

/* ---- Footer row ---- */

.bfv-cf-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.bfv-cf-privacy {
    font-size: .8rem;
    color: #9ca3af;
}

/* ---- Submit button ---- */

.bfv-cf-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #1d4ed8;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: .65rem 1.5rem;
    font-size: .95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background .15s, transform .1s;
    text-decoration: none;
}

.bfv-cf-btn:hover {
    background: #1e40af;
    color: #fff;
}

.bfv-cf-btn:active {
    transform: scale(.98);
}
