/* ============================
   TEMEL AYARLAR
   ============================ */
body {
  margin: 0; /* Sayfa kenar boşluklarını sıfırlar */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; /* Varsayılan yazı tipi ailesi */
  background-color: #f9f9f9; /* Açık gri arka plan */
  color: #1a1a1a; /* Koyu metin rengi */
    padding-top: 60px; /* Header yüksekliğine göre ayarla */

  
}


/* ============================
   HEADER
   ============================ */
header {
  background-color: #860000; /* Kırmızı zemin rengi */
  color: #fff; /* Beyaz yazı rengi */
  padding: 9px 9px; /* İç boşluklar: üst-alt 12px, sağ-sol 24px */
  display: flex; /* Yanyana hizalama */
  justify-content: space-between; /* Elemanlar arası boşluk */
  align-items: center; /* Dikey ortalama */
  flex-wrap: wrap; /* Genişlik yetmezse alt satıra geçer */
  position: fixed;           /* Sabit konum */
  top: 0;                    /* Sayfanın en üstü */
  left: 0;                   /* Sayfanın solu */
  width: 100%;               /* Tam genişlik */
  z-index: 999;              /* Üstte görünsün */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Opsiyonel: gölge efekti */

}


.logo-title {
  display: flex; /* Logo ve yazıyı yanyana diz */
  align-items: center; /* Dikey ortalama */
  gap: 10px; /* Elemanlar arası boşluk */
}
.site-title {
  font-weight: bold; /* Kalın yazı */
  font-size: 16px; /* Yazı boyutu */
}


/* ============================
   NAVIGATION
   ============================ */
nav ul {
  list-style: none; /* Madde işaretlerini kaldır */
  display: flex; /* Yanyana diz */
  flex-wrap: wrap; /* Taşarsa alt satıra geçer */
  padding: 0;
  margin: 0;
}
nav ul li {
  position: relative; /* Alt menü için referans noktası */
  margin-right: 4px; /* Elemanlar arası boşluk */
}
nav ul li a {
  color: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
  text-decoration: none; /* Altı çizili olmasın */
  font-weight: 500; /* Orta kalınlıkta yazı */
  font-size: 15px; /* Menü yazıları biraz küçültüldü */
  padding: 5px 9px; /* Buton benzeri iç boşluk */
  display: inline-block;
  transition: transform 0.15s ease-in-out;
}
nav ul li a:hover {
  text-decoration: underline; /* Üzerine gelince altı çizili */
  transform: scale(1.1); /* %25 büyüme */
  font-weight: bold;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: auto;
}

#search-toggle {
  height: 25px;
  width: auto;
  cursor: pointer;
  margin-left: 3px;
  margin-right: 16px;
  padding: 1px;
  transition: transform 0.2s ease-in-out;
}

#search-toggle:hover {
  transform: scale(1.5); /* %25 büyütme */
}
#search-input {
  display: none;
  position: absolute;
  right: 0;
  top: 50px; /* Tepeden 50px aşağı */
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 8px;
  border: none; /* Kenar çizgisi kaldırıldı */
  outline: none;
  z-index: 999;
  width: 220px;
  background-color: white;
  color: black;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2); /* Derin gölge */
  transition: all 0.3s ease;
}

#search-input.show {
  display: block;
}

@media (max-width: 768px) {
  #search-input {
    width: 180px;
    top: 60px; /* Mobilde biraz daha aşağıya */
    right: 0;
  }



 header .logo-title a img[alt="FOKUS Logo"] {
    height: 22px;
  }



}






/* ============================
   DROPDOWN (ALT MENÜ)
   ============================ */
nav ul li.dropdown:hover > .submenu {
  display: block; /* Hover ile açılır */
}
nav ul li .submenu {
  display: none; /* Varsayılan olarak gizli */
  position: absolute; /* Üst menüye göre konumlanır */
  top: 100%; /* Ana menünün hemen altında başla */
  left: 0;
  background-color: #860000;
  min-width: 130px;
  z-index: 1000; /* Diğer öğelerin üzerinde */
  flex-direction: column;
  border-radius: 0 0 6px 6px; /* Alt kenarları yuvarla */
  box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* Hafif gölge */
}
nav ul li .submenu li a {
  color: #fff;
  padding: 10px 16px;
  font-family: 'IBM Plex Sans', sans-serif;
  display: block;
  font-size: 13px;
}
nav ul li .submenu li a:hover {
  background-color: #a03333; /* Üzerine gelince koyulaşır */
}


