/* BN Contact Form Styles */
.bn-form {
    max-width: 680px;
    margin: 0 auto;
}

.bn-form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.bn-form-row input,
.bn-form-row select,
.bn-form-row textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d4d4d4;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    color: #333;
    transition: border-color 0.2s;
}

.bn-form-row input:focus,
.bn-form-row select:focus,
.bn-form-row textarea:focus {
    border-color: #c5b39a;
    outline: none;
    box-shadow: 0 0 0 2px rgba(197,179,154,0.15);
}

.bn-form-row textarea {
    resize: vertical;
    min-height: 120px;
}

.bn-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: #c5b39a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.bn-submit-btn:hover {
    background: #b09a7e;
}

.bn-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.bn-form-note {
    margin-top: 8px;
    font-size: 13px;
    color: #999;
}

.bn-form-error {
    background: #fee;
    color: #c00;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
}

.bn-success-box {
    text-align: center;
    padding: 60px 40px;
    background: #f9f9f9;
    border-radius: 8px;
    max-width: 500px;
    margin: 0 auto;
}

.bn-success-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #333;
}

.bn-success-box p {
    font-size: 16px;
    color: #666;
}

@media (max-width: 600px) {
    .bn-form-row {
        flex-direction: column;
        gap: 12px;
    }
}
