/* ============================================================
   INDO NATURA EXPORTER
   FAQ.CSS
   GLASSMORPHISM FAQ PAGE
============================================================ */


/* ============================================================
   FAQ PAGE
============================================================ */

.faq-page{

    position:relative;

    min-height:calc(100vh - 85px);

    padding:80px 0 90px;

    background:

        radial-gradient(
            circle at 15% 20%,
            rgba(57,255,20,.08),
            transparent 32%
        ),

        radial-gradient(
            circle at 85% 70%,
            rgba(191,149,63,.08),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #08131d 0%,
            #0b1d22 45%,
            #08131d 100%
        );

}


/* ============================================================
   SUBTLE LIGHT EFFECT
============================================================ */

.faq-page::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    top:-180px;

    left:-180px;

    border-radius:50%;

    background:rgba(57,255,20,.035);

    filter:blur(80px);

    pointer-events:none;

}

.faq-page::after{

    content:"";

    position:absolute;

    width:400px;

    height:400px;

    right:-150px;

    bottom:-150px;

    border-radius:50%;

    background:rgba(191,149,63,.04);

    filter:blur(80px);

    pointer-events:none;

}


/* ============================================================
   FAQ HEADER
============================================================ */

.faq-header{

    position:relative;

    z-index:2;

    max-width:850px;

    margin:0 auto 50px;

    text-align:center;

}


.faq-header .eyebrow{

    display:inline-block;

    margin-bottom:14px;

    padding:6px 15px;

    border:1px solid rgba(191,149,63,.25);

    border-radius:30px;

    background:rgba(255,255,255,.035);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    color:#BF953F;

    font-size:.68rem;

    font-weight:700;

    letter-spacing:3px;

}


.faq-header h1{

    margin:0 0 16px;

    color:#ffffff;

    font-size:clamp(2.2rem,5vw,3.5rem);

    font-weight:800;

    line-height:1.15;

    letter-spacing:-1px;

}


.faq-header h1 span{

    color:#BF953F;

}


.faq-header p{

    max-width:720px;

    margin:0 auto;

    color:#aebbc4;

    font-size:.94rem;

    line-height:1.8;

}


/* ============================================================
   SEARCH GLASS
============================================================ */

.faq-search{

    position:relative;

    display:flex;

    max-width:650px;

    height:60px;

    margin:32px auto 0;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.12);

    border-radius:14px;

    background:

        linear-gradient(
            135deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.035)
        );

    box-shadow:

        0 20px 50px rgba(0,0,0,.25),

        inset 0 1px 0 rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

}


.faq-search:focus-within{

    border-color:rgba(57,255,20,.35);

    box-shadow:

        0 20px 50px rgba(0,0,0,.30),

        0 0 0 3px rgba(57,255,20,.05),

        inset 0 1px 0 rgba(255,255,255,.08);

}


.faq-search input{

    flex:1;

    width:100%;

    min-width:0;

    border:0;

    outline:0;

    background:transparent;

    color:#ffffff;

    padding:0 20px;

    font-size:.9rem;

}


.faq-search input::placeholder{

    color:#7f8b91;

}


.faq-search button{

    width:62px;

    border:0;

    background:rgba(57,255,20,.12);

    color:#39FF14;

    cursor:pointer;

    font-size:1.05rem;

    transition:.3s;

}


.faq-search button:hover{

    background:#39FF14;

    color:#07140d;

}


/* ============================================================
   FAQ CONTENT
============================================================ */

.faq-content{

    position:relative;

    z-index:2;

}


/* ============================================================
   CATEGORY FILTER
============================================================ */

.faq-categories{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:9px;

    max-width:1100px;

    margin:0 auto 35px;

}


.faq-category{

    border:1px solid rgba(255,255,255,.10);

    border-radius:30px;

    padding:9px 16px;

    background:

        linear-gradient(
            135deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.025)
        );

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    color:#aebbc4;

    font-size:.68rem;

    font-weight:700;

    letter-spacing:.7px;

    cursor:pointer;

    transition:.3s;

}


.faq-category:hover{

    color:#ffffff;

    border-color:rgba(57,255,20,.35);

    background:rgba(57,255,20,.08);

    transform:translateY(-2px);

}


.faq-category.active{

    color:#07140d;

    border-color:#39FF14;

    background:#39FF14;

    box-shadow:

        0 8px 25px rgba(57,255,20,.15);

}


/* ============================================================
   FAQ LIST
============================================================ */

.faq-list{

    max-width:950px;

    margin:0 auto;

}


