.elementor-283 .elementor-element.elementor-element-542d18c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-6e6af96 *//* WhatsApp Widget Container */
.whatsapp-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
}

/* Main Button */
.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    animation: floatPulse 2s infinite ease-in-out;
}

.whatsapp-button:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-button i {
    font-size: 2.2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Pulse Animation */
@keyframes floatPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
}

/* Ripple Effect */
.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.whatsapp-button:active::before {
    width: 100px;
    height: 100px;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #1e2b3a;
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #1e2b3a;
    transform: rotate(45deg);
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Notification Badge */
.whatsapp-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Chat Popup */
.whatsapp-chat {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transform-origin: bottom right;
}

.whatsapp-chat.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chat Header */
.whatsapp-chat-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
}

.whatsapp-chat-header i {
    font-size: 2rem;
    background: white;
    border-radius: 50%;
    padding: 0.4rem;
    color: #25D366;
}

.whatsapp-chat-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.whatsapp-chat-header p {
    margin: 0;
    font-size: 0.7rem;
    opacity: 0.9;
}

.chat-close {
    margin-left: auto;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.chat-close:hover {
    transform: scale(1.1);
}

/* Chat Body */
.whatsapp-chat-body {
    padding: 1rem;
    background: #f0f2f5;
}

.chat-message {
    background: white;
    padding: 0.8rem;
    border-radius: 16px;
    border-top-left-radius: 4px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message p {
    margin: 0 0 0.3rem;
    font-size: 0.85rem;
    color: #1e2b3a;
    line-height: 1.4;
}

.chat-time {
    font-size: 0.6rem;
    color: #6c7a8e;
    text-align: right;
}

.chat-input-area {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.8rem;
    background: white;
    border-radius: 24px;
    padding: 0.3rem 0.3rem 0.3rem 1rem;
    border: 1px solid #e0e8f0;
}

.chat-input-area input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    padding: 0.5rem 0;
}

.chat-input-area input::placeholder {
    color: #b0c7db;
}

.chat-send {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.chat-send i {
    color: white;
    font-size: 1rem;
}

.chat-send:hover {
    transform: scale(1.05);
}

.chat-send:active {
    transform: scale(0.95);
}

.chat-note {
    font-size: 0.65rem;
    color: #6c7a8e;
    text-align: center;
    margin-top: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button i {
        font-size: 1.8rem;
    }
    
    .whatsapp-chat {
        width: calc(100vw - 30px);
        right: 0;
        bottom: 70px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-button {
        animation: none;
    }
    
    .whatsapp-button:hover {
        transform: scale(1.05);
    }
    
    .chat-message {
        animation: none;
    }
}/* End custom CSS */