/* Messenger Agency Chat Widget */
#ma-chat-widget{position:fixed;bottom:24px;right:24px;z-index:99999;font-family:'Plus Jakarta Sans',system-ui,sans-serif}
#ma-chat-bubble{width:60px;height:60px;border-radius:50%;color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 4px 20px rgba(0,0,0,.2);transition:all .3s;font-size:1.5rem}
#ma-chat-bubble:hover{transform:scale(1.1);box-shadow:0 8px 32px rgba(0,0,0,.25)}
#ma-chat-panel{position:absolute;bottom:76px;right:0;width:360px;background:#fff;border-radius:20px;box-shadow:0 16px 64px rgba(0,0,0,.18);overflow:hidden;display:none;flex-direction:column;max-height:560px;border:1.5px solid #e2e8f0}
#ma-chat-panel.open{display:flex}
#ma-chat-header{padding:18px 20px;color:#fff;display:flex;align-items:center;gap:12px}
#ma-chat-header-info{flex:1}
#ma-chat-header-name{font-size:1rem;font-weight:800;margin:0}
#ma-chat-header-sub{font-size:.78rem;opacity:.85;margin:2px 0 0}
#ma-chat-close{background:rgba(255,255,255,.2);border:none;color:#fff;width:28px;height:28px;border-radius:50%;cursor:pointer;font-size:.9rem;display:flex;align-items:center;justify-content:center;transition:background .15s}
#ma-chat-close:hover{background:rgba(255,255,255,.35)}
#ma-chat-avatar{width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0}
#ma-chat-messages{flex:1;overflow-y:auto;padding:16px;display:flex;flex-direction:column;gap:10px;background:#f8fafc}
.ma-chat-msg{display:flex;flex-direction:column;gap:4px;max-width:90%}
.ma-chat-msg.bot{align-self:flex-start}.ma-chat-msg.user{align-self:flex-end}
.ma-chat-bubble-msg{padding:10px 14px;border-radius:14px;font-size:.875rem;line-height:1.5}
.bot .ma-chat-bubble-msg{background:#fff;color:#1a1a2e;border:1.5px solid #e2e8f0;border-bottom-left-radius:4px}
.user .ma-chat-bubble-msg{color:#fff;border-bottom-right-radius:4px}
.ma-chat-options{display:flex;flex-direction:column;gap:6px;margin-top:4px}
.ma-chat-option-btn{background:#fff;border:1.5px solid #e2e8f0;border-radius:10px;padding:10px 14px;font-size:.875rem;font-weight:600;cursor:pointer;text-align:left;transition:all .2s;font-family:inherit}
.ma-chat-option-btn:hover{color:#1a1a2e}
#ma-chat-input-wrap{padding:12px 16px;border-top:1.5px solid #e2e8f0;background:#fff;display:flex;gap:8px;align-items:center}
#ma-chat-input{flex:1;border:1.5px solid #e2e8f0;border-radius:10px;padding:10px 14px;font-family:inherit;font-size:.875rem;outline:none;transition:border-color .2s}
#ma-chat-send{color:#fff;border:none;width:36px;height:36px;border-radius:10px;cursor:pointer;font-size:1rem;display:flex;align-items:center;justify-content:center;transition:opacity .2s;flex-shrink:0}
#ma-chat-send:hover{opacity:.85}
#ma-chat-footer{padding:8px;text-align:center;font-size:.7rem;color:#94a3b8;border-top:1px solid #f1f5f9}
.ma-chat-typing{display:flex;gap:4px;align-items:center;padding:8px 12px}
.ma-chat-typing span{width:7px;height:7px;border-radius:50%;background:#cbd5e1;animation:ma-bounce .8s infinite}
.ma-chat-typing span:nth-child(2){animation-delay:.15s}
.ma-chat-typing span:nth-child(3){animation-delay:.3s}
@keyframes ma-bounce{0%,80%,100%{transform:scale(.8);opacity:.6}40%{transform:scale(1);opacity:1}}
.ma-chat-success{text-align:center;padding:24px 16px}
.ma-chat-success-icon{font-size:2.5rem;margin-bottom:12px}
.ma-chat-success h4{font-size:1rem;font-weight:800;margin:0 0 6px}
.ma-chat-success p{font-size:.82rem;color:#64748b;margin:0}
@media(max-width:420px){#ma-chat-panel{width:calc(100vw - 16px);right:-8px}}
