/* ══════════════════════════════════════════
   FAQ PAGE - PREMIUM
   ══════════════════════════════════════════ */

/* ── Hero ── */
.pf-faqpage-hero {
    position: relative;
    background: linear-gradient(135deg, #072890 0%, #0a3ab8 40%, #051c66 100%);
    padding: 80px 0 60px;
    overflow: hidden;
    text-align: center;
    color: #fff;
}
.pf-faqpage-hero::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
}
.pf-faqpage-hero::after {
    content: '';
    position: absolute; bottom: -100px; left: -60px;
    width: 350px; height: 350px;
    background: rgba(255,255,255,.03);
    border-radius: 50%;
}
.pf-faqpage-hero .container { position: relative; z-index: 1; }
.pf-faqpage-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 30px; padding: 8px 20px;
    font-size: 13px; font-weight: 600;
    margin-bottom: 20px;
    animation: fqFadeInUp .6s ease both;
}
.pf-faqpage-hero-badge i { font-size: 14px; opacity: .8; }
.pf-faqpage-hero h1 {
    font-size: 38px; font-weight: 800;
    margin: 0 0 14px; line-height: 1.2;
    animation: fqFadeInUp .6s ease .1s both;
}
.pf-faqpage-hero p {
    font-size: 16px; opacity: .85;
    max-width: 560px; margin: 0 auto;
    line-height: 1.7;
    animation: fqFadeInUp .6s ease .2s both;
}
.pf-faqpage-hero-wave {
    position: absolute; bottom: -1px; left: 0; right: 0;
    line-height: 0;
}
.pf-faqpage-hero-wave svg { width: 100%; height: 50px; }

/* ── Search bar ── */
.pf-faqpage-search {
    max-width: 560px;
    margin: 28px auto 0;
    position: relative;
    animation: fqFadeInUp .6s ease .3s both;
}
.pf-faqpage-search input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-family: inherit;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    color: #fff;
    outline: none;
    transition: background .3s, box-shadow .3s;
    box-sizing: border-box;
}
.pf-faqpage-search input::placeholder { color: rgba(255,255,255,.6); }
.pf-faqpage-search input:focus {
    background: rgba(255,255,255,.22);
    box-shadow: 0 0 0 4px rgba(255,255,255,.1);
}
.pf-faqpage-search i {
    position: absolute; right: 20px; top: 50%;
    transform: translateY(-50%);
    font-size: 16px; opacity: .7;
}

/* ── Animations ── */
@keyframes fqFadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Category Tabs ── */
.pf-faqpage-tabs {
    padding: 40px 0 0;
    background: #f6f8fd;
}
.pf-faqpage-tabs-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fqFadeInUp .5s ease .2s both;
}
.pf-faqpage-tab {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 22px;
    border-radius: 30px;
    border: 1.5px solid rgba(7,40,144,.1);
    background: #fff;
    color: #5a6785;
    font-size: 13px; font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    font-family: inherit;
}
.pf-faqpage-tab:hover {
    border-color: rgba(7,40,144,.25);
    color: #072890;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7,40,144,.08);
}
.pf-faqpage-tab.active {
    background: linear-gradient(135deg, #072890, #0a3ab8);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(7,40,144,.3);
}
.pf-faqpage-tab .fq-count {
    background: rgba(7,40,144,.08);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    transition: background .3s, color .3s;
}
.pf-faqpage-tab.active .fq-count {
    background: rgba(255,255,255,.2);
    color: #fff;
}

/* ── Main Content ── */
.pf-faqpage-main {
    padding: 40px 0 80px;
    background: #f6f8fd;
}
.pf-faqpage-list {
    max-width: 820px;
    margin: 0 auto;
}

/* ── No results ── */
.pf-faqpage-empty {
    text-align: center;
    padding: 60px 20px;
    animation: fqFadeInUp .5s ease both;
}
.pf-faqpage-empty i {
    font-size: 48px;
    color: #c5cfe0;
    margin-bottom: 16px;
}
.pf-faqpage-empty p {
    font-size: 15px;
    color: #7c8db5;
    margin: 0;
}

/* ── Category Section ── */
.pf-faqpage-category {
    margin-bottom: 32px;
    animation: fqFadeInUp .5s ease both;
}
.pf-faqpage-category-title {
    display: flex; align-items: center; gap: 10px;
    font-size: 18px; font-weight: 800; color: #1a1a2e;
    margin: 0 0 16px;
    padding-left: 4px;
}
.pf-faqpage-category-title::before {
    content: '';
    width: 4px; height: 22px;
    border-radius: 2px;
    background: linear-gradient(180deg, #072890, #0a3ab8);
    flex-shrink: 0;
}

/* ── FAQ Accordion Items ── */
.pf-fq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(7,40,144,.04);
    border: 1px solid rgba(7,40,144,.06);
    border-left: 3px solid transparent;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pf-fq-item:hover {
    box-shadow: 0 6px 20px rgba(7,40,144,.1);
    transform: translateX(3px);
}
.pf-fq-item.active {
    border-left-color: #072890;
    box-shadow: 0 6px 25px rgba(7,40,144,.12);
    transform: translateX(3px);
}
.pf-fq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    background: none; border: none;
    width: 100%;
    text-align: left;
    font-size: 15px; font-weight: 700;
    color: #1a1a2e;
    font-family: inherit;
    transition: color .3s ease;
    gap: 12px;
}
.pf-fq-question:hover { color: #072890; }
.pf-fq-item.active .pf-fq-question { color: #072890; }
.pf-fq-icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(7,40,144,.07);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background .3s ease;
}
.pf-fq-icon i {
    font-size: 12px;
    color: #072890;
    transition: transform .4s cubic-bezier(.4,0,.2,1), color .3s;
}
.pf-fq-item.active .pf-fq-icon { background: #072890; }
.pf-fq-item.active .pf-fq-icon i { color: #fff; transform: rotate(180deg); }
.pf-fq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.4,0,.2,1);
}
.pf-fq-answer-inner {
    padding: 0 22px 22px;
    font-size: 14px;
    color: #5a6785;
    line-height: 1.8;
    border-top: 1px solid rgba(7,40,144,.06);
    padding-top: 16px;
}

/* ── CTA ── */
.pf-faqpage-cta {
    background: linear-gradient(135deg, #072890 0%, #0a3ab8 40%, #051c66 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.pf-faqpage-cta::before {
    content: '';
    position: absolute; top: -60px; right: -40px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
}
.pf-faqpage-cta .container { position: relative; z-index: 1; }
.pf-faqpage-cta h3 {
    font-size: 24px; font-weight: 800;
    margin: 0 0 10px;
}
.pf-faqpage-cta p {
    font-size: 15px; opacity: .85;
    margin: 0 0 24px;
    max-width: 500px; margin-left: auto; margin-right: auto;
}
.pf-faqpage-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff;
    color: #072890;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 14px; font-weight: 700;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
}
.pf-faqpage-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
    color: #072890;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .pf-faqpage-hero h1 { font-size: 28px; }
    .pf-faqpage-hero { padding: 60px 0 50px; }
    .pf-faqpage-tabs-wrap { gap: 6px; }
    .pf-faqpage-tab { padding: 8px 16px; font-size: 12px; }
    .pf-fq-question { font-size: 14px; padding: 16px 18px; }
    .pf-fq-answer-inner { padding: 0 18px 18px; font-size: 13px; }
}
