/* ========================================= GENEL AYARLAR & RESET
========================================= */
:root {
  --primary-color: #e65100; /* Ana Turuncu */
  --text-color: #2c3e50; /* Koyu Gri Metin */
  --bg-light: #f8f9fa; /* Açık Arka Plan */
  --white: #ffffff;
  --border-color: #eeeeee;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ana-turuncu: #ff9800; /* Enerjik ama göz yormayan turuncu */
  --koyu-fume: #263238; /* Başlıklar için elit koyu gri */
  --beyaz-saf: #ffffff;
  --beyaz-kirli: #f9f9f9; /* Arka plan için */
  --primary: #1e293b;
  --accent-orange: #f1a918;
  --accent-gradient: linear-gradient(135deg, #f1a918 0%, #e65100 100%);
  --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  --text-dark: #0f172a;
  --text-gray: #475569;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  background: var(--bg-gradient) !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh;
  color: var(--text-dark);
  overflow-x: hidden !important;
}

/* =========================================
   FOOTER (Kusursuz Mobil Uyum)
   ========================================= */
.main-footer {
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 20px 0;
  margin-top: 50px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
  flex-wrap: wrap; /* Mobilde alt alta geçsin */
}

.footer-left {
  flex: 1;
  min-width: 300px;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  margin-left: 15px;
}

.brand-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-color);
}

.brand-year {
  font-size: 12px;
  color: #999;
}

/* SAĞ TARAFI DÜZENLEYEN BLOK */
.footer-right {
  flex: 2;
  display: flex;
  justify-content: flex-end; /* Sağa yasla */
  gap: 80px; /* Sütunlar arası boşluk */
  flex-wrap: wrap;
}
/* Link Grupları (Sütunlar) */
.footer-links-group {
  min-width: 150px;
  text-align: left; /* Yazıları sola hizala */
}
/* Başlıklar */
.footer-links-group h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-color); /* Koyu gri */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}
/* Başlık Altındaki Turuncu Çizgi */
.footer-links-group h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color); /* Turuncu */
  border-radius: 2px;
}
/* LİSTE NOKTALARINI KALDIRAN KOD (Kritik Kısım) */
.footer-links-group ul {
  list-style: none !important; /* Noktaları kesin olarak kaldırır */
  padding: 0 !important;
  margin: 0 !important;
}
.footer-links-group ul li {
  margin-bottom: 10px;
}
/* LİNKLERİN GÖRÜNÜMÜ */
.footer-links-group ul li a {
  text-decoration: none !important; /* Alt çizgiyi kaldırır */
  color: #555; /* Varsayılan koyu gri renk */
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}
/* Mouse ile üzerine gelince */
.footer-links-group ul li a:hover {
  color: var(--primary-color); /* Turuncu olur */
  transform: translateX(5px); /* Hafif sağa kayar */
}
/* Mobil Footer Düzeni */
@media (max-width: 768px) {
  .main-footer {
    padding: 40px 0 20px 0;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-left {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo-box {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-right {
    justify-content: center;
    width: 100%;
    gap: 40px;
  }

  .footer-links-group {
    min-width: 140px;
  }
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  font-size: 12px;
  color: #aaa;
}

/* ANASAYFA İÇERİKLERİ CSS */
/* GENEL AYARLAR (Eğer reset kodun yoksa kullanabilirsin) */
:root {

}
/* KART SEKSİYONU KONUMLANDIRMA */
.card-section {
  max-width: 1200px; /* İçerik çok yayılmasın */
  margin: 0 auto; /* Ortala */
  padding: 80px 20px; /* Üst-Alt boşluk, Yanlardan nefes payı */
}

/* 3x3 GRID SİSTEMİ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Eşit Sütun */
  gap: 30px; /* Kartlar arası boşluk */
}

/* KART TASARIMI */
.info-card {
  background: var(--beyaz-saf);
  border-radius: 20px; /* Modern yuvarlak köşeler */
  margin-bottom: 15px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  /* Elit görünümün sırrı: Hafif, yaygın gölge */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease; /* Tüm hareketler yumuşak olsun */
  border: 1px solid rgba(0, 0, 0, 0.03); /* Çok ince, hissedilmeyen çerçeve */
}

/* HOVER EFEKTİ (Yukarı Çıkış ve Gölge) */
.info-card:hover {
  transform: translateY(-10px); /* Kart yukarı süzülür */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); /* Gölge derinleşir */
}

/* Kartın Üstüne İnce Çizgi (Estetik Dokunuş) */
.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--ana-turuncu), #ffcc80);
  transform: scaleX(0); /* Başlangıçta gizli */
  transform-origin: left;
  transition: transform 0.4s ease;
}

