
:root {
    --teal:      #00AF66;
    --teal-lt:   #E6F9F1;
    --teal-mid:  rgba(0,175,102,0.12);
    --white:     #FFFFFF;
    --gray-50:   #F8FAFC;
    --gray-100:  #F1F5F9;
    --gray-200:  #E2E8F0;
    --gray-400:  #94A3B8;
    --gray-600:  #475569;
    --gray-800:  #1E293B;
    --text:      #1A202C;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
.faq-hero{
    /* Soft Blue Overlay + Customer Service Image */
    background: url('https://plus.unsplash.com/premium_photo-1661432741512-b044605fb5bb?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 520px;
     display: flex;
    align-items: center;
    justify-content: center;
}
.faq-hero-inner{
   max-width: 470px;
    
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.8px;
    line-height: 1.15;
    margin-bottom: 16px;
}
.hero h1 span { color: var(--teal); }

.hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.62);
    max-width: 460px;
    margin: 0 auto 36px;
    line-height: 1.7;
}


/* ─────────────────────────────────────────
   STATS BAR
───────────────────────────────────────── */
.stats-bar {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 0 24px;
}
.stats-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-right: 1px solid var(--gray-200);
    flex: 1;
    min-width: 150px;
    justify-content: center;
}
.stat:last-child { border-right: none; }
.stat-icon {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: var(--teal-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1rem;
    flex-shrink: 0;
}
.stat-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1.2;
}
.stat-text span { font-size: 0.74rem; color: var(--gray-400); font-weight: 500; }

/* ─────────────────────────────────────────
   MAIN LAYOUT
───────────────────────────────────────── */
.page-wrap {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 64px 24px 96px;
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 48px;
    align-items: start;
}

/* ─────────────────────────────────────────
   SIDEBAR NAV
───────────────────────────────────────── */
.faq-sidebar {
    margin-top: 2rem;
    position: sticky;
    top: 50px;
}
.faq-sidebar-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gray-400);
    margin-bottom: 10px;
    padding-left: 12px;
}
.faq-sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.faq-nav-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}
.faq-nav-item i { font-size: 1rem; width: 18px; text-align: center; flex-shrink: 0; }
.faq-nav-item:hover { background: var(--gray-100); color: var(--brand-primary); }
.faq-nav-item.active {
    background: var(--teal-lt);
    color: var(--teal);
}
.faq-nav-item .count {
    margin-left: auto;
    background: var(--gray-200);
    color: var(--gray-600);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 100px;
    min-width: 22px;
    text-align: center;
    transition: all 0.2s;
}
.faq-nav-item.active .count { background: rgba(0,175,102,0.15); color: var(--teal); }

/* ─────────────────────────────────────────
   FAQ CONTENT
───────────────────────────────────────── */
.faq-content { min-width: 0; }

.no-results {
    display: none;
    text-align: center;
    padding: 64px 24px;
    color: var(--gray-400);
}
.no-results i { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.no-results p { font-size: 0.9rem; }
.no-results.show { display: block; }

/* Section */
.faq-section-page { margin-bottom: 52px; }
.faq-section-page.hidden { display: none; }

.faq-section-page .section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1.5px solid var(--gray-100);
}
.faq-section-page .section-icon {
    width: 38px; height: 38px;
    border-radius: 11px;
    background: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.faq-section-page .section-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--brand-primary);
    letter-spacing: -0.2px;
}
.faq-section-page .section-count {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    background: var(--gray-100);
    padding: 3px 10px;
    border-radius: 100px;
}

/* Accordion items */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item:hover { border-color: var(--gray-200); box-shadow: var(--shadow-sm); }
.faq-item.open {
    border-color: rgba(0,175,102,0.3);
    box-shadow: 0 4px 20px rgba(0,175,102,0.07);
}
.faq-item.highlight {
    border-color: rgba(0,175,102,0.4);
    box-shadow: 0 0 0 3px rgba(0,175,102,0.08);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
   
    transition: background 0.2s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-item.open .faq-q { background: var(--gray-50); }

.faq-q-text {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brand-primary);
    line-height: 1.4;
}
.faq-item.open .faq-q-text { color: var(--brand-primary); }

.faq-chevron {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
    color: var(--gray-400);
    font-size: 0.9rem;
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    background: var(--teal-lt);
    color: var(--teal);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}
.faq-body-inner {
    padding: 0 20px 20px 20px;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.75;
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
}
.faq-body-inner p { margin-bottom: 10px; }
.faq-body-inner p:last-child { margin-bottom: 0; }
.faq-body-inner ol,
.faq-body-inner ul {
    padding-left: 20px;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.faq-body-inner strong { color: var(--brand-primary); font-weight: 700; }

/* Search highlight */
mark {
    background: rgba(0,175,102,0.18);
    color: var(--brand-primary);
    border-radius: 3px;
    padding: 0 2px;
    font-weight: 700;
}

/* ─────────────────────────────────────────
   CONTACT CARD
───────────────────────────────────────── */
.contact-card {
    background: var(--brand-secondary);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}
.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}
.contact-card::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0,175,102,0.2) 0%, transparent 65%);
    top: -100px; right: -80px;
    pointer-events: none;
}
.contact-card-inner { position: relative; z-index: 2; }
.contact-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(0,175,102,0.15);
    border: 1px solid rgba(0,175,102,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--teal);
    margin: 0 auto 18px;
}
.contact-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}
.contact-card p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    max-width: 320px;
    margin: 0 auto 24px;
}
.contact-methods {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    border-radius: 11px;
   
    font-weight: 700;
    font-size: 0.84rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
}
.contact-btn.primary {
    background: var(--teal);
    color: var(--white);
}
.contact-btn.primary:hover { background: #00c977; transform: translateY(-1px); }
.contact-btn.ghost {
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.12);
}
.contact-btn.ghost:hover { background: rgba(255,255,255,0.12); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 768px) {
    .page-wrap { grid-template-columns: 1fr; gap: 20px; padding-top: 0; }
    .faq-sidebar { position: static; padding: 24px 0 0; }
    .faq-sidebar-nav { flex-direction: row; flex-wrap: wrap; gap: 6px; }
    .faq-nav-item { flex: none; padding: 8px 12px; font-size: 0.78rem; }
    .faq-nav-item .count { display: none; }
    .stats-inner { gap: 0; }
    .stat { padding: 14px 18px; min-width: 120px; }
    .stat-text strong { font-size: 0.9rem; }
    .hero { padding: 64px 20px 60px; }
    .contact-card { padding: 32px 24px; }
}
@media (max-width: 480px) {
    .stat { min-width: 50%; border-right: none; border-bottom: 1px solid var(--gray-200); }
    .stat:nth-child(odd) { border-right: 1px solid var(--gray-200); }
    .stat:last-child { border-bottom: none; }
}

/* Scroll reveal */
.faq-section-page {
    animation: sectionIn 0.45s ease both;
}
@keyframes sectionIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.faq-section-page:nth-child(1) { animation-delay: 0.05s; }
.faq-section-page:nth-child(2) { animation-delay: 0.10s; }
.faq-section-page:nth-child(3) { animation-delay: 0.15s; }
.faq-section-page:nth-child(4) { animation-delay: 0.20s; }
.faq-section-page:nth-child(5) { animation-delay: 0.25s; }
.faq-section-page:nth-child(6) { animation-delay: 0.30s; }
.faq-section-page:nth-child(7) { animation-delay: 0.35s; }
.faq-section-page:nth-child(8) { animation-delay: 0.40s; }