/* ===== Ikon WhatsApp Mengambang dengan Teks ===== */

.whatsapp-float {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: #FF0000;
    border-radius: 20px;
    padding: 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 0px;
    transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}

.whatsapp-text {
    font-size: 18px;
    font-weight: bold;
}
