
:root {
  --accent: #e0b06a;
  --contrast: #e4e4e4;
  --bg: #0a0b0d;
}
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body {
  margin: 0;
  font-family: "Source Sans 3", "Noto Sans Arabic", system-ui, sans-serif;
  background: #000;
  color: var(--contrast);
}
.lang-ar body, html[lang="ar"] body { font-family: "Noto Sans Arabic", "Source Sans 3", sans-serif; }
.site-header { padding: 0; }
.site-logo img { width: 100%; height: auto; display: block; }
.main-navigation ul { list-style: none; margin: 0; padding: 0; }
.main-navigation a { text-decoration: none; }
.lang-switcher { display: flex; gap: 0; }
.lang-switcher a { opacity: 0.85; }
.lang-switcher a.is-active { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.entry-content { padding-bottom: 80px; }
.site-info { display: none; }
@media (max-width: 900px) {
  .main-navigation .main-nav > ul { flex-wrap: wrap !important; }
}

/* Menü: başlık aralığı eski, üst-alt boşluk biraz fazla */
@media (min-width: 769px) {
  .main-navigation .main-nav > ul {
    justify-content: center !important;
    gap: 2px !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .main-navigation .main-nav ul li a {
    display: inline-block !important;
    padding: 12px 16px !important;
    box-sizing: border-box !important;
  }
  .main-navigation .main-nav ul li.lang-item a {
    padding: 12px 10px !important;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .main-navigation .main-nav ul li a {
    padding: 12px 12px !important;
  }
  .main-navigation .main-nav ul li.lang-item a {
    padding: 12px 8px !important;
  }
}


.fr-static-form {
  max-width: 560px;
  margin: 40px auto;
  padding: 28px;
  border: 1px solid #e0b06a;
  border-radius: 16px;
  background: rgba(0,0,0,0.45);
}
.fr-static-form-title {
  color: #e0b06a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 20px;
  text-align: center;
}
.fr-static-form label {
  display: block;
  color: #e4e4e4;
  font-size: 14px;
  margin-bottom: 14px;
}
.fr-static-form input,
.fr-static-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(224,176,106,0.45);
  border-radius: 8px;
  background: rgba(10,11,13,0.85);
  color: #fff;
  font: inherit;
}
.fr-static-form button {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid #e0b06a;
  border-radius: 8px;
  background: transparent;
  color: #e0b06a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
}
.fr-static-form button:hover {
  background: #e0b06a;
  color: #111;
}
.fr-static-form-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(228,228,228,0.75);
  text-align: center;
}
.fr-static-form-note a { color: #e0b06a; }

#frekans-chat-btn {
  position: fixed; bottom: 20px; right: 20px;
  background: #d4af37; color: #000; border: none;
  border-radius: 50%; width: 60px; height: 60px;
  font-size: 24px; cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
#frekans-chat-window {
  position: fixed; bottom: 90px; right: 20px;
  width: 350px; max-width: 90vw; height: 450px;
  background: #111; border: 1px solid #d4af37;
  border-radius: 10px; display: none; flex-direction: column;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5); z-index: 9999; overflow: hidden;
}
#frekans-chat-header {
  background: #d4af37; color: #000; padding: 12px 15px;
  font-weight: bold; display: flex; align-items: center; justify-content: space-between;
}
#frekans-chat-title { flex: 1; text-align: center; }
#frekans-chat-clear {
  background: none; border: none; cursor: pointer;
  font-size: 15px; padding: 2px 6px; border-radius: 4px;
  color: rgba(0,0,0,0.45); line-height: 1; flex-shrink: 0;
}
#frekans-chat-clear:hover { background: rgba(0,0,0,0.12); color: #000; }
#frekans-chat-body {
  flex: 1; padding: 15px; overflow-y: auto;
  color: #fff; font-size: 14px;
}
.ai-msg {
  background: #222; border-left: 3px solid #d4af37;
  padding: 10px; margin-bottom: 10px; border-radius: 4px;
  line-height: 1.6; word-wrap: break-word;
}
.user-msg {
  background: #333; padding: 10px; margin-bottom: 10px;
  border-radius: 4px; color: #d4af37;
  line-height: 1.6; word-wrap: break-word;
}
#frekans-chat-input-area { display: flex; border-top: 1px solid #333; }
#frekans-chat-input {
  flex: 1; padding: 12px; background: #000;
  color: #fff; border: none; outline: none;
}
#frekans-chat-send {
  background: #d4af37; color: #000; border: none;
  padding: 0 20px; cursor: pointer; font-weight: bold;
}
#frekans-chat-send:disabled { background: #555; cursor: not-allowed; }