.info-card:hover::before {
  transform: scaleX(1); /* Hover olunca çizgi gelir */
}

.card-content {
  display: flex;
  flex-direction: column;
  height: 100%; /* İçeriği dikeyde yayar */
}

/* BAŞLIK */
.card-title {
  font-size: 1.5rem;
  color: var(--koyu-fume);
  margin: 0 0 15px 0;
  font-weight: 700;
}

/* METİN */
.card-text {
  font-size: 0.95rem;
  color: #607d8b; /* Göz yormayan gri */
  line-height: 1.6; /* Okunabilirlik için satır aralığı */
  margin-bottom: 25px;
  flex-grow: 1; /* Butonu en alta itmek için alanı doldurur */
}

/* BUTON TASARIMI */
.card-btn {
  display: inline-block;
  padding: 12px 24px;
  color: var(--ana-turuncu);
  border: 2px solid var(--ana-turuncu);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  width: fit-content; /* Sadece yazı kadar yer kaplasın */
}

/* Buton Hover */
.card-btn:hover {
  background-color: var(--ana-turuncu);
  color: var(--beyaz-saf);
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

/* =========================================
   MEDIA QUERIES (KUSURSUZ MOBİL DENEYİM)
   ========================================= */

/* Tablet (2 Sütun) */
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 Sütuna düşür */
    gap: 20px;
  }
}

/* Telefon (1 Sütun) */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr; /* Tek sütun */
  }

  .card-section {
    padding: 40px 15px; /* Mobilde kenar boşluklarını azalt */
  }

  .info-card {
    padding: 25px;
  }

  /* Mobilde butonun daha kolay tıklanması için tam genişlik */
  .card-btn {
    display: block;
    width: 100%; /* Buton kartı kaplasın */
    box-sizing: border-box; /* Padding dahil hesaplama */
  }
}

/* // slider çevresi */
/* MEGA GRID & SLIDER YERLEŞİMİ */
.mega-grid-container {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 25px;
  max-width: 1350px;
  margin: 40px auto;
  padding: 0 20px;
}

.grid-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.grid-center {
  display: flex;
  flex-direction: column;
}

.main-slider {
    /* 1. CLS'Yİ YOK EDEN HAMLE (Yer Tutucu) */
    width: 100%;
    aspect-ratio: 20 / 8; /* Genişliğe göre yüksekliği otomatik oranlar */
    min-height: 400px;    /* Senin 400px standardını korur, altına düşürmez */
    
    /* 2. GÖRÜNÜM VE TASARIM */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    /* 3. PERFORMANS VE YÜKLENME EFEKTİ */
    background-color: #e2e8f0; /* Resim gelene kadar tatlı bir gri ton */
    contain: layout paint;     /* Tarayıcı bu alanı daha hızlı çizer */
}

/* 4. MOBİL UYUMU (Bunu eklemezsek mobilde çok ince kalabilir) */
@media screen and (max-width: 768px) {
    .main-slider {
        aspect-ratio: 16 / 10 !important; /* Mobilde daha kareye yakın olsun */
        min-height: 250px !important;
    }
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: white;
}