/* ============================
   RESPONSIVE MENU (Mobil için)
   ============================ */
#menu-toggle {
  font-size: 24px; /* Buton boyutu */
  background: none;
  margin-right: 25px;
  border: none;
  color: white;
  display: none; /* Masaüstünde gizli */
}
@media (max-width: 1100px) {
  #menu-toggle {
    display: block; /* Küçük ekranda göster */
  }
  nav ul {
    flex-direction: column; /* Dikey diz */
    display: none; /* Başta gizli */
    width: 100%;
    background-color: #860000;
  }
  nav ul li {
    margin: 0;
  }
  nav ul li a {
    padding: 12px;
    font-family: 'Inter', sans-serif;


    border-top: 1px solid #a03333;
  }
  nav ul.hidden {
    display: none;
  }
  nav ul:not(.hidden) {
    display: flex; /* Menü açıkken görünür */
  }
  nav ul li .submenu {
    box-shadow: none;
    display: none;
  }
  nav ul li.dropdown.open .submenu {
    display: flex;
  }
}



/* ============================
   HERO (Giriş Bölümü)
   ============================ */
.hero {
  background: linear-gradient(to bottom, #860000, #a03333);
  color: #fff;
  text-align: center;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin: 20px auto;
  width: 85%;
  height: auto;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}

.hero h1 {
  font-size: 23px;
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  margin-bottom: 2px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
}

@media (min-width: 600px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.hero-button-block {
  background-color: rgba(255, 255, 255, 0.07);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-button-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.2);
}

.hero-button-block .button {
  background-color: #ececec;
  color: #860000;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 12px;
  font-size: 16px;
  transition: transform 0.25s ease-in-out, background-color 0.25s;
}

.hero-button-block .button:hover {
  background-color: #ffffff;
  color: #500000;
  transform: scale(1.12); /* %25 büyüme */
}

.hero-button-block small {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #dfdfdf;
}



/* ============================
   SECTIONS (Genel İçerik)
   ============================ */
.section {
  padding: 10px 40px;
  max-width: 1400px;
  margin: auto;
}
.section h2 {
  text-align: center;
  color: #860000;
  margin-bottom: 25px;
}
.text-area {
  text-align: justify;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
.text-area p {
  margin-bottom: 16px;
}


/* ============================
   SOSYAL (İkonlar)
   ============================ */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 7px;
  font-size: 27px;
  margin-bottom: -12px;
  margin-top: 8px;
  margin-right: 2px;
  margin-left: 2px;
}

.social-icons a {
  transition: transform 0.2s ease-in-out; /* Yumuşak geçiş efekti */
}

.social-icons a:hover {
  transform: scale(1.44); /* %25 büyüme */
}


/* ============================
   FOOTER
   ============================ */
footer {
  background-color: #2a2a2a;
  color: #ccc;
  text-align: center;
  padding: 1px;
  font-size: 13px;
}
footer a {
  color: #ccc;
  text-decoration: underline;
}


/* ============================
   CHATBOT
   ============================ */
.chatbot-widget {
  position: fixed;
  bottom: 100px;
  right: 40px;
  z-index: 1000;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.chatbot-message-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: white;
  padding: 10px 16px;
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: none;
  cursor: pointer;
}

.chatbot-message-card:hover .chatbot-avatar {
  transform: scale(1.22);
  transition: transform 0.3s ease-in-out;
}

.chatbot-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 3px solid #494949;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.chatbot-message-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #1a1a1a;
  line-height: 1.3;
}

.chatbot-name {
  font-size: 15px;
  font-weight: 600;
  color: #860000;
}

.chatbot-subtext {
  font-size: 14px;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .chatbot-widget {
    bottom: 80px;
    right: 20px;
  }

  .chatbot-avatar {
    width: 55px;
    height: 55px;
  }

  .chatbot-name {
    font-size: 15px;
  }

  .chatbot-subtext {
    font-size: 13px;
  }
}



/* ============================
   AKTİF LİNK (Menüde alt çizgi)
   ============================ */
