/* ============================================
   FAQ-BEREICH
   ============================================ */

.faq-section {
    background: #0f0f0f;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: 'FAQ';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(10rem, 25vw, 20rem);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 900;
    color: rgba(220, 65, 65, 0.03);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    letter-spacing: -5px;
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgb(220, 65, 65), #b02222);
    color: white;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.45rem 1.3rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.faq-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    margin: 0 0 1rem;
}

.faq-header p {
    color: rgba(255,255,255,0.5);
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
}

.faq-categories {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.faq-cat-btn {
    background: transparent;
    border: 1px solid rgba(220, 65, 65, 0.4);
    color: rgba(255,255,255,0.6);
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.88rem;
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
    background: rgb(220, 65, 65);
    border-color: rgb(220, 65, 65);
    color: white;
    box-shadow: 0 0 20px rgba(220, 65, 65, 0.35);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(220, 65, 65, 0.15);
    border-radius: 14px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item.open {
    border-color: rgb(220, 65, 65);
    box-shadow: 0 0 30px rgba(220, 65, 65, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    gap: 1rem;
    text-align: left;
}

.faq-question-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.faq-question-text {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

.faq-chevron {
    width: 28px;
    height: 28px;
    background: rgba(220, 65, 65, 0.15);
    border: 1px solid rgba(220, 65, 65, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.faq-chevron svg {
    width: 14px;
    height: 14px;
    stroke: rgb(220, 65, 65);
    transition: transform 0.35s ease;
}

.faq-item.open .faq-chevron {
    background: rgb(220, 65, 65);
}

.faq-item.open .faq-chevron svg {
    stroke: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 2rem 1.75rem calc(2rem + 2.3rem);
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
}

.faq-answer-inner a {
    color: rgb(220, 65, 65);
    text-decoration: none;
    border-bottom: 1px solid rgba(220, 65, 65, 0.4);
    transition: border-color 0.2s;
}

.faq-answer-inner a:hover {
    border-color: rgb(220, 65, 65);
}

.faq-answer-inner ul {
    margin: 0.5rem 0 0 1rem;
    padding: 0;
    list-style: none;
}

.faq-answer-inner ul li::before {
    content: '→ ';
    color: rgb(220, 65, 65);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 1rem;
    }
    .faq-question {
        padding: 1.2rem;
    }
    .faq-answer-inner {
        padding: 0 1.2rem 1.5rem 1.2rem;
    }
    .faq-question-text {
        font-size: 0.95rem;
    }
}