/* ============================================================
   FAQ ITEM
============================================================ */

.faq-item{

    position:relative;

    margin-bottom:12px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.09);

    border-radius:15px;

    background:

        linear-gradient(
            135deg,
            rgba(255,255,255,.075),
            rgba(255,255,255,.025)
        );

    box-shadow:

        0 15px 40px rgba(0,0,0,.16),

        inset 0 1px 0 rgba(255,255,255,.055);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    transition:

        border-color .3s ease,

        background .3s ease,

        transform .3s ease;

}


.faq-item:hover{

    border-color:rgba(57,255,20,.18);

    background:

        linear-gradient(
            135deg,
            rgba(255,255,255,.095),
            rgba(255,255,255,.035)
        );

}


/* ============================================================
   QUESTION
============================================================ */

.faq-question{

    position:relative;

    display:flex;

    align-items:center;

    width:100%;

    min-height:72px;

    padding:18px 20px;

    gap:15px;

    border:0;

    outline:0;

    background:transparent;

    color:#ffffff;

    text-align:left;

    cursor:pointer;

}


.faq-question:focus{

    outline:none;

}


.faq-number{

    display:flex;

    align-items:center;

    justify-content:center;

    width:34px;

    height:34px;

    flex:0 0 34px;

    border:1px solid rgba(191,149,63,.25);

    border-radius:9px;

    background:rgba(191,149,63,.06);

    color:#BF953F;

    font-size:.65rem;

    font-weight:800;

}


.faq-question-text{

    flex:1;

    color:#e9eef1;

    font-size:.91rem;

    font-weight:600;

    line-height:1.5;

}


.faq-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    width:32px;

    height:32px;

    flex:0 0 32px;

    border:1px solid rgba(255,255,255,.12);

    border-radius:50%;

    background:rgba(255,255,255,.035);

    color:#39FF14;

    font-size:1.15rem;

    line-height:1;

    transition:.35s;

}


/* ============================================================
   OPEN STATE
============================================================ */

.faq-item.open{

    border-color:rgba(57,255,20,.22);

    box-shadow:

        0 20px 50px rgba(0,0,0,.22),

        0 0 30px rgba(57,255,20,.025),

        inset 0 1px 0 rgba(255,255,255,.06);

}


.faq-item.open .faq-icon{

    transform:rotate(45deg);

    border-color:rgba(57,255,20,.35);

    background:rgba(57,255,20,.10);

    color:#39FF14;

}


.faq-item.open .faq-number{

    border-color:rgba(57,255,20,.25);

    color:#39FF14;

    background:rgba(57,255,20,.06);

}


/* ============================================================
   ANSWER
============================================================ */

.faq-answer{

    max-height:0;

    overflow:hidden;

    opacity:0;

    padding:

        0

        70px

        0;

    transition:

        max-height .45s ease,

        opacity .3s ease,

        padding .35s ease;

}


.faq-item.open .faq-answer{

    max-height:600px;

    opacity:1;

    padding:

        0

        70px

        25px;

}


.faq-answer p{

    margin:0 0 10px;

    color:#9eacb5;

    font-size:.86rem;

    line-height:1.85;

}


.faq-answer p:last-child{

    margin-bottom:0;

}


.faq-answer strong{

    color:#BF953F;

}


/* ============================================================
   NO RESULT
============================================================ */

.faq-no-result{

    display:none;

    max-width:950px;

    margin:20px auto;

    padding:60px 20px;

    text-align:center;

    border:1px solid rgba(255,255,255,.08);

    border-radius:15px;

    background:rgba(255,255,255,.035);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

}


.faq-no-result h3{

    margin:0 0 8px;

    color:#ffffff;

}


.faq-no-result p{

    margin:0;

    color:#82919b;

}


/* ============================================================
   CTA
============================================================ */

.faq-cta{

    position:relative;

    padding:20px 0 90px;

    background:

        radial-gradient(
            circle at 80% 50%,
            rgba(57,255,20,.045),
            transparent 35%
        );

}


.faq-cta-box{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:35px;

    max-width:950px;

    margin:auto;

    padding:42px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.10);

    border-radius:20px;

    background:

        linear-gradient(
            135deg,
            rgba(255,255,255,.085),
            rgba(255,255,255,.025)
        );

    box-shadow:

        0 25px 70px rgba(0,0,0,.25),

        inset 0 1px 0 rgba(255,255,255,.07);

    backdrop-filter:blur(22px);

    -webkit-backdrop-filter:blur(22px);

}


