/* ==========================
   MOBILE FIXED BOTTOM BUTTONS
========================== */
.mobile-contact{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    display:flex;
    z-index:9999;
}

.mobile-contact a{
    flex:1;
    text-align:center;
    text-decoration:none;
    color:#fff;
    padding:15px 10px;
    font-size:16px;
    font-weight:bold;
}

.mobile-call{
    background:#007bff;
}

.mobile-whatsapp{
    background:#25D366;
}

/* ==========================
   DESKTOP WHATSAPP BUTTON
========================== */
.desktop-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:28px;
    box-shadow:0 4px 15px rgba(0,0,0,0.3);
    z-index:9999;
    transition:0.3s;
}

.desktop-whatsapp:hover{
    transform:scale(1.1);
}

/* ==========================
   RESPONSIVE
========================== */

/* Desktop */
@media (min-width:768px){

    .mobile-contact{
        display:none;
    }

    body{
        padding-bottom:0;
    }
}

/* Mobile */
@media (max-width:767px){

    .desktop-whatsapp{
        display:none;
    }

    body{
        padding-bottom:60px;
    }
}