nav ul li a.active {
  position: relative;
  font-weight: 600;
  z-index: 1;
}
nav ul li a.active::after {
  content: '';
  position: absolute;
  left: 5%;
  top: 29px;
  width: 90%;
  height: 3px;
  background-color: #fff;
  border-radius: 5px;
  z-index: -1;
}


/* ============================
   DROPDOWN MOBİLDE AÇIK
   ============================ */
nav ul li .submenu.open {
  display: flex;
  flex-direction: column;
}

/* ============================
   FOKUS ASİSTANLARI
   ============================ */

.fokus-assistants h2 {
  text-align: center;
  color: #860000;
  margin-bottom: 20px;
  font-size: 28px;
}

.assistant-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.assistant-item {
  text-align: center;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.assistant-item img {
  width: auto;
  height: 210px;
  object-fit: cover;
  border-radius: 40%;
  margin: 15px;
  margin-bottom: 5px;
  transition: transform 0.3s ease;
}

.assistant-item:hover img {
  transform: scale(1.15); /* %25 büyüme */
}

.assistant-item span {
  display: block;
  margin-top: 8px;
}

.assistant-code {
  display: block;
  font-size: 11px;
  color: #666;
  font-style: italic;
  letter-spacing: 0.5px;
}


@media (max-width: 768px) {
  .assistant-item img {
    width: auto;
    height:200px;
  }

  .assistant-item span {
    font-size: 13px;
  }
}




/* ============================
   ÇEREZ BİLGİLENDİRME
   ============================ */
.cookie-banner {
  position: fixed;
  bottom: 80px; /* Sayfanın en altından 80px yukarıda */
  left: 50%;
  transform: translateX(-50%);
  width: 75%; /* Yatayda %75 */
  background: #d6d6d6;
  color: #333;
  padding: 12px 15px;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 9999;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-banner a {
  color: #860000;
  font-weight: bold;
  text-decoration: underline;
}

#accept-cookies {
  background-color: #860000;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

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












/* ============================
   YAN SAYFALAR SAYFA KUTULARI VE YAPISI
   ============================ */
section.section2 {
  max-width: 1000px;
  width: 95%;
  margin: 40px auto;
  padding: 20px 50px 20px 50px;
  background-color: #fff;
  border-radius: 12px;
  position: relative;
  box-sizing: border-box;
  box-shadow: 0 5px 24px rgba(0,0,0,0.15); /* Gölge eklendi */
}

/* Dikey çizgi */
.highlight-box::before,
.solution-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 6px;
  background-color: #860000;
  border-radius: 5px;
  transform: translateX(-10px); /* Metinden 10px uzaklaştırıldı */
}

/* Başlıklar */
section.section2 h1,
section.section2 h2,
.highlight-box h3,
.solution-item h3 {
  color: #860000;
  font-weight: 700;
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
}

section.section2 h1 { font-size: 2.5rem; margin-bottom: 25px;}
section.section2 h2 { font-size: 1.2rem; }
.highlight-box h3,
.solution-item h3 { font-size: 1.2rem; }

/* Paragraflar */
section.section2 p,
.highlight-box p,
.solution-item p {
  font-size: 1.1rem;
  line-height: 1.3;
  color: #333;
  margin-bottom: 10px;
  text-align: justify;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Liste */
ul.checklist {
  list-style: none; /* Sayı veya madde işaretini tamamen kaldır */
  padding-left: 20px;
  max-width: 100%;
  margin: 0 0 20px 0;
  position: relative;
}

ul.checklist li {
  position: relative;
  padding-left: 16px; /* "-" işareti için boşluk bırak */
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.2;
  color: #444;
  text-align: justify;
}

/* "-" işareti ekle */
ul.checklist li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #860000;
  font-weight: bold;
}


/* Kutu stilleri */
.highlight-box,
.solution-item {
  background-color: #fff;
  border: none;
  border-radius: 15px;
  padding: 15px 15px;
  margin: 10px auto;
  max-width: 100%;
  position: relative;

}



/* ============================
   MOBİL UYUM
   ============================ */
@media (max-width: 768px) {
  section.section2 {
    padding: 30px 15px 30px 35px;
  }
  section.section2 h1 {
    font-size: 2rem;
  }
  section.section2 h2 {
    font-size: 1.2rem;
  }
  .highlight-box,
  .solution-item {
    padding: 18px 20px;
  }
  a.btn-contact {
    padding: 12px 24px;
    font-size: 1rem;
  }
}



/* ============================
   ETKİ SEKSİYONU (VALUE BLOCK)
   ============================ */
.impact-section {
  background-color: #ffffff;
  border-radius: 25px;
  padding: 20px 50px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  margin: 20px auto;
  max-width: 1020px;
}

.impact-section h2 {
  color: #860000;
  text-align: center;
  font-size: 24px;

}

.impact-section p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  margin-top: 20px;
  margin-left: 16px;
  line-height: 1.5;
}

