/* ============================================
   page_faqs.css - FAQ Page
   ============================================ */

/* FAQ Page Container */
.pf-faq-page { padding: 80px 0; }

/* Search Bar */
.pf-search-box {
    position: relative;
    margin-bottom: 50px;
}
.pf-search-input {
    width: 100%;
    padding: 18px 60px 18px 25px;
    border: 2px solid #e8eef2;
    border-radius: 50px;
    font-size: 16px;
    color: #0E384C;
    background: #fff;
    outline: none;
    transition: all 0.3s;
}
.pf-search-input:focus { border-color: #0E384C; }
.pf-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0E384C;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.pf-search-btn:hover { background: #1A5F7A; }

/* Category Tabs */
.pf-cat-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.pf-tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid #0E384C;
    background: transparent;
    color: #0E384C;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}
.pf-tab-btn:hover {
    background: rgba(14,56,76,0.05);
}
.pf-tab-btn.pf-tab-active {
    background: #0E384C;
    color: #fff;
}

/* Sidebar */
.pf-sidebar {
    background: #f8fafc;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
}
.pf-sidebar h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0E384C;
    margin-bottom: 20px;
}
.pf-sidebar h4 i { color: #1E84B5; margin-right: 10px; }
.pf-sidebar-desc {
    font-size: 14px;
    color: #527282;
    line-height: 1.7;
    margin-bottom: 25px;
}
.pf-sidebar-contact { margin-bottom: 20px; }
.pf-sidebar-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.pf-sidebar-contact-icon {
    width: 40px;
    height: 40px;
    background: #EFF8FF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}
.pf-sidebar-contact-icon i { color: #0E384C; font-size: 16px; }
.pf-sidebar-contact-label {
    font-size: 12px;
    color: #527282;
    margin: 0;
}
.pf-sidebar-contact-value {
    font-size: 14px;
    color: #0E384C;
    font-weight: 600;
    margin: 0;
}

/* Quick Links */
.pf-quick-links {
    background: linear-gradient(135deg, #0E384C 0%, #1A5F7A 100%);
    border-radius: 16px;
    padding: 35px;
}
.pf-quick-links h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}
.pf-quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pf-quick-links ul li { margin-bottom: 12px; }
.pf-quick-links ul li:last-child { margin-bottom: 0; }
.pf-quick-links ul li a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.3s;
}
.pf-quick-links ul li a:hover { color: #fff; }
.pf-quick-links ul li a i {
    font-size: 10px;
    margin-right: 10px;
    color: #1E84B5;
}

/* FAQ Content */
.pf-content-section { margin-bottom: 40px; }

/* FAQ Category Group Title */
.pf-category-group { margin-bottom: 10px; }
.pf-category-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #031a31;
    margin-bottom: 35px;
    padding-bottom: 12px;
    border-bottom: 2px solid #185a9d;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pf-category-title i {
    color: #185a9d;
    font-size: 1.2rem;
}

/* FAQ Accordion Items */
.pf-accordion-item {
    border: 2px solid #e8eef2;
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}
.pf-accordion-item.pf-accordion-open {
    border-color: #1E84B5;
    box-shadow: 0 4px 20px rgba(14,56,76,0.1);
}
.pf-accordion-btn {
    font-size: 17px;
    font-weight: 600;
    color: #0E384C;
    padding: 20px 55px 20px 25px;
    background: #fff;
    border: none;
    box-shadow: none;
    position: relative;
    line-height: 1.4;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
}
.pf-accordion-btn .pf-qa-icon {
    display: flex;
    align-items: center;
}
.pf-qa-badge {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #EFF8FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
    color: #1E84B5;
    font-weight: 700;
}
.pf-accordion-body {
    padding: 0 25px 20px 72px;
    color: #527282;
    font-size: 15px;
    line-height: 1.8;
}
.pf-accordion-body p { margin-bottom: 12px; }
.pf-accordion-link {
    color: #1E84B5;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.pf-accordion-link:hover { text-decoration: underline; }
.pf-accordion-link i { margin-left: 6px; font-size: 12px; }

/* No Results */
.pf-no-results {
    display: none;
    text-align: center;
    padding: 60px 20px;
}
.pf-no-results.pf-visible { display: block; }
.pf-no-results-icon {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.pf-no-results-icon i { font-size: 36px; color: #527282; }
.pf-no-results h4 {
    font-size: 20px;
    color: #0E384C;
    margin-bottom: 10px;
}
.pf-no-results p {
    color: #527282;
    font-size: 15px;
}
.pf-no-results p a {
    color: #1E84B5;
    font-weight: 600;
}

/* CTA Section */
.pf-cta-section { margin-top: 60px; }
.pf-cta-box {
    background: linear-gradient(135deg, #0E384C 0%, #1A5F7A 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}
.pf-cta-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.pf-cta-box .pf-cta-desc {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.pf-cta-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.pf-cta-btn-white {
    display: inline-block;
    padding: 14px 35px;
    background: #fff;
    color: #0E384C;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
}
.pf-cta-btn-white:hover { background: #e2e8f0; transform: translateY(-2px); }
.pf-cta-btn-outline {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
}
.pf-cta-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* Sidebar CTA Button */
.pf-sidebar-btn {
    display: inline-block;
    margin-top: 10px;
}
