#fmc-consult-widget {
    position: fixed !important;
    bottom: 110px !important; 
    right: 65px !important;
    width: 280px !important;
    background: white !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
    z-index: 999999 !important;
    overflow: hidden !important;
    display: block !important;
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee !important;
}
#fmc-consult-widget.is-active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}
.fmc-widget-header {
    background: linear-gradient(to right, #4564ED, #0078FF);
    color: white; 
    padding: 8px 15px;
    font-weight: bold;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}
.fmc-widget-header span:first-child {
    font-size: 14px;
    line-height: 1;
}
.fmc-close-widget { 
    cursor: pointer; 
    font-size: 24px; 
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    opacity: 0.8; 
    margin-top: -4px;
}
.fmc-close-widget:hover { opacity: 1; }
.fmc-widget-body { 
    padding: 12px 20px 15px 20px;
    text-align: center; 
}
.fmc-widget-body p { 
    font-size: 12px; 
    color: #333; 
    margin-bottom: 10px;
    line-height: 1.4; 
    font-weight: 500;
}
#fmc-consult-form input {
    width: 100%; 
    height: 32px !important;
    padding: 0 12px !important;
    margin-bottom: 5px !important;
    border: 1px solid #ddd; 
    border-radius: 8px; 
    font-size: 13px;
    outline: none;
    box-sizing: border-box;
}
#btn-send-consult {
    width: auto !important; 
    min-width: 120px;
    background: #4564ED; 
    color: white;
    border: none; 
    height: 30px;
    line-height: 30px; 
    padding: 0 20px !important;
    border-radius: 20px; 
    font-weight: bold; 
    font-size: 12px;
    cursor: pointer; 
    transition: 0.3s;
    margin-top: 5px;
    display: inline-block !important;
    text-align: center;
    text-decoration: none;
    padding-bottom: 1px !important; 
}
#btn-send-consult:hover { background: #3652D1; }
#fmc-chat-bubble {
    position: fixed !important; bottom: 30px !important; right: 25px !important;
    display: flex !important; align-items: center !important;
    cursor: pointer !important; z-index: 999999 !important;
    transition: all 0.3s ease; user-select: none;
}
#fmc-chat-bubble .bubble-content {
    background: #4564ED; color: white; padding: 0 35px 0 20px;
    border-radius: 40px; font-weight: 600; font-size: 14px;
    height: 38px; display: flex; align-items: center;
    box-shadow: 0 4px 15px rgba(69, 100, 237, 0.3);
    margin-right: -25px; position: relative; z-index: 1; pointer-events: none;
}
#fmc-chat-bubble .bubble-icon {
    background: linear-gradient(135deg, #4564ED, #0078FF);
    width: 58px; height: 58px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border: 3px solid white; position: relative; z-index: 2; pointer-events: none;
}
#fmc-chat-bubble .bubble-icon::before {
    content: ''; position: absolute; width: 100%; height: 100%;
    border-radius: 50%; background: #4564ED; opacity: 0.6;
    animation: fmc-pulse 2s infinite; pointer-events: none;
}
@keyframes fmc-pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.6); opacity: 0; } }
@media (max-width: 767px) {
    #fmc-chat-bubble .bubble-content {
        display: none !important;
    }
    #fmc-chat-bubble .bubble-icon {
        width: 40px !important;
        height: 40px !important;
        border-width: 2px !important;
    }
    #fmc-chat-bubble .bubble-icon svg {
        width: 20px !important;
        height: 20px !important;
    }
    #fmc-chat-bubble {
        bottom: 260px !important;
        right: 15px !important;
    }
    #fmc-consult-widget {
        right: 40px !important;
        bottom: 305px !important;
        width: calc(100% - 40px) !important;
        max-width: 300px !important;
        transform-origin: bottom right;
    }
    #fmc-consult-form input {
        height: 38px !important;
        font-size: 14px;
    }
}