.impact-list {
  padding-left: 18px;
  margin-bottom: 12px;
  margin-left: 16px;
}

.impact-list li {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.2;
  position: relative;
  margin-left: 16px;
  padding-left: 4px;
  font-weight: bold;
}

.impact-list li::marker {
  font-size: 20px;
  color: #860000;
}

@media (max-width: 768px) {
  .impact-section {
    padding: 15px 20px;
    margin: 20px 12px;
  }

  .impact-section h2 {
    font-size: 20px;
  }

  .impact-section p,
  .impact-list li {
    font-size: 14px;
  }
}



/* ============================
   NEDEN BİZ
============================ */

.nedenbiz-section {
  max-width: 1080px;
  margin: 10px auto;
  padding: 20px 20px;
  }

.nedenbiz-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 35px;
  color: #860000;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nedenbiz-item {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-bottom: 35px;
  background-color: #fff;
  padding: 25px 45px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.3s ease;
  align-items: center;

  /* Kenar yuvarlama sadece sağ üst ve alt */
  border-radius: 25px;

}

.nedenbiz-item:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.nedenbiz-item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  flex-shrink: 0;
  align-items: center;
}

.nedenbiz-text {
  flex: 1;
}

.nedenbiz-text h2 {
  font-size: 1.4rem;
  color: #860000;
  margin-bottom: 10px;
}

.nedenbiz-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #333;
  text-align: justify; /* Her iki yana yaslı */
}


@media (max-width: 900px) {
  .nedenbiz-section {
    padding: 15px !important;
  }

  .nedenbiz-title {
    font-size: 2rem !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    word-break: break-word !important;
  }

  .nedenbiz-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px !important;
    padding: 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
  }

  .nedenbiz-item img {
    height: 110px !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: contain !important;
  }

  .nedenbiz-text {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .nedenbiz-text h2 {
    font-size: 1.1rem !important;
    margin: 10px 0 6px !important;
    color: #860000 !important;
    word-break: break-word !important;
  }

  .nedenbiz-text p {
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
    text-align: justify !important;
    color: #333 !important;
    word-break: break-word !important;
  }
}



/* ============================
   ASİSTANLAR SAYFASI
============================ */


.banner-img {
  width: 98%;
  max-width: 1500px;
  height: auto;
  margin: 15px auto;
  border-radius: 20px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.solution-item2 {
  background-color: #fff;
  border: none;
  border-radius: 15px 5px 5px 15px; /* sadece sol taraf keskin */
  padding: 20px 50px;
  margin: 20px auto;
  max-width: 100%;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* gölgelendirme eklendi */
  transition: box-shadow 0.3s ease;
}

.solution-item2:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.solution-item2::after {
  content: "";
  position: absolute;
  left: 250;
  top: 20px;
  bottom: 20px;
  width: 6px;
  background-color: #860000;
  border-radius: 5px;
  transform: translateX(-20px); /* metinden biraz uzak */
}

.solution-item2 h3 {
  color: #860000;
  font-weight: 700;
  text-align: left;
  font-size: 1.25rem;
  margin: 0 0 6px 0; /* p’ye daha yakın */
  line-height: 1.2;
}

.solution-item2 p {
  font-size: 1.1rem;
  line-height: 1.1;
  color: #333;
  text-align: justify;


}

.asistan-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 30px auto;
}

.asistan-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
}

.asistan-item:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
}

.asistan-item img {
  width: 45px;
  height: 65px;
  object-fit: contain;
  border-radius: 12px;
  margin-right: 20px;
  flex-shrink: 0;
}

