.main-content {
  padding: 20px;
  text-align: center;
  color: white;
  margin-top: 50px;
}

.main-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.main-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  background: #25d366 !important;
  color: white !important;
  border-radius: 50% !important;
  text-align: center !important;
  font-size: 24px !important;
  cursor: pointer !important;
  z-index: 999999 !important;
  width: 60px !important;
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  text-decoration: none !important;
  outline: none !important;
  box-sizing: border-box !important;
}

.whatsapp-float:hover {
  background: #128c7e !important;
  transform: scale(1.1) !important;
  color: white !important;
}

.whatsapp-float svg {
  fill: white !important;
  color: white !important;
  stroke: none !important;
}

.whatsapp-float svg path {
  fill: white !important;
  color: white !important;
  stroke: none !important;
}

/* Chat Window */
.chat-window {
  position: fixed !important;
  bottom: 90px !important;
  right: 20px !important;
  width: 350px;
  height: 500px;
  background: white !important;
  border-radius: 10px !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
  display: none;
  flex-direction: column !important;
  z-index: 999998 !important;
  overflow: hidden !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  text-decoration: none !important;
  outline: none !important;
  box-sizing: border-box !important;
}

.chat-header {
  background: #075e54 !important;
  color: white !important;
  padding: 15px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin: 0 !important;
  border: none !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  box-sizing: border-box !important;
}

.chat-header h3 {
  margin: 0 !important;
  font-size: 16px !important;
  color: white !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-weight: normal !important;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.close-btn {
  background: none !important;
  border: none !important;
  color: white !important;
  font-size: 20px !important;
  cursor: pointer !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  text-decoration: none !important;
  outline: none !important;
  box-sizing: border-box !important;
}

.chat-messages {
  flex: 1 !important;
  padding: 20px !important;
  overflow-y: auto !important;
  background: #e5ddd5 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  margin: 0 !important;
  border: none !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  box-sizing: border-box !important;
}

.message {
  max-width: 90% !important;
  padding: 10px 15px !important;
  border-radius: 10px !important;
  word-wrap: break-word !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  border: none !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
}

.message.bot {
  background: white !important;
  align-self: flex-start !important;
  border-bottom-left-radius: 3px !important;
  color: #333 !important;
  margin-right: auto !important;
  margin-left: 0 !important;
}

.message.user {
  background: #dcf8c6 !important;
  align-self: flex-end !important;
  border-bottom-right-radius: 3px !important;
  color: #333 !important;
  margin-left: auto !important;
  margin-right: 0 !important;
}

.chat-input-area {
  padding: 15px !important;
  background: white !important;
  border-top: 1px solid #ddd !important;
  margin: 0 !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  box-sizing: border-box !important;
}

.form-group {
  margin-bottom: 15px !important;
  position: relative !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  box-sizing: border-box !important;
}

.form-group label {
  display: block !important;
  margin-bottom: 5px !important;
  font-weight: 500 !important;
  color: #333 !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 14px !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
}

.form-group input,
.form-group select {
  width: 100% !important;
  padding: 10px !important;
  border: 1px solid #ddd !important;
  border-radius: 5px !important;
  font-size: 14px !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  background: white !important;
  color: #333 !important;
  margin: 0 !important;
  text-decoration: none !important;
  outline: none !important;
  box-sizing: border-box !important;
}

.form-group input:focus,
.form-group select:focus {
  outline: none !important;
  border-color: #25d366 !important;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.1) !important;
}

.input-container {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  box-sizing: border-box !important;
}

.input-container input,
.input-container select {
  flex: 1 !important;
  padding: 10px !important;
  border: 1px solid #ddd !important;
  border-radius: 5px !important;
  font-size: 14px !important;
  margin-right: 10px !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  background: white !important;
  color: #333 !important;
  text-decoration: none !important;
  outline: none !important;
  box-sizing: border-box !important;
}

.input-container input:focus,
.input-container select:focus {
  outline: none !important;
  border-color: #25d366 !important;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.1) !important;
}

.send-icon {
  min-width: 40px !important;
  width: 40px !important;
  height: 40px !important;
  background: #25d366 !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.3s ease !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  text-decoration: none !important;
  outline: none !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
}

.send-icon:hover {
  background: #128c7e !important;
  color: white !important;
}

.send-icon:disabled {
  background: #ccc !important;
  cursor: not-allowed !important;
  color: #666 !important;
}

.send-icon svg {
  fill: white !important;
  color: white !important;
  width: 18px !important;
  height: 18px !important;
  background: transparent !important;
}

.send-icon svg path {
  fill: white !important;
  color: white !important;
}

.btn {
  background: #25d366 !important;
  color: white !important;
  border: none !important;
  padding: 12px 20px !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  width: 100% !important;
  transition: background 0.3s ease !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  margin: 0 !important;
  text-decoration: none !important;
  outline: none !important;
  box-sizing: border-box !important;
  text-align: center !important;
  display: block !important;
}

.btn:hover {
  background: #128c7e !important;
  color: white !important;
}

.btn:disabled {
  background: #ccc !important;
  cursor: not-allowed !important;
  color: #666 !important;
}

.hidden {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 480px) {
  .chat-window {
    bottom: 0 !important;
    right: 0 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    /* Fallback for older browsers */
    height: 100dvh !important;
    /* Dynamic viewport height - accounts for browser UI */
    border-radius: 0 !important;
  }

  .whatsapp-float {
    bottom: 15px !important;
    right: 15px !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
  }

  .whatsapp-float.hidden-mobile {
    display: none !important;
  }

  .main-content h1 {
    font-size: 2rem !important;
  }

  .main-content p {
    font-size: 1rem !important;
  }
}

.typing-indicator {
  display: none !important;
  align-self: flex-start !important;
  background: white !important;
  padding: 10px 15px !important;
  border-radius: 10px !important;
  border-bottom-left-radius: 3px !important;
  max-width: 80% !important;
  margin: 0 !important;
  border: none !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  box-sizing: border-box !important;
}

.typing-dots {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

.typing-dots span {
  display: inline-block !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: #999 !important;
  margin: 0 2px !important;
  animation: typing 1.4s infinite ease-in-out !important;
  padding: 0 !important;
  border: none !important;
  box-sizing: border-box !important;
}

.typing-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typing {
  0%,
  80%,
  100% {
    transform: scale(0.8) !important;
    opacity: 0.5 !important;
  }

  40% {
    transform: scale(1) !important;
    opacity: 1 !important;
  }
}

/* Re-apply essential styles after reset */
.whatsapp-float {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  background: #25d366 !important;
  color: white !important;
  border-radius: 50% !important;
  width: 60px !important;
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 999999 !important;
  cursor: pointer !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
}

.whatsapp-float svg {
  fill: white !important;
  color: white !important;
  stroke: none !important;
}

.whatsapp-float svg path {
  fill: white !important;
  color: white !important;
  stroke: none !important;
}

.chat-window {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  height: 500px;
  background: white !important;
  border-radius: 10px !important;
  display: none;
  flex-direction: column !important;
  z-index: 999998 !important;
  overflow: hidden !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
}

/* Prevent interference with Elementor elements - No styles needed, just a comment */