.horizontal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.special-card {
  background: linear-gradient(135deg, #e65100, #ff9800) !important;
  border: none !important;
}
.special-card h3,
.special-card p {
  color: white !important;
}
.special-card .card-btn {
  border-color: white !important;
  color: white !important;
}
/* Genel Buton Konteynırı */
.hesap-buton-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

/* Temel Buton Tasarımı */
.hesap-buton-container button {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

/* Hesapla Butonu (Mor Tema) */
.btn-mor {
  background-color: #6a1b9a;
  color: white;
  box-shadow: 0 4px 15px rgba(106, 27, 154, 0.2);
}

.btn-mor:hover {
  background-color: #8e24aa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 27, 154, 0.3);
}

/* Temizle Butonu (Gri) */
.btn-gri {
  background-color: #e2e8f0;
  color: #475569;
}

.btn-gri:hover {
  background-color: #cbd5e1;
}

/* yks sonuçlarının css leri  */
/* YKS SONUÇ KARTLARI STİLLERİ */
.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.result-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.result-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.result-icon .material-symbols-outlined {
  font-size: 32px;
  color: white;
}

/* YKS Özel Renkler */
.orange-grad {
  background: linear-gradient(135deg, #e65100, #ff9800);
}
.blue-grad {
  background: linear-gradient(135deg, #0d47a1, #2196f3);
}
.green-grad {
  background: linear-gradient(135deg, #1b5e20, #4caf50);
}
.purple-grad {
  background: linear-gradient(135deg, #4a148c, #9c27b0);
}
.red-grad {
  background: linear-gradient(135deg, #b71c1c, #f44336);
}

.result-content {
  flex: 1;
}

.result-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
  border-bottom: 1px dashed #e2e8f0;
  padding-bottom: 5px;
}

.value-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.val-ham,
.val-yer {
  font-size: 0.85rem;
  color: #64748b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.val-ham b,
.val-yer b {
  color: #1e293b;
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
}

.val-yer b {
  color: #e65100; /* Yerleştirme puanını turuncu yap */
}

/* Sıralama Tablosu Modernizasyon */
.siralama-tablo {
  border-radius: 10px;
  overflow: hidden;
}
.siralama-tablo th {
  padding: 15px;
  font-weight: 700;
}
.siralama-tablo td {
  padding: 12px;
  border-bottom: 1px solid #f1f5f9;
}
.siralama-tablo tr:hover {
  background-color: #f8fafc;
}

/* yeni sonuc ekranlarının media queryleri */
/* --- MOBİL VE TABLET UYUMLULUK (MEDIA QUERIES) --- */

/* 1. Tablet ve Küçük Ekranlı Dizüstü Cihazlar (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  .hesaplayici-container {
    max-width: 95% !important; /* Kenarlardan biraz boşluk bırakır */
    padding: 15px;
  }

  .result-grid {
    grid-template-columns: repeat(2, 1fr); /* Kartları yan yana 2'li yapar */
    gap: 15px;
  }
}

/* 2. Standart Mobil Cihazlar (max-width: 768px) */
@media screen and (max-width: 768px) {
  .result-grid {
    grid-template-columns: 1fr; /* Tüm kartları alt alta sıralar */
  }

  .result-card {
    padding: 15px; /* İç boşluğu biraz daraltır */
    gap: 12px;
  }

  .result-icon {
    width: 50px; /* İkon boyutunu mobilde küçültür */
    height: 50px;
  }

  .result-icon .material-symbols-outlined {
    font-size: 26px;
  }

  .result-value {
    font-size: 1.2rem; /* Puan yazı boyutunu dengeler */
  }
}

/* 3. Çok Küçük Ekranlı Cihazlar (max-width: 480px) */
@media screen and (max-width: 480px) {
  .baslik-mavi,
  .baslik-turuncu,
  .baslik-mor {
    font-size: 1.5rem !important; /* Başlığı mobilde okunabilir yapar */
    margin-bottom: 20px;
  }

  .info-card {
    padding: 15px !important;
  }

  .val-ham,
  .val-yer {
    flex-direction: row; /* Küçük ekranda yan yana kalmaya devam eder */
    justify-content: space-between;
    font-size: 0.8rem;
  }

  .val-ham b,
  .val-yer b {
    font-size: 1rem;
  }

  /* Sıralama tabloları için yatay kaydırma desteği */
  .siralama-tablo-konteyner {
    margin: 0 -10px; /* Tabloyu kenarlara biraz daha yaklaştırır */
    padding: 0 5px;
  }
}
/* index.html içinden aldığım css ler  */
/* --- GLOBAL SIFIRLAMA & AYARLAR --- */
/* --- MASAÜSTÜ GRID YAPISI --- */
.mega-grid-container {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 280px;
  gap: 25px;
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  align-items: start;
}

/* --- BUTON STİLLERİ --- */
.card-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #fff7ed;
  color: #d97706 !important;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #ffedd5;
  align-self: flex-start;
  cursor: pointer;
}

.card-btn:hover {
  background: var(--accent-gradient) !important;
  color: white !important;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(241, 169, 24, 0.4);
  transform: translateY(-2px);
}

/* --- KART STİLLERİ --- */
.info-card {
  background: white;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-orange);
  box-shadow: 0 15px 30px rgba(241, 169, 24, 0.1);
}
.card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.card-text {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 15px;
  line-height: 1.5;
}

/* --- ÖZEL KART (DUYURULAR) --- */
.special-card {
  background: var(--accent-gradient) !important;
  border: none !important;
  color: white !important;
}
.special-card .card-title,
.special-card .card-text {
  color: white !important;
}
.special-card .card-btn {
  background: white !important;
  color: #d97706 !important;
  border-color: white !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.special-card .card-btn:hover {
  background: #fff7ed !important;
  color: #c2410c !important;
  transform: translateY(-2px);
}



/* --- KÜÇÜK MOBİL EKRANLAR (< 480px) --- */
@media screen and (max-width: 480px) {
  /* Kutular tek sütuna düşsün, sıkışmasın */
  .boxes-grid {
    grid-template-columns: 1fr !important;
  }
}

/* seo yazıları css */
/* --- SEO BİLGİLENDİRME ALANLARI MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
  /* Üst SEO Alanı Düzenlemesi */
  .seo-intro {
    padding: 15px !important;
    margin-bottom: 20px !important;
  }
  .seo-intro h2 {
    font-size: 1.2rem !important;
    line-height: 1.4;
  }
  .seo-intro p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }

  /* Alt SEO Alanı (3 Kolonlu Yapı) Düzenlemesi */
  .seo-footer-content {
    padding: 20px !important;
    margin-top: 30px !important;
  }
  .seo-footer-content > div {
    grid-template-columns: 1fr !important; /* Kolonları alt alta sırala */
    gap: 20px !important;
  }
  .seo-block h3 {
    font-size: 1.1rem !important;
    padding-bottom: 5px !important;
  }
  .seo-block p {
    font-size: 0.85rem !important;
  }

  /* Etiketlerin (Hashtag) Mobilde Sığması */
  .seo-intro div[style*="flex"] {
    gap: 5px !important;
  }
  .seo-intro span[style*="padding"] {
    font-size: 0.7rem !important;
    padding: 4px 8px !important;
  }
}

/* Çok küçük telefonlar için ek düzeltme (Örn: iPhone SE) */
@media (max-width: 480px) {
  .page-title {
    font-size: 1.5rem !important;
  }
  .seo-intro h2 {
    font-size: 1.1rem !important;
  }
}

.mobile-close-area {
  margin-top: -20px;
}
/* --- TELEGRAM KARTI ÖZEL STİLLERİ --- */
.telegram-card {
  background: linear-gradient(135deg, #0088cc, #00a2ed) !important;
  border: none !important;
  color: white !important;
  margin-top: 50px; /* Hızlı erişim kartı ile aradaki boşluk */
}

.telegram-card .card-title,
.telegram-card .card-text {
  color: white !important;
}

.telegram-btn {
  background: white !important;
  color: #0088cc !important;
  border-color: white !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.telegram-btn:hover {
  background: #f0f8ff !important;
  color: #0077b5 !important;
  transform: translateY(-2px);
}

/* --- MOBİL SIRALAMA AYARI (Media Query) --- */
@media screen and (max-width: 1024px) {
  .mega-grid-container {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Sıralamayı yönetiyoruz */
  .grid-center {
    order: 1;
  }

  /* Telegram kartını Duyuruların üstüne taşımak için side-left içindeki bu kartı öne alıyoruz */
  .side-left {
    order: 2 !important;
    display: flex;
    flex-direction: column;
  }

  .telegram-card {
    order: -1; /* side-left içinde en üste çıkar */
    margin-top: 0;
    margin-bottom: 25px;
  }

  .quick-links-card {
    order: 2; /* Hızlı erişim en alta iner */
  }

  .side-right {
    order: 3;
  }
}

/* Motivasyon Kartı Tasarımı */
.motivasyon-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  padding: 20px 30px !important;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.motivasyon-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient); /* Sitedeki turuncu gradyan */
}

.quote-icon {
  font-size: 40px !important;
  color: var(--accent-orange);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.motivasyon-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.motivasyon-divider {
  width: 50px;
  height: 2px;
  background: #e2e8f0;
  margin: 20px auto;
}

.motivasyon-brand {
  font-size: 0.85rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobil Ayarı */
@media (max-width: 768px) {
  .motivasyon-text {
    font-size: 1.1rem;
  }
  .motivasyon-card {
    padding: 30px 20px !important;
  }
}

/* Robot Tanıtım Kartı Genel Yapısı */
.robot-promo-card {
  background: var(--accent-gradient) !important; /* Mevcut turuncu gradyanın */
  border: none !important;
  margin-bottom: 25px !important;
  padding: 25px 30px !important;
  color: white !important;
  box-shadow: 0 10px 25px rgba(230, 81, 0, 0.2) !important;
}

.robot-promo-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.promo-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: white !important;
}

.promo-desc {
  margin: 8px 0 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

/* Üstteki Küçük Rozet */
.badge-new {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 8px;
}

/* Buton Tasarımı */
.robot-promo-btn {
  background: white !important;
  color: var(--primary-color) !important; /* Turuncu metin */
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.robot-promo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: #fff7ed !important;
}

/* Mobil Düzenlemeleri */
@media (max-width: 768px) {
  .robot-promo-content {
    flex-direction: column;
    text-align: center;
  }
  .robot-promo-btn {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  /* Menü Ana Gövdesi */
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 100% !important;
    height: 100svh !important; /* Mobil tarayıcı barlarıyla uyumlu yükseklik */
    background-color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    
    /* İÇERİĞİ AŞAĞI KAYDIRDIK: Arama kutusu X'ten aşağıda başlasın */
    padding: 100px 20px 50px 20px !important; 
    
    transition: right 0.3s ease !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
  }

  /* Kapat Butonu (X) - Kesin Konumlandırma */
  .mobile-close-area {
    display: block !important;
    position: absolute !important;
    top: 20px !important;  /* Yukarıdan mesafe */
    right: 20px !important; /* Sağdan mesafe */
    z-index: 10001 !important; /* Arama kutusunun da üstünde olsun */
    margin: 0 !important;
  }
}
@media screen and (max-width: 1024px) {
  /* 1. Menü Ana Gövdesi: Flex-start ile yukarıdan dizilimi zorunlu kılıyoruz */
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 100% !important;
    height: 100svh !important;
    background-color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important; /* İÇERİĞİ YUKARIYA ÇİVİLER */
    
    /* Üstten 120px: X ve Search Bar için güvenli alan */
    /* Alttan 400px: Senin istediğin o devasa beyaz boşluk */
    padding: 80px 20px 200px 20px !important; 
    
    transition: right 0.3s ease !important;
    z-index: 9999 !important;
    overflow-y: auto !important; /* Kaydırmayı zorunlu yapar */
    -webkit-overflow-scrolling: touch;
  }

  /* 2. Kapat Butonu (X): Mevcut yerini korur */
  .mobile-close-area {
    display: block !important;
    position: absolute !important;
    /* top: 20px !important; */
    right: 20px !important;
    z-index: 10001 !important;
    margin: 0 !important;
  }


  /* 5. Alt Boşluğu Garantiye Almak İçin (Yedek İtici) */
  .nav-links::after {
    content: "" !important;
    display: block !important;
    width: 100% !important;
    flex-shrink: 0 !important;
  }
}

/* YORUM SİSTEMİ STİLLERİ */
.comments-section { max-width: 800px; margin: 60px auto 20px; font-family: 'Montserrat', sans-serif; }
.comments-title { border-bottom: 2px solid #f1f5f9; padding-bottom: 15px; margin-bottom: 30px; color: #1e293b; font-size: 1.5rem; }

.alert-error { background: #fee2e2; color: #b91c1c; padding: 15px; border-radius: 10px; margin-bottom: 20px; font-weight: 600; }
.alert-success { background: #dcfce7; color: #15803d; padding: 15px; border-radius: 10px; margin-bottom: 20px; font-weight: 600; }

.comment-form-box { background: #f8fafc; padding: 30px; border-radius: 16px; border: 1px solid #e2e8f0; margin-bottom: 40px; }
.comment-form-box h4 { margin-top: 0; color: #334155; margin-bottom: 20px; }

.comment-input { width: 100%; padding: 12px 15px; border: 1px solid #cbd5e1; border-radius: 10px; font-family: inherit; font-size: 14px; transition: 0.3s; }
.comment-input:focus { outline: none; border-color: #e65100; box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.1); background: white; }
.form-group { margin-bottom: 15px; }

.comment-btn { background: #1e293b; color: white; border: none; padding: 12px 30px; border-radius: 10px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.comment-btn:hover { background: #e65100; transform: translateY(-2px); }

.comment-item { display: flex; gap: 15px; margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid #f1f5f9; }
.comment-avatar { width: 50px; height: 50px; background: #e0f2fe; color: #0369a1; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; flex-shrink: 0; }
.comment-content { flex: 1; }
.comment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.comment-header strong { color: #1e293b; font-size: 16px; }
.comment-header span { color: #94a3b8; font-size: 12px; }
.no-comment { color: #94a3b8; font-style: italic; text-align: center; margin-top: 30px; }


/* Ana Panel */
.fixed-quick-menu {
    position: fixed;
    right: -240px; /* Dinamik gizleme */
    top: 50%;
    transform: translateY(-50%);
    width: 290px;
    background: #ffffff;
    border-radius: 35px 0 0 35px;
    box-shadow: -15px 0 50px rgba(0,0,0,0.12);
    z-index: 10000;
    display: flex;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.fixed-quick-menu:hover { right: 0; }

/* Sol Şerit (Trigger) */
.quick-access-trigger {
    width: 50px;
    background: #232d3b; /* Premium Koyu Gri */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px 0 0 35px;
    cursor: pointer;
}

.fixed-quick-menu:hover .quick-access-trigger span { transform: rotate(180deg); }

/* İçerik */
.quick-menu-inner { flex: 1; padding: 25px 0; }

.q-menu-header {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1px;
    padding: 0 20px 10px;
}

/* Linkler */
.q-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    text-decoration: none;
    transition: 0.3s;
}

.q-nav-link:hover { background: #f8fafc; }

.q-icon { color: #f97316; font-size: 22px; } /* Turuncu İkonlar */
.q-text { color: #1e293b; font-weight: 700; font-size: 14px; }

/* Sekme Tasarımı */
.q-tab-wrapper {
    display: flex;
    padding: 0 15px;
    margin: 15px 0;
    gap: 5px;
}

.q-tab-btn {
    flex: 1;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 7px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
}

.q-tab-btn.active { background: #f1f5f9; color: #1e293b; border-color: #cbd5e1; }

/* Sayaç Kartları */
.q-tab-content { display: none; }
.q-tab-content.active { display: block; }

.q-counter-card {
    background: #1e293b;
    margin: 5px 15px;
    padding: 10px;
    border-radius: 12px;
    color: white;
    text-align: center;
}

.q-counter-card small { font-size: 9px; opacity: 0.6; text-transform: uppercase; }
.q-counter-card div { font-weight: 800; color: #fbbf24; font-size: 15px; }
