/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #000000;
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
}

.whatsapp-button:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-button svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.whatsapp-button-text {
    display: none;
}

/* Ensure button doesn't overlap with footer on mobile */
@media (max-width: 767px) {
    .whatsapp-button {
        bottom: 80px;
    }
}
