/* ========================================
   BESCHWERDE - Complaint Form Styles
   Premium Design
   ======================================== */

/* Page Reset - No sidebar */
.beschwerde-page {
    padding-left: 0 !important;
    background: linear-gradient(180deg, #0a0c10 0%, #12161f 50%, #0a0c10 100%);
    min-height: 100vh;
}

.beschwerde-page .sidebar {
    display: none !important;
}

/* ========================================
   HEADER
   ======================================== */
.beschwerde-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(10, 12, 16, 0.98) 0%, rgba(10, 12, 16, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(239, 68, 68, 0.15);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beschwerde-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.5), transparent);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logos {
    display: flex;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.header-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.5));
}

.header-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-size: 0.7rem;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

/* Home Button */
.home-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-btn:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.home-btn i {
    font-size: 1.1rem;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.beschwerde-page .beschwerde-main {
    padding-top: 80px;
    min-height: 100vh;
}

/* ========================================
   HERO SECTION
   ======================================== */
.beschwerde-page .hero,
.beschwerde-page .beschwerde-hero {
    position: relative;
    background: linear-gradient(135deg, #1a0808 0%, #2a1010 30%, #1a0808 60%, #0f0505 100%) !important;
    padding: 80px 32px 100px !important;
    text-align: center !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.beschwerde-page .hero-content {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.beschwerde-page .hero h1,
.beschwerde-page .hero p,
.beschwerde-page .beschwerde-hero h1,
.beschwerde-page .beschwerde-hero p {
    text-align: center !important;
}

.beschwerde-page .hero-badge {
    margin: 0 auto 20px auto;
}

/* Animated Background Pattern */
.beschwerde-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(239, 68, 68, 0.1) 0%, transparent 40%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Grid Pattern Overlay */
.beschwerde-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(239, 68, 68, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 68, 68, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.beschwerde-hero .hero-content {
    position: relative;
    z-index: 1;
}

.beschwerde-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    box-shadow: 
        0 0 20px rgba(239, 68, 68, 0.2),
        inset 0 0 20px rgba(239, 68, 68, 0.05);
}

.beschwerde-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 0 40px rgba(239, 68, 68, 0.3);
    letter-spacing: 1px;
}

.beschwerde-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

/* Decorative Elements - Removed for cleaner look */

/* ========================================
   FORM SECTION
   ======================================== */
.beschwerde-section {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    max-width: 1100px;
    margin: -40px auto 0;
    padding: 0 32px 60px;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.beschwerde-page .form-section {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    max-width: 1100px;
    margin: -40px auto 0 !important;
    padding: 0 32px 60px;
    position: relative;
    z-index: 2;
}

/* ========================================
   FORM CARD OVERRIDES
   ======================================== */
.beschwerde-page .form-card {
    background: linear-gradient(180deg, rgba(20, 24, 32, 0.95) 0%, rgba(15, 18, 25, 0.98) 100%);
    border: 1px solid rgba(239, 68, 68, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    border-radius: 16px;
}

.beschwerde-page .form-header {
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.08) 0%, transparent 100%);
    border-bottom: 1px solid rgba(239, 68, 68, 0.1);
}

/* Complaint Icon */
.complaint-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%) !important;
    color: #ef4444 !important;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

/* Textarea */
.complaint-textarea {
    min-height: 150px;
}

/* Submit Button */
.complaint-submit {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    position: relative;
    overflow: hidden;
}

.complaint-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.complaint-submit:hover::before {
    left: 100%;
}

.complaint-submit:hover {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(239, 68, 68, 0.4),
        0 0 0 1px rgba(239, 68, 68, 0.5);
}

/* ========================================
   FORM INPUTS OVERRIDE
   ======================================== */
.beschwerde-page .form-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.beschwerde-page .form-input:focus {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

/* Radio Boxes */
.beschwerde-page .radio-option input:checked + .radio-box {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.15);
}

/* ========================================
   HINTS & HELPERS
   ======================================== */
.clip-hint {
    display: flex !important;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: var(--text-muted);
}

.clip-hint i {
    color: #ef4444;
}

.form-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.form-hint i {
    color: #ef4444;
}

/* ========================================
   INFO CARD
   ======================================== */
.complaint-info {
    background: linear-gradient(180deg, rgba(20, 24, 32, 0.95) 0%, rgba(15, 18, 25, 0.98) 100%);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.complaint-info .info-header {
    color: #fff;
}

.complaint-info .info-header i {
    color: #ef4444;
}

.complaint-info .info-list li i {
    color: #ef4444;
}

/* Warning Box */
.warning-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 12px;
}

.warning-box i {
    color: #ef4444;
    font-size: 1.2rem;
    margin-top: 2px;
    animation: warning-pulse 2s ease-in-out infinite;
}

@keyframes warning-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.warning-box p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.warning-box strong {
    color: #ef4444;
}

/* Required indicator */
.required {
    color: #ef4444;
}

/* ========================================
   FOOTER
   ======================================== */
.beschwerde-footer {
    margin-left: 0;
    background: rgba(10, 12, 16, 0.95);
    border-top: 1px solid rgba(239, 68, 68, 0.1);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .beschwerde-section {
        grid-template-columns: 1fr;
    }
    
    .beschwerde-page .form-section {
        grid-template-columns: 1fr;
    }
    
    .complaint-info {
        order: -1;
    }
}

@media (max-width: 768px) {
    .beschwerde-hero {
        padding: 60px 20px 80px;
    }
    
    .beschwerde-hero h1 {
        font-size: 2.25rem;
    }
    
    .beschwerde-section {
        margin-top: -30px;
        padding: 0 20px 40px;
    }
    
    .beschwerde-page .form-section {
        padding: 0 20px 40px;
    }
    
    .header-content {
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .beschwerde-header {
        height: 70px;
        padding: 0 12px;
    }
    
    .header-logos {
        padding: 6px 12px;
    }
    
    .header-logo {
        width: 36px;
        height: 36px;
    }
    
    .brand-title {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .brand-subtitle {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }
    
    .beschwerde-main {
        padding-top: 70px;
    }
    
    .beschwerde-hero {
        padding: 50px 16px 70px;
    }
    
    .beschwerde-hero h1 {
        font-size: 1.75rem;
    }
    
    .beschwerde-hero p {
        font-size: 0.95rem;
    }
    
    .beschwerde-section {
        padding: 0 16px 30px;
    }
    
    .beschwerde-page .form-section {
        padding: 0 16px 30px;
    }
    
    .radio-group {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        gap: 8px;
    }
    
    .header-brand {
        display: none;
    }
}
