/* ===================================================
   EXUBERANT GLOBAL — FAQ LISTING PAGE
   faq.css
   Theme: Navy #100190 | Sky #6fcdf6 | Gold #ffd700 | Green #0ebc40
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

/* ── Variables (inherits from global, redeclared for safety) ──────────────── */
:root {
    --navy:         #100190;
    --navy-dark:    #0a0060;
    --navy-deep:    #06003a;
    --sky:          #6fcdf6;
    --sky-light:    #a8e4ff;
    --gold:         #ffd700;
    --gold-soft:    #ffe566;
    --green:        #0ebc40;
    --white:        #ffffff;
    --off-white:    #f4f6fc;
    --text-dark:    #0d0b2e;
    --text-mid:     #3d3a6b;
    --text-light:   #7a7aaa;
    --border:       #e0e0f0;
    --shadow:       0 8px 32px rgba(16, 1, 144, 0.10);
    --shadow-md:    0 16px 48px rgba(16, 1, 144, 0.16);
    --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius:       14px;
    --radius-lg:    24px;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.faq-hero {
    position: relative;
    background:
        linear-gradient(135deg, rgba(6, 0, 58, 0.96) 0%, rgba(16, 1, 144, 0.92) 100%),
        url('../assets/img/service/contacts.webp') center / cover no-repeat;
    padding: 100px 0 140px;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

/* Decorative floating blobs */
.faq-hero::before,
.faq-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
}

.faq-hero::before {
    width: 500px; height: 500px;
    background: var(--sky);
    top: -150px; left: -100px;
}

.faq-hero::after {
    width: 350px; height: 350px;
    background: var(--gold);
    bottom: -100px; right: -80px;
}

.faq-hero .hero-inner { position: relative; z-index: 2; }

.faq-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(111, 205, 246, 0.12);
    border: 1px solid rgba(111, 205, 246, 0.3);
    color: var(--sky);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.faq-hero .hero-badge i { color: var(--gold); }

.faq-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    max-width: 720px;
    margin: 0 auto 18px;
    letter-spacing: -0.5px;
}

.faq-hero h1 span { color: var(--sky); }

.faq-hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

/* Hero search bar */
.hero-search {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-search i {
    position: absolute;
    left: 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    pointer-events: none;
}

.hero-search input {
    width: 100%;
    padding: 16px 130px 16px 50px;
    border-radius: 50px;
    border: 2px solid transparent;
    font-size: 0.95rem;
    font-family: 'Nunito', sans-serif;
    background: rgba(255, 255, 255, 0.97);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hero-search input:focus {
    border-color: var(--sky);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 0 4px rgba(111, 205, 246, 0.2);
}

.hero-search .clear-hero-btn {
    position: absolute;
    right: 10px;
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    display: none;
}

.hero-search .clear-hero-btn:hover { background: var(--navy-dark); }

/* Hero stats row */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-stat strong {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.hero-stat span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.55);
}

/* Bottom wave shape */
.faq-hero .hero-wave {
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 60px;
    overflow: hidden;
    line-height: 0;
}

.faq-hero .hero-wave svg {
    display: block;
    width: 100%; height: 100%;
}

/* ── Main Section ─────────────────────────────────────────────────────────── */
.faq-main {
    background: var(--off-white);
    padding: 70px 0 90px;
}

/* ── Category Filter Tabs ─────────────────────────────────────────────────── */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 50px;
}

.cat-tab {
    padding: 8px 22px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--text-mid);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cat-tab:hover,
.cat-tab.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

/* ── FAQ Cards Grid ───────────────────────────────────────────────────────── */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.faq-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(16, 1, 144, 0.2);
}

/* Card header */
.faq-card-head {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.faq-card-head::after {
    content: "";
    position: absolute;
    top: -20px; right: -20px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.08);
    pointer-events: none;
}

.faq-card-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255, 215, 0, 0.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.faq-card-icon i {
    color: var(--gold);
    font-size: 0.95rem;
}