.asistan-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.asistan-info strong {
  font-size: 1.4rem;
  color: #860000;
}

.asistan-info span {
  font-size: 1.1rem;
  color: #555;
}

section.section3 {
  max-width: 1000px;
  width: 95%;
  margin: 40px auto;
  padding: 30px 40px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 24px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

section.section3 h1 {
  font-size: 1.5rem;
  color: #860000;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.highlight-box3 {
  background-color: #fff;
  border-radius: 15px;
  padding: 15px;
  margin: 0 auto;
}

ul.checklist3 {
  list-style: none;
  padding-left: 20px;
  margin: 0;
}

ul.checklist3 li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.2;
  color: #333;
  text-align: justify;
}

ul.checklist3 li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #860000;
  font-size: 1.2rem;
  line-height: 1.1;
}




.btn-group {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 220px;
  min-width: 200px;
}



.btn-wrapper2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 150px;
  min-width: 150px;
  margin: 5px 60px 0px 60px;
}



.btn-action {
  background-color: #222;
  color: #eee;
  border: none;
  border-radius: 12px;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  width: 100%;
  user-select: none;
}

.btn-action:hover,
.btn-action:focus {
  background-color: #860000;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  outline: none;
}

.btn-desc {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #555;
  max-width: 260px;
  text-align: center;
  user-select: none;
}

@media (max-width: 720px) {
  .btn-group {
    flex-direction: column;
    gap: 20px;
  }
  .btn-wrapper {
    min-width: auto;
    width: 100%;
  }
}



/* ============================
   SIK SORULAN SORULAR
============================ */


.accordion-toggle {
  cursor: pointer;
  position: relative;
  padding-right: 20px;
  transition: all 0.3s ease;
}

.accordion-toggle::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-weight: bold;
  font-size: 20px;
}

.accordion-toggle.active::after {
  content: '-';
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content.open {
  max-height: 500px; /* İçeriğe göre artırabilirsiniz */
}






/* ============================
   İLETİŞİM BÖLÜMÜ
============================ */

.contact-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.contact-container {
  width: 100%;
  max-width: 720px;
}

.contact-box {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-box h2 {
  text-align: center;
  margin-bottom: 24px;
  color: #860000;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.5px;
}

.contact-box form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-box label {
  align-self: flex-start;
  margin-left: 12.5%;
  font-weight: 600;
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
}

.contact-box input,
.contact-box textarea {
  width: 75%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 16px;
  transition: border-color 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-box input:focus,
.contact-box textarea:focus {
  border-color: #860000;
  outline: none;
  box-shadow: 0 0 5px rgba(134, 0, 0, 0.3);
}

.contact-box button {
  background-color: #860000;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  letter-spacing: 0.05em;
  margin-top: 16px;
}

.contact-box button:hover {
  background-color: #a30405;
}

#result {
  text-align: center;
  margin-top: 16px;
  font-weight: 600;
  font-size: 14px;
  color: #860000;
  min-height: 24px;
}

/* Mobil Duyarlılık */
@media (max-width: 600px) {
  .contact-box form {
    width: 100%;
  }

  .contact-box label {
    margin-left: 10%;
  }

  .contact-box input,
  .contact-box textarea {
    width: 90%;
  }

  .contact-box button {
    width: auto;
    padding: 14px 24px;
  }
}







/* ============================
 ASİSTANLAR TEK TEK - ÜST BÖLÜMLERİ
============================ */

.fokus-asistan-container {
  padding: 20px;
  background-color: #f9f9f9;
  max-width: 92%;
  width: 950px;
  padding-bottom: 30px;  
  margin: 0 auto;
}


.fokus-asistan-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
}

.fokus-asistan-image img {
  height: 275px;
  width: auto;
  margin-right: 10px;
  border-radius: 100px;
  background: none;
  box-shadow: none;
}

.fokus-asistan-text {
  flex: 1;
  max-width: 700px;
  text-align: justify;
}

.fokus-asistan-text h1 {
  font-size: 1.7em;
  line-height: 2;
  margin-bottom: 35px;
  max-width: 700px;

  color: #860000;
}

.fokus-asistan-text .highlight {
  color: #860000;
  font-weight: bold;
}

.fokus-asistan-text h3 {
  font-size: 1.15em;
  margin-bottom: 12px;
  color: #555;
  text-align: justify;
}

.fokus-asistan-text p {
  font-size: 1em;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

.fokus-asistan-text a {
  color: #0077cc;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .fokus-asistan-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .fokus-asistan-text {
    max-width: 86%;
    text-align: justify;
  }

  .fokus-asistan-text h1 {
    font-size: 1.4em;
    text-align: center;
  }

  .fokus-asistan-text h3 {
    text-align: center;
  }
}





/* ============================
 ASİSTANLAR TEK TEK - NEDEN-NELER BÖLÜMLERİ
============================ */
.fokus001-neden-container {
  width: 100%;
  background-color: #860000;
  padding: 15px 25px;
  box-sizing: border-box;
  overflow-wrap: break-word;
  font-family: "Segoe UI", Tahoma, Verdana, sans-serif;
  /* Sayfa genelinde Segoe UI kullanılır */
}

.fokus001-neden-content {
  max-width: 1000px;
  margin: 10px auto;
  color: #f9f9f9;
  text-align: justify;
  overflow-wrap: break-word;
  word-break: break-word;
}

.fokus001-neden-content h2 {
  color: #f9f9f9;
  margin-bottom: 20px;
  margin-top: 5px;
  font-weight: 900;
  font-size: 2.0em;
  line-height: 1.1;
  font-family: "Segoe UI", Tahoma, Verdana, sans-serif;
}

.fokus001-neden-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  font-family: "Segoe UI", Tahoma, Verdana, sans-serif;
}

