/* Logo Sizing */
.logo img {
    max-height: 60px;
    width: auto;
}

.sticky-logo img {
    max-height: 50px;
    width: auto;
}

.footer-top-wrapper .logo-wrapper img,
.footer-logo img {
    max-height: 80px;
    width: auto;
}

.menu-sidebar-logo img {
    max-height: 60px;
    width: auto;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    margin: 0;
    line-height: 60px;
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 20px;
        font-size: 24px;
    }

    .whatsapp-float i {
        line-height: 50px;
    }
}
