body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  height: 100vh;
  background: url('/reception-bg.png') no-repeat center center fixed;
  background-size: cover;
  overflow: hidden;
}

/* HERO SECTION */
#hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
  padding: 20px;
  max-width: 700px;
  text-shadow: 1px 1px 8px #000000b0;
  font-family: 'Segoe UI', sans-serif;
}

#hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #d63a3a; /* same as chatbot title */
}

#hero-text h1 span {
  color: #fff; /* Highlight part */
}

#hero-text p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #ffffff;
}



/* 🔘 Floating Enquiry Button */
.chat-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: white;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  padding: 8px;
  width: 180px;  /* 4x wider */
  height: 220px; /* 4x taller */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.chat-label {
  font-size: 16px;
  font-weight: bold;
  color: #c0392b;
  margin-top: -4px;
}

/* 💬 Modal Chat Window */
.chat-modal {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 1001;
}

.chat-modal.hidden {
  display: none;
}

.chat-container {
  width: 400px;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #c0392b;
  color: white;
  padding: 10px;
  font-size: 16px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.close-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

.chat-box {
  height: 360px;
  overflow-y: auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.user-message, .bot-message {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  font-size: 15px;
}

.user-message {
  align-self: flex-end;
  background: #dff9fb;
}

.bot-message {
  align-self: flex-start;
  background: #f8d7da;
}

form {
  display: flex;
  padding: 10px;
  border-top: 1px solid #eee;
}

input[type="text"] {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

button {
  padding: 10px 16px;
  background: #c0392b;
  color: white;
  border: none;
  border-radius: 8px;
  margin-left: 8px;
  cursor: pointer;
  font-size: 15px;
}

.typing {
  display: inline-block;
  padding-left: 8px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%   { opacity: 0.2; }
  50%  { opacity: 1; }
  100% { opacity: 0.2; }
}

.suggestions {
  display: flex;
  gap: 8px;
  padding: 10px;
  justify-content: center;
}

.suggestions button {
  background: #c0392b;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.suggestions button:hover {
  background: #a83224;
}