.fokus001-neden-content ul li {
  margin-bottom: 10px;
  line-height: 1.3;
}

.fokus001-neden-content ul li strong {
  font-weight: 900;
  margin-right: 6px;
  color: #f9f9f9;
}

/* Responsive */
@media (max-width: 768px) {
  .fokus001-neden-content {
    padding: 0 10px;
  }
}







.fokus001-neler-container {
  width: 100%;
  background-color: transparent; /* ya da çok açık beyaz: #fafafa */
  padding: 15px 25px;
  margin-top: 15px;
  box-sizing: border-box;
  overflow-wrap: break-word;
  font-family: "Segoe UI", Tahoma, Verdana, sans-serif;
  /* Sayfa genelinde Segoe UI kullanılır */
}



.fokus001-neler-content {
  max-width: 1000px;
  margin: 0 auto;
  color: #000000; /* Siyah metin */
  text-align: justify;
  overflow-wrap: break-word;
  word-break: break-word;
}

.fokus001-neler-content h2 {
  color: #000000; /* Siyah başlık */
  margin-bottom: 10px;
  font-weight: 900;
  margin-bottom: 20px;
  margin-top: 15px;
  font-size: 2.2em;
  line-height: 1.1;
}

.fokus001-neler-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.fokus001-neler-content ul li {
  margin-bottom: 10px;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
  .fokus001-neler-content {
    padding: 0 10px;
  }
}





/* ============================
 ASİSTANLAR TEK TEK - VİDEO QR ALANI
============================ */




.video-karekod-container {
  width: 100%;
  background-color: transparent;
  padding: 60px 25px 40px 50px;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Verdana, sans-serif;
}

