.elementor-331 .elementor-element.elementor-element-511cb0c{--display:flex;}.elementor-331 .elementor-element.elementor-element-4ffe750{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-8ab2789 *//* CSS Reset ve temel stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8fafc;
}

/* Ana website header stili */
.main-website-header-navigation-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.main-website-header-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.main-website-primary-title-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.main-website-subtitle-description {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Ana içerik alanı */
.main-website-content-display-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
  min-height: 60vh;
}

.main-website-introduction-content-section {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.main-website-content-wrapper-container {
  max-width: 800px;
  margin: 0 auto;
}

.main-website-section-title-heading {
  font-size: 2rem;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.main-website-paragraph-text-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 1rem;
}

/* Footer stili */
.main-website-footer-information-section {
  background-color: #2d3748;
  color: white;
  padding: 2rem 0;
  text-align: center;
  margin-top: 3rem;
}

.main-website-footer-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.main-website-footer-copyright-text {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Chatbot floating activation button */
.chatbot-floating-activation-trigger-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.chatbot-floating-activation-trigger-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.chatbot-floating-activation-trigger-button:active {
  transform: translateY(0);
}

.chatbot-activation-button-icon-svg {
  width: 28px;
  height: 28px;
}

/* Chatbot modal overlay */
.chatbot-modal-dialog-overlay-background-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1001;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.chatbot-modal-dialog-content-wrapper-card {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  height: 85vh;
  max-height: 700px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  animation: chatbotModalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes chatbotModalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Chatbot header */
.chatbot-modal-dialog-header-section-bar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-modal-dialog-title-heading-text {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.chatbot-modal-dialog-close-control-button {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.chatbot-modal-dialog-close-control-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Chatbot body content area */
.chatbot-modal-dialog-body-content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-messages-display-scrollable-container {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  background-color: #f7fafc;
}

/* Mesaj stilleri */
.chatbot-initial-welcome-message-container,
.chatbot-message-item-wrapper-container {
  margin-bottom: 1.5rem;
}

.chatbot-user-message-bubble-wrapper {
  display: flex;
  justify-content: flex-end;
}

.chatbot-ai-message-bubble-wrapper {
  display: flex;
  justify-content: flex-start;
}

.chatbot-user-sent-message-bubble-style {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.875rem 1.25rem;
  border-radius: 18px 18px 4px 18px;
  max-width: 80%;
  word-wrap: break-word;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.chatbot-ai-generated-message-bubble-style {
  background: white;
  color: #2d3748;
  padding: 0.875rem 1.25rem;
  border-radius: 18px 18px 18px 4px;
  max-width: 80%;
  word-wrap: break-word;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

/* Typing indicator */
.chatbot-typing-status-indicator-container {
  padding: 0 1.5rem 1rem;
  background-color: #f7fafc;
}

.chatbot-typing-indicator-message-bubble {
  background: white;
  padding: 0.875rem 1.25rem;
  border-radius: 18px 18px 18px 4px;
  max-width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.chatbot-typing-indicator-text-content {
  color: #718096;
  font-size: 0.9rem;
}

.chatbot-typing-animation-dots-container {
  display: flex;
  gap: 0.25rem;
}

.chatbot-typing-dot-animation {
  width: 6px;
  height: 6px;
  background-color: #cbd5e0;
  border-radius: 50%;
  animation: chatbotTypingDotBounce 1.4s infinite ease-in-out;
}

.chatbot-typing-dot-animation:nth-child(1) {
  animation-delay: -0.32s;
}

.chatbot-typing-dot-animation:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes chatbotTypingDotBounce {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Error message */
.chatbot-error-message-display-container {
  padding: 0 1.5rem 1rem;
  background-color: #f7fafc;
}

.chatbot-error-message-content-wrapper {
  background-color: #fed7d7;
  color: #c53030;
  padding: 0.875rem 1.25rem;
  border-radius: 8px;
  border-left: 4px solid #e53e3e;
  font-size: 0.9rem;
}

/* Input form section */
.chatbot-modal-dialog-footer-input-section {
  border-top: 1px solid #e2e8f0;
  background: white;
  padding: 1.25rem;
}

.chatbot-message-input-form-container {
  width: 100%;
}

.chatbot-input-field-wrapper-container {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}

.chatbot-user-message-text-input-field {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
  min-height: 44px;
  max-height: 120px;
}

.chatbot-user-message-text-input-field:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.chatbot-send-message-submission-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  padding: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  min-width: 44px;
  height: 44px;
}

.chatbot-send-message-submission-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.chatbot-send-message-submission-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.chatbot-send-button-icon-svg {
  width: 20px;
  height: 20px;
}

/* Mobil responsive tasarım */
@media (max-width: 768px) {
  .main-website-primary-title-heading {
    font-size: 2rem;
  }

  .main-website-subtitle-description {
    font-size: 1rem;
  }

  .main-website-content-display-area {
    padding: 2rem 1rem;
  }

  .main-website-introduction-content-section {
    padding: 1.5rem;
  }

  .main-website-section-title-heading {
    font-size: 1.5rem;
  }

  .chatbot-floating-activation-trigger-button {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }

  .chatbot-activation-button-icon-svg {
    width: 24px;
    height: 24px;
  }

  .chatbot-modal-dialog-overlay-background-container {
    padding: 0.5rem;
  }

  .chatbot-modal-dialog-content-wrapper-card {
    height: 70vh;
    max-height: none;
    border-radius: 12px;
  }

  .chatbot-modal-dialog-header-section-bar {
    padding: 1.25rem;
  }

  .chatbot-modal-dialog-title-heading-text {
    font-size: 1.1rem;
  }

  .chatbot-messages-display-scrollable-container {
    padding: 1rem;
  }

  .chatbot-modal-dialog-footer-input-section {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .chatbot-user-sent-message-bubble-style,
  .chatbot-ai-generated-message-bubble-style {
    max-width: 90%;
    font-size: 0.9rem;
  }

  .chatbot-input-field-wrapper-container {
    gap: 0.5rem;
  }

  .chatbot-user-message-text-input-field {
    font-size: 0.9rem;
  }
}

/* Scrollbar stilleri */
.chatbot-messages-display-scrollable-container::-webkit-scrollbar {
  width: 6px;
}

.chatbot-messages-display-scrollable-container::-webkit-scrollbar-track {
  background: #f1f5f9;
}

.chatbot-messages-display-scrollable-container::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 3px;
}

.chatbot-messages-display-scrollable-container::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}/* End custom CSS */