/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #3b82f6; /* Primary blue */
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

.chat-widget-icon {
    font-size: 24px;
}

.chat-widget-text {
    display: flex;
    flex-direction: column;
}

.chat-widget-text strong {
    font-weight: 600;
}

.chat-widget-text span {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Hide text on smaller screens */
@media (max-width: 480px) {
    .chat-widget-text {
        display: none;
    }
    .chat-widget {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    .chat-widget-icon {
        font-size: 28px;
    }
}