/* ============================================================
   FAQs Page  –  .fq-* scoped styles
   ============================================================ */

/* ── Page wrapper ── */
.fq-page {
    text-align: left;
    color: #333;
}
.fq-page * {
    box-sizing: border-box;
}

/* ── Intro Section ── */
.fq-intro {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 40px;
    text-align: center;
}
.fq-intro-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 8px;
}
.fq-intro-accent {
    display: inline-block;
    width: 50px;
    height: 4px;
    background: #FF4856;
    border-radius: 2px;
    margin: 0 0 20px;
}
.fq-intro-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ── Category Section ── */
.fq-category {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px 40px;
}

/* ── Category Header ── */
.fq-cat-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f0f0;
}
.fq-cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}
.fq-cat-icon-red     { background: #FF4856; }
.fq-cat-icon-blue    { background: #3b82f6; }
.fq-cat-icon-green   { background: #10b981; }
.fq-cat-icon-orange  { background: #f59e0b; }
.fq-cat-icon-purple  { background: #8b5cf6; }
.fq-cat-icon-teal    { background: #14b8a6; }
.fq-cat-icon-pink    { background: #ec4899; }

.fq-cat-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

/* ── FAQ Accordion ── */
.fq-list {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    overflow: hidden;
}

.fq-item {
    border-bottom: 1px solid #f0f1f3;
}
.fq-item:last-child {
    border-bottom: none;
}

.fq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    transition: background .2s, color .2s;
    gap: 16px;
    user-select: none;
}
.fq-question:hover {
    background: #fafbfc;
}
.fq-item.fq-open .fq-question {
    background: #fafbfc;
}

.fq-q-text {
    font-size: 15.5px;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
}
.fq-item.fq-open .fq-q-text {
    color: #FF4856;
}

.fq-q-icon {
    font-size: 16px;
    color: #bbb;
    transition: transform .3s, color .3s;
    flex-shrink: 0;
}
.fq-item.fq-open .fq-q-icon {
    transform: rotate(45deg);
    color: #FF4856;
}

.fq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.fq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14.5px;
    line-height: 1.75;
    color: #666;
}

/* ── CTA Section ── */
.fq-cta {
    max-width: 820px;
    margin: 0 auto;
    padding: 20px 24px 60px;
    text-align: center;
}
.fq-cta-card {
    background: #f7f8fa;
    border-radius: 16px;
    padding: 40px 32px;
}
.fq-cta-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
}
.fq-cta-text {
    font-size: 15px;
    color: #666;
    margin: 0 0 24px;
    line-height: 1.6;
}
.fq-cta-btn {
    display: inline-block;
    padding: 12px 36px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: #FF4856;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 3px 12px rgba(255,72,86,0.3);
}
.fq-cta-btn:hover {
    background: #e63946;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,72,86,0.45);
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .fq-intro { padding: 32px 20px 28px; }
    .fq-intro-title { font-size: 28px; }

    .fq-category { padding: 0 16px 32px; }
    .fq-cat-title { font-size: 19px; }

    .fq-question { padding: 16px 18px; }
    .fq-q-text { font-size: 14.5px; }
    .fq-answer-inner { padding: 0 18px 16px; font-size: 13.5px; }

    .fq-cta { padding: 12px 16px 48px; }
    .fq-cta-card { padding: 32px 20px; }
    .fq-cta-title { font-size: 19px; }
}
