/* WhatsApp Live Support Styles */
.whatsapp-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    font-size: 24px;
    margin-right: 10px;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 16px;
}

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-popup-header {
    background-color: #128C7E;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.whatsapp-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-popup-title h3 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-popup-title p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.whatsapp-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    border: none;
    background: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.whatsapp-popup-body {
    padding: 20px;
}

.whatsapp-popup-body p {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #4A4A4A;
}

.whatsapp-popup-button {
    display: block;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 4px;
    margin: 0 20px 20px;
    transition: all 0.3s ease;
}

.whatsapp-popup-button:hover {
    background-color: #128C7E;
}

.whatsapp-popup-button i {
    margin-right: 8px;
}

@media (max-width: 480px) {
    .whatsapp-popup {
        width: calc(100vw - 60px);
        right: 0;
    }
    
    .whatsapp-button {
        padding: 10px 15px;
    }
    
    .whatsapp-text {
        font-size: 14px;
    }
}
