/* ========== СТРАНИЦА ОБРАЩЕНИЙ ========== */

.appeal-page-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Хлебные крошки */
.appeal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.breadcrumb-link {
    color: #7f8c8d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-link:hover {
    color: #e94560;
}

.breadcrumb-separator {
    color: #bdc3c7;
    font-size: 0.7rem;
}

.breadcrumb-current {
    color: #2c3e50;
    font-weight: 600;
}

/* Заголовок страницы */
.appeal-page-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e1e8ed;
}

.appeal-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: white;
}

.appeal-icon-wrapper.film {
    background: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
}

.appeal-icon-wrapper.unblock {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.appeal-icon-wrapper.idea {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
}

.appeal-icon-wrapper.cooperation {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
}

.appeal-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px;
}

.appeal-page-description {
    font-size: 1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Карточка формы */
.appeal-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #e1e8ed;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* Группы полей */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-label .required {
    color: #e94560;
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    background: #ffffff;
}

.form-control:focus {
    outline: none;
    border-color: #e94560;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.form-control::placeholder {
    color: #95a5a6;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%237f8c8d'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 45px;
}

/* Секция загрузки файлов */
.file-upload-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
    margin: 25px 0;
    border: 2px dashed #e1e8ed;
    transition: all 0.2s;
}

.file-upload-section:hover {
    border-color: #e94560;
    background: #fff5f5;
}

.file-upload-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.file-upload-label i {
    color: #e94560;
}

.file-upload-area {
    border: 2px dashed #e1e8ed;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #ffffff;
}

.file-upload-area:hover {
    border-color: #e94560;
    background: #fff5f5;
}

.file-upload-area i {
    font-size: 2.5rem;
    color: #e94560;
    margin-bottom: 10px;
}

.file-upload-area p {
    color: #7f8c8d;
    margin: 5px 0;
}

.file-upload-area .hint {
    font-size: 0.85rem;
    color: #95a5a6;
}

.file-list {
    margin-top: 15px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: #ffffff;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e1e8ed;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-info i {
    color: #e94560;
    font-size: 1.1rem;
}

.file-name {
    font-weight: 500;
    color: #2c3e50;
}

.file-size {
    color: #7f8c8d;
    font-size: 0.85rem;
}

.file-remove {
    color: #e94560;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.2s;
}

.file-remove:hover {
    background: #fff5f5;
    color: #c73e54;
}

/* hCaptcha блок */
.hcaptcha-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
    border: 1px solid #e1e8ed;
}

.hcaptcha-privacy {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hcaptcha-privacy a {
    color: #e94560;
    text-decoration: none;
}

.hcaptcha-privacy a:hover {
    text-decoration: underline;
}

/* Кнопка отправки */
.btn-submit {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
}

.btn-submit i {
    font-size: 1.1rem;
}

/* Успешное сообщение */
.success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #28a745;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #28a745;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #155724;
    margin: 0 0 10px;
}

.success-text {
    color: #155724;
    font-size: 1rem;
    margin: 0 0 15px;
}

.appeal-number {
    background: rgba(255, 255, 255, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #155724;
}

/* Ошибка */
.error-message {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left: 4px solid #dc3545;
    padding: 15px 20px;
    border-radius: 8px;
    color: #721c24;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.error-message i {
    font-size: 1.2rem;
}

/* Кнопка назад */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f8f9fa;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e1e8ed;
    transition: all 0.2s;
    margin-bottom: 20px;
}

.btn-back:hover {
    background: #e94560;
    color: white;
    border-color: #e94560;
}

/* Информационный блок */
.info-block {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
}

.info-block p {
    margin: 0 0 10px;
    color: #7f8c8d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-block p:last-child {
    margin-bottom: 0;
}

.info-block i {
    color: #e94560;
}

/* Адаптивность */
@media (max-width: 768px) {
    .appeal-page-section {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .appeal-form-card {
        padding: 25px;
    }
    
    .appeal-page-header {
        padding: 20px;
    }
    
    .appeal-page-title {
        font-size: 1.5rem;
    }
    
    .appeal-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .file-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .file-remove {
        align-self: flex-end;
    }
}