#chatbot-toggle{position:fixed;bottom:24px;right:24px;z-index:9999;width:56px;height:56px;border-radius:50%;border:none;background:linear-gradient(135deg,#111111,#c5a059);color:white;font-size:1.5rem;cursor:pointer;box-shadow:0 4px 20px rgba(17,17,17,0.35);transition:transform 0.3s,box-shadow 0.3s;display:flex;align-items:center;justify-content:center;}#chatbot-toggle:hover{transform:scale(1.1);box-shadow:0 6px 25px rgba(17,17,17,0.45);}#chatbot-window{position:fixed;bottom:90px;right:24px;z-index:9998;width:340px;max-height:450px;border-radius:16px;background:#fff;box-shadow:0 8px 40px rgba(0,0,0,0.18);overflow:hidden;display:flex;flex-direction:column;animation:chatSlideUp 0.3s ease-out;}@keyframes chatSlideUp{from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);}}#chatbot-header{background:linear-gradient(135deg,#111111,#2a2a2a);color:white;padding:12px 16px;display:flex;justify-content:space-between;align-items:center;}#chatbot-body{padding:16px;overflow-y:auto;max-height:340px;flex:1;display:flex;flex-direction:column;gap:10px;}.chat-bubble{padding:10px 14px;border-radius:14px;font-size:0.88rem;line-height:1.5;max-width:90%;word-wrap:break-word;}.chat-bubble.bot{background:linear-gradient(135deg,#fbfaf7,#ffffff);color:#333;border-bottom-left-radius:4px;border:1px solid rgba(197,160,89,0.2);}.chat-bubble.user{background:linear-gradient(135deg,#111111,#2a2a2a);color:white;border-bottom-right-radius:4px;align-self:flex-end;}.chat-msg{display:flex;}.chat-msg.bot-msg{justify-content:flex-start;}.chat-msg.user-msg{justify-content:flex-end;}#chatbot-options{display:flex;flex-direction:column;gap:6px;margin-top:4px;}.chatbot-option-btn{background:white;border:1.5px solid rgba(197,160,89,0.35);border-radius:10px;padding:10px 14px;text-align:left;font-size:0.85rem;font-weight:600;color:#111111;cursor:pointer;transition:all 0.2s;display:flex;align-items:center;gap:8px;}.chatbot-option-btn:hover{background:linear-gradient(135deg,#fffdf8,#ffffff);border-color:#c5a059;transform:translateX(4px);}.chatbot-option-btn i{font-size:1rem;width:20px;text-align:center;}.chat-bubble a{color:#111111;font-weight:700;text-decoration:underline;}.chat-bubble.bot a{color:#111111;}.back-btn{background:none;border:1.5px solid rgba(197,160,89,0.35);border-radius:8px;padding:6px 12px;font-size:0.8rem;color:#111111;cursor:pointer;margin-top:8px;transition:all 0.2s;}.back-btn:hover{background:#fff8e8;}@media (max-width:400px){#chatbot-window{width:calc(100vw - 32px);right:16px;bottom:84px;}}