/* WhatsApp Chat Button Styles */
.whatsapp-chat-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 9999;
}

.whatsapp-chat-btn:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
}

.whatsapp-chat-btn i {
    margin: 0;
}
