/* Chat Widget Styles */
#chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}


.chat-button:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.main-button {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.main-button:hover {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

.phone-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.messenger-btn {
    background: linear-gradient(135deg, #0084ff, #44bec7);
}

.close-btn {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.chat-options {
    display: none;
    flex-direction: column-reverse;
    align-items: center;
}

.chat-options.show {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

.option-button {
    animation: fadeInUp 0.3s ease-out;
    animation-fill-mode: both;
}

.option-button:nth-child(1) { animation-delay: 0.1s; }
.option-button:nth-child(2) { animation-delay: 0.2s; }
.option-button:nth-child(3) { animation-delay: 0.3s; }
.option-button:nth-child(4) { animation-delay: 0.4s; }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chat-button {
        width: 50px;
        height: 50px;
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    #chat-widget {
        bottom: 15px;
        right: 15px;
    }
}