
.site-footer{
    position:relative;
    margin-top:0;
    overflow:hidden;
    background:
        radial-gradient(circle at 12% 0%,rgba(0,178,255,.18),transparent 35%),
        radial-gradient(circle at 82% 20%,rgba(0,112,255,.12),transparent 30%),
        linear-gradient(180deg,#08132a,#05070d);
    border-top:1px solid rgba(0,178,255,.18);
    padding:78px 0 0;
    color:#dbe8ff;
}

.footer-glow{
    position:absolute;
    inset:auto 0 0;
    height:1px;
    box-shadow:0 0 70px rgba(0,178,255,.55);
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:54px;
    padding-bottom:58px;
}

.footer-brand h3{
    color:#fff;
    font-size:48px;
    line-height:1;
    font-weight:900;
    margin:0 0 18px;
    text-shadow:
        0 0 18px rgba(0,178,255,.5),
        0 0 48px rgba(0,178,255,.25);
}

.footer-brand p,
.footer-cta p{
    color:#b8c7dd;
    line-height:1.8;
    max-width:460px;
    margin:0 0 22px;
}

.footer-social-row{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.footer-social-row a,
.footer-cta a{
    display:inline-flex;
    min-height:42px;
    align-items:center;
    justify-content:center;
    padding:0 16px;
    border-radius:999px;
    background:rgba(0,178,255,.12);
    border:1px solid rgba(0,178,255,.25);
    color:#dff5ff;
    text-decoration:none;
    font-weight:900;
    transition:.25s;
}

.footer-social-row a:hover,
.footer-cta a:hover{
    background:#00b2ff;
    color:#fff;
    box-shadow:0 0 28px rgba(0,178,255,.55);
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links h4,
.footer-cta h4{
    color:#fff;
    margin:0 0 22px;
    font-size:22px;
    font-weight:900;
}

.footer-links a{
    color:#9eb2ca;
    margin-bottom:13px;
    text-decoration:none;
    transition:.25s;
    font-weight:700;
}

.footer-links a:hover{
    color:#00b2ff;
    transform:translateX(6px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:25px 0;
    color:#7d8ea7;
}

.footer-bottom p{
    margin:0;
    color:#7d8ea7;
}

.footer-bottom span{
    color:#00b2ff;
    font-weight:900;
}

@media(max-width:1000px){
    .footer-top{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:700px){
    .footer-top{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }
}
.footer-youtube{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:14px;
    padding:14px 20px;
    border-radius:14px;
    background:linear-gradient(135deg,#ff0033,#ff4d4d);
    color:#fff!important;
    font-weight:900;
    box-shadow:0 0 25px rgba(255,0,51,.35);
}
.footer-cta{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.footer-youtube,
.footer-chat{

    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;

    padding:16px 22px;

    border-radius:16px;

    font-weight:800;

    transition:.25s;

    text-decoration:none;
}

.footer-youtube{

    background:linear-gradient(135deg,#ff0033,#ff5050);

    color:#fff;
}

.footer-chat{

    background:linear-gradient(135deg,#008cff,#00c6ff);

    color:#fff;
}

.footer-youtube:hover,
.footer-chat:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}