	
	#chat-float{
  position:fixed;
  bottom:20px;
  right:20px;
  width:64px;
  height:64px;
  background:#c74d4d;
  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;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    max-width: 100%;
    width: 1140px;
  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;
min-height: 400px;
}

#chat-box.active{
  transform:scale(1) translateY(0);
  opacity:1;
  pointer-events:auto;
}

/* ===== Header ===== */
.chat-header{
  background:#c74d4d;
  color:#fff;
  padding:14px 18px;
  border-radius:18px 18px 0 0;
  font-weight:700;
  font-size:21px;
  line-height:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  letter-spacing:.2px;
}

.chat-header span{
  cursor:pointer;
  font-size:18px;
}

/* ===== Body ===== */
.chat-body{
  padding:7px;
  max-height:320px;
  overflow-y:auto;
  font-size:15px;
  line-height:1.55;
}

/* ===== Messages ===== */
.msg{
  background:#f3f3f3;
  padding:12px 14px;
  border-radius:10px;
  animation:slideUp .4s ease;
  font-weight: bold;
  font-size:21px;
  line-height: 22px;
  text-align: center;
}

@keyframes slideUp{
  from{transform:translateY(20px);opacity:0}
  to{transform:translateY(0);opacity:1}
}

/* ===== Options ===== */
.chat-options{
  padding:7px;
  border-top:1px solid #eee;
  
}

.chat-options button{
    width: 49%;

    margin-bottom: 10px;
    margin-right: 10px;
    padding: 10px;
    padding: 12px;
    border-radius: 10px;
    background: #c74d4d;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
	line-height: 21px;
    font-weight: 700;
    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;
}

@media (max-width: 768px) { 

	#chat-box {
        width: 92%;
        right: 4%;
        /* left: auto; */
        bottom: 85px;
        top: 51%;
        /* margin-top: 105px; */
        height: 700px;
    }
	.msg { 
		font-size: 13px;
		text-align: center;
	}
	.chat-header { 
		padding: 4px 15px; 
		font-weight: 600;
		font-size: 14px; 
	}
	.chat-options input {
		width: 72%; 
		margin-left: 43px;
	}
	.chat-options button {
        width: 70%; 
		margin-left: 41px;
    }
	#form-error{text-align: center;}

}

#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;
}


@media (max-width: 414px) {
    #chat-box {
        top: 57%;
    }
}