/* ═══════════ lcfaq — FAQ page styles ═══════════ */

/* ── Layout ── */
.lcfaq-page {
    max-width: 920px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.lcfaq-header {
    text-align: center;
    margin-bottom: 56px;
}

.lcfaq-header h1 {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif !important;
    font-size: 3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.05;
    color: #0a0a0a;
    margin: 0 0 16px;
}

.lcfaq-header p {
    font-family: Inter, sans-serif;
    font-size: 1.05rem;
    color: #6b6b6b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Category blocks ── */
.lcfaq-category {
    margin-bottom: 48px;
}

.lcfaq-category-title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif !important;
    font-size: 1.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    color: #0a0a0a;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #C5A55A;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lcfaq-category-icon {
    font-size: 1.3rem;
    line-height: 1;
}

/* ── Accordion items ── */
.lcfaq-item {
    border-bottom: 1px solid #f0f0f0;
}

.lcfaq-item:last-child {
    border-bottom: none;
}

.lcfaq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.lcfaq-question:hover {
    color: #C5A55A;
}

.lcfaq-question-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #e8e8e8;
    transition: all 0.3s ease;
}

.lcfaq-question-icon svg {
    width: 14px;
    height: 14px;
    stroke: #999;
    transition: transform 0.3s ease, stroke 0.3s ease;
}

.lcfaq-item.active .lcfaq-question-icon {
    border-color: #C5A55A;
    background: #C5A55A;
}

.lcfaq-item.active .lcfaq-question-icon svg {
    transform: rotate(45deg);
    stroke: #fff;
}

.lcfaq-item.active .lcfaq-question {
    color: #C5A55A;
}

/* ── Answer panel ── */
.lcfaq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.lcfaq-answer-inner {
    padding: 0 0 20px;
    font-family: Inter, sans-serif;
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.75;
}

.lcfaq-answer-inner a {
    color: #C5A55A;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.lcfaq-answer-inner a:hover {
    color: #d4b668;
}

.lcfaq-answer-inner strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* ── CTA footer ── */
.lcfaq-footer {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #FAFAFA;
}

.lcfaq-footer p {
    font-family: Inter, sans-serif;
    font-size: 1rem;
    color: #6b6b6b;
    margin: 0 0 20px;
    line-height: 1.6;
}

.lcfaq-footer a {
    display: inline-block;
    font-family: Inter, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: #0a0a0a;
    padding: 14px 36px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.lcfaq-footer a:hover {
    background: #C5A55A;
}

/* ── JSON-LD hidden ── */
.lcfaq-jsonld { display: none; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .lcfaq-page {
        padding: 40px 16px 60px;
    }

    .lcfaq-header h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .lcfaq-header p {
        font-size: 0.95rem;
    }

    .lcfaq-category-title {
        font-size: 1.3rem;
    }

    .lcfaq-question {
        font-size: 0.95rem;
        padding: 16px 0;
    }

    .lcfaq-answer-inner {
        font-size: 0.9rem;
    }

    .lcfaq-footer {
        padding: 30px 20px;
    }
}
