/* WhatsApp Chat Widget */
.whatsapp-chat {
    position: fixed;
    left: 15px;
    bottom: 15px;
    z-index: 99999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    -webkit-transform: translateZ(0);
}

.whatsapp-chat:hover {
    background-color: #128C7E;
    color: #fff;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    text-decoration: none;
}

.whatsapp-chat i {
    line-height: 0;
}

/* Pulse Animation */
.whatsapp-chat::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    -webkit-animation: whatsapp-pulse 2s infinite;
    animation: whatsapp-pulse 2s infinite;
    opacity: 0.7;
}

@-webkit-keyframes whatsapp-pulse {
    0% {
        -webkit-transform: scale(1);
        opacity: 0.7;
    }

    100% {
        -webkit-transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Get in Touch Widget */
.get-in-touch-widget {
    position: fixed;
    right: 15px;
    bottom: 80px;
    /* Above back-to-top */
    z-index: 99998;
    background-color: #253858;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.get-in-touch-widget i {
    font-size: 20px;
    margin-right: 10px;
}

.get-in-touch-widget:hover {
    background-color: #85cf15;
    color: #fff;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(133, 207, 21, 0.4);
    text-decoration: none;
}

@media (max-width: 768px) {
    .get-in-touch-widget span {
        display: none;
    }

    .get-in-touch-widget {
        padding: 15px;
        bottom: 80px;
        right: 15px;
    }

    .get-in-touch-widget i {
        margin-right: 0;
    }

    .whatsapp-chat {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}