/* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: #20ba5a;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.whatsapp-button i {
    font-size: 32px;
    color: white;
}

.whatsapp-message {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 998;
    white-space: nowrap;
    animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .whatsapp-message {
        bottom: 220px;
        right: 20px;
        font-size: 12px;
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .whatsapp-message {
        bottom: 210px;
        right: 15px;
        font-size: 11px;
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 155px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 150px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
    }
}
