/*بـسـم الله الـرحـمـن الـرحـیـم*/




/*=========================
        Support Page
==========================*/

.support-page{

    width:100%;
    height: fit-content;

    padding:35px;

}

.support-header{

    text-align:center;

    margin-bottom:40px;

}

.support-header h1{

    color:#22c55e;

    font-size:34px;

    margin-bottom:15px;

}

.support-header p{

    color:#94a3b8;

    font-size:16px;

    line-height:2;

    max-width:700px;

    margin:auto;

}

/* Grid */

.support-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

}

/* Card */

.support-card{

    background:linear-gradient(145deg,#07111d,#020617);

    border:1px solid rgba(255,255,255,.05);

    border-radius:22px;

    padding:35px 20px;

    text-align:center;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.support-card::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(90deg,transparent,rgba(255,255,255,.05),transparent);

    transition:.6s;

}

.support-card:hover::before{

    left:100%;

}

.support-card:hover{

    transform:translateY(-8px);

    border-color:#22c55e;

    box-shadow:0 15px 35px rgba(34,197,94,.18);

}

/* Icon */
.icon > img{
    border-radius: 45%;
    width: 95% !important;
    height: 95% !important;
}

.support-card .icon{

    width:75px;
    height:75px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    color:#fff;

    background:#22c55e;

    margin-bottom:20px;

}

.support-card h3{

    color:white;

    margin-bottom:10px;

    font-size:22px;

}

.support-card span{

    display:block;

    color:#94a3b8;

    margin-bottom:25px;

}

.support-card a{

    display:inline-block;

    padding:11px 26px;

    background:#22c55e;

    color:white;

    border-radius:10px;

    text-decoration:none;

    transition:.3s;

}

.support-card a:hover{

    background:#16a34a;

}

/* رنگ هر کارت */

.telegram .icon{

    background:#27A5E7;

}

.instagram .icon{

    background:#E1306C;

}

.whatsapp .icon{

    background:#25D366;

}

.email .icon{

    background:#6366f1;

}

.phone .icon{

    background:#f59e0b;

}

.admin .icon{

    background:#22c55e;

}

/* ساعات */

.support-time{

    margin-top:45px;

    padding:30px;

    text-align:center;

    border-radius:20px;

    background:#07111d;

    border:1px solid rgba(34,197,94,.15);

}

.support-time h3{

    color:#22c55e;

    margin-bottom:12px;

}

.support-time p{

    color:#cbd5e1;

}

/* Responsive */

@media(max-width:768px){

    .support-page{

        padding:20px;

    }

    .support-header h1{

        font-size:28px;

    }

}