/* Sadia Maintenance global website footer */
body{
    display:flex;
    flex-direction:column;
    min-height:100vh;
    margin:0;
}

.sadia-site-footer{
    margin-top:auto;
    padding:28px 18px 20px;
    text-align:center;
    background:#ffffff;
    color:#1b2430;
    border-top:1px solid #e2e7eb;
    box-shadow:0 -4px 18px rgba(19,33,45,.07);
    transition:background-color .22s ease,color .22s ease,border-color .22s ease,box-shadow .22s ease;
}

.sadia-site-footer .footercon{
    list-style:none;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px 24px;
    padding:0;
    margin:0 0 18px;
}

.sadia-site-footer .footercon li{margin:0;padding:0}

.sadia-site-footer .footercon a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#26313d;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    padding:8px 10px;
    border-radius:10px;
    transition:color .2s ease,background-color .2s ease,transform .2s ease;
}

.sadia-site-footer .footercon a i{
    color:#18a866;
    font-size:15px;
}

.sadia-site-footer .footercon a:hover{
    color:#087551;
    background:#eef8f3;
    transform:translateY(-1px);
}

.sadia-site-footer .Copyright{
    margin:0;
    padding-top:16px;
    border-top:1px solid #e4e8ec;
    color:#6c7680;
    font-size:13px;
    line-height:1.5;
}

html.sadia-dark .sadia-site-footer{
    background:#111820 !important;
    color:#f2f5f7 !important;
    border-top-color:#2f3b46 !important;
    box-shadow:0 -4px 18px rgba(0,0,0,.30) !important;
}

html.sadia-dark .sadia-site-footer .footercon a{
    color:#e8edf1 !important;
}

html.sadia-dark .sadia-site-footer .footercon a:hover{
    color:#72ddb0 !important;
    background:#1b2831 !important;
}

html.sadia-dark .sadia-site-footer .footercon a i{
    color:#39c985 !important;
}

html.sadia-dark .sadia-site-footer .Copyright{
    color:#aab4bd !important;
    border-top-color:#34414c !important;
}

.sadia-back-to-top{
    position:fixed;
    right:24px;
    bottom:24px;
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2147483647;
    background:#18a866;
    color:#fff;
    border:2px solid #fff;
    box-shadow:0 5px 18px rgba(0,0,0,.28);
    text-decoration:none;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(8px);
    transition:opacity .25s ease,visibility .25s ease,transform .25s ease,background-color .2s ease;
}

.sadia-back-to-top.is-visible{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
}

.sadia-back-to-top:hover{background:#087551}
.sadia-back-to-top i{font-size:20px;pointer-events:none}

html.sadia-dark .sadia-back-to-top{
    border-color:#26333d;
    box-shadow:0 5px 20px rgba(0,0,0,.48);
}

@media(max-width:600px){
    .sadia-site-footer{padding:24px 12px 18px}
    .sadia-site-footer .footercon{gap:7px 10px;margin-bottom:15px}
    .sadia-site-footer .footercon a{font-size:13px;padding:7px 8px}
    .sadia-back-to-top{right:16px;bottom:18px;width:48px;height:48px}
}
