


/* ============================================
   FAQ SECTION
   ============================================ */

   .faq-section {
    padding: var(--section-py) 0;
    background: var(--bg-light-green);
    position: relative;
    overflow: hidden;
}

/* subtle bg decoration */
.faq-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(254,148,70,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ── LEFT col ── */
.faq-left {
    padding-right: 40px;
    position: sticky;
    top: 100px;
    will-change: transform;
    transform: translateZ(0);
}

.faq-tag {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--yellow);
    margin-bottom: 12px;
}

.faq-main-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    color: var( --green);
    line-height: 1.2;
    margin-bottom: 16px;
}
.faq-main-title span {
    color: var(--yellow);
}

.faq-sub {
    font-size: 0.88rem;
    color: var(--text-paragraph);
    line-height: 1.7;
    opacity: 0.8;
    margin: 0;
}

/* ── RIGHT col ── */
.faq-right {
    padding-left: 20px;
    height: 600px;
}
/* ── Accordion ── */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover {
    border-color: rgba(254,148,70,0.2);
    box-shadow: var(--shadow-sm);
}
.faq-item--open {
    border-color: rgba(254,148,70,0.25);
    box-shadow: var(--shadow-sm);
}

/* Question button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: var( --green);
    line-height: 1.4;
    transition: color var(--transition);
}
.faq-question:hover {
    color: var(--yellow);
}
.faq-item--open .faq-question {
    color: var(--yellow);
    padding-bottom: 14px;
}

/* Plus/Minus icon */
.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light-yellow);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}
.faq-item--open .faq-icon {
    background: var(--yellow);
    color: var(--white);
    transform: rotate(45deg);
}

/* Answer */
.faq-answer {
    overflow: hidden;
    transition: height 0.35s ease;
    height: 0;
    padding: 0 22px;
}
.faq-item--open .faq-answer {
    padding: 0 22px 20px;
}
.faq-answer p {
    font-size: 0.86rem;
    color: var(--text-paragraph);
    line-height: 1.75;
    margin: 0;
    opacity: 0.85;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .faq-left {
        position: relative;
        top: 0;
        padding-right: 0;
        margin-bottom: 40px;
    }
    .faq-right { padding-left: 0; }
}

@media (max-width: 767.98px) {
    .faq-section{ padding-inline: 20px;}
    .faq-question { font-size: 0.86rem; padding: 16px 18px; }
    .faq-item--open .faq-question { padding-bottom: 10px; }
    .faq-answer { padding: 0 18px; }
    .faq-item--open .faq-answer { padding: 0 18px 16px; }
    .faq-right { height: unset;}
}


/* ================================================================================================= */
/* ============================================ START FAQ PAGE================================== */
/* ================================================================================================= */


/* ── Hero ── */
.pfaq-hero {
    position: relative;
    padding: 160px 0 90px;
    overflow: hidden;
    background: var(--bg-light-green);
}
.pfaq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(2,27,94,0.05) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 70%, rgba(254,148,70,0.07) 0%, transparent 60%);
    pointer-events: none;
}
.pfaq-hero-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--yellow);
    margin-bottom: 14px;
}
.pfaq-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 600;
    color: var( --green);
    line-height: 1.15;
    margin-bottom: 18px;
}
.pfaq-hero-title span { color: var(--yellow); }
.pfaq-hero-sub {
    font-size: 0.92rem;
    color: var(--text-paragraph);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto;
    opacity: 0.8;
}

/* ── Main Section ── */
.pfaq-main {
    padding: 70px 0 90px;
    background: var(--white);
}

/* ── Category Tabs ── */
.pfaq-tabs-outer {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}
.pfaq-tabs {
    display: inline-flex;
    background: var(--bg-light-green);
    border-radius: 50px;
    padding: 6px;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}
.pfaq-tab {
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-paragraph);
    background: transparent;
    border: none;
    border-radius: 50px;
    padding: 10px 26px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}
