	
	#chat-float{
  position:fixed;
  bottom:20px;
  right:20px;
  width:64px;
  height:64px;
  background:#d56100;
  color:#fff;
  font-size:28px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 12px 35px rgba(0,0,0,.35);
  animation:pulse 2s infinite;
  z-index:9999;
  font-family:"Inter","Segoe UI",Roboto,Arial,sans-serif;
}

@keyframes pulse{
  0%{transform:scale(1);}
  50%{transform:scale(1.12);}
  100%{transform:scale(1);}
}

/* ===== Chat Box ===== */
#chat-box{
  position:fixed;
  bottom:95px;
  right:20px;
  width:380px; /* bigger */
  background:#fff;
  border-radius:18px;
  box-shadow:0 25px 60px rgba(0,0,0,.28);
  transform:scale(.6) translateY(60px);
  opacity:0;
  pointer-events:none;
  transition:.6s cubic-bezier(.68,-0.55,.27,1.55);
  z-index:9999;
  font-family:"Inter","Segoe UI",Roboto,Arial,sans-serif;
}

#chat-box.active{
  transform:scale(1) translateY(0);
  opacity:1;
  pointer-events:auto;
}

/* ===== Header ===== */
.chat-header{
  background:#d56100;
  color:#fff;
  padding:14px 18px;
  border-radius:18px 18px 0 0;
  font-weight:600;
  font-size:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  letter-spacing:.2px;
}

.chat-header span{
  cursor:pointer;
  font-size:18px;
}

/* ===== Body ===== */
.chat-body{
  padding:18px;
  max-height:320px;
  overflow-y:auto;
  font-size:15px;
  line-height:1.55;
}

/* ===== Messages ===== */
.msg{
  background:#f3f3f3;
  padding:12px 14px;
  border-radius:14px;
  margin-bottom:12px;
  animation:slideUp .4s ease;
  font-weight: bold;
  font-size:19px;
}

@keyframes slideUp{
  from{transform:translateY(20px);opacity:0}
  to{transform:translateY(0);opacity:1}
}

/* ===== Options ===== */
.chat-options{
  padding:14px;
  border-top:1px solid #eee;
}

.chat-options button{
  width: 50%;
  margin-bottom: 10px;
  border: none;
  padding: 12px;
  border-radius: 10px; 
  background:#d56100;
  color:#fff;
  cursor: pointer;
  transition: .3s;
  font-size: 15px;
  font-weight: 501;
  border: 1px solid;
}

.chat-options button:hover{
  background: #c1c1c1;
}

.chat-options input{
  width:93%;
  padding:10px;
  margin-bottom:10px;
  border-radius:8px;
  border:1px solid #ccc;
  font-size:15px;
}

/* ===== Mobile Optimization ===== */
@media(max-width:480px){
  #chat-box{
    width:92%;
    right:4%;
    bottom:85px;
	  top: 10px;
  }
} 

#chat-options button.btn-wide {
  padding: 3px 14px;
  font-size: 16px;
  width: 20%;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  margin-left: 69px;
}