.faq-card-head h3 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.2px;
}

.faq-count-badge {
    margin-left: auto;
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    flex-shrink: 0;
}

/* Card body / question list */
.faq-card-body {
    max-height: 320px;
    overflow-y: auto;
    flex: 1;
    padding: 8px 0;
}

/* Custom scrollbar */
.faq-card-body::-webkit-scrollbar { width: 4px; }
.faq-card-body::-webkit-scrollbar-track { background: var(--off-white); }
.faq-card-body::-webkit-scrollbar-thumb {
    background: rgba(16, 1, 144, 0.15);
    border-radius: 10px;
}

.faq-question-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 20px;
    color: var(--text-mid);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(224, 224, 240, 0.6);
    transition: var(--transition);
    line-height: 1.45;
}

.faq-question-link:last-child { border-bottom: none; }

.faq-question-link .q-icon {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(16, 1, 144, 0.07);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: var(--transition);
}

.faq-question-link .q-icon i {
    font-size: 0.5rem;
    color: var(--navy);
}

.faq-question-link:hover {
    background: linear-gradient(to right, rgba(16, 1, 144, 0.04), transparent);
    color: var(--navy);
    padding-left: 26px;
}

.faq-question-link:hover .q-icon {
    background: var(--navy);
}

.faq-question-link:hover .q-icon i {
    color: var(--white);
}

/* Card footer */
.faq-card-foot {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-card-foot a {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.faq-card-foot a:hover { color: var(--sky); gap: 10px; }

.faq-card-foot a i { font-size: 0.7rem; }

/* No-results state */
.faq-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    display: none;
}

.faq-no-results i {
    font-size: 2.5rem;
    color: var(--border);
    display: block;
    margin-bottom: 14px;
}

/* ── CTA Banner ───────────────────────────────────────────────────────────── */
.faq-cta {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(111, 205, 246, 0.1);
}

.faq-cta::before {
    content: "";
    position: absolute;
    top: -60px; left: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(111, 205, 246, 0.06);
    pointer-events: none;
}

.faq-cta::after {
    content: "";
    position: absolute;
    bottom: -60px; right: -60px;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.05);
    pointer-events: none;
}

.faq-cta .cta-inner { position: relative; z-index: 2; }

.faq-cta .cta-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(111, 205, 246, 0.12);
    border: 1px solid rgba(111, 205, 246, 0.25);
    color: var(--sky);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.faq-cta h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    margin-bottom: 10px;
}

.faq-cta h3 span { color: var(--sky); }

.faq-cta p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.btn-cta-primary:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(255, 215, 0, 0.4);
    color: var(--navy-deep);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: var(--white);
}

/* ── Hidden card class (for JS filtering) ────────────────────────────────── */
.faq-card.hidden { display: none; }
.faq-question-link.hidden { display: none; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .faq-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .faq-hero           { padding: 70px 0 110px; }
    .faq-main           { padding: 40px 0 60px; }
    .faq-grid           { grid-template-columns: 1fr; }
    .hero-stats         { gap: 24px; }
    .faq-cta            { padding: 40px 20px; }
    .hero-search input  { padding-right: 60px; }
    .category-tabs      { gap: 8px; }
    .cat-tab            { padding: 7px 16px; font-size: 0.75rem; }
}

