#chatbot-toggle {
  position: fixed;
  bottom: 5px;
  right: 0px;
  background: linear-gradient(120deg, #1a1a1a, #004f55);
  color: white;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  border: none;
  cursor: pointer;
  font-size: 24px;
  z-index: 9999;
}
#chatbot-toggle:hover {
  background: linear-gradient(120deg, #1a1a1a, #004f55);
}
#chatbot {
  right: 1px;
  position: fixed;
  bottom: 90px;
  width: 320px;
  height: 500px;
  max-height: 500px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
}
#chatbot header {
  background: linear-gradient(120deg, #1a1a1a, #004f55);
  color: white;
  padding: 14px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}
#chatbot .messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
}

#chatbot .message {
  margin-bottom: 8px;
}

#chatbot .user {
  text-align: right;
}

#chatbot footer {
  display: flex;
  border-top: 1px solid #eee;
}

#chatbot input {
  flex: 1;
  border: none;
  padding: 10px;
  outline: none;
}

#chatbot button {
  border: none;
  background: #4f46e5;
  color: white;
  padding: 0 14px;
  cursor: pointer;
}
#chatbot .messages {
  overflow-y: auto;
  flex: 1;
  padding: 12px;
}
#chatbot .message {
  margin-bottom: 8px;
  padding: 8px 12px;
  border-radius: 12px;
}
#chatbot .message.user {
  background: #e0e7ff;
  align-self: flex-end;
}
#chatbot .message.bot {
  background: #f3f4f6;
  align-self: flex-start;
}
#chatbot .option-btn {
  background: linear-gradient(120deg, #1a1a1a, #004f55);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  margin: 5px 0;
  width: 100%;
  cursor: pointer;
  transition: 0.2s;
}
#chatbot .option-btn:hover {
  background: linear-gradient(-120deg, #1a1a1a, #004f55);
}
.bot-message {
  background: #f3f4f6;
  padding: 8px 12px;
  border-radius: 12px;
  margin: 6px 0;
}
.user-message {
  background: #e0e7ff;
  padding: 8px 12px;
  border-radius: 12px;
  margin: 6px 0;
  text-align: right;
}
.option-btn {
  display: block;
  width: 100%;
  margin: 5px 0;
  padding: 8px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(120deg, #1a1a1a, #004f55);
  color: white;
  cursor: pointer;
}
.option-btn:hover {
  background: linear-gradient(-120deg, #1a1a1a, #004f55);
}

#formContainer {
  margin-top: 20px;
}
#contactForm {
  background: white;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 8px;
  margin: 6px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}
#contactForm button {
  background: linear-gradient(120deg, #1a1a1a, #004f55);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
}
#contactForm button:hover {
  background: linear-gradient(-120deg, #1a1a1a, #004f55);
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal {
  background: #4d0b0b00;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  padding: 0px;
  position: relative;
  z-index: 9999;
}

.close-btn {
  color: #0c0c0c;
  position: absolute;
  top: 25px;
  right: 12px;
  background: none;
  border: none;
  font-size: 25px;
  cursor: pointer;
}
