@charset "UTF-8";
/***!  Style Declaration  !***/

#chat-balloons{position:fixed;bottom:40px;right:40px;display:flex;flex-direction:column;gap:12px;z-index:9999}.chat-balloon{width:60px;height:60px;background-color:#25d366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 5px 15px rgba(0,0,0,0.3);cursor:pointer;transition:transform 0.3s ease,box-shadow 0.3s ease}.chat-balloon:hover{transform:scale(1.1);box-shadow:0 8px 20px rgba(0,0,0,0.4)}.chat-balloon:nth-child(2){background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888)}.chat-balloon img{width:35px;height:35px}#message-popup{position:fixed;bottom:110px;right:40px;width:260px;background:#fff;border-radius:12px;box-shadow:0 10px 25px rgba(0,0,0,0.3);display:none;z-index:10000;font-family:'Segoe UI',sans-serif;overflow:hidden;animation:fadeIn 0.4s ease}#popup-header{background:linear-gradient(135deg,#25d366,#1ebe57);color:#fff;padding:12px 15px;display:flex;justify-content:space-between;align-items:center;font-weight:700}#popup-header button{background:transparent;border:none;color:#fff;font-size:18px;cursor:pointer}#popup-body{padding:15px;text-align:center}#popup-body p{margin:0 0 12px 0;font-size:14px;color:#333}#start-chat{background-color:#25d366;color:#fff;border:none;padding:10px 18px;border-radius:25px;font-weight:700;cursor:pointer;transition:transform 0.2s ease,background 0.2s ease}#start-chat:hover{background-color:#1ebe57;transform:scale(1.05)}@media (max-width:768px){#message-popup{right:20px;width:220px;bottom:100px}#chat-balloons{right:20px;bottom:20px}}