.faq-cta-box::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    top:-100px;

    right:-50px;

    border-radius:50%;

    background:rgba(57,255,20,.06);

    filter:blur(35px);

}


.faq-cta-content{

    position:relative;

    z-index:1;

    flex:1;

}


.faq-cta-content span{

    color:#BF953F;

    font-size:.68rem;

    font-weight:800;

    letter-spacing:2px;

}


.faq-cta-content h2{

    margin:9px 0 10px;

    color:#ffffff;

    font-size:1.75rem;

    font-weight:700;

    line-height:1.3;

}


.faq-cta-content h2 strong{

    color:#39FF14;

}


.faq-cta-content p{

    max-width:650px;

    margin:0;

    color:#94a4ad;

    font-size:.84rem;

    line-height:1.75;

}


/* ============================================================
   CTA BUTTONS
============================================================ */

.faq-cta-buttons{

    position:relative;

    z-index:2;

    display:flex;

    flex-direction:column;

    gap:10px;

    min-width:175px;

}


.faq-btn-primary,
.faq-btn-secondary{

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:44px;

    padding:10px 18px;

    border-radius:8px;

    font-size:.72rem;

    font-weight:700;

    letter-spacing:.5px;

    transition:.3s;

}


.faq-btn-primary{

    border:1px solid #39FF14;

    background:#39FF14;

    color:#06120b;

    box-shadow:

        0 8px 25px rgba(57,255,20,.12);

}


.faq-btn-primary:hover{

    background:#63ff45;

    color:#06120b;

    transform:translateY(-2px);

}


.faq-btn-secondary{

    border:1px solid rgba(191,149,63,.4);

    background:rgba(191,149,63,.05);

    color:#BF953F;

}


.faq-btn-secondary:hover{

    border-color:#BF953F;

    background:rgba(191,149,63,.12);

    color:#ffffff;

    transform:translateY(-2px);

}


/* ============================================================
   RESPONSIVE TABLET
============================================================ */

@media(max-width:992px){

    .faq-page{

        padding-top:65px;

    }

    .faq-cta-box{

        padding:35px;

    }

}


/* ============================================================
   RESPONSIVE MOBILE
============================================================ */

@media(max-width:768px){

    .faq-page{

        padding:

            50px

            0

            60px;

    }


    .faq-header{

        margin-bottom:35px;

    }


    .faq-header h1{

        font-size:2.05rem;

        letter-spacing:-.5px;

    }


    .faq-header p{

        font-size:.84rem;

    }


    .faq-search{

        height:54px;

        margin-top:25px;

    }


    .faq-categories{

        justify-content:flex-start;

        margin-bottom:25px;

    }


    .faq-category{

        padding:8px 12px;

        font-size:.62rem;

    }


    .faq-question{

        min-height:66px;

        padding:16px 14px;

        gap:10px;

    }


    .faq-number{

        width:30px;

        height:30px;

        flex-basis:30px;

        font-size:.58rem;

    }


    .faq-question-text{

        font-size:.82rem;

    }


    .faq-icon{

        width:29px;

        height:29px;

        flex-basis:29px;

    }


    .faq-answer{

        padding-left:54px;

        padding-right:18px;

    }


    .faq-item.open .faq-answer{

        padding-left:54px;

        padding-right:18px;

        padding-bottom:20px;

    }


    .faq-answer p{

        font-size:.79rem;

    }


    .faq-cta{

        padding-bottom:60px;

    }


    .faq-cta-box{

        flex-direction:column;

        align-items:flex-start;

        padding:30px 22px;

        gap:25px;

    }


    .faq-cta-content h2{

        font-size:1.4rem;

    }


    .faq-cta-buttons{

        width:100%;

    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media(max-width:576px){

    .faq-header .eyebrow{

        font-size:.58rem;

        letter-spacing:2px;

    }


    .faq-header h1{

        font-size:1.8rem;

    }


    .faq-search input{

        padding-left:15px;

        font-size:.8rem;

    }


    .faq-search button{

        width:52px;

    }


    .faq-category{

        padding:7px 10px;

    }


    .faq-question-text{

        font-size:.78rem;

    }


    .faq-answer,
    .faq-item.open .faq-answer{

        padding-left:50px;

    }


    .faq-cta-content h2{

        font-size:1.25rem;

    }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media(prefers-reduced-motion:reduce){

    .faq-item,
    .faq-icon,
    .faq-answer,
    .faq-category,
    .faq-btn-primary,
    .faq-btn-secondary{

        transition:none;

    }

}