/* =========================================================
   SARTHI EPC — FAQ SECTION
   All custom classes start with faq-sarthi-ghfg
========================================================= */

.faq-sarthi-ghfg-section {
    position: relative;
    overflow: hidden;
}


/* =========================================================
   MAIN FAQ WRAPPER
========================================================= */

.faq-sarthi-ghfg-wrapper {

    display: grid;

    grid-template-columns: 340px 1fr;

    gap: 55px;

    align-items: start;

}


/* =========================================================
   LEFT INTRO CARD
========================================================= */

.faq-sarthi-ghfg-intro {

    position: sticky;

    top: 30px;

    padding: 35px 30px;

    background: var(--secondary);

    border-radius: var(--radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow-md);

}



/* =========================================================
   INTRO ICON
========================================================= */

.faq-sarthi-ghfg-intro-icon {

    position: relative;
    z-index: 2;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 50%;

    background: var(--primary);

    color: var(--white);

    font-size: 21px;

}


/* =========================================================
   INTRO LABEL
========================================================= */

.faq-sarthi-ghfg-intro-label {

    position: relative;
    z-index: 2;

    display: block;

    margin-bottom: 10px;

    color: var(--accent);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}


/* =========================================================
   INTRO HEADING
========================================================= */

.faq-sarthi-ghfg-intro h3 {

    position: relative;
    z-index: 2;

    margin: 0 0 14px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 28px;

    line-height: 1.2;

}


/* =========================================================
   INTRO TEXT
========================================================= */

.faq-sarthi-ghfg-intro p {

    position: relative;
    z-index: 2;

    margin-bottom: 25px;

    color: rgba(255,255,255,.72);

    font-size: 14px;

    line-height: 24px;

}


/* =========================================================
   BUTTON
========================================================= */

.faq-sarthi-ghfg-btn {

    position: relative;
    z-index: 2;

    width: 100%;

}

.faq-sarthi-ghfg-btn i {

    font-size: 13px;

}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-sarthi-ghfg-list {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-sarthi-ghfg-item {

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    overflow: hidden;

    transition:
        border-color .3s ease,
        box-shadow .3s ease;

}


.faq-sarthi-ghfg-item:hover {

    border-color: rgba(23,183,176,.35);

}


/* Active */

.faq-sarthi-ghfg-item--active {

    border-color: rgba(23,183,176,.45);

    box-shadow: var(--shadow-sm);

}


/* =========================================================
   QUESTION
========================================================= */

.faq-sarthi-ghfg-question {

    width: 100%;

    display: grid;

    grid-template-columns: 42px 1fr 42px;

    align-items: center;

    gap: 14px;

    padding: 20px 22px;

    border: 0;

    background: transparent;

    color: var(--secondary);

    text-align: left;

    cursor: pointer;

    font-family: var(--font-body);

}


/* =========================================================
   NUMBER
========================================================= */

.faq-sarthi-ghfg-question-number {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(23,183,176,.10);

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    transition: all .3s ease;

}


/* Active number */

.faq-sarthi-ghfg-item--active
.faq-sarthi-ghfg-question-number {

    background: var(--primary);

    color: var(--white);

}


/* =========================================================
   QUESTION TEXT
========================================================= */

.faq-sarthi-ghfg-question-text {

    font-family: var(--font-heading);

    font-size: 17px;

    font-weight: 700;

    line-height: 1.4;

    color: var(--secondary);

}


/* =========================================================
   TOGGLE
========================================================= */

.faq-sarthi-ghfg-toggle {

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-left: auto;

    border-radius: 50%;

    background: var(--bg);

    color: var(--primary);

    font-size: 12px;

    transition: all .3s ease;

}


/* Active toggle */

.faq-sarthi-ghfg-item--active
.faq-sarthi-ghfg-toggle {

    background: var(--accent);

    color: var(--secondary);

}


/* =========================================================
   ANSWER
========================================================= */

.faq-sarthi-ghfg-answer {

    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows .35s ease;

}


/* Inner */

.faq-sarthi-ghfg-answer-inner {

    overflow: hidden;

}


/* Active answer */

.faq-sarthi-ghfg-item--active
.faq-sarthi-ghfg-answer {

    grid-template-rows: 1fr;

}


/* =========================================================
   ANSWER TEXT
========================================================= */

.faq-sarthi-ghfg-answer p {

    margin: 0;

    padding:

        0 78px 23px 78px;

    color: var(--text-light);

    font-family: var(--font-body);

    font-size: 14px;

    line-height: 25px;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .faq-sarthi-ghfg-wrapper {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .faq-sarthi-ghfg-intro {

        position: relative;

        top: auto;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 767px) {

    .faq-sarthi-ghfg-title {

        margin-bottom: 30px;

    }


    .faq-sarthi-ghfg-intro {

        padding: 28px 24px;

    }


    .faq-sarthi-ghfg-intro h3 {

        font-size: 25px;

    }


    .faq-sarthi-ghfg-question {

        grid-template-columns: 36px 1fr 36px;

        gap: 10px;

        padding: 17px;

    }


    .faq-sarthi-ghfg-question-number {

        width: 34px;
        height: 34px;

    }


    .faq-sarthi-ghfg-question-text {

        font-size: 15px;

    }


    .faq-sarthi-ghfg-toggle {

        width: 32px;
        height: 32px;

    }


    .faq-sarthi-ghfg-answer p {

        padding:

            0 17px 20px 61px;

        font-size: 13px;

        line-height: 23px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .faq-sarthi-ghfg-wrapper {

        gap: 25px;

    }


    .faq-sarthi-ghfg-question {

        grid-template-columns: 32px 1fr 32px;

        padding: 14px;

    }


    .faq-sarthi-ghfg-question-number {

        width: 31px;
        height: 31px;

        font-size: 10px;

    }


    .faq-sarthi-ghfg-question-text {

        font-size: 14px;

    }


    .faq-sarthi-ghfg-toggle {

        width: 29px;
        height: 29px;

        font-size: 10px;

    }


    .faq-sarthi-ghfg-answer p {

        padding-left: 14px;

    }

}