@media (max-width: 480px) {
    .hero-stat strong { font-size: 1.4rem; }
    .faq-card-head    { padding: 16px 18px; }
    .faq-card-foot    { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ===================================================
   EXUBERANT GLOBAL — SINGLE FAQ DETAIL PAGE
   faqs.css
   Theme: Navy #100190 | Sky #6fcdf6 | Gold #ffd700 | Green #0ebc40
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Tilt+Neon&display=swap');

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
    --navy:         #100190;
    --navy-dark:    #0a0060;
    --navy-deep:    #06003a;
    --sky:          #6fcdf6;
    --sky-light:    #a8e4ff;
    --gold:         #ffd700;
    --gold-soft:    #ffe566;
    --green:        #0ebc40;
    --white:        #ffffff;
    --off-white:    #f4f6fc;
    --text-dark:    #0d0b2e;
    --text-mid:     #3d3a6b;
    --text-light:   #7a7aaa;
    --border:       #e0e0f0;
    --shadow:       0 8px 32px rgba(16, 1, 144, 0.10);
    --shadow-md:    0 16px 48px rgba(16, 1, 144, 0.16);
    --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius:       14px;
    --radius-lg:    24px;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.faqs-hero {
    position: relative;
    background:
        linear-gradient(135deg, rgba(6, 0, 58, 0.96) 0%, rgba(16, 1, 144, 0.90) 100%),
        url('../assets/img/service/contacts.webp') center / cover no-repeat;
    padding: 90px 0 130px;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

/* Decorative blobs */
.faqs-hero::before,
.faqs-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.07;
}

.faqs-hero::before {
    width: 450px; height: 450px;
    background: var(--sky);
    top: -150px; left: -80px;
}

.faqs-hero::after {
    width: 300px; height: 300px;
    background: var(--gold);
    bottom: -80px; right: -60px;
}

.faqs-hero .hero-inner { position: relative; z-index: 2; }

.faqs-hero .breadcrumb-trail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}

.faqs-hero .breadcrumb-trail a {
    color: var(--sky);
    text-decoration: none;
    transition: var(--transition);
}

.faqs-hero .breadcrumb-trail a:hover { color: var(--gold); }

.faqs-hero .breadcrumb-trail i { font-size: 0.6rem; }

.faqs-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.faqs-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 900;
    line-height: 1.2;
    max-width: 860px;
    margin: 0 auto;
    letter-spacing: -0.3px;
}

/* Bottom wave */
.faqs-hero .hero-wave {
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 55px;
    line-height: 0;
}

.faqs-hero .hero-wave svg { display: block; width: 100%; height: 100%; }

/* ── Page Body ────────────────────────────────────────────────────────────── */
.faqs-body {
    background: var(--off-white);
    padding: 0 0 90px;
}

.faqs-body .container { padding-top: 0; }

.faqs-row {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 36px;
    align-items: start;
    margin-top: 0;
}

/* ── Sticky Sidebar ───────────────────────────────────────────────────────── */
.faqs-sidebar { position: sticky; top: 28px; }

/* Contact Card */
.contact-card {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1.5px solid rgba(111, 205, 246, 0.12);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.06);
    pointer-events: none;
}

.contact-card:hover { transform: translateY(-4px); }

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(14, 188, 64, 0.12);
    border: 1px solid rgba(14, 188, 64, 0.25);
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.85); }
}

.contact-card h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 6px;
}

.contact-card .sub-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Form fields */
.field-wrap {
    position: relative;
    margin-bottom: 13px;
}

.field-wrap i {
    position: absolute;
    left: 14px; top: 14px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    pointer-events: none;
}

.field-input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-size: 0.88rem;
    font-family: 'Nunito', sans-serif;
    transition: var(--transition);
    outline: none;
}

.field-input::placeholder { color: rgba(255, 255, 255, 0.3); }

.field-input:focus {
    border-color: var(--sky);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(111, 205, 246, 0.15);
}

textarea.field-input {
    padding-left: 14px;
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
    color: var(--navy-deep);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 14px 32px rgba(255, 215, 0, 0.4);
}

/* Social row */
.social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-row p {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.social-row a {
    font-size: 1.25rem;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.social-row a:hover { transform: scale(1.2) translateY(-2px); }

/* ── Main Content Card ────────────────────────────────────────────────────── */
.faqs-content { display: flex; flex-direction: column; gap: 24px; }

.answer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 45px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

/* Question heading inside card */
.answer-card .q-heading {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--off-white);
}

.q-icon-box {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(16, 1, 144, 0.2);
}

.q-icon-box i { color: var(--gold); font-size: 1.1rem; }

.answer-card .q-heading h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.3;
    margin: 0;
}

