.feedback-block {
    padding: var(--fb-padding-top, 80px) 0 var(--fb-padding-bottom, 80px);
    font-family: 'Inter', -apple-system, sans-serif;
    --fb-accent: #2563eb;
}

.feedback-block.theme-light { background: #fff; color: #111827; }
.feedback-block.theme-dark { background: #111827; color: #f9fafb; }
.feedback-block.theme-custom { 
    background: var(--fb-bg-color, #fff); 
    color: var(--fb-text-color, #111827); 
}

.feedback-block .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Карточка формы */
.feedback-form-card {
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.08);
}
.feedback-block.theme-dark .feedback-form-card {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}

.feedback-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: inherit;
}

/* Поля формы */
.feedback-form .form-control,
.feedback-form .form-select,
.feedback-form textarea.form-control {
    background: #f8fafc;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    color: inherit;
}
.feedback-block.theme-dark .feedback-form .form-control,
.feedback-block.theme-dark .feedback-form .form-select,
.feedback-block.theme-dark .feedback-form textarea.form-control {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: #f9fafb;
}
.feedback-form .form-control:focus,
.feedback-form .form-select:focus,
.feedback-form textarea.form-control:focus {
    border-color: var(--fb-accent);
    box-shadow: 0 0 0 3px rgba(var(--fb-accent-rgb, 37, 99, 235), 0.15);
    outline: none;
    background: #fff;
}
.feedback-block.theme-dark .feedback-form .form-control:focus {
    background: rgba(255,255,255,0.12);
}
.feedback-form textarea.form-control { min-height: 120px; resize: vertical; }

/* Кнопка отправки */
.feedback-submit-btn,
.feedback-form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    background: var(--fb-accent);
    color: #fff;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.feedback-submit-btn:hover,
.feedback-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--fb-accent) 85%, black);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -6px rgba(var(--fb-accent-rgb), 0.4);
}

/* Контактная информация */
.feedback-info-content { padding: 1rem 0; }
.feedback-info-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: inherit;
}
.feedback-info-description {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 2rem;
    color: inherit;
}

/* Элементы контактов */
.feedback-contacts { display: flex; flex-direction: column; gap: 1.5rem; }
.feedback-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.feedback-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(var(--fb-accent-rgb), 0.12);
    color: var(--fb-accent);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.feedback-contact-item:hover .feedback-contact-icon {
    background: var(--fb-accent);
    color: #fff;
    transform: translateY(-2px);
}
.feedback-contact-content { display: flex; flex-direction: column; gap: 0.25rem; }
.feedback-contact-label {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.7;
    color: inherit;
}
.feedback-contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
}
.feedback-contact-value:hover { color: var(--fb-accent); }

/* Адаптивность */
@media (max-width: 992px) {
    .feedback-block.layout-form-left .order-lg-1,
    .feedback-block.layout-form-right .order-lg-2 { order: 1 !important; }
    .feedback-block.layout-form-left .order-lg-2,
    .feedback-block.layout-form-right .order-lg-1 { order: 2 !important; }
}
@media (max-width: 768px) {
    .feedback-form-card, .feedback-info-content {
        padding: 1.5rem;
        text-align: center;
    }
    .feedback-contact-item {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    .feedback-contact-content { align-items: center; }
}
@media (max-width: 480px) {
    .feedback-block { --fb-padding-top: 60px; --fb-padding-bottom: 60px; }
    .feedback-form-card, .feedback-info-content { padding: 1.25rem; }
    .feedback-submit-btn, .feedback-form button[type="submit"] {
        width: 100%;
        justify-content: center;
    }
}