.video-karekod-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.karekod-blok {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.karekod-blok img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin-right: 100px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
  .karekod-blok img:hover {
    transform: scale(1.3);
    z-index: 10; /* Üstte görünmesi için */
  }

.karekod-boşluk {
  height: 45px;
}

.video-blok {
  flex: 1;
  min-width: 300px;
}

.video-blok iframe {
  border-radius: 12px;
  width: 100%;
  width: 625px;
  height: 350px;
}

/* Responsive */
@media (max-width: 768px) {
  .video-karekod-container {
    padding: 20px 15px;
  }

  .video-karekod-content {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
  }

  .video-blok {
    width: 100%;
    max-width: 100%;
  }

  .video-blok iframe {
    width: 100% !important;
    height: 320px;
    border-radius: 10px;
  }

  .karekod-blok {
    width: 100%;
    align-items: center;
  }

  .karekod-blok img {
    width: 130px;
    height: 130px;
    margin: 0 auto;
  }
}


/* ============================
 ASİSTANLAR TEK TEK - TABLO ALANI
============================ */
  .paket-tablo-container {
    max-width: 950px;
    width: 95%;
    margin: 0 auto;
    padding: 20px 30px;
    font-family: "Segoe UI", Tahoma, Verdana, sans-serif;
    box-sizing: border-box;
    color: #333;
  }

  .paket-baslik {
    color: #860000;
    font-weight: 900;
    font-size: 1.6em;
    margin-bottom: 20px;
    text-align: center;
  }

 
  table.paket-tablo {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    table-layout: fixed;
  }

  /* Sütun genişlikleri */
  table.paket-tablo colgroup col:nth-child(1) {
    width: 46%;
  }
  table.paket-tablo colgroup col:nth-child(n+2) {
    width: 18%;
  }

  thead th {
    background-color: #860000;
    color: white;
    font-weight: 700;
    padding: 8px 10px;
    font-size: 0.95rem;
    text-align: center;
    border: 1px solid #ddd;
  }

  tbody td {
    padding: 3px 4px;
    font-size: 0.85rem;
    border: 1px solid #ddd;
    text-align: center;
    vertical-align: middle;
    word-wrap: break-word;
  }

  tbody td:first-child {
    text-align: left;
    font-weight: 600;
  }

  /* Satırlar dönüşümlü renk */
  tbody tr:nth-child(odd) {
    background-color: #ffffff;
    line-height: 0.67;
  }
  tbody tr:nth-child(even) {
    background-color: #f7f7f7;
    line-height: 0.67;
  }

  /* Tik ve Çarpı */
  .tik {
    color: #28a745; /* yeşil */
    font-weight: bold;
    font-size: 1.2em;
  }

  .carpi {
    color: #d93025; /* kırmızı */
    font-weight: bold;
    font-size: 1.2em;
  }

  /* Fiyat satırları gri arka plan */
  .fiyat-row td {
    background-color: #e6e6e6;
    font-weight: 700;
    font-size: 0.85rem;
  }

  /* Açıklama metni */
  .paket-aciklama {
    max-width: 1000px;
    margin: 15px auto 0 auto;
    color: #666;
    font-size: 0.85rem;
    text-align: justify;
    font-family: "Segoe UI", Tahoma, Verdana, sans-serif;
  }



@media (max-width: 720px) {
  .paket-baslik {
    font-size: 1.6em;
    margin-bottom: 15px;
  }

  table.paket-tablo {
    font-size: 0.5rem;
  }

  thead th,
  tbody td {
    font-size: 0.7rem;
    padding: 4px 5px;
  }

  tbody td:first-child {
    font-size: 0.6rem;
    font-weight: 600;
  }

  .fiyat-row td {
    font-size: 0.5rem;
  }

  .paket-aciklama {
    font-size: 0.5rem;
    padding: 0 5px;
  }

  .tik {
    color: #28a745; /* yeşil */
    font-weight: bold;
    font-size: 1.5em;
  }

  .carpi {
    color: #d93025; /* kırmızı */
    font-weight: bold;
    font-size: 1.5em;
  }


}


/* ============================
 ASİSTANLAR buton
============================ */


.btn-999 {
  width: 40%;
  margin: 40px auto 0 auto;
  border-radius: 16px;
  background-color: #860000;
  box-shadow: 0 4px 10px rgba(134, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  user-select: none;
}

.btn-999 a {
  display: block;
  padding: 14px 24px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: white;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
  line-height: 1.4;
  border-radius: 20px;
}

.btn-999:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 15px rgba(134, 0, 0, 0.7);
  font-weight: bolder;
}










/* ============================
FOKUS EKOSİSTEMİ ANALİZ SAYFASI
============================ */


.analizform-container {
  max-width: 960px;
  margin: 40px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}



.analizform-container .analizform-header {
  background: linear-gradient(135deg, #e4e4e4f1, #d9d9d9);
  padding: 15px 20px 30px 20px;
  border-radius: 16px;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 4px 12px rgba(100, 100, 100, 0.20);
  position: relative;
  overflow: hidden;
}



.analizform-container h1 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1.1px;
  color: #4a4a4a;
  text-shadow: 1px 1px 2px rgba(180, 180, 180, 0.5);
}

.analizform-container p {
  font-size: 13px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
  text-align: justify;
  font-weight: 400;
  text-shadow: 1px 1px 1px rgba(220, 220, 220, 0.6);
}









.analizform-container .analizform-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 2px;
  margin-bottom: 55px;
}