/* Answer body */
.faqanswer {
    font-family: 'Tilt Neon', 'Nunito', sans-serif;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-mid);
}

.faqanswer h2, .faqanswer h3 {
    color: var(--navy);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    margin: 28px 0 12px;
    border-left: 4px solid var(--gold);
    padding-left: 14px;
}

.faqanswer p  { margin-bottom: 18px; }
.faqanswer ul { margin: 0 0 18px 20px; list-style: disc; }
.faqanswer li { margin-bottom: 6px; }

.faqanswer strong {
    color: var(--text-dark);
    font-weight: 800;
}

/* Feedback block */
.feedback-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: var(--off-white);
    border: 1px dashed var(--border);
    border-radius: 12px;
    padding: 18px 22px;
    margin-top: 32px;
    transition: var(--transition);
}

.feedback-block.success { background: #f0fdf4; border-color: rgba(14, 188, 64, 0.3); }

.feedback-block .fb-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-mid);
}

.fb-btns { display: flex; gap: 8px; }

.fb-btn {
    border: 1.5px solid var(--border);
    color: var(--text-mid);
    background: var(--white);
    padding: 7px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.fb-btn:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: rgba(16, 1, 144, 0.04);
}

.fb-btn.yes:hover { border-color: var(--green); color: var(--green); }
.fb-btn.no:hover  { border-color: #ef4444; color: #ef4444; }

.feedback-success-msg {
    display: none;
    width: 100%;
    text-align: center;
    color: var(--green);
    font-weight: 800;
    font-size: 0.9rem;
}

/* ── Related Questions Card ───────────────────────────────────────────────── */
.related-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.related-card .card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.related-card h5 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--navy);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-card h5 i { color: var(--gold); font-size: 0.9rem; }

/* Search bar inside related */
.rel-search-wrap {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 320px;
}

.rel-search-wrap i {
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.82rem;
    pointer-events: none;
}

.rel-search-input {
    width: 100%;
    padding: 10px 80px 10px 38px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--off-white);
    outline: none;
    transition: var(--transition);
}

.rel-search-input:focus {
    border-color: var(--navy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(16, 1, 144, 0.07);
}

.rel-clear-btn {
    position: absolute;
    right: 8px; top: 50%;
    transform: translateY(-50%);
    background: var(--border);
    border: none;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-mid);
    cursor: pointer;
    display: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.rel-clear-btn:hover { background: var(--navy); color: var(--white); }

/* Related question grid */
.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.related-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.45;
    transition: var(--transition);
}

.related-link .rl-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: rgba(16, 1, 144, 0.07);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: var(--transition);
}

.related-link .rl-icon i {
    font-size: 0.7rem;
    color: var(--navy);
}

.related-link:hover {
    border-color: var(--navy);
    background: rgba(16, 1, 144, 0.03);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.related-link:hover .rl-icon {
    background: var(--navy);
}

.related-link:hover .rl-icon i { color: var(--gold); }

.related-link.hidden { display: none; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .faqs-row {
        grid-template-columns: 1fr;
    }

    .faqs-sidebar {
        position: static;
        order: 2;
    }

    .faqs-content { order: 1; }
}

@media (max-width: 768px) {
    .faqs-hero    { padding: 65px 0 100px; }
    .faqs-body    { padding-bottom: 60px; }
    .answer-card  { padding: 25px; }
    .related-card { padding: 22px; }
    .related-grid { grid-template-columns: 1fr; }
    .contact-card { padding: 26px; }
    .rel-search-wrap { max-width: 100%; }
    .related-card .card-top { flex-direction: column; align-items: flex-start; }
    .answer-card .q-heading { flex-direction: column; gap: 12px; }
    .answer-card .q-heading h2 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .fb-btns { width: 100%; }
    .fb-btn  { flex: 1; justify-content: center; }
}