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
  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Calibri", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  background: #f7f7f7;
}

/* Toggle Button */
.chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
}

.chatbot-toggle:active {
  transform: scale(0.95);
}

.chatbot-toggle.hidden {
  display: none;
}

/* WhatsApp Widget - Inside Chat Input */
.whatsapp-widget {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-widget:hover {
  background: linear-gradient(135deg, #20ba5a 0%, #1da851 100%);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-widget:active {
  transform: scale(0.95);
}

.whatsapp-widget svg {
  width: 20px;
  height: 20px;
}

/* Chatbot Container */
.chatbot-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 380px;
  height: 550px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  animation: slideInUp 0.3s ease-out;
  overflow: hidden;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chatbot-container.hidden {
  display: none;
}

/* Header */
.chatbot-header {
  background: #ffffff;
  color: #511d53;
  padding: 16px;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bot-icon-container {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bot-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  /* Background removal techniques */
  mix-blend-mode: multiply;
  filter: contrast(1.1);
}

/* Advanced white background removal for logo */
.bot-icon[src*="logo"] {
  background: transparent;
  mix-blend-mode: normal;
  /* Try to remove white background */
  filter: contrast(1.2) brightness(1.1);
  /* Alternative: use blend mode to hide white */
  mix-blend-mode: darken;
}

/* If blend mode doesn't work, try this */
.bot-icon[src*="logo"]:not([src=""]) {
  /* Remove white pixels using CSS blend mode */
  background-blend-mode: multiply;
}

.bot-icon-fallback {
  font-size: 32px;
  display: block;
}

.chatbot-header h3 {
  font-size: 16px;
  margin: 0;
}

.feedback-btn {
  background: transparent;
  border: none;
  color: #511d53;
  font-size: 18px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  transition: background 0.2s;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback-btn:hover {
  background: rgba(81, 29, 83, 0.08);
  transform: scale(1.1);
}

.status {
  font-size: 12px;
  opacity: 0.9;
  color: #511d53;
}

.close-btn {
  background: transparent;
  border: none;
  color: #511d53;
  font-size: 24px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  transition: background 0.2s;
}

.close-btn:hover {
  background: rgba(81, 29, 83, 0.08);
}

/* Messages Area */
.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #f7f7f7;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

/* Message */
.message {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.avatar {
  width: 32px;
  height: 32px;
  font-size: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Background removal techniques */
  mix-blend-mode: multiply;
  filter: contrast(1.1);
  display: block;
}

/* Better background removal for logo images */
.avatar-img[src*="logo"],
.avatar-img[src*="Logo"] {
  background: transparent;
  /* Remove white background using blend mode */
  mix-blend-mode: darken;
  filter: contrast(1.2) brightness(1.1);
}

/* Alternative background removal technique */
.avatar-img[src*="logo"]:not([src=""]),
.avatar-img[src*="Logo"]:not([src=""]) {
  background-blend-mode: multiply;
}

.avatar-fallback {
  font-size: 24px;
  display: none;
}

.bubble {
  background: #f5eaf4;
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 70%;
  line-height: 1.5;
  color: #511d53;
}

.bubble p,
.bubble div {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.bubble div {
  margin-bottom: 8px;
}

.bubble div:last-child {
  margin-bottom: 0;
}

/* User Message */
.user-message {
  flex-direction: row-reverse;
}

.user-message .bubble {
  background: #d6a3ff;
  color: #511d53;
}

.user-message .avatar::before {
  content: "👤";
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  gap: 8px;
  padding: 0 20px 10px;
  background: #f9fafb;
}

.typing-indicator.hidden {
  display: none;
}

.typing-dots {
  background: #e5e7eb;
  padding: 10px 14px;
  border-radius: 12px;
  display: flex;
  gap: 4px;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  background: #9ca3af;
  border-radius: 50%;
  animation: bounce 1.4s infinite;
}

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

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

@keyframes bounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
}

/* Input Area */
.chat-input-area {
  padding: 16px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 8px;
  align-items: center;
  background: #ffffff;
}

#user-input {
  flex: 1;
  padding: 10px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}

#user-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#send-btn {
  width: 40px;
  height: 40px;
  background: #50174a;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(80, 23, 74, 0.3);
}

#send-btn:hover {
  background: #3f123b;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

#send-btn:active {
  transform: scale(0.95);
}

#send-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Suggested Questions */
.suggested-questions {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.suggested-question {
  background: #d6a3ff;
  border: 1px solid rgba(80, 23, 74, 0.3);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  line-height: 1.5;
  font-weight: 500;
}

.suggested-question:hover {
  background: #c489f5;
  color: #2d0f2b;
  border-color: #50174a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(80, 23, 74, 0.25);
}

/* Quick Reply Buttons */
.quick-replies {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-reply-btn {
  background: #d6a3ff;
  border: 2px solid rgba(80, 23, 74, 0.3);
  border-radius: 20px;
  padding: 12px 18px;
  font-size: 14px;
  color: #511d53;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  font-weight: 500;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Special styling for time slot buttons */
.time-slot-btn {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-color: #0ea5e9;
  color: #0369a1;
  font-weight: 600;
  padding: 14px 20px;
  font-size: 15px;
}

.time-slot-btn:hover {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: white;
  border-color: #0284c7;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 16px rgba(14, 165, 233, 0.4);
}

.time-slot-btn:active {
  transform: translateY(0) scale(1);
}

/* Special styling for "Schedule Discovery Call" button */
.schedule-call-btn {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  color: white !important;
  border-color: #1d4ed8 !important;
}

.schedule-call-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
  transform: translateY(-2px) scale(1.02);
}

/* Special styling for "Other" time option button */
.other-time-option-btn {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
  color: #475569 !important;
  border-color: #cbd5e1 !important;
  border-style: dashed !important;
}

.other-time-option-btn:hover {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%) !important;
  color: #334155 !important;
  border-color: #94a3b8 !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 12px rgba(148, 163, 184, 0.3);
}

.quick-reply-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.quick-reply-btn:hover {
  background: #c489f5;
  color: #2d0f2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(80, 23, 74, 0.35);
  border-color: #50174a;
}

.quick-reply-btn:hover::before {
  width: 300px;
  height: 300px;
}

.quick-reply-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(80, 23, 74, 0.3);
}

/* Calendly Integration Styles */
.calendly-suggestion {
  margin-top: 8px;
}

.calendly-bubble {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: 2px solid #1d4ed8;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.calendly-suggestion-content h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
}

.calendly-suggestion-content p {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height: 1.4;
}

.calendly-inline-widget {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Calendly Overlay */
.calendly-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.calendly-overlay.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.calendly-modal {
  background: white;
  border-radius: 16px;
  width: 95%;
  max-width: 1000px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calendly-header {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calendly-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.calendly-header h3::before {
  content: "📅";
  font-size: 24px;
}

.close-calendly {
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-calendly:hover {
  background: rgba(255, 255, 255, 0.1);
}

.calendly-content {
  padding: 0;
  flex: 1;
  min-height: 650px;
  overflow: hidden;
  background: #ffffff;
  position: relative;
}

.calendly-widget {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0 0 16px 16px;
}

/* Loading state for Calendly */
.calendly-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}

.calendly-content.loading::before {
  opacity: 1;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* AI Disclaimer Banner - Inside Chat */
.disclaimer-banner {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #fbbf24;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  animation: slideDown 0.3s ease;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
}

.disclaimer-banner.hidden {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.disclaimer-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.disclaimer-icon-container {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.disclaimer-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  /* Background removal techniques */
  mix-blend-mode: multiply;
  filter: contrast(1.1);
}

.disclaimer-icon[src*="logo"] {
  background: transparent;
  /* Remove white background */
  mix-blend-mode: darken;
  filter: contrast(1.2) brightness(1.1);
}

.disclaimer-icon[src*="logo"]:not([src=""]) {
  background-blend-mode: multiply;
}

.disclaimer-icon-fallback {
  font-size: 20px;
  display: none;
}

.disclaimer-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  color: #92400e;
}

.disclaimer-text strong {
  color: #78350f;
}

.close-disclaimer-btn {
  background: transparent;
  border: none;
  color: #92400e;
  font-size: 18px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  transition: background 0.2s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.close-disclaimer-btn:hover {
  background: rgba(146, 64, 14, 0.1);
}

.btn-primary {
  padding: 12px 24px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.btn-primary:hover:not(:disabled) {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.btn-icon {
  font-size: 18px;
}

/* Email Collection Modal */
.email-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.email-modal.hidden {
  display: none;
}

.email-modal-content {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease;
}

.email-modal-header {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 24px;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.email-header-icon {
  font-size: 32px;
  background: rgba(255, 255, 255, 0.2);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-modal-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.email-header-subtitle {
  margin: 4px 0 0 0;
  font-size: 14px;
  opacity: 0.9;
  font-weight: 400;
}

.close-email-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-email-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.email-modal-body {
  padding: 24px;
}

.email-benefits {
  margin-bottom: 24px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 12px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #374151;
  font-size: 14px;
}

.benefit-item:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
}

.benefit-icon {
  font-size: 20px;
  width: 32px;
  text-align: center;
}

.email-input-wrapper {
  margin-bottom: 16px;
}

.email-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}

.email-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.2s;
  box-sizing: border-box;
}

.email-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.email-input.error {
  border-color: #ef4444;
  animation: shake 0.3s;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}

.email-disclaimer {
  font-size: 12px;
  color: #6b7280;
  font-style: italic;
}

.email-modal-footer {
  padding: 20px 24px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.btn-secondary {
  padding: 12px 24px;
  background: #f3f4f6;
  color: #374151;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

/* Thank You Modal */
.thankyou-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10003;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.thankyou-modal.hidden {
  display: none;
}

.thankyou-content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease;
}

.thankyou-icon {
  font-size: 64px;
  margin-bottom: 20px;
  animation: scaleIn 0.5s ease;
}

/* Feedback Modal */
.feedback-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10004;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.feedback-modal.hidden {
  display: none;
}

.feedback-content {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease;
}

.feedback-header {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 20px 24px;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feedback-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.close-feedback-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s;
}

.close-feedback-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.feedback-body {
  padding: 24px;
}

.feedback-question {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 20px;
  text-align: center;
}

.feedback-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.feedback-modal .feedback-btn {
  flex: 1;
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  width: auto;
  height: auto;
  margin-right: 0;
}

.feedback-modal .feedback-btn:hover {
  border-color: #2563eb;
  background: #f0f7ff;
  transform: translateY(-2px);
}

.feedback-modal .feedback-btn.selected {
  border-color: #2563eb;
  background: #eff6ff;
  color: #2563eb;
}

.feedback-modal .feedback-helpful.selected {
  border-color: #10b981;
  background: #ecfdf5;
  color: #10b981;
}

.feedback-modal .feedback-not-helpful.selected {
  border-color: #ef4444;
  background: #fef2f2;
  color: #ef4444;
}

.feedback-icon {
  font-size: 32px;
}

.feedback-comment-section {
  margin-top: 20px;
  animation: slideDown 0.3s ease;
}

.feedback-comment-section.hidden {
  display: none;
}

.feedback-comment-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.feedback-comment {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  margin-bottom: 12px;
  min-height: 100px;
}

.feedback-comment:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.thankyou-content h3 {
  margin: 0 0 12px 0;
  color: #2563eb;
  font-size: 24px;
}

.thankyou-content p {
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .chatbot-container {
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    border-radius: 0;
  }

  .calendly-modal {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .calendly-content {
    min-height: calc(100vh - 60px);
    height: calc(100vh - 60px);
  }

  .email-modal-content {
    width: 95%;
    max-width: none;
  }
}