.pfaq-tab:hover { color: var( --green); }
.pfaq-tab.pfaq-tab-active {
    background: var( --green);
    color: var(--white);
}

/* ── Panels ── */
.pfaq-panel { display: none; }
.pfaq-panel.pfaq-panel-active {
    display: block;
    animation: pfaqIn 0.35s ease forwards;
}
@keyframes pfaqIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Left Info Box ── */
.pfaq-left-col {
    position: sticky;
    top: 110px;
}
.pfaq-left-box {
    background: var( --green);
    border-radius: 20px;
    padding: 40px 32px;
}
.pfaq-left-icon {
    font-size: 2.6rem;
    color: var(--yellow);
    margin-bottom: 20px;
    display: block;
}
.pfaq-left-cat-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--yellow);
    margin-bottom: 8px;
}
.pfaq-left-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
}
.pfaq-left-title span { color: var(--yellow); }
.pfaq-left-sub {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 0;
}

/* ── Accordion ── */
.pfaq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    contain: layout;
}

.pfaq-item {
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}
.pfaq-item:first-child { border-top: 1px solid var(--border-color); }

.pfaq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 600;
    color: var( --green);
    line-height: 1.4;
    transition: color 0.25s ease;
}
.pfaq-question:hover { color: var(--yellow); }
.pfaq-item.pfaq-open .pfaq-question { color: var(--yellow); }

.pfaq-q-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    transition: background 0.25s, border-color 0.25s, transform 0.3s;
}
.pfaq-item.pfaq-open .pfaq-q-icon {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--white);
    transform: rotate(45deg);
}

.pfaq-answer {
    overflow: hidden;
    height: 0;
    transition: height 0.35s ease;
}
.pfaq-answer-inner {
    padding: 0 4px 20px;
}
.pfaq-answer-inner p {
    font-size: 0.86rem;
    color: var(--text-paragraph);
    line-height: 1.8;
    margin: 0;
    opacity: 0.85;
}

/* ── Bottom CTA ── */
.pfaq-cta {
    padding: 0 0 80px;
    background: var(--white);
}
.pfaq-cta-box {
    background: var(--bg-light-yellow);
    border-radius: 20px;
    padding: 50px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.pfaq-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var( --green);
    margin-bottom: 8px;
}
.pfaq-cta-sub {
    font-size: 0.88rem;
    color: var(--text-paragraph);
    opacity: 0.8;
    margin: 0;
    line-height: 1.6;
}
.pfaq-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ── Bottom CTA Strip (same as pricing-cta-strip) ── */
.pfaq-cta-strip {
    background: var(--bg-light-yellow);
    padding: 50px 0;
}
.pfaq-cta-strip-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    color: var( --green);
    margin-bottom: 8px;
}
.pfaq-cta-strip-sub {
    font-size: 0.88rem;
    color: var(--black);
    margin: 0;
    line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .pfaq-hero { padding: 130px 0 60px; }
    .pfaq-left-col { position: relative; top: 0; margin-bottom: 36px; }
    .pfaq-cta-box { padding: 36px 28px; flex-direction: column; text-align: center; }
    .pfaq-cta-btns { justify-content: center; }
}
@media (max-width: 767.98px) {
    .pfaq-hero { padding: 110px 0 50px; }
    .pfaq-main { padding: 50px 0 60px; }
    .pfaq-left-box { padding: 28px 22px; }
    .pfaq-question { font-size: 0.86rem; padding: 18px 4px; }
    .pfaq-tabs { gap: 4px; }
    .pfaq-tab { padding: 8px 16px; font-size: 0.78rem; }
}
@media (max-width: 991.98px) {
    .pfaq-cta-strip { text-align: center; }
    .pfaq-cta-strip .col-lg-auto { text-align: center; }
}

/* ================================================================================================= */
/* ============================================ END FAQ PAGE================================== */
/* ================================================================================================= */