.analizform-container .analizform-checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  position: relative;
}

.analizform-container .analizform-checkbox-group input[type="checkbox"] {
  appearance: none;
  width: 15px;
  height: 15px;
  border: 2px solid #757575;
  border-radius: 5px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.analizform-container .analizform-checkbox-group input[type="checkbox"]:checked {
  border-color: #4CAF50;
  background-color: #4CAF50;
}

.analizform-container .analizform-checkbox-group input[type="checkbox"]:checked::after {
  content: '✔';
  color: white;
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 8px;
}




.analizform-container summary {
  font-weight: bold;
  font-size: 18px;
  padding: 12px 12px;
  background-color: #860000;
  color: #e7e7e7;
  border-radius: 6px;
  margin-top: 5px;    
  margin-bottom: 20px;  
  width: 66%;         /* genişlik %60 */
  text-align: left;   /* sola yaslı */
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  cursor: pointer;
   transform-origin: left center; /* Sağdan büyüme */
  transition: transform 0.3s ease;
}



.analizform-container summary:hover {
  transform: scale(1.1);  /* %6 büyüme */
}





.analizform-container .analizform-iletisim-baslik {
  font-weight: bold;
  font-size: 18px;
  padding: 12px 12px;
  background-color: #860000;
  color: #e7e7e7;
  border-radius: 6px;
  margin-top: 5px;    
  margin-bottom: 20px;  
  width: 80%;
  text-align: left;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  cursor: default; /* işaretçi değişmesin */
  /* hover ve transform efektleri yok */
}











.analizform-container .analizform-kisi-bilgileri {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin: 0 auto 30px auto;
  align-items: flex-start;
}

.analizform-container input,
.analizform-container textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 18px;
  width: 80%;
  margin-left: 10px;
  font-family: 'Segoe UI', sans-serif; /* FONT UYUMLULUĞU SAĞLANDI */
  box-sizing: border-box;
}





.analizform-container .analizform-buttons {
  text-align: center;
  margin-top: 40px;
}

.analizform-container button {
  padding: 16px 30px;
  background-color: #860000;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
  text-align: center;

  margin: 20px;
  transition: transform 0.3s ease;
}

.analizform-container button:hover {
  font-weight: bold;
  transform: scale(1.1);  /* %6 büyüme */
}

.analizform-container #analizform-loading {
  margin-top: 20px;
  font-weight: bold;
  color: #555;
  text-align: center;
}

.analizform-container .hidden {
  display: none !important;
}

.analizform-container #analizform-results {
  margin-top: 30px;
  padding: 6px;
  background-color: #fff;
  border-radius: 6px;
  text-align: center;
  border-radius: 6px;



}





#newFormBtn {
  background-color: #860000;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease;
  margin: 0 auto;           /* 25px boşluk ve yatayda ortalama */
  display: none !important;            /* block yapınca auto margin ile ortalanabilir başta görünmemesi için koydum*/
  text-align: center;
}

#newFormBtn:hover {
  transform: scale(1.1);
}



/* ============================
toast uyarı sistemi
============================ */


.toast {
  position: fixed;
  bottom: 110px;       /* Alt boşluk 50px */
  left: 50%;          /* Yatayda ortala */
  background-color: #ffefc1;
  color: #b36b00;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}







/* ============================
ANASAYFA YOUTUBE
============================ */


.video-blok2 {
  margin: 40px auto 0 auto;
  border: 20px solid #ffffff;
  width: fit-content;
  min-height: 400px; /* Masaüstü iframe yüksekliği kadar */
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  max-width: 100%; /* taşmayı önler */
  overflow: hidden;
}

.video-blok2 iframe {
  display: block;
  width: 700px;
  height: 300px;
  border: none;
  max-width: 100%; /* Mobilde taşıp dışarı çıkmaması için */
}

/* Mobil uyum: 600px ve altı ekranlar */
@media (max-width: 600px) {
  .video-blok2 {
    border: 10px solid #ffffff;
    min-height: auto;
    width: 100%;
    padding: 0;
  }

  .video-blok2 iframe {
    width: 100% !important;
    height: 250px !important;
  }
}




