/* ============================================
   FAQ SEITE - ELEGANT & MODERN
   ============================================ */

.faq-page {
    background: #f8fafc;
}

.faq-container {
    padding: 4rem 0;
}

/* ============================================
   SEARCH SECTION - VERBESSERTE SICHTBARKEIT
   ============================================ */

.faq-search-section {
    background: linear-gradient(135deg, #0096ff 0%, #0077cc 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 150, 255, 0.25);
}

.faq-search-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 3px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.faq-search-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-search-subtitle {
    font-size: 1.125rem;
    color: #ffffff;
    opacity: 1;
    margin: 0 0 2rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.faq-search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.faq-search-box-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.125rem;
    color: #64748b;
    pointer-events: none;
    z-index: 1;
}

.faq-search-input {
    width: 100%;
    padding: 1.125rem 1.5rem 1.125rem 3.25rem;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    font-size: 1rem;
    background: #ffffff;
    color: #1a202c;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-search-input:focus {
    outline: none;
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-search-input::placeholder {
    color: #94a3b8;
}

/* ============================================
   SIDEBAR
   ============================================ */

.faq-sidebar {
    position: sticky;
    top: 120px;
}

.faq-sidebar-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 1rem 0;
    padding: 0 0.5rem;
}

.faq-category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-category-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    font-size: 0.938rem;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.faq-category-btn:hover {
    background: rgba(0, 150, 255, 0.05);
    border-color: #0096ff;
    color: #0096ff;
}

.faq-category-btn--active {
    background: #0096ff;
    border-color: #0096ff;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 150, 255, 0.25);
}

.faq-category-btn i {
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-category-btn span {
    flex: 1;
}

.faq-category-count {
    padding: 0.25rem 0.625rem;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    font-size: 0.813rem;
    font-weight: 600;
    flex-shrink: 0;
}

.faq-category-btn--active .faq-category-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* ============================================
   CATEGORY SECTION
   ============================================ */

.faq-category-section {
    margin-bottom: 3rem;
}

.faq-category-header {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-category-header-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(0, 150, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0096ff;
    flex-shrink: 0;
}

.faq-category-header-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.faq-category-header-subtitle {
    font-size: 0.875rem;
    color: #718096;
    margin: 0.25rem 0 0 0;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-item-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-item-header:hover {
    background: rgba(0, 150, 255, 0.03);
}

.faq-item-header[aria-expanded="true"] {
    background: rgba(0, 150, 255, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(0, 150, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: #0096ff;
    flex-shrink: 0;
}

.faq-item-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
}

.faq-item-chevron {
    font-size: 0.875rem;
    color: #94a3b8;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item-content {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item-body {
    padding: 1.5rem;
    font-size: 0.938rem;
    color: #4a5568;
    line-height: 1.8;
}

.faq-item-body p {
    margin-bottom: 1rem;
}

.faq-item-body p:last-child {
    margin-bottom: 0;
}

.faq-item-body ul,
.faq-item-body ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-item-body li {
    margin-bottom: 0.5rem;
}

.faq-item-body a {
    color: #0096ff;
    text-decoration: none;
    font-weight: 600;
}

.faq-item-body a:hover {
    text-decoration: underline;
}

.faq-item-body strong {
    color: #1a202c;
}

.faq-item-body code {
    padding: 0.125rem 0.375rem;
    background: rgba(0, 150, 255, 0.08);
    color: #0096ff;
    border-radius: 4px;
    font-size: 0.875rem;
}

/* ============================================
   EMPTY STATE
   ============================================ */

.faq-empty {
    background: #ffffff;
    border: 2px dashed rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
}

.faq-empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(0, 150, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #0096ff;
}

.faq-empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.75rem 0;
}

.faq-empty-text {
    font-size: 1rem;
    color: #718096;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   CONTACT CTA
   ============================================ */

.faq-contact-cta {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0.03) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.faq-contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #8b5cf6;
    flex-shrink: 0;
}

.faq-contact-content {
    flex: 1;
}

.faq-contact-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.faq-contact-text {
    font-size: 0.938rem;
    color: #4a5568;
    margin: 0;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: #8b5cf6;
    color: #ffffff;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.25);
    flex-shrink: 0;
}

.faq-contact-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.35);
    color: #ffffff;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991.98px) {
    .faq-container {
        padding: 3rem 0;
    }

    .faq-search-section {
        padding: 2.5rem 1.5rem;
    }

    .faq-search-icon {
        width: 70px;
        height: 70px;
        font-size: 2.25rem;
    }

    .faq-search-title {
        font-size: 1.75rem;
    }

    .faq-sidebar {
        position: static;
    }

    .faq-category-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .faq-contact-cta {
        flex-direction: column;
        text-align: center;
    }

    .faq-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .faq-container {
        padding: 2rem 0;
    }

    .faq-search-section {
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }

    .faq-search-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .faq-search-title {
        font-size: 1.5rem;
    }

    .faq-search-subtitle {
        font-size: 1rem;
    }

    .faq-search-input {
        padding: 0.875rem 1.25rem 0.875rem 3rem;
        font-size: 0.938rem;
    }

    .faq-search-box-icon {
        left: 1rem;
    }

    .faq-category-list {
        grid-template-columns: 1fr;
    }

    .faq-category-header {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .faq-category-header-icon {
        width: 50px;
        height: 50px;
        font-size: 1.375rem;
    }

    .faq-category-header-title {
        font-size: 1.25rem;
    }

    .faq-item-header {
        padding: 1rem 1.25rem;
    }

    .faq-item-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .faq-item-title {
        font-size: 0.938rem;
    }

    .faq-item-body {
        padding: 1.25rem;
        font-size: 0.875rem;
    }

    .faq-contact-cta {
        padding: 1.5rem;
    }

    .faq-contact-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .faq-contact-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 575.98px) {
    .faq-search-icon {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }

    .faq-search-title {
        font-size: 1.25rem;
    }

    .faq-search-input {
        padding: 0.75rem 1rem 0.75rem 2.75rem;
    }

    .faq-search-box-icon {
        left: 0.875rem;
        font-size: 1rem;
    }

    .faq-category-btn {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }

    .faq-category-header {
        padding: 1rem;
    }

    .faq-item-header {
        padding: 0.875rem 1rem;
    }

    .faq-item-body {
        padding: 1rem;
    }
}