/* ==========================================================
   TRUEVITAHUB
   FAQ
========================================================== */

.tvh-faq{

    position:relative;

    padding:110px 0;

    overflow:hidden;

    background:
        radial-gradient(circle at top right,#eef4ff 0%,transparent 35%),
        radial-gradient(circle at bottom left,#f8fbff 0%,transparent 35%),
        #ffffff;

}

/* ==========================================================
   Section Heading
========================================================== */

.tvh-faq .tvh-section-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.tvh-faq .tvh-section-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    border-radius:999px;

    background:#eef4ff;

    color:#2563eb;

    font-size:14px;

    font-weight:700;

    margin-bottom:22px;

}

.tvh-faq h2{

    font-size:48px;

    color:#0f172a;

    margin-bottom:20px;

}

.tvh-faq p{

    color:#64748b;

    font-size:18px;

    line-height:1.8;

}

/* ==========================================================
   FAQ List
========================================================== */

.tvh-faq-list{

    max-width:900px;

    margin:0 auto;

    display:flex;

    flex-direction:column;

    gap:20px;

}

/* ==========================================================
   FAQ Item
========================================================== */

.tvh-faq-item{

    background:#ffffff;

    border:1px solid rgba(37,99,235,.10);

    border-radius:20px;

    overflow:hidden;

    transition:.3s ease;

    box-shadow:0 12px 35px rgba(15,23,42,.05);

}

.tvh-faq-item.active{

    border-color:#2563eb;

    box-shadow:0 20px 45px rgba(37,99,235,.10);

}

/* ==========================================================
   Question
========================================================== */

.tvh-faq-question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 28px;

    background:transparent;

    border:none;

    cursor:pointer;

    text-align:left;

    font-size:20px;

    font-weight:700;

    color:#0f172a;

    transition:.3s ease;

}

.tvh-faq-question:hover{

    color:#2563eb;

}

.tvh-faq-icon{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#eef4ff;

    color:#2563eb;

    font-size:24px;

    font-weight:700;

    flex-shrink:0;

    transition:.3s ease;

}

.tvh-faq-item.active .tvh-faq-icon{

    transform:rotate(45deg);

    background:#2563eb;

    color:#ffffff;

}

/* ==========================================================
   Answer
========================================================== */

.tvh-faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.tvh-faq-item.active .tvh-faq-answer{

    max-height:300px;

}

.tvh-faq-answer p{

    margin:0;

    padding:0 28px 28px;

    font-size:16px;

    color:#64748b;

    line-height:1.9;

}

/* ==========================================================
   Decorative Glow
========================================================== */

.tvh-faq::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    top:-180px;

    right:-180px;

    background:#2563eb;

    opacity:.06;

    border-radius:50%;

    filter:blur(120px);

}

.tvh-faq::after{

    content:"";

    position:absolute;

    width:360px;

    height:360px;

    bottom:-160px;

    left:-160px;

    background:#60a5fa;

    opacity:.06;

    border-radius:50%;

    filter:blur(120px);

}

/* ==========================================================
   FAQ Animation
========================================================== */

.tvh-faq-visible{

    opacity:1 !important;

    transform:translateY(0) !important;

}


/* ==========================================================
   FAQ Responsive
========================================================== */

/* ---------- Large Laptop ---------- */

@media (max-width:1400px){

    .tvh-faq-list{

        max-width:860px;

    }

}

/* ---------- Laptop ---------- */

@media (max-width:1200px){

    .tvh-faq{

        padding:90px 0;

    }

    .tvh-faq-list{

        max-width:100%;

    }

}

/* ---------- Tablet ---------- */

@media (max-width:992px){

    .tvh-faq{

        padding:80px 0;

    }

    .tvh-faq h2{

        font-size:40px;

    }

    .tvh-faq-question{

        font-size:18px;

        padding:22px 24px;

    }

    .tvh-faq-answer p{

        padding:0 24px 24px;

    }

}

/* ---------- Mobile ---------- */

@media (max-width:768px){

    .tvh-faq{

        padding:70px 0;

    }

    .tvh-faq .tvh-section-heading{

        margin-bottom:50px;

    }

    .tvh-faq h2{

        font-size:32px;

        line-height:1.3;

    }

    .tvh-faq p{

        font-size:16px;

    }

    .tvh-faq-question{

        padding:20px;

        font-size:17px;

        line-height:1.5;

        gap:16px;

    }

    .tvh-faq-answer p{

        padding:0 20px 20px;

        font-size:15px;

        line-height:1.8;

    }

    .tvh-faq-icon{

        width:38px;

        height:38px;

        font-size:20px;

    }

}

/* ---------- Small Mobile ---------- */

@media (max-width:480px){

    .tvh-faq{

        padding:60px 0;

    }

    .tvh-faq h2{

        font-size:28px;

    }

    .tvh-faq .tvh-section-badge{

        font-size:12px;

        padding:8px 14px;

    }

    .tvh-faq-question{

        padding:18px;

        font-size:16px;

    }

    .tvh-faq-answer p{

        padding:0 18px 18px;

        font-size:14px;

    }

    .tvh-faq-icon{

        width:34px;

        height:34px;

        font-size:18px;

    }

}