.slider-dots {  position: absolute;  bottom: 40px;  left: 50%;  transform: translateX(-50%);  z-index: 10;  display: flex;  gap: 12px;}.dot {  width: 12px;  height: 12px;  border-radius: 50%;  border: 2px solid rgba(255, 255, 255, 0.5);  cursor: pointer;  transition: 0.3s;  background: transparent;}.dot:hover {  background: rgba(255, 255, 255, 0.5);}.dot.active {  background: var(--primary);  border-color: var(--primary);  transform: scale(1.3);}/* =========================================           1. GENEL AYARLAR & RESET (CORE CSS)           ========================================= */:root {  --primary: #2c3956;  --primary2: #853c36;  /* Ana Turuncu Renk */  --dark: #111111;  --text-dark: #1a1a1a;  --text-gray: #666666;  --white: #ffffff;  --font-main: "Rubik", sans-serif;  --transition: all 0.4s ease;}* {  margin: 0;  padding: 0;  box-sizing: border-box;  outline: none;}html {  scroll-behavior: smooth;}body {  font-family: var(--font-main);  color: var(--text-dark);  line-height: 1.6;  overflow-x: hidden;}a {  text-decoration: none;  color: inherit;  transition: var(--transition);}ul {  list-style: none;}img {  max-width: 100%;  display: block;}/* Butonlar */.btn {  display: inline-flex;  align-items: center;  padding: 14px 25px;  font-weight: 700;  text-transform: uppercase;  font-size: 13px;  border: 2px solid transparent;  transition: var(--transition);  cursor: pointer;  gap: 10px;}.btn-primary {  background: var(--primary);  color: var(--white);}.btn-primary:hover {  background: transparent;  color: var(--primary);  border-color: var(--primary);}.btn-white {  background: var(--white);  color: var(--text-dark);}.btn-white:hover {  background: var(--primary);  color: var(--white);}.btn-link {  padding: 10px 0;  color: var(--dark);  border-bottom: 1px solid #ddd;}.btn-link:hover {  color: var(--primacry);  border-color: var(--primary);}.btn i {  margin-left: 10px;}.btn svg {  width: 20px;  height: 20px;  fill: #fff;}.btn:hover svg {  fill: var(--primary);}.btn-white svg {  fill: var(--primary);}a.WhatsApp1 {  display: flex;  font-size: 18px;  background: #2eb843;  font-weight: 600;  width: 51px;  height: 51px;  position: fixed;  bottom: 20px;  left: 20px;  border-radius: 50%;  -webkit-transition: all 0.1s ease-out 0s;  -moz-transition: all 0.1s ease-out 0s;  -ms-transition: all 0.1s ease-out 0s;  -o-transition: all 0.1s ease-out 0s;  transition: all 0.1s ease-out 0s;  color: #fff;  align-items: center;  justify-content: center;  animation: whatsapp infinite 2s linear;  z-index: 9999;}@keyframes whatsapp {  0% {    box-shadow: 0 0 0 0 #2eb843;  }  50% {    box-shadow: 0 0 0 10px rgba(1, 93, 199, 0);  }  100% {    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);  }}.WhatsApp1 svg {  width: 21px;  height: 21px;  fill: #fff;}.top-bar {  color: #000;  padding: 0px 0 15px;  font-size: 12px;  display: flex;  width: 100%;}.header-sosyalmedya {  display: flex;  align-items: center;  gap: 0px;  margin-left: auto;}.header-sosyalmedya li {  list-style: none;}.header-sosyalmedya li a{  list-style: none;}.header-sosyalmedya li a svg{  width: 14px;  height: 14px;  fill: #000;}.header-sosyalmedya li a::before {  content: "";  position: relative;  display: block;  width: 1px;  height: 7px;  background: #ffffff29;  list-style: none;  margin: 0px 16px!important;}.top-bar .container {  display: flex;  align-items: center;  justify-content: space-between;}.top-bar div {  display: flex;  align-items: center;}.top-bar ul {  display: flex;  align-items: center;}.top-bar ul li {  display: flex;  align-items: center;}.top-bar ul li::before {  content: "";  position: relative;  display: block;  width: 1px;  height: 12px;  background: #ffffff29;  list-style: none;  margin: 0px 10px;}.top-bar ul li {  list-style: none;}.top-bar ul li a {  display: block;  font-size: 12px;  font-weight: 500;  color: #fff;  position: relative;  transition: all 0.3s ease;}.top-bar ul li a:hover {  opacity: 1;  transition: all 0.3s ease;}.top-bar ul li a::after {  content: "";  position: absolute;  bottom: -2px;  left: 0;  width: 0;  height: 1px;  background: #fff;  transition: width 0.3s;}.top-bar ul li a:hover::after {  width: 100%;}.top-bar li {  list-style: none;}.top-bar li:nth-child(1) {  display: none;}.top-bar li:nth-child(2) a::before {  display: none;}.top-bar li a {  position: relative;  display: flex;  align-items: center;}.top-bar li a::before {  content: "";  position: relative;  display: block;  width: 1px;  height: 12px;  background: #ccc;  margin: 0px 8px;}.top-bar li a {  color: #000;  font-size: 12px;  font-weight: 400;}header {  position: fixed;  top: 0px;  left: 0;  width: 100%;  z-index: 1000;  padding: 20px 0 10px;  transition: all 0.4s;  background: #fff;  border-top: 5px solid #853c36;}header.sticky {  position: fixed;  top: 0;  padding: 15px 0 5px;  border: none;  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);}header .nav-wrapper {  display: flex;  justify-content: space-between;  align-items: center;}header .logo {  position: absolute;  left: 50%;  transform: translateX(-50%);}header .logo img {  width: auto;  height: 40px;}header .logo i {  color: var(--primary);}header .navbar {  margin-top: 18px;}header .navbar ul {  display: flex;  gap: 50px;  justify-content: center;  margin-top: 12px;}header .navbar ul li:nth-child(1) {}header .navbar a {  color: #2c3956;  font-weight: 600;  font-size: 13px;  text-transform: uppercase;  display: flex;  align-items: center;  gap: 15px;}header .navbar a img {  width: 28px;  height: 28px;  margin-left: 6px;}header .navbar a img.icon2 {  width: 23px;  height: 23px;}header .navbar a:hover {  color: var(--primary2);}/* 1. Üst Menü Elemanını Konumlandırma */header .navbar ul li {  position: relative;  display: flex;  align-items: center;}/* 2. Alt Menü (Dropdown) Kutusu */header .navbar ul li ul.alt-menu {  /* Başlangıçta Gizle (Animasyon için) */  opacity: 0;  visibility: hidden;  transform: translateY(15px);  /* Hafif aşağıdan gelsin */  transition: all 0.3s ease;  /* Konum ve Boyut */  position: absolute;  top: 100%;  left: 0;  min-width: 240px;  /* Genişlik */  z-index: 999;  /* Renk ve Tasarım */  background: #ffffff;  /* Arka plan BEYAZ */  border-top: 4px solid #903632;  /* Üst çizgi MAVİ */  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);  /* Hafif gölge */  border-radius: 0 0 5px 5px;  padding: 0;  /* İç boşluğu sıfırla */  display: block;}/* 3. Mouse Üzerine Gelince Görünme */header .navbar ul li:hover ul.alt-menu {  opacity: 1;  visibility: visible;  transform: translateY(0);}/* 4. Alt Menü Maddeleri (li) */header .navbar ul li ul.alt-menu li {  display: block;  margin: 0;  padding: 0;  border-bottom: 1px solid #f0f0f0;  /* Maddeler arası çok açık gri çizgi */}/* Son maddenin alt çizgisini kaldır */header .navbar ul li ul.alt-menu li:last-child {  border-bottom: none;}/* 5. Link Tasarımı (a) */header .navbar ul li ul.alt-menu li a {  display: block;  padding: 10px 20px;  /* İç boşluk */  color: #333;  /* Normal yazı rengi koyu gri (okunabilirlik için) */  text-decoration: none;  font-size: 12px;  font-weight: 500;  transition: all 0.2s ease-in-out;}/* 6. Hover Efekti (Üzerine Gelince) */header .navbar ul li ul.alt-menu li a:hover {  background-color: #853c36;  /* Arka plan MAVİ olsun */  color: #ffffff;  /* Yazı rengi BEYAZ olsun */  padding-left: 25px;  /* Yazı hafif sağa kaysın */}header .header-btn {  margin-left: 20px;}header .mobile-toggle {  display: none;  color: white;  font-size: 24px;  cursor: pointer;}@media (max-width: 992px) {  :root {    --container-width: 100%;  }  /* Navbar Mobile */  .mobile-toggle {    display: block;    z-index: 1002;  }  .navbar {    position: fixed;    top: 0;    left: -100%;    width: 80%;    height: 100vh;    background: #111;    padding: 80px 30px;    transition: 0.4s;    z-index: 1001;  }  .navbar.active {    right: 0;  }  .navbar ul {    flex-direction: column;  }  header .logo img {    height: 33px;  }}@media (max-width: 1024px) {  header .header-btn svg {    display: none;  }  header .navbar ul {    gap: initial;    margin-top: 80px;  }}/* Masaüstü varsayılan ayarlar */.menu-toggle {  display: none;  /* Masaüstünde butonu gizle */  cursor: pointer;  background: none;  border: none;  flex-direction: column;  gap: 5px;}.menu-toggle .bar {  width: 25px;  height: 3px;  background-color: #000;  display: block;  transition: 0.3s;}/* Mobil Ayarlar (768px ve altı için) */@media (max-width: 768px) {  /* Menü butonunu görünür yap */  .menu-toggle {    display: flex;    z-index: 1001;    /* Menünün üzerinde dursun */    margin-right: -10px;  }  /* Diğer mobile-toggle divini gizle (çakışmaması için) */  .mobile-toggle {    display: none !important;  }  /* Navbar'ı mobilde gizle ve şekillendir */  .navbar {    position: fixed;    top: 0;    right: -100%;    /* Ekranın sağında gizli başlasın */    width: 250px;    /* Menü genişliği */    height: 100vh;    background-color: #fff;    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);    flex-direction: column;    padding-top: 60px;    transition: 0.3s ease-in-out;    z-index: 1000;    overflow-y: auto;  }  .navbar ul {    flex-direction: column;    width: 100%;  }  .navbar ul li {    width: 100%;    text-align: left;    padding: 10px 20px;    border-bottom: 1px solid #eee;  }  .navbar ul li a {    color: white;  }  /* JavaScript ile 'active' sınıfı eklendiğinde menü gelsin */  .navbar.active {    right: 0;    /* Ekrana girsin */  }  /* Alt menüleri mobilde düzenle */  .navbar .alt-menu {    position: static;    box-shadow: none;    display: none;    /* Tıklayınca açılması için JS gerekebilir, şimdilik gizli */    padding-left: 20px;  }  .navbar ul li:hover .alt-menu {    display: block;  }}@media (max-width: 1024px) {  header .navbar ul li:hover ul.alt-menu {    display: none;  }}/* Header sticky olduğunda (aşağı inildiğinde) */@keyframes slideDown {  from {    transform: translateY(-100%);  }  to {    transform: translateY(0);  }}/* --- YENİ EKLENEN WRAPPER STİLİ --- */#site-header-wrapper {  position: absolute;  /* Başlangıçta slider üzerinde dursun */  top: 0;  left: 0;  width: 100%;  z-index: 1000;  transition:    background-color 0.4s ease,    transform 0.4s ease;}/* Scroll yapıldığında (Sticky Class'ı JS ile eklenince) */#site-header-wrapper.sticky {  position: fixed;  /* Ekrana sabitle */  background: rgba(17, 17, 17, 0.98);  /* Koyu Arka Plan */  backdrop-filter: blur(10px);  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);  animation: slideDown 0.3s ease-out;  /* Yukarıdan kayarak gelme efekti */}/* --- MEVCUT CSS DÜZELTMELERİ (Çakışmaları önlemek için) --- *//* Top bar artık wrapper içinde olduğu için absolute olmamalı *//* Animasyon Tanımı */@keyframes slideDown {  from {    transform: translateY(-100%);  }  to {    transform: translateY(0);  }}/* --- 1. Wrapper ve Sticky Ayarları --- */#site-header-wrapper {  position: absolute;  top: 0;  left: 0;  width: 100%;  z-index: 1000;  /* Wrapper katmanı */  transition:    background-color 0.4s ease,    transform 0.4s ease;}#site-header-wrapper.sticky {  position: fixed;  background: rgba(17, 17, 17, 0.98);  backdrop-filter: blur(10px);  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);  animation: slideDown 0.3s ease-out;}/* Sticky iken header ve top-bar şeffaf olsun, rengi wrapper versin */#site-header-wrapper.sticky .top-bar,#site-header-wrapper.sticky header {  background: transparent;  box-shadow: none;}@keyframes slideDown {  from {    transform: translateY(-100%);  }  to {    transform: translateY(0);  }}/* --- 2. Mobil Menü (Navbar) Kritik Ayarlar --- */@media (max-width: 992px) {  /* Wrapper sticky olduğunda navbar onun üstüne çıkmalı */  .navbar {    position: fixed;    top: 0;    right: -100%;    /* Gizli konum */    width: 80%;    /* Menü genişliği */    max-width: 300px;    height: 100vh;    background: #111;    /* Menü arkaplanı */    z-index: 9999 !important;    /* Wrapper'dan daha üstte olmalı */    transition: right 0.4s ease;    /* Kayma efekti */    padding-top: 60px;    overflow-y: auto;    display: flex;    /* Flex yapısı */    flex-direction: column;    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);  }  .navbar.active {    right: 0 !important;    /* Açık konum */  }  /* Menü butonu görünürlüğü */  .menu-toggle {    display: flex !important;    z-index: 10000;    /* En üstte buton olmalı */    position: relative;  }  /* Eski toggle elementini gizle */  .mobile-toggle {    display: none !important;  }}.mobilicin {  display: none !important;}@media (max-width: 1024px) {  .mobilicin {    display: block !important;  }}html[lang="en"] header .navbar a {  font-size: 12px;  font-weight: 600;}html[lang="en"] header .navbar ul {  display: flex;  gap: 14px;}html[lang="en"] .btn {  padding: 14px 15px;  font-size: 12px;}@media (max-width: 1024px) {  a.WhatsApp1 {    bottom: 60px;  }  header .logo {    position: relative;    left: 0;    transform: translateX(0%);  }  .top-bar {    padding: 0;  }  header {    padding: 20px 0 20px;  }  header .logo img {    height: 30px;    width: 100px;  }  .menu-toggle{    margin-right: 10px;  }  .top-bar div {      margin-right: 50px;  }  .navbar.active {      right: auto;      left: 0;      top: -20px;  }  header .navbar a img {      filter: invert(1);  }  .navbar ul li{    border-bottom: 1px solid #eeeeee38;  }}