/*==========================================================
    SEAN B SHOP
    HELP CENTER PAGE
    Professional Visibility Fix
==========================================================*/


.help-page{

    background:#f6f7fb;

    color:#1f2937;

}


.help-page h1,
.help-page h2,
.help-page h3,
.help-page p{

    margin-top:0;

}



/*==========================================================
    HERO
==========================================================*/


.help-hero{

    padding:80px 0;

    background:linear-gradient(
        135deg,
        #0b1f3a,
        #164b8a
    );

    color:#ffffff;

}



.help-hero-content{

    max-width:760px;

    margin:auto;

    text-align:center;

}



.help-hero h1{

    color:#ffffff;

    font-size:2.6rem;

    font-weight:800;

    line-height:1.2;

    margin-bottom:15px;

}



.help-hero p{

    color:rgba(255,255,255,.92);

    font-size:1.05rem;

    line-height:1.7;

    margin-bottom:35px;

}







/*==========================================================
    SEARCH BOX
==========================================================*/


.help-search{

    width:100%;

    display:flex;

    background:#ffffff;

    padding:6px;

    border-radius:50px;

    box-shadow:0 10px 30px rgba(0,0,0,.2);

}



.help-search input{

    flex:1;

    height:52px;

    border:none;

    outline:none;

    padding:0 22px;

    color:#111827;

    background:#ffffff;

    font-size:.95rem;

}



.help-search input::placeholder{

    color:#6b7280;

}



.help-search button{

    border:none;

    background:#e60000;

    color:#ffffff;

    padding:0 28px;

    border-radius:50px;

    font-weight:700;

    cursor:pointer;

}






/*==========================================================
    QUICK HELP CARDS
==========================================================*/


.help-services{

    padding:60px 0;

}



.help-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:22px;

}




.help-card{

    background:#ffffff;

    padding:30px;

    border-radius:18px;

    box-shadow:
    0 5px 20px rgba(0,0,0,.06);

    color:#1f2937;

    transition:.3s;

}



.help-card:hover{

    transform:translateY(-5px);

}




.help-card i{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef3ff;

    color:#0b1f3a;

    border-radius:50%;

    font-size:1.2rem;

}



.help-card h3{

    color:#111827;

    font-size:1.1rem;

    font-weight:800;

    margin:18px 0 10px;

}



.help-card p{

    color:#6b7280;

    line-height:1.6;

}



.help-card a{

    display:inline-block;

    margin-top:15px;

    color:#0b1f3a;

    font-weight:700;

}






/*==========================================================
    FAQ
==========================================================*/


.faq-section{

    padding:60px 0;

}



.faq-section h2{

    color:#111827;

    text-align:center;

    font-size:2rem;

    font-weight:800;

    margin-bottom:30px;

}



.faq-list details{

    background:#ffffff;

    padding:22px;

    margin-bottom:15px;

    border-radius:14px;

    border:1px solid #e5e7eb;

}



.faq-list summary{

    color:#111827;

    cursor:pointer;

    font-weight:700;

}



.faq-list p{

    color:#6b7280;

    line-height:1.7;

    margin-top:15px;

}






/*==========================================================
    SUPPORT BOX
==========================================================*/


.help-contact{

    padding:40px 0 80px;

}




.support-box{

    background:#ffffff;

    padding:35px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:25px;

    box-shadow:0 5px 20px rgba(0,0,0,.06);

}



.support-box i{

    font-size:42px;

    color:#0b1f3a;

}



.support-box h2{

    color:#111827;

    font-weight:800;

}



.support-box p{

    color:#6b7280;

}




.support-box a{

    background:#e60000;

    color:#ffffff;

    padding:14px 28px;

    border-radius:30px;

    font-weight:700;

}







/*==========================================================
    GLOBAL DARK BACKGROUND TEXT FIX
==========================================================*/


.help-page .dark-section,
.help-page .dark-section h1,
.help-page .dark-section h2,
.help-page .dark-section h3,
.help-page .dark-section p{

    color:#ffffff;

}



.help-page a{

    text-decoration:none;

}




/*==========================================================
    RESPONSIVE
==========================================================*/


@media(max-width:992px){


.help-grid{

    grid-template-columns:
    repeat(2,1fr);

}


}



@media(max-width:576px){


.help-grid{

    grid-template-columns:1fr;

}



.help-hero{

    padding:50px 0;

}



.help-hero h1{

    font-size:1.9rem;

}



.help-search{

    flex-direction:column;

    border-radius:15px;

}



.help-search button{

    height:48px;

}



.support-box{

    flex-direction:column;

    text-align:center;

}


}