/* Chatbot Widget */
.chatbot-widget{position:fixed;bottom:24px;right:24px;z-index:9998;font-family:var(--font-body,'DM Sans',sans-serif)}
.chatbot-toggle{width:56px;height:56px;border-radius:50%;background:#4a7cc9;color:#fff;border:none;cursor:pointer;box-shadow:0 4px 20px rgba(74,124,201,.35);display:flex;align-items:center;justify-content:center;transition:all .3s}
.chatbot-toggle:hover{transform:scale(1.05);box-shadow:0 6px 28px rgba(74,124,201,.45)}
.chatbot-toggle.active{background:#2c3545}
.chatbot-window{position:absolute;bottom:72px;right:0;width:380px;max-height:520px;background:#fff;border-radius:16px;box-shadow:0 8px 40px rgba(0,0,0,.15);display:flex;flex-direction:column;overflow:hidden;opacity:0;transform:translateY(12px) scale(.95);pointer-events:none;transition:all .3s}
.chatbot-window.open{opacity:1;transform:translateY(0) scale(1);pointer-events:auto}
.chatbot-header{background:#2c3545;color:#fff;padding:16px 20px;display:flex;justify-content:space-between;align-items:center}
.chatbot-header-info strong{font-size:.95rem}.chatbot-status{font-size:.72rem;color:#6b9ae0;display:block;margin-top:2px}
.chatbot-close{background:none;border:none;color:rgba(255,255,255,.6);font-size:1.4rem;cursor:pointer;padding:0 4px}.chatbot-close:hover{color:#fff}
.chatbot-messages{flex:1;overflow-y:auto;padding:16px;display:flex;flex-direction:column;gap:8px;max-height:320px}
.chatbot-msg p{margin:0;font-size:.88rem;line-height:1.6}
.chatbot-msg-bot p{background:#f0f4f9;color:#2c3545;padding:10px 14px;border-radius:0 12px 12px 12px;max-width:85%}
.chatbot-msg-user{align-self:flex-end}
.chatbot-msg-user p{background:#4a7cc9;color:#fff;padding:10px 14px;border-radius:12px 0 12px 12px;max-width:85%}
.chatbot-input{display:flex;border-top:1px solid #eee;padding:12px 16px;gap:8px}
.chatbot-input input{flex:1;border:1px solid #e5e7eb;border-radius:8px;padding:10px 14px;font-size:.88rem;font-family:inherit;outline:none}
.chatbot-input input:focus{border-color:#4a7cc9}
.chatbot-input button{background:#4a7cc9;color:#fff;border:none;border-radius:8px;width:40px;height:40px;cursor:pointer;display:flex;align-items:center;justify-content:center}
.chatbot-input button:hover{background:#3a6cb9}
.chatbot-lead-form{padding:12px 16px;border-top:1px solid #eee;background:#f9fafb}
.chatbot-lead-form p{font-size:.82rem;color:#6b7280;margin:0 0 8px}
.chatbot-lead-form input{width:100%;border:1px solid #e5e7eb;border-radius:6px;padding:8px 12px;font-size:.85rem;margin-bottom:6px;font-family:inherit}
.chatbot-lead-btn{width:100%;background:#4a7cc9;color:#fff;border:none;padding:10px;border-radius:8px;font-weight:600;cursor:pointer;font-family:inherit;font-size:.88rem}
.typing-dots span{animation:typing 1.2s infinite;font-size:1.4em;letter-spacing:2px}
.typing-dots span:nth-child(2){animation-delay:.2s}.typing-dots span:nth-child(3){animation-delay:.4s}
@keyframes typing{0%,100%{opacity:.3}50%{opacity:1}}
@media(max-width:480px){.chatbot-window{width:calc(100vw - 32px);right:-8px;bottom:68px}}
