/* --- FAQ Hero --- */
.faq-hero {
    padding: 180px 0 80px;
    text-align: center;
    background: linear-gradient(rgba(11,11,11,0.9), rgba(11,11,11,0.9)), url('/images/main/Bokss-bnw.webp');
    background-size: cover;
    background-position: center;
}

.faq-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-transform: uppercase; font-weight: 900; }
.faq-hero h1 b { color: var(--red); }
.faq-hero p { color: #888; margin-top: 15px; font-size: 1.1rem; }

/* --- Accordion Style --- */
.faq-section { padding: 80px 0 100px; }

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: 0.3s;
}

.faq-item:hover { border-color: rgba(230, 57, 70, 0.4); }

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.faq-question i {
    color: var(--red);
    font-size: 1rem;
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: rgba(0,0,0,0.2);
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #aaa;
    line-height: 1.8;
}

/* Atvērtais stāvoklis */
.faq-item.active { border-color: var(--red); background: #1a1a1a; }

.faq-item.active .faq-answer {
    max-height: 1000px; /* Pietiekami liels skaitlis */
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* FAQ Footer */
.faq-footer {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(230, 57, 70, 0.05);
    border-radius: 30px;
    border: 1px dashed rgba(230, 57, 70, 0.2);
}

.faq-footer p { margin-bottom: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* Mobile fixes */
@media (max-width: 768px) {
    .faq-question { padding: 20px; }
    .faq-question h3 { font-size: 1rem; padding-right: 15px; }
}