/* ── BK Contact Form — Frontend ─────────────────────────────────────────── */

.bkc-wrap {
    max-width: 600px;
    margin: 0 auto;
    font-family: inherit;
}

.bkc-title {
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

/* Fields */
.bkc-field {
    margin-bottom: 1.25rem;
}

.bkc-field label {
    display: block;
    margin-bottom: .375rem;
    font-weight: 600;
    font-size: .9375rem;
}

.bkc-req {
    color: #c0392b;
    margin-left: 2px;
}

.bkc-field input[type="text"],
.bkc-field input[type="email"],
.bkc-field textarea {
    display: block;
    width: 100%;
    padding: .625rem .875rem;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    line-height: 1.5;
    box-sizing: border-box;
    transition: border-color .15s ease, box-shadow .15s ease;
    background: #fff;
    color: #333;
}

.bkc-field input[type="text"]:focus,
.bkc-field input[type="email"]:focus,
.bkc-field textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0,115,170,.25);
}

.bkc-field textarea {
    resize: vertical;
    min-height: 130px;
}

/* Submit button */
.bkc-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6875rem 1.5rem;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease;
}

.bkc-btn:hover:not(:disabled) {
    background: #005f8b;
}

.bkc-btn:disabled {
    opacity: .65;
    cursor: not-allowed;
}

/* Spinner */
.bkc-btn__spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: bkc-spin .7s linear infinite;
}

@keyframes bkc-spin {
    to { transform: rotate(360deg); }
}

/* Messages */
.bkc-message {
    padding: .875rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: .9375rem;
    line-height: 1.5;
}

.bkc-message--success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.bkc-message--error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Privacy note */
.bkc-privacy {
    margin-top: .5rem;
    font-size: .8125rem;
    color: #777;
}

/* Honeypot: must be invisible */
.bkc-hp {
    display: none !important;
    position: absolute;
    left: -9999px;
}
