/* ===================================
   e-GMIT ENTERPRISE FAQ
=================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#f5f7fb;
color:#111827;
}

/* ===================================
   WRAPPER
=================================== */

.gmit-faq{
max-width:1200px;
margin:70px auto;
padding:0 24px;
}

/* ===================================
   HERO
=================================== */

.faq-hero{
text-align:center;
margin-bottom:50px;
}

.faq-badge{
display:inline-flex;
align-items:center;
justify-content:center;
padding:8px 18px;
border-radius:999px;
background:#e8f1ff;
color:#0057A8;
font-size:13px;
font-weight:700;
margin-bottom:20px;
letter-spacing:.5px;
}

.faq-hero h1{
font-size:56px;
font-weight:800;
line-height:1.1;
margin-bottom:18px;
color:#111827;
}

.faq-hero p{
font-size:17px;
line-height:1.9;
color:#6b7280;
max-width:760px;
margin:auto;
}

/* ===================================
   SEARCH
=================================== */

.faq-search{
margin-bottom:40px;
}

#faqSearch{
width:100%;
height:68px;
border:none;
outline:none;
border-radius:22px;
background:#fff;
padding:0 28px;
font-size:16px;
box-shadow:
0 4px 18px rgba(0,0,0,.04),
0 1px 2px rgba(0,0,0,.03);
transition:.2s;
}

#faqSearch:focus{
box-shadow:
0 0 0 4px rgba(0,87,168,.08),
0 12px 28px rgba(0,0,0,.06);
}

/* ===================================
   FILTER
=================================== */

.faq-tabs{
display:flex;
justify-content:center;
gap:14px;
flex-wrap:wrap;
margin-bottom:50px;
}

.faq-tabs button{
border:none;
outline:none;
background:#eef2f7;
padding:13px 24px;
border-radius:999px;
font-size:14px;
font-weight:700;
cursor:pointer;
transition:.2s;
color:#374151;
}

.faq-tabs button:hover{
transform:translateY(-1px);
background:#dfe8f5;
}

.faq-tabs button.active{
background:#0057A8;
color:#fff;
box-shadow:0 10px 24px rgba(0,87,168,.25);
}

/* ===================================
   FAQ LIST
=================================== */

.faq-list{
display:flex;
flex-direction:column;
gap:20px;
}

/* ===================================
   ITEM
=================================== */

.faq-item{
background:#fff;
border-radius:24px;
overflow:hidden;
border:1px solid #e5e7eb;
transition:.25s;
box-shadow:
0 4px 18px rgba(0,0,0,.03),
0 1px 2px rgba(0,0,0,.03);
}

.faq-item:hover{
transform:translateY(-2px);
box-shadow:
0 14px 32px rgba(0,0,0,.06),
0 4px 10px rgba(0,0,0,.04);
}

.faq-item.active{
border-color:#bfd7f5;
}

/* ===================================
   QUESTION
=================================== */

.faq-question{
width:100%;
background:#fff;
border:none;
outline:none;
padding:28px 30px;
display:flex;
align-items:center;
justify-content:space-between;
cursor:pointer;
text-align:left;
transition:.2s;
}

.faq-question:hover{
background:#fafcff;
}

.faq-question-left{
display:flex;
align-items:center;
gap:18px;
}

.faq-number{
min-width:44px;
height:44px;
border-radius:12px;
background:#e8f1ff;
display:flex;
align-items:center;
justify-content:center;
font-size:14px;
font-weight:800;
color:#0057A8;
}

.faq-title{
font-size:20px;
font-weight:700;
line-height:1.5;
color:#111827;
}

.faq-icon{
font-size:30px;
font-weight:300;
color:#0057A8;
transition:.3s;
line-height:1;
}

.faq-item.active .faq-icon{
transform:rotate(45deg);
}

/* ===================================
   ANSWER
=================================== */

.faq-answer{
height:0;
overflow:hidden;
padding:0 30px;
opacity:0;
transition:
height .35s ease,
opacity .25s ease,
padding .25s ease;
}

.faq-item.active .faq-answer{
height:auto;
opacity:1;
padding:0 30px 30px 92px;
}

.faq-answer p{
font-size:15px;
line-height:2;
color:#5b6475;
margin:0;
}
/* ===================================
   FOOTER
=================================== */

.faq-footer{
margin-top:70px;
padding-top:34px;
border-top:1px solid #e5e7eb;
text-align:center;
font-size:13px;
line-height:1.9;
color:#6b7280;
}

/* ===================================
   MULTILANG
=================================== */

.multilang{
display:none;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:900px){

.gmit-faq{
margin:40px auto;
padding:0 18px;
}

.faq-hero h1{
font-size:38px;
}

.faq-hero p{
font-size:15px;
}

.faq-question{
padding:22px;
}

.faq-title{
font-size:16px;
}

.faq-answer{
padding:0 22px;
}

.faq-item.active .faq-answer{
padding:0 22px 24px;
}

.faq-number{
display:none;
}

#faqSearch{
height:58px;
font-size:14px;
}

}
