/* =====================================================
   FOOTER CSS
   File: public/assets/css/footer.css
===================================================== */

.tsr-footer{
    background:linear-gradient(135deg,#111827,#1f2937);
    color:#d1d5db;
    padding-top:55px;
    margin-top:60px;
}

.footer-main{
    padding-bottom:35px;
}

.footer-brand img{
    max-height:65px;
    margin-bottom:18px;
    background:#fff;
    padding:6px 10px;
    border-radius:12px;
    object-fit:contain;
}

.footer-brand p{
    font-size:14px;
    line-height:1.8;
    color:#cbd5e1;
    max-width:360px;
    margin-bottom:18px;
}

.footer-title{
    color:#fff;
    font-weight:800;
    margin-bottom:18px;
    position:relative;
    display:inline-block;
    padding-bottom:8px;
}

.footer-title::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:38px;
    height:3px;
    background:var(--primary);
    border-radius:20px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#cbd5e1;
    text-decoration:none;
    font-size:14px;
    transition:.25s;
}

.footer-links a:hover{
    color:#fff;
    padding-left:6px;
}

.footer-social{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.footer-social a{
    width:38px;
    height:38px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.25s;
}

.footer-social a:hover{
    background:var(--primary);
    transform:translateY(-3px);
}

.footer-contact p{
    display:flex;
    gap:10px;
    margin-bottom:12px;
    color:#cbd5e1;
    font-size:14px;
    line-height:1.5;
}

.footer-contact i{
    color:var(--primary);
    font-size:18px;
    min-width:22px;
}

.footer-support-box{
    margin-top:18px;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:14px;
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-support-box i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.footer-support-box strong{
    display:block;
    color:#fff;
    font-size:14px;
}

.footer-support-box small{
    display:block;
    color:#cbd5e1;
    font-size:12px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    padding:18px 0;
    text-align:center;
}

.footer-bottom p{
    margin:0;
    font-size:13px;
    color:#cbd5e1;
}

.footer-bottom span{
    color:var(--primary);
    font-weight:800;
}

/* WhatsApp Floating Button */
.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:25px;
    width:56px;
    height:56px;
    border-radius:50%;
    background:#25d366;
    color:#fff;
    font-size:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 8px 22px rgba(0,0,0,.25);
    z-index:99999;
    transition:.25s;
}

.whatsapp-float:hover{
    background:#128c7e;
    color:#fff;
    transform:translateY(-4px);
}

/* Responsive */
@media(max-width:768px){
    .tsr-footer{
        padding-top:40px;
        margin-top:45px;
        padding-bottom:70px;
    }

    .footer-brand{
        text-align:center;
    }

    .footer-brand p{
        margin-left:auto;
        margin-right:auto;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-contact{
        text-align:left;
    }

    .footer-contact p{
        justify-content:flex-start;
        text-align:left;
    }

    .footer-title{
        margin-top:10px;
    }

    .whatsapp-float{
        bottom:82px;
        right:16px;
        width:50px;
        height:50px;
        font-size:26px;
    }
}

@media(max-width:576px){
    .tsr-footer{
        padding-top:34px;
    }

    .footer-brand img{
        max-height:56px;
    }

    .footer-brand p{
        font-size:13px;
    }

    .footer-title{
        font-size:15px;
    }

    .footer-links a,
    .footer-contact p{
        font-size:13px;
    }

    .footer-support-box{
        padding:12px;
        border-radius:14px;
    }

    .footer-bottom p{
        font-size:12px;
    }
}