@charset "UTF-8";
/*--------------------------------------------------------------------------*/
/* _variables.scss */
/* Renkler */
/* Boyutlar ve Diğer Ayarlar */
/* Z-index değerleri */
/* CSS Değişkenlerini SCSS'te Tanımlama (root içinde CSS değişkenleri olarak kullanılacak) */
:root {
  /* Renkler */
  --primary-color: #ed721d;
  --secondary-color: #435764;
  --text-color: #ffffff;
  --background-color: #f4f4f4;
  --border-color: #ddd;
  --hover-color: #ee7d02;
  --overlay-color: rgba(0, 0, 0, 0.8);
  /* Boyutlar ve Ayarlar */
  --default-padding: 20px;
  --small-font-size: 0.875rem;
  --medium-font-size: 1rem;
  --large-font-size: 1.2rem;
  --small-font-weight: 300;
  --default-text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  --transition-speed: 0.3s;
  --font-family: Poppins, sans-serif;
  --site-header-height: 14vh;
  /* Z-index Değerleri */
  --z-index-header: 1000;
  --z-index-side-menu: 9999;
  --z-index-overlay: 1001;
  --z-index-tile: 1;
  --z-index-tile-hover: 10;
  --z-index-search-side: 10000;
}

/*--------------------------------------------------------------------------*/
/* _reset.scss */
/* Tüm elemanların varsayılan değerlerini sıfırla ve border box modelini kullan */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* html ve body için genel düzenlemeler */
html,
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  width: 0;
}

h1 {
  /* Tarayıcının varsayılan büyük font boyutunu ve boşluklarını sıfırlıyoruz.
     Zaten kendi sınıflarımızla (örn: .main-title) özel boyutlar veriyoruz. */
  font-size: inherit; /* Ebeveyninin font boyutunu miras al */
  margin: 0;
  font-weight: inherit; /* Ebeveyninin font kalınlığını miras al */
}

/* Tüm tıklanabilir elementlerden gereksiz outline'ı kaldır */
a, button, .accordion-header, .menu-item, .tile, .fab-main, .fab-action a,
.hamburger-menu, .search-button, .language-button {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
}
a:focus, button:focus, .accordion-header:focus, .menu-item:focus, .tile:focus, .fab-main:focus, .fab-action a:focus,
.hamburger-menu:focus, .search-button:focus, .language-button:focus {
  outline: none !important;
}
a:active, button:active, .accordion-header:active, .menu-item:active, .tile:active, .fab-main:active, .fab-action a:active,
.hamburger-menu:active, .search-button:active, .language-button:active {
  outline: none !important;
}

/* Sadece form elementleri için keyboard navigation için outline (accessibility) */
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ========================================================================== */
/* Lazy Loading için Performans Optimizasyonları (NİHAİ VERSİYON)             */
/* ========================================================================== */
img.lazy-image {
  display: block;
  background-color: #f0f0f0; /* Yer tutucu rengi */
  opacity: 0; /* Başlangıçta tamamen şeffaf */
  transition: opacity 0.5s ease-in-out; /* Görünür olurken yumuşak geçiş */
}

/* YÜKLENMEDEN ÖNCEKİ DURUM: Henüz "loaded" sınıfı almamış olanlar */
img.lazy-image:not(.loaded) {
  opacity: 0;
}

/* YÜKLENDİKTEN SONRAKİ DURUM */
img.lazy-image.loaded {
  min-height: 0; /* min-height'ı sıfırla */
  background-color: transparent; /* Arka plan rengini kaldır */
  opacity: 1; /* Görünür yap */
}

/* İyileştirilmiş versiyon */
.product-detail-wrapper .detail-image {
  position: relative;
  flex: 1 1 250px;
  aspect-ratio: 16/9; /* Resmin ebeveynine en/boy oranı veriyoruz */
  background-color: #f0f0f0; /* Yüklenirken görünecek arka plan rengi */
  border-radius: 6px;
  overflow: hidden; /* Taşan resim kısımlarını gizle */
}

.product-detail-wrapper .detail-image img.lazy-image {
  /* min-height'ı kaldırıp mutlak konumlandırma yapıyoruz */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Ebeveynini tamamen kaplamasını sağlıyoruz */
  object-fit: cover;
  min-height: 0; /* Eski kuralı eziyoruz */
}

.project-card img.lazy-image {
  aspect-ratio: 16/9;
  height: 220px;
  object-fit: cover;
}

/*--------------------------------------------------------------------------*/
/*_typography.scss */
html, body {
  font-family: var(--font-family);
}

html[dir=rtl] body,
html[dir=rtl] p, html[dir=rtl] h1, html[dir=rtl] h2, html[dir=rtl] h3, html[dir=rtl] h4, html[dir=rtl] h5, html[dir=rtl] h6, html[dir=rtl] li, html[dir=rtl] figcaption,
html[dir=rtl] .headline_title,
html[dir=rtl] .main-title,
html[dir=rtl] .small-text,
html[dir=rtl] .tile-front p,
html[dir=rtl] .tile-back p {
  text-align: right;
}
html[dir=rtl] .small-text::before {
  margin-right: 0;
  margin-left: 5px;
}

/*--------------------------------------------------------------------------*/
/* _header.scss */
.site-header {
  width: 100vw;
  height: var(--site-header-height);
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0) 100%);
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  z-index: var(--z-index-header);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container {
  position: fixed;
  top: 7vh;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--site-header-height);
  z-index: calc(var(--z-index-header) + 1);
  left: 3%;
  right: auto;
}

.site-logo {
  height: 50%;
}

.language-search-container {
  position: fixed;
  align-items: center;
  height: var(--site-header-height);
  top: 0;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  z-index: calc(var(--z-index-header) + 2);
  visibility: hidden; /* Başlangıçta gizli yap (JavaScript ile yönetiliyor olabilir) */
  pointer-events: none; /* Tıklanabilirliği kapat (JavaScript ile yönetiliyor olabilir) */
  right: 3%;
  left: auto;
}

html[dir=rtl] .site-header {
  left: auto;
  right: 0;
}
html[dir=rtl] .logo-container {
  left: auto;
  right: 3%;
}
html[dir=rtl] .language-search-container {
  right: auto;
  left: 3%;
  flex-direction: row-reverse;
}

/*--------------------------------------------------------------------------*/
/* _footer.scss */
/* ==========================================================================
   Footer Bölümü - RTL Desteği ile Final Versiyon
   ========================================================================== */
.site-footer {
  background-color: #2d2d2d;
  color: var(--text-color);
  padding: 4rem 2rem;
  font-size: 0.9rem;
  border-top: 4px solid var(--primary-color);
  width: 100%;
  margin-top: auto;
  /* --- Mobil Cihazlar için Media Query (NİHAİ DÜZELTME) --- */
}
.site-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr;
  gap: 2.5rem;
  align-items: end;
}
.site-footer .footer-content a,
.site-footer .footer-content a:visited {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-content a:hover {
  color: var(--hover-color);
}
.site-footer .footer-content .footer-logo {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-self: start;
}
.site-footer .footer-content .footer-logo img {
  width: 180px;
  align-self: flex-start;
}
.site-footer .footer-content .footer-logo .footer-social {
  display: flex;
  gap: 1rem;
  align-self: flex-start;
}
.site-footer .footer-content .footer-logo .footer-social a {
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.site-footer .footer-content .footer-logo .footer-social a:hover {
  transform: scale(1.1);
}
.site-footer .footer-content .footer-navigation .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: left;
}
.site-footer .footer-content .footer-navigation .footer-menu a {
  white-space: nowrap;
}
.site-footer .footer-content .footer-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.site-footer .footer-content .footer-links a {
  white-space: nowrap;
}
.site-footer .footer-content .footer-copyright {
  justify-self: end;
  text-align: right;
  font-size: 0.8rem;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .site-footer .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    /* === ASIL DÜZELTME BURADA === */
  }
  .site-footer .footer-content .footer-logo,
  .site-footer .footer-content .footer-links,
  .site-footer .footer-content .footer-copyright {
    justify-self: center;
  }
  .site-footer .footer-content .footer-logo {
    /* Bu, içindeki tüm elemanların varsayılan hizalamasını ortalı yapar */
    align-items: center;
    /* Bu daha da önemli: align-self kurallarını doğrudan eziyoruz */
  }
  .site-footer .footer-content .footer-logo img, .site-footer .footer-content .footer-logo .footer-social {
    align-self: center !important; /* Masaüstü stilini geçersiz kılar */
  }
  .site-footer .footer-content .footer-navigation .footer-menu {
    justify-content: center;
  }
  .site-footer .footer-content .footer-copyright {
    text-align: center;
    align-items: center;
  }
}

/* --- RTL (Sağdan Sola) için Özel Stiller (NİHAİ DÜZELTME) --- */
html[dir=rtl] .site-footer .footer-content .footer-logo {
  align-items: flex-end;
}
html[dir=rtl] .site-footer .footer-content .footer-logo .footer-social {
  justify-content: flex-end;
  align-self: flex-start;
}
html[dir=rtl] .site-footer .footer-content .footer-logo .footer-navigation .footer-menu {
  justify-content: flex-start;
}
html[dir=rtl] .site-footer .footer-content .footer-copyright {
  text-align: left;
  align-items: flex-end;
}
@media (max-width: 768px) {
  html[dir=rtl] .site-footer .footer-content {
    /* === RTL İÇİN ASIL DÜZELTME === */
  }
  html[dir=rtl] .site-footer .footer-content .footer-logo {
    align-items: center; /* Konteyner içini ortalar */
  }
  html[dir=rtl] .site-footer .footer-content .footer-logo img, html[dir=rtl] .site-footer .footer-content .footer-logo .footer-social {
    align-self: center !important; /* Masaüstü RTL stilini geçersiz kılar */
  }
  html[dir=rtl] .site-footer .footer-content .footer-copyright {
    align-items: center;
    text-align: center;
  }
  html[dir=rtl] .site-footer .footer-content .footer-navigation .footer-menu {
    justify-content: center;
  }
}

/*--------------------------------------------------------------------------*/
/* _main.scss */
.main-container {
  display: flex;
  flex-direction: column;
  height: auto;
  margin-top: 100vh;
  position: relative;
  z-index: 1;
  background: transparent;
  scrollbar-width: none;
}

.main-container::-webkit-scrollbar {
  display: none;
}

/*--------------------------------------------------------------------------*/
/* _grid.scss */
/*--------------------------------------------------------------------------*/
/* _intro.scss */
.intro-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  /* Poster resmini arka plan olarak ata */
  background-image: url("/videos/fenestra-video-poster.webp");
  background-size: cover;
  background-position: center center;
}

.intro-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%; /* min-width yerine width kullan */
  height: 100%; /* min-height yerine height kullan */
  transform: translate(-50%, -50%);
  object-fit: cover;
  /* Video yüklenene kadar görünmez yap */
  opacity: 0;
  transition: opacity 0.5s ease-in-out; /* Daha hızlı bir geçiş */
}

/* Video yüklendiğinde görünür hale getirmek için */
.intro-video video.loaded {
  opacity: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #8ea0ac;
  mix-blend-mode: multiply;
  z-index: 0;
}

#home {
  visibility: hidden;
}

/*--------------------------------------------------------------------------*/
/* _section.scss */
#about {
  background-color: #e9e9e9;
}

#products {
  background-color: #f9f9f9;
}

#projects {
  background-color: #e9e9e9;
}

#blog {
  background-color: #f9f9f9;
}

#contact {
  background-color: #e9e9e9;
}

#faq {
  background-color: #f9f9f9;
}

#corporate {
  background-color: #e9e9e9;
}

#tile-section {
  background-color: transparent;
}

/* ==========================================================================
   SPA Sayfa Geçiş Kontrolü - BASİTLEŞTİRİLMİŞ
   ========================================================================== */
body.loading-language .site-header,
body.loading-language .main-container,
body.loading-language .site-footer {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

#dynamic-content {
  padding-top: 120px;
  padding-bottom: 4rem;
}

/*--------------------------------------------------------------------------*/
/* _buttons.scss */
/*--------------------------------------------------------------------------*/
/* _logo.scss */
/*--------------------------------------------------------------------------*/
/* _search-bar.scss */
.search-bar {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  padding: 0.5rem;
  border: 1px solid #333;
  border-radius: 5px;
  display: none;
}

.search-button {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-color);
}

html[dir=rtl] .search-bar .search-input {
  text-align: right;
}

/*--------------------------------------------------------------------------*/
/* _language-switcher.scss */
.language-options {
  position: relative;
  display: flex;
  align-items: center;
}

.language-options .language-button {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: var(--large-font-size);
  cursor: pointer;
}

.language-options .languages {
  position: absolute;
  top: 4vh;
  right: 0;
  background-color: var(--overlay-color);
  border-radius: 5px;
  padding: 0.5rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s; /* Transition süresini artırdık */
}

.language-options .languages button {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: var(--medium-font-size);
  margin: 0.2rem 0;
  cursor: pointer;
  width: 100%;
  text-align: center;
  padding: 0.5rem 1rem;
}

.language-options .languages button:hover {
  color: hsl(0, 0%, 115%);
}

.language-options .languages button:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.language-options.active .languages {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: var(--z-index-overlay);
  transition: transform var(--transition-speed) ease;
}

.language-options .languages .active-language {
  opacity: 1;
  visibility: visible;
  color: var(--primary-color);
  z-index: var(--z-index-overlay);
  transition: transform var(--transition-speed) ease;
}

html[dir=rtl] .language-options .languages {
  right: auto;
  left: 0;
  transform: translateX(-10px);
}
html[dir=rtl] .language-options .languages button {
  text-align: right;
}

/*--------------------------------------------------------------------------*/
/* //_tile.scss */
.tile-container {
  display: grid;
  gap: 5px;
  width: 100vw;
  min-height: 86vh;
  position: relative;
  justify-content: center;
  align-content: flex-start;
  margin-top: -28vh;
  pointer-events: auto;
  z-index: 1;
}

.tile-container[style*="opacity: 20"] {
  pointer-events: none;
}

.tile {
  position: relative;
  perspective: 1000px;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.5s ease-in-out, z-index 0.5s ease;
  font-size: 0.7em;
  text-align: center;
  box-sizing: border-box;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.tile:hover {
  z-index: 10;
}

.tile-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile.flipped .tile-inner {
  transform: rotateY(180deg);
}

.tile-front,
.tile-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.tile-front {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 1.5em;
}

.tile-back {
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10;
  box-sizing: border-box;
  transform: rotateY(180deg);
  backface-visibility: hidden;
  position: relative;
}

.tile:hover .tile-inner {
  transform: rotateY(180deg);
}

/* _tile.scss içinde */
.tile-back img.lazy-image {
  width: 100%;
  height: auto;
  max-width: 80%;
  height: auto;
  min-height: 0;
  margin-bottom: 10px;
  position: relative;
  z-index: 6;
  border: 3px solid #fff;
  border-radius: 5px;
  min-height: auto;
}

.tile-back p {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  width: 90%;
  margin: 0 auto;
  color: #333;
  font-size: 0.9rem;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s;
  z-index: 7;
}

.tile-back img.lazy-image {
  transition: transform 0.4s ease 0.2s;
}

.tile:hover .tile-back p,
.tile.flipped .tile-back p {
  opacity: 1;
  transform: translateY(0);
}

.tile:hover .tile-back img.lazy-image,
.tile.flipped .tile-back img.lazy-image {
  transform: translateY(-20%);
}

@media (min-width: 3840px) {
  .tile-container {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (min-width: 2560px) and (max-width: 3839px), (min-width: 1920px) and (max-width: 2559px), (min-width: 1680px) and (max-width: 1919px) {
  .tile-container {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (min-width: 1440px) and (max-width: 1679px) {
  .tile-container {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .tile-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .tile-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .tile-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
}
@media (max-width: 767px) {
  .tile-container {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(12, 1fr);
  }
}
@keyframes fadeOutOnScroll {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0 deg);
  }
  100% {
    transform: rotate(360 deg);
  }
}
@media (hover: none) {
  .tile-inner.flipped {
    opacity: 1 !important;
  }
}
/*--------------------------------------------------------------------------*/
/* _slider.scss */
/* Slider Stilleri */
/*--------------------------------------------------------------------------*/
#fenestra-slider-overlay {
  transition: opacity 0.3s ease;
}

#fenestra-slider-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#fenestra-media-container {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#fenestra-media-container img,
#fenestra-media-container video {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#fenestra-slider-prev,
#fenestra-slider-next,
#fenestra-slider-close {
  position: absolute;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10001;
  padding: 10px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
#fenestra-slider-prev:hover,
#fenestra-slider-next:hover,
#fenestra-slider-close:hover {
  opacity: 1 !important;
}

#fenestra-slider-prev {
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
}

#fenestra-slider-next {
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}

#fenestra-slider-close {
  top: -30px;
  right: -30px;
  z-index: 10002;
}

/* Mobil cihazlarda butonları daha görünür yap */
@media (max-width: 768px) {
  #fenestra-slider-prev,
  #fenestra-slider-next {
    left: 5px !important;
    right: 5px !important;
    font-size: 1.5rem;
  }
  #fenestra-slider-close {
    top: 5px !important;
    right: 5px !important;
    font-size: 1.5rem;
  }
}
/*--------------------------------------------------------------------------*/
/* _headline-animation.scss */
.tagline {
  position: absolute;
  margin-top: -60vh;
  top: 0%;
  left: 3%;
  right: 3%;
  width: auto;
  z-index: 1;
  text-align: left;
  color: var(--text-color);
  z-index: 999;
}

.main-title {
  font-size: clamp(1.8rem, 2vw + 0.5rem, 2.5rem);
  text-shadow: var(--default-text-shadow);
  line-height: 1;
  position: relative;
  margin-bottom: 5vh;
}

.words-wrapper {
  position: relative;
  display: inline-block;
}

.small-text {
  font-family: var(--font-family);
  font-weight: var(--small-font-weight);
  position: absolute;
  top: 5vh;
  left: 0;
  font-size: clamp(2rem, 3vw + 1rem, 4rem);
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
  white-space: nowrap;
  text-shadow: var(--default-text-shadow);
}
.small-text .typing-cursor {
  display: inline-block;
  width: 0.3vw;
  min-width: 3px;
  height: 1em;
  background-color: var(--primary-color);
  margin-left: 5px;
  animation: blink 1s steps(1) infinite;
  vertical-align: baseline;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
html[dir=rtl] .small-text {
  left: auto;
  right: 0;
  text-align: right;
}
html[dir=rtl] .small-text .typing-cursor {
  margin-left: 0;
  margin-right: 5px;
}
html[dir=rtl] .tagline {
  text-align: right;
}

.words-wrapper .active {
  opacity: 1;
}

.headline_title .words-wrapper {
  display: inline-block;
  min-height: 150px; /* Bu değeri en uzun metnin kapladığı yüksekliğe göre ayarla */
  vertical-align: top;
}

@media (max-width: 768px) {
  .tagline {
    margin-top: -65vh;
  }
  .main-title {
    margin-bottom: 6vh;
  }
  .small-text {
    white-space: normal;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }
  .small-text.active {
    opacity: 1;
  }
  .small-text:not(.active) {
    display: none;
  }
  .headline_title .words-wrapper {
    min-height: 120px;
  }
}
/*--------------------------------------------------------------------------*/
/* _cookie.scss */
#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding: 10px;
  text-align: center;
  font-size: 15px;
  z-index: var(--z-index-overlay);
  box-sizing: border-box;
}

.cookie-button {
  padding: 8px 16px;
  background-color: var(--secondary-color);
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  color: var(--text-color);
  margin: 5px;
  font-size: 14px;
}

.details-button {
  background-color: transparent;
  border: none;
  color: var(--text-color);
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 2px;
  text-align: left;
  display: inline-block;
}

.details-button:hover {
  color: #0056b3;
}

.cookie-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  max-width: 400px;
  height: auto;
  max-height: 450px;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
  border-radius: 10px;
  color: var(--text-color);
  text-align: center;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: var(--z-index-overlay);
  overflow-y: auto;
  scrollbar-width: none;
}

.cookie-popup h2 {
  margin-bottom: 10px;
}

.cookie-item-wrapper {
  margin-bottom: 15px;
  padding: 5px 0;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.cookie-item-wrapper p {
  font-size: 13px;
  font-weight: bold;
  margin: 0;
  text-align: left;
  flex-grow: 1;
}

.cookie-item-wrapper .switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 20px;
}

.cookie-item-wrapper .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-item-wrapper .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 20px;
}

.cookie-item-wrapper .slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.cookie-item-wrapper input:checked + .slider {
  background-color: var(--primary-color);
}

.cookie-item-wrapper input:checked + .slider:before {
  transform: translateX(14px);
}

.cookie-popup-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 100%;
  overflow-y: hidden;
}

.cookie-popup::-webkit-scrollbar {
  display: none;
}

.cookie-popup h2 {
  margin-bottom: 10px;
}

.cookie-buttons {
  margin-top: 10px;
  text-align: center;
}

#accept-all {
  background-color: var(--primary-color);
}

#reject-all,
#customize {
  background-color: var(--secondary-color);
}

@media (min-width: 1201px) {
  #cookie-notice,
  .cookie-popup {
    width: 60%;
    padding: 20px;
    font-size: 1em;
  }
  .cookie-button {
    font-size: 0.9em;
    padding: 12px 24px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  #cookie-notice,
  .cookie-popup {
    width: 70%;
    padding: 20px;
    font-size: 0.9em;
  }
  .cookie-button {
    font-size: 0.85em;
    padding: 10px 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  #cookie-notice,
  .cookie-popup {
    width: 85%;
    padding: 15px;
    font-size: 0.85em;
  }
  .cookie-button {
    font-size: 0.8em;
    padding: 8px 16px;
  }
}
@media (max-width: 575px) {
  #cookie-notice,
  .cookie-popup {
    width: 90%;
    padding: 10px;
    font-size: 0.8em;
  }
  .cookie-popup {
    max-width: none;
  }
  .cookie-button {
    font-size: 0.8em;
    padding: 8px 12px;
  }
}
@media (max-width: 320px) {
  #cookie-notice {
    width: 100%;
    padding: 8px;
    font-size: 0.75em;
  }
  .cookie-button {
    font-size: 0.75em;
    padding: 6px 10px;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  #cookie-notice {
    width: 80%;
    padding: 12px;
    font-size: 0.85em;
  }
  .cookie-popup {
    width: 80%;
    max-width: 400px;
    padding: 12px;
  }
  .cookie-button {
    font-size: 0.75em;
    padding: 8px 10px;
  }
}
.about-container {
  padding-top: 0;
  position: relative;
  z-index: 0;
}

.about-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.about-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.about-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}
.about-hero .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.about-hero .hero-content p {
  font-size: 1.2rem;
  margin-top: 1rem;
  opacity: 0.9;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: #ddd;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.about-stats .stat-card {
  background-color: #fff;
  padding: 2.5rem 1rem;
  text-align: center;
}
.about-stats .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}
.about-stats .stat-label {
  font-size: 1rem;
  color: var(--secondary-color);
}

.about-history {
  padding: 5rem 2rem;
  background-color: #f8f8f8;
}
.about-history h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: var(--secondary-color);
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.timeline-container::after {
  content: "";
  position: absolute;
  width: 4px;
  background-color: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
.timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: white;
  border: 4px solid var(--primary-color);
  top: 25px;
  border-radius: 50%;
  z-index: 1;
}
.timeline-item:nth-child(odd) {
  left: 0;
}
.timeline-item:nth-child(even) {
  left: 50%;
}
.timeline-item:nth-child(even)::after {
  left: -10px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.timeline-content .timeline-year {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}
.timeline-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.timeline-content p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-cta {
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--secondary-color);
  color: #fff;
}
.about-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.about-cta .cta-button {
  background-color: var(--primary-color);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.about-cta .cta-button:hover {
  background-color: var(--hover-color);
}

@media (max-width: 1024px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .timeline-container::after {
    left: 15px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 15px;
  }
  .timeline-item:nth-child(even) {
    left: 0%;
  }
  .timeline-item::after, .timeline-item:nth-child(even)::after {
    left: 5px;
  }
}
html[dir=rtl] .about-history h2 {
  text-align: center;
}
html[dir=rtl] .timeline-container::after {
  left: auto;
  right: 50%;
  margin-left: 0;
  margin-right: -2px;
}
html[dir=rtl] .timeline-item {
  left: auto;
  right: 0;
}
html[dir=rtl] .timeline-item::after {
  left: auto;
  right: -10px;
}
html[dir=rtl] .timeline-item:nth-child(odd)::after {
  right: auto;
  left: -10px;
}
html[dir=rtl] .timeline-item:nth-child(even) {
  right: 50%;
  left: auto;
}
html[dir=rtl] .timeline-item:nth-child(even)::after {
  right: -10px;
  left: auto;
}
@media (max-width: 768px) {
  html[dir=rtl] .timeline-container::after {
    right: 15px;
    left: auto;
  }
  html[dir=rtl] .timeline-item {
    right: 0;
    left: auto;
    width: 100%;
    padding-right: 50px;
    padding-left: 15px;
  }
  html[dir=rtl] .timeline-item::after {
    right: 5px;
    left: auto;
  }
  html[dir=rtl] .timeline-item:nth-child(odd)::after {
    right: auto;
    left: 5px;
  }
  html[dir=rtl] .timeline-item:nth-child(even)::after {
    right: 5px;
    left: auto;
  }
}
@media (max-width: 480px) {
  html[dir=rtl] html[dir=rtl] .timeline-container::after {
    right: auto;
    left: 15px;
  }
  html[dir=rtl] html[dir=rtl] .timeline-item {
    width: 100%;
    padding: 20px 50px 20px 15px;
    right: auto;
    left: 0;
  }
  html[dir=rtl] html[dir=rtl] .timeline-item::after {
    right: 5px;
    left: auto;
    top: 25px;
  }
}

/*--------------------------------------------------------------------------*/
/* _menu.scss */
.main-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000; /*z-index eklendi*/
  gap: 0;
}
.main-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0;
  justify-content: flex-start;
}
.main-menu li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-menu .dropdown {
  position: relative;
  display: inline-block;
  width: auto;
}
.main-menu .dropdown:hover .menu-item {
  width: 100%;
  transition: min-width 0.5s ease-in-out, max-width 0.5s ease-in-out;
}
.main-menu .dropdown:hover .dropdown-menu {
  display: block;
  min-width: 100%;
  width: auto;
  opacity: 1;
  transition: opacity 0.5s ease-in-out, max-height 0.5s ease-in-out;
  max-height: 500px;
}
.main-menu .dropdown.active .menu-item {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}
.main-menu .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--overlay-color);
  min-width: 100%;
  width: auto;
  z-index: calc(var(--z-index-overlay) + 1);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, max-height 0.5s ease-in-out;
}
.main-menu .dropdown .dropdown-menu li a {
  color: var(--text-color);
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  transition: background-color 0.3s ease;
}
.main-menu .dropdown .dropdown-menu li a:hover {
  background-color: var(--primary-color);
}
.main-menu .dropdown .dropdown-menu.open {
  display: block;
  max-height: 500px;
  opacity: 1;
}
.main-menu .menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  height: var(--site-header-height);
  opacity: 0.9;
  text-decoration: none;
  padding: 0.5rem 0.7rem;
  position: relative;
  transition: min-width 0.5s ease-in-out, max-width 0.5s ease-in-out;
  white-space: nowrap;
  word-break: keep-all;
  font-size: var(--large-font-size);
  width: auto;
}
.main-menu .menu-item::after, .main-menu .menu-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  transition: opacity 0.3s ease, width 0.3s ease, background 0.3s ease;
}
.main-menu .menu-item::after {
  bottom: 0;
  height: 2px;
  background-color: var(--primary-color);
  width: 0;
}
.main-menu .menu-item::before {
  top: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  z-index: -1;
}
.main-menu .menu-item:hover, .main-menu .menu-item.hover-persistent {
  color: var(--hover-color);
  opacity: 1;
  width: auto;
  transition: width 1.5s ease;
}
.main-menu .menu-item:hover::before, .main-menu .menu-item.hover-persistent::before {
  opacity: 1;
}
.main-menu .menu-item:hover::after, .main-menu .menu-item.hover-persistent::after {
  width: 100%;
  transition: width 1.5s ease;
}
.main-menu .dropdown:hover > .menu-item {
  width: auto;
  transition: min-width 0.5s ease-in-out, max-width 0.5s ease-in-out;
}

@media (min-width: 1280px) {
  .main-menu > ul > li:nth-child(4),
  .main-menu > ul > li:nth-child(5),
  .main-menu > ul > li:nth-child(7),
  .main-menu > ul > li:nth-child(8) {
    display: none;
  }
}
@media (min-width: 1440px) {
  .main-menu > ul > li:nth-child(4) {
    display: inline-block;
  }
}
@media (min-width: 1680px) {
  .main-menu > ul > li:nth-child(5) {
    display: inline-block;
  }
}
@media (min-width: 1920px) {
  .main-menu > ul > li:nth-child(7) {
    display: inline-block;
  }
}
@media (min-width: 2560px) {
  .main-menu > ul > li:nth-child(8) {
    display: inline-block;
  }
}
/* ----------------------------------------------------- */
/* Hamburger Menü */
.hamburger-menu {
  display: block;
  position: fixed;
  top: 4vh;
  right: 3%;
  z-index: 1002;
  cursor: pointer;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s 0.1s;
}
.hamburger-menu i {
  font-size: 2rem;
  color: var(--text-color);
  transition: transform var(--transition-speed) ease, color var(--transition-speed) ease;
}
.hamburger-menu.open i {
  color: var(--hover-color);
  transform: rotate(90deg);
}
.hamburger-menu .side-menu {
  position: fixed;
  top: var(--site-header-height);
  right: 0;
  width: 250px;
  height: calc(100vh - var(--site-header-height));
  background: rgba(0, 0, 0, 0.95);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  flex-direction: column;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hamburger-menu .side-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.hamburger-menu .side-menu::-webkit-scrollbar {
  width: 0;
}
.hamburger-menu .side-menu .side-main-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hamburger-menu .side-menu .side-main-menu ul li {
  padding: 0px 0;
  position: relative;
}
.hamburger-menu .side-menu .side-main-menu ul li .menu-item-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 45px;
  position: relative;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, color 0.3s ease;
  padding: 0; /* Wrapper'ın kendisi padding olmamalı */
  /* İçindeki a elementi için normal menü öğeleri ile aynı padding */
}
.hamburger-menu .side-menu .side-main-menu ul li .menu-item-wrapper:hover {
  background: rgba(238, 125, 2, 0.1);
  color: var(--hover-color);
  width: 100%;
}
.hamburger-menu .side-menu .side-main-menu ul li .menu-item-wrapper .dropdown-trigger.active .dropdown-arrow {
  color: var(--hover-color);
}
.hamburger-menu .side-menu .side-main-menu ul li .menu-item-wrapper > a {
  padding: 5px 25px !important;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hamburger-menu .side-menu .side-main-menu ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 45px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: background 0.3s ease, color 0.3s ease;
  width: 100%;
  padding: 5px 25px;
}
.hamburger-menu .side-menu .side-main-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 1;
}
.hamburger-menu .side-menu .side-main-menu ul li a:hover {
  background: rgba(238, 125, 2, 0.1);
  color: var(--hover-color);
  width: 100%;
}
.hamburger-menu .side-menu .side-main-menu ul li a:hover::after {
  transform: scaleX(1);
}
.hamburger-menu .side-menu .side-main-menu ul li a i.dropdown-arrow {
  display: inline-block;
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--text-color);
  transition: transform 0.3s ease, color 0.3s ease;
  margin-left: auto;
  transform: rotate(0deg);
}
.hamburger-menu .side-menu .side-main-menu ul li .dropdown-menu {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.hamburger-menu .side-menu .side-main-menu ul li .dropdown-menu.open {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
}
.hamburger-menu .side-menu .side-main-menu ul li .dropdown-menu li a {
  font-size: 0.8rem;
  white-space: nowrap;
  padding-left: 40px;
}
.hamburger-menu .side-menu .side-main-menu ul li .dropdown-menu li a:hover {
  background-color: rgba(238, 125, 2, 0.2);
}
.hamburger-menu .side-menu .side-main-menu ul li .search-bar-side {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hamburger-menu .side-menu .side-main-menu ul li .search-bar-side .search-input {
  flex-grow: 1;
  padding: 0.5rem;
  border: 1px solid var(--text-color);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
}
.hamburger-menu .side-menu .side-main-menu ul li .search-bar-side .search-button-side {
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
}
.hamburger-menu .side-menu .side-main-menu ul li .search-bar-side .search-button-side i {
  font-size: 1.2rem;
}
.hamburger-menu .side-menu .side-main-menu ul li .side-language-options {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 45px;
  position: relative;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, color 0.3s ease;
}
.hamburger-menu .side-menu .side-main-menu ul li .side-language-options:hover {
  background: rgba(238, 125, 2, 0.1);
  color: var(--hover-color);
  width: 100%;
}
.hamburger-menu .side-menu .side-main-menu ul li .side-language-options .dropdown-trigger.active .dropdown-arrow {
  color: var(--hover-color);
}
.hamburger-menu .side-menu .side-main-menu ul li .side-language-options a i.dropdown-arrow {
  display: inline-block;
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--text-color);
  transition: transform 0.3s ease, color 0.3s ease;
  margin-left: auto;
  transform: rotate(0deg);
}

html[dir=rtl] .hamburger-menu {
  right: auto;
  left: 3%;
}
html[dir=rtl] .hamburger-menu .side-menu {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}
html[dir=rtl] .hamburger-menu .side-menu.open {
  transform: translateX(0);
}
html[dir=rtl] .hamburger-menu .side-menu .side-main-menu ul li .menu-item-wrapper > a i.dropdown-arrow,
html[dir=rtl] .hamburger-menu .side-menu .side-main-menu ul li a i.dropdown-arrow {
  margin-left: 0 !important;
  margin-right: auto !important;
  margin-right: 10px !important;
}
html[dir=rtl] .hamburger-menu .side-menu .side-main-menu ul li .side-language-options a i.dropdown-arrow {
  margin-left: 0 !important;
  margin-right: auto !important;
  margin-right: 10px !important;
}

/* Google reCAPTCHA Rozet Kontrolü */
.grecaptcha-badge {
  /* Varsayılan olarak rozeti tamamen gizle ve görünmez yap */
  visibility: hidden !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease-in-out, visibility 0s 0.3s !important;
}

body.recaptcha-visible .grecaptcha-badge {
  /* Sadece body'de 'recaptcha-visible' sınıfı varken görünür yap */
  visibility: visible !important;
  opacity: 1 !important;
  transition: opacity 0.3s ease-in-out !important;
}

.fab-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s, bottom 0.4s ease;
}
.fab-container.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease, bottom 0.4s ease;
}

.fab-main, .fab-action a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.fab-main {
  background-color: #007bff;
  border: none;
  cursor: pointer;
  z-index: 2;
}
.fab-main:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

.fab-action {
  transform: scale(0);
  opacity: 0;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  z-index: 1;
}
.fab-action a.whatsapp {
  background-color: #25D366;
}
.fab-action a.whatsapp:hover {
  background-color: rgb(29.3911290323, 167.6088709677, 81.0241935484);
}
.fab-action a.phone {
  background-color: var(--secondary-color);
}
.fab-action a.phone:hover {
  background-color: rgb(87.4610778443, 113.5688622754, 130.5389221557);
}

.fab-container.active .fab-main i {
  transform: rotate(135deg);
  transition: transform 0.3s ease;
}
.fab-container.active .fab-action {
  transform: scale(1);
  opacity: 1;
}

html[dir=rtl] .fab-container {
  right: auto;
  left: 40px;
}

.blog-container, .post-container {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f8f8f8;
}

.blog-header {
  text-align: center;
  margin-bottom: 4rem;
}
.blog-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.blog-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.blog-card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.blog-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .card-image img {
  transform: scale(1.05);
}
.blog-card .card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card .card-date {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.5rem;
}
.blog-card .card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.blog-card .card-summary {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  flex-grow: 1;
  margin-bottom: 1rem;
}
.blog-card .card-read-more {
  color: var(--primary-color);
  font-weight: 700;
  text-align: right;
  margin-top: auto;
}

.blog-post {
  background: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 820px;
  margin: 0 auto !important;
}

.post-hero {
  margin-bottom: 2rem;
}
.post-hero img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 6px;
}

.post-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}
.post-content h2, .post-content h3 {
  color: var(--secondary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.post-content h2 {
  font-size: 1.8rem;
}
.post-content h3 {
  font-size: 1.5rem;
}
.post-content p {
  margin-bottom: 1.5rem;
}

.post-tags {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.post-tags span {
  background-color: #e9e9e9;
  color: #555;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  gap: 2rem;
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.post-navigation .nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  padding: 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  flex-basis: 48%;
}
.post-navigation .nav-link:hover {
  background-color: #fff;
  border-color: var(--primary-color);
}
.post-navigation .nav-link i {
  font-size: 1.5rem;
  color: var(--primary-color);
}
.post-navigation .nav-link span {
  font-size: 0.9rem;
  color: #777;
  display: block;
}
.post-navigation .nav-link h4 {
  margin: 0.25rem 0 0 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}
.post-navigation .nav-link.next {
  text-align: right;
  justify-content: flex-end;
}

.post-sidebar {
  width: 100%;
  max-width: 820px;
  margin: 3rem auto 0 auto;
}
.post-sidebar .related-posts {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.post-sidebar .related-posts h3 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eee;
}
.post-sidebar .related-posts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-sidebar .related-posts ul li a {
  display: block;
  padding: 0.75rem 0;
  text-decoration: none;
  color: #444;
  border-bottom: 1px solid #f5f5f5;
  transition: color 0.3s ease;
}
.post-sidebar .related-posts ul li a:hover {
  color: var(--primary-color);
}
.post-sidebar .related-posts ul li:last-child a {
  border-bottom: none;
}

@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 2.2rem;
  }
  .post-title {
    font-size: 2rem;
  }
  .blog-container, .post-container {
    padding: 3rem 1rem;
  }
}
@media (min-width: 1200px) {
  .post-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1300px;
  }
  .blog-post {
    margin: 0;
    max-width: none;
  }
  .post-sidebar {
    margin: 0;
    position: sticky;
    top: calc(var(--site-header-height) + 2rem);
    max-width: none;
  }
}
#search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}
#search-overlay.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.search-modal {
  background-color: #fff;
  width: 90%;
  max-width: 700px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  padding: 2rem;
}

#search-close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  line-height: 1;
}
#search-close-button:hover {
  color: #333;
}

#search-input-field {
  width: 100%;
  padding: 1rem;
  font-size: 1.2rem;
  border: none;
  border-bottom: 2px solid #ddd;
  margin-bottom: 1.5rem;
  outline: none;
}
#search-input-field:focus {
  border-bottom-color: var(--primary-color);
}

#search-results-container {
  max-height: 60vh;
  overflow-y: auto;
}

.search-result-item {
  display: block;
  padding: 1rem;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  margin-bottom: 0.5rem;
  transition: background-color 0.2s ease;
}
.search-result-item:hover {
  background-color: #f5f5f5;
}
.search-result-item .result-type {
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.search-result-item .result-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}
.search-result-item .result-summary {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.search-category-header {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

/* İlk kategori başlığının üst boşluğunu kaldır */
.search-category-header:first-of-type {
  margin-top: 0;
}

.search-result-item .result-type {
  /* Bu artık h2 başlığında olduğu için gizleyebiliriz veya kaldırabiliriz */
  display: none;
}

.search-result-item .result-title {
  /* Başlık rengini biraz daha belirgin yapalım */
  color: #333;
}

.search-highlight {
  background-color: #FFDEB3; /* Vurgulama için yumuşak bir turuncu */
  color: #333;
  font-weight: 600;
  padding: 1px 3px;
  border-radius: 3px;
}

/*--------------------------------------------------------------------------*/
/* _info.scss */
#dynamic-content {
  padding: var(--default-padding);
  background-color: var(--background-color);
  /*padding-top: var(--site-header-height);/* bu satırı sildiğimde de dynamic yüklenen sayfaların sorunu çözüldü.*/
  font-family: var(--font-family);
  color: #333;
}

#dynamic-content .contact-header {
  text-align: center;
  font-size: var(--medium-font-size);
  font-weight: bold;
  margin-bottom: 20px;
}

#dynamic-content .contact-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

#dynamic-content .contact-content .contact-details,
#dynamic-content .contact-content .contact-form {
  flex: 1 1 calc(50% - 20px);
  background: var(--text-color);
  padding: var(--default-padding);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 1.6;
}

#dynamic-content .contact-content .contact-details {
  font-size: 14px;
  line-height: 1.6;
}

#dynamic-content .contact-content .contact-details p {
  margin: 10px 0;
}

#dynamic-content .contact-content .contact-details p strong {
  display: block;
  font-weight: bold;
}

#dynamic-content .contact-content .contact-form form {
  display: flex;
  flex-direction: column;
}

#dynamic-content .contact-content .contact-form form input,
#dynamic-content .contact-content .contact-form form select,
#dynamic-content .contact-content .contact-form form textarea {
  margin-bottom: 10px;
  padding: 10px;
  font-family: var(--font-family);
  font-size: 14px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

#dynamic-content .contact-content .contact-form form button {
  background-color: #007bff;
  color: #fff;
  font-family: var(--font-family);
  font-size: 14px;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#dynamic-content .contact-content .contact-form form button:hover {
  background-color: #0056b3;
}

#dynamic-content .map-container {
  margin-top: 20px;
}

#dynamic-content .map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* Mobil optimizasyonları */
@media (max-width: 768px) {
  #dynamic-content .contact-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  #dynamic-content .contact-content .contact-details,
  #dynamic-content .contact-content .contact-form {
    flex: 1 1 100%;
    padding: 1.5rem 1rem;
  }
  #dynamic-content .contact-content .contact-form form input, #dynamic-content .contact-content .contact-form form select, #dynamic-content .contact-content .contact-form form textarea {
    font-size: 16px; /* iOS zoom önleme */
    padding: 12px;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
  }
  #dynamic-content .contact-content .contact-form form button {
    font-size: 16px;
    padding: 14px 24px;
    width: 100%;
    min-height: 48px;
  }
  #dynamic-content .map-container {
    margin-top: 1.5rem;
  }
  #dynamic-content .map-container iframe {
    height: 250px;
  }
}
/* İletişim Formu Bildirim Stilleri */
.form-message {
  padding: 15px;
  margin-top: 20px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.form-message.show {
  opacity: 1;
  max-height: 100px; /* İçeriğin sığacağı bir yükseklik */
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.projects-container {
  background-color: #f8f8f8;
  padding: 5rem 2rem;
}

.projects-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem auto;
}
.projects-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.projects-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.projects-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: #fff;
  color: var(--secondary-color);
  border: 1px solid #ddd;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}
.filter-btn.active {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.project-card.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.d-none {
  display: none !important;
}

.card-content {
  padding: 1.5rem;
}
.card-content h3 {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}
.card-content .category-badge {
  display: inline-block;
  background: rgba(237, 114, 29, 0.1);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.card-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
@media (max-width: 768px) {
  .projects-header h1 {
    font-size: 2.2rem;
  }
  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
.products-page-container {
  padding-top: 0;
  position: relative;
  z-index: 0;
}

.products-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center 70%;
  padding: 2rem;
  margin-bottom: 3rem;
}

.products-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.products-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.products-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
}

.products-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.product-groups-list {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem; /* Diğer sayfalarla aynı padding */
}

.product-group {
  padding: 0;
  margin-bottom: 2rem;
  background-color: transparent;
  border: 1px solid transparent;
}

.product-detail-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 2rem;
  transition: max-height 0.4s ease, margin 0.4s ease, padding 0.4s ease;
  overflow: hidden;
}
.product-detail-wrapper .detail-image {
  position: relative;
  flex: 1 1 250px;
}
.product-detail-wrapper .detail-image img {
  width: 100%;
  border-radius: 6px;
  display: block;
}
.product-detail-wrapper .detail-image.clickable-image {
  cursor: pointer;
}
.product-detail-wrapper .detail-image.clickable-image .media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.product-detail-wrapper .detail-image.clickable-image .media-overlay i {
  font-size: 2.5rem;
  margin-bottom: 5px;
}
.product-detail-wrapper .detail-image.clickable-image .media-overlay span {
  font-size: 1.2rem;
  font-weight: bold;
}
.product-detail-wrapper .detail-image.clickable-image:hover .media-overlay {
  opacity: 1;
}
.product-detail-wrapper .detail-text {
  flex: 2 1 400px;
}
.product-detail-wrapper .detail-text .catalog-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
.product-detail-wrapper .detail-text .catalog-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 0.95em;
  text-align: left;
}
.comparison-table th, .comparison-table td {
  border: 1px solid #ddd;
  padding: 10px 15px;
}
.comparison-table th {
  background-color: #e9e9e9;
  font-weight: bold;
  color: var(--secondary-color);
  white-space: nowrap;
}
.comparison-table tr:nth-child(even) {
  background-color: #f9f9f9;
}
@media (max-width: 768px) {
  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .comparison-table thead, .comparison-table tbody, .comparison-table th, .comparison-table td, .comparison-table tr {
    display: block;
  }
  .comparison-table th {
    text-align: center;
  }
  .comparison-table tr {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
  }
  .comparison-table td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
    text-align: right;
    min-width: 150px;
  }
  .comparison-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
    color: #555;
  }
}

.accordion-header {
  width: 100%;
  padding: 1.2rem 0; /* padding-left ve padding-right kaldırıldı, container padding kullanılacak */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #333;
  position: relative;
  background-color: transparent;
  border-top: none;
  transition: background-color 0.3s ease, color 0.2s ease;
  outline: none !important; /* Tıklamada oluşan çerçeveyi kaldır */
}
.accordion-header:hover {
  color: var(--primary-color);
  background-color: #fdfdfd;
}
.accordion-header.active {
  background-color: #fafafa;
}
.accordion-header.active i {
  transform: rotate(180deg);
}
.accordion-header.active, .accordion-header.has-active-child {
  color: var(--primary-color);
  font-weight: 700;
}
.accordion-header i {
  transition: transform 0.3s ease;
}
.accordion-header:focus {
  outline: none !important;
}
.accordion-header:active {
  outline: none !important;
}

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

[class$=-type]:not(:last-child),
[class$=-subtype]:not(:last-child),
[class$=-subsubtype]:not(:last-child) {
  border-bottom: 1px solid #e9e9e9;
}

[class$=-type] {
  margin-left: -2rem; /* Container padding'ini telafi et */
  margin-right: -2rem;
}
[class$=-type] > .accordion-header {
  padding-left: 2rem !important; /* Container padding'i geri ekle - diğer sayfalarla hizalı */
  padding-right: 2rem !important;
}
[class$=-type] > .accordion-header.active::before, [class$=-type] > .accordion-header.has-active-child::before {
  content: "";
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 2rem;
  width: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}
[class$=-type] > .accordion-content {
  background-color: #fafafa;
  padding-left: 2rem !important; /* İçerik de aynı hizada */
  padding-right: 2rem !important;
}

[class$=-subtype] > .accordion-header {
  padding-left: 3rem;
  font-size: 0.95em;
}
[class$=-subtype] > .accordion-header.active::before, [class$=-subtype] > .accordion-header.has-active-child::before {
  content: "";
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 1.75rem;
  width: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}
[class$=-subtype] > .accordion-content {
  background-color: #fff;
}
[class$=-subtype] > .accordion-content > .product-detail-wrapper {
  padding-left: 3rem;
}

[class$=-subsubtype] > .accordion-header {
  padding-left: 4.5rem;
  font-size: 0.9em;
}
[class$=-subsubtype] > .accordion-header.active::before, [class$=-subsubtype] > .accordion-header.has-active-child::before {
  content: "";
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 3.25rem;
  width: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}
[class$=-subsubtype] > .accordion-content {
  background-color: #fff;
}
[class$=-subsubtype] > .accordion-content > .product-detail-wrapper {
  padding-left: 4.5rem;
}

html[dir=rtl] .accordion-header,
html[dir=rtl] .faq-question {
  text-align: right;
}
html[dir=rtl] .product-detail-wrapper .detail-text p, html[dir=rtl] .product-detail-wrapper .detail-text ul {
  text-align: right;
}
html[dir=rtl] .product-detail-wrapper .detail-text ul {
  padding-left: 0;
  padding-right: 25px;
}
html[dir=rtl] .product-detail-wrapper .detail-text ul li {
  padding-left: 0;
  padding-right: 25px;
}
html[dir=rtl] .product-detail-wrapper .detail-text ul li::before {
  left: auto;
  right: 0;
}
html[dir=rtl] [class$=-type] > .accordion-header.active::before,
html[dir=rtl] [class$=-type] > .accordion-header.has-active-child::before,
html[dir=rtl] [class$=-subtype] > .accordion-header.active::before,
html[dir=rtl] [class$=-subtype] > .accordion-header.has-active-child::before,
html[dir=rtl] [class$=-subsubtype] > .accordion-header.active::before,
html[dir=rtl] [class$=-subsubtype] > .accordion-header.has-active-child::before {
  left: auto;
  right: 0.75rem;
}
html[dir=rtl] [class$=-subtype] > .accordion-header {
  padding-left: 2rem;
  padding-right: 3rem;
}
html[dir=rtl] [class$=-subtype] > .accordion-content > .product-detail-wrapper {
  padding-left: 2rem;
  padding-right: 3rem;
}
html[dir=rtl] [class$=-subsubtype] > .accordion-header {
  padding-left: 2rem;
  padding-right: 4.5rem;
}
html[dir=rtl] [class$=-subsubtype] > .accordion-content > .product-detail-wrapper {
  padding-left: 2rem;
  padding-right: 4.5rem;
}
html[dir=rtl] .comparison-table {
  text-align: right;
}
@media (max-width: 768px) {
  html[dir=rtl] .comparison-table td {
    text-align: left;
    padding-right: 50%;
    padding-left: 10px;
  }
  html[dir=rtl] .comparison-table td::before {
    left: auto;
    right: 6px;
    text-align: right;
  }
}

.rich-text-content h2, .rich-text-content h3, .rich-text-content h4, .rich-text-content h5, .rich-text-content h6 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}
.rich-text-content p {
  margin-bottom: 1rem;
}
.rich-text-content ul {
  margin-bottom: 1.5rem;
  list-style-position: inside;
  padding-left: 20px;
}

html[dir=rtl] .rich-text-content ul {
  padding-left: 0;
  padding-right: 20px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.product-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color);
  cursor: pointer;
}
.product-action-btn.catalog-btn {
  background-color: var(--primary-color);
  color: white;
}
.product-action-btn.catalog-btn:hover {
  background-color: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
}
.product-action-btn.tech-docs-btn {
  background-color: transparent;
  color: var(--primary-color);
}
.product-action-btn.tech-docs-btn:hover {
  background-color: rgba(237, 114, 29, 0.1);
}

.tech-docs-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0;
  animation: fadeIn 0.3s forwards;
}
.tech-docs-modal-overlay .tech-docs-modal {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.9);
  animation: scaleUp 0.3s forwards;
}
.tech-docs-modal-overlay .tech-docs-modal h3 {
  margin-top: 0;
  color: var(--secondary-color);
}
.tech-docs-modal-overlay .tech-docs-modal ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 60vh;
  overflow-y: auto;
}
.tech-docs-modal-overlay .tech-docs-modal li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  text-decoration: none;
  color: var(--text-color);
  border-radius: 5px;
  transition: background-color 0.2s ease;
}
.tech-docs-modal-overlay .tech-docs-modal li a:hover {
  background-color: #f4f4f4;
}
.tech-docs-modal-overlay .tech-docs-modal li a i {
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 30px;
  text-align: center;
}
.tech-docs-modal-overlay .tech-docs-modal .close-modal-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleUp {
  from {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
  }
}
@keyframes scaleUp {
  from {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
  }
}
.custom-slider-container {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}
.custom-slider-container.single-slide {
  height: auto;
  perspective: none;
}
.custom-slider-container.single-slide .slider-arrow, .custom-slider-container.single-slide .slider-dots {
  display: none;
}
.custom-slider-container.single-slide .slider-slide {
  position: relative;
  transform: none !important;
  opacity: 1 !important;
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 4/3;
}

.slider-track {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  position: relative;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 60%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, opacity 0.5s ease, z-index 0s 0.25s;
  cursor: pointer;
}
.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-slide.slide-center {
  transform: translateZ(0) translateX(0) scale(1);
  opacity: 1;
  z-index: 10;
}
.slider-slide.slide-left-1 {
  transform: translateZ(-150px) translateX(-45%) rotateY(35deg) scale(0.8);
  opacity: 0.7;
  z-index: 9;
}
.slider-slide.slide-right-1 {
  transform: translateZ(-150px) translateX(45%) rotateY(-35deg) scale(0.8);
  opacity: 0.7;
  z-index: 9;
}
.slider-slide.slide-left-2 {
  transform: translateZ(-250px) translateX(-80%) rotateY(40deg) scale(0.6);
  opacity: 0.4;
  z-index: 8;
}
.slider-slide.slide-right-2 {
  transform: translateZ(-250px) translateX(80%) rotateY(-40deg) scale(0.6);
  opacity: 0.4;
  z-index: 8;
}
.slider-slide.slide-far {
  transform: translateZ(-400px) scale(0);
  opacity: 0;
  z-index: 7;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--primary-color);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.slider-arrow:hover {
  background-color: white;
}
.slider-arrow.prev {
  left: 10px;
}
.slider-arrow.next {
  right: 10px;
}

.slider-dots {
  display: none !important; /* Nokta göstergeleri kaldırıldı - sadece ok işaretleri kullanılıyor */
}

@media (max-width: 768px) {
  .custom-slider-container {
    height: 250px;
  }
  .slider-slide {
    width: 70%;
    height: 100%;
  }
  .slider-arrow {
    width: 38px;
    height: 38px;
  }
  .slider-arrow.prev {
    left: 5px;
  }
  .slider-arrow.next {
    right: 5px;
  }
  .slider-dots {
    bottom: -25px;
  }
}
.corporate-container {
  background-color: var(--background-color);
  color: #333;
  padding: 5rem 2rem;
  font-family: var(--font-family);
}

.corporate-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem auto;
}
.corporate-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.corporate-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.corporate-content {
  max-width: 1200px;
  margin: 0 auto;
}

.corporate-section {
  margin-bottom: 4rem;
}

.mission-vision {
  display: flex;
  gap: 3rem;
}
.mission-vision .mission, .mission-vision .vision {
  flex: 1;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.mission-vision h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 0.5rem;
}
.mission-vision p {
  font-size: 1rem;
  line-height: 1.8;
}

.values {
  text-align: center;
}
.values h2 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: var(--secondary-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: #fff;
  padding: 2.5rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.value-card .fas {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.value-card h3 {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}
.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.quality-policy {
  background-color: #e9e9e9;
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 5px solid var(--primary-color);
}
.quality-policy h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}
.quality-policy p {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
}

@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mission-vision {
    flex-direction: column;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .corporate-header h1 {
    font-size: 2.2rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}
.faq-container {
  padding: 5rem 2rem;
  background-color: #f8f8f8;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-header h1 {
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.faq-header p {
  font-size: 1.1rem;
  color: #555;
}

.faq-category {
  margin-bottom: 3rem;
}
.faq-category h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.8rem;
  margin-bottom: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.5rem 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--secondary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question i {
  transition: transform 0.3s ease;
  font-size: 1rem;
}
.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.faq-answer p {
  padding: 0 1rem 1.5rem 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* ==========================================================================
   Yasal Sayfalar Stili (Gizlilik, Kullanım vb.) - FAQ MODELİ UYGULANDI
   ========================================================================== */
.legal-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.legal-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}
.legal-header h1 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin: 0;
}

.legal-content {
  line-height: 1.8;
}
.legal-content h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #fde8d9;
  text-align: left;
}
.legal-content h3 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.legal-content p, .legal-content li, .legal-content strong {
  color: #333;
}
.legal-content ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 1rem;
}
.legal-content li {
  margin-bottom: 0.5rem;
}
.legal-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}
.legal-content a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------------------*/
/* _mobile.scss - Mobil Uyumluluk İyileştirmeleri */
/* Geniş ekran tasarımını bozmadan mobil optimizasyonları */
/* ==========================================================================
   Genel Mobil Optimizasyonları
   ========================================================================== */
/* Mobil için temel font boyutları */
@media (max-width: 768px) {
  html {
    font-size: 14px; /* Base font size'ı küçült */
  }
  body {
    -webkit-text-size-adjust: 100%; /* iOS Safari için */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  /* Touch target'ları minimum 44x44px yap (Apple HIG) */
  a, button, input, select, textarea {
    min-height: 44px;
    min-width: 44px;
  }
}
/* ==========================================================================
   Header ve Navigation Mobil Optimizasyonları
   ========================================================================== */
@media (max-width: 1024px) {
  /* Ana menüyü gizle, hamburger menüyü göster */
  .main-menu {
    display: none !important;
  }
  .hamburger-menu {
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .hamburger-menu i {
    font-size: 1.8rem; /* Mobilde biraz küçült */
  }
  /* Logo boyutunu mobil için optimize et */
  .logo-container {
    top: 5vh; /* Mobilde biraz daha yukarı */
  }
  .logo-container .site-logo {
    height: 40px; /* Mobilde daha küçük logo */
    max-width: 150px;
  }
  /* Language ve search container'ı mobilde gizle (hamburger menüde var) */
  .language-search-container {
    visibility: hidden !important;
    pointer-events: none !important;
  }
}
/* Hamburger menü genişliğini mobil için optimize et */
@media (max-width: 768px) {
  .hamburger-menu {
    top: 3vh;
    right: 5%;
  }
  .hamburger-menu i {
    font-size: 1.6rem;
  }
  .hamburger-menu .side-menu {
    width: 85vw; /* Mobilde daha geniş menü */
    max-width: 320px;
  }
  .hamburger-menu .side-menu .side-main-menu ul li a {
    font-size: 0.95rem; /* Okunabilirlik için */
    padding: 12px 20px !important; /* Touch için daha büyük padding */
    min-height: 48px; /* Touch target */
  }
  .hamburger-menu .side-menu .side-main-menu ul li .menu-item-wrapper {
    padding: 0 !important; /* Wrapper'ın kendisi padding olmamalı */
  }
  .hamburger-menu .side-menu .side-main-menu ul li .menu-item-wrapper > a {
    font-size: 0.95rem !important; /* Okunabilirlik için */
    padding: 12px 20px !important; /* Touch için daha büyük padding - normal menü öğeleri ile aynı */
    min-height: 48px !important; /* Touch target */
  }
}
/* ==========================================================================
   Video ve Intro Mobil Optimizasyonları
   ========================================================================== */
@media (max-width: 768px) {
  .intro-video {
    /* Mobilde video performansını optimize et */
  }
  .intro-video video {
    /* Mobilde video otomatik oynatmayı optimize et */
    object-fit: cover;
  }
  /* Video overlay'i mobilde daha koyu yap (okunabilirlik için) */
  .video-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    mix-blend-mode: normal; /* Mobilde multiply yerine normal */
  }
}
/* ==========================================================================
   Tagline ve Headline Mobil Optimizasyonları
   ========================================================================== */
@media (max-width: 768px) {
  .tagline {
    padding: 2rem 1rem; /* Mobilde daha az padding */
  }
  .tagline .headline_title {
    font-size: 1.5rem !important; /* Mobilde daha küçük başlık */
    line-height: 1.4;
  }
  .tagline .headline_title .main-title {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
  }
  .tagline .headline_title .small-text {
    font-size: 1rem;
    display: block;
    margin: 0.3rem 0;
  }
}
/* ==========================================================================
   Tile Container Mobil Optimizasyonları
   ========================================================================== */
@media (max-width: 768px) {
  .tile-container {
    padding: 1rem 0.5rem; /* Mobilde daha az padding */
    gap: 0.75rem; /* Tile'lar arası boşluk */
  }
  .tile-container .tile {
    min-height: 200px; /* Mobilde daha küçük tile'lar */
  }
  .tile-container .tile .tile-front p {
    font-size: 0.9rem; /* Mobilde daha küçük font */
    padding: 0.5rem;
  }
  .tile-container .tile .tile-back p {
    font-size: 0.85rem;
    padding: 0.5rem;
  }
}
/* Touch için tile hover efektini iyileştir */
@media (hover: none) and (pointer: coarse) {
  .tile {
    /* Touch cihazlarda tap feedback - outline kaldırıldı */
    -webkit-tap-highlight-color: transparent;
  }
  .tile:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
}
/* ==========================================================================
   Form Mobil Optimizasyonları
   ========================================================================== */
@media (max-width: 768px) {
  #dynamic-content .contact-content {
    flex-direction: column; /* Mobilde tek sütun */
    gap: 1.5rem;
  }
  #dynamic-content .contact-content .contact-details,
  #dynamic-content .contact-content .contact-form {
    flex: 1 1 100%; /* Tam genişlik */
    padding: 1.5rem 1rem; /* Mobilde daha az padding */
  }
  /* Form input'larını mobil için optimize et */
  #dynamic-content .contact-content .contact-form form input, #dynamic-content .contact-content .contact-form form select, #dynamic-content .contact-content .contact-form form textarea {
    font-size: 16px; /* iOS zoom'u önlemek için minimum 16px */
    padding: 12px; /* Touch için daha büyük padding */
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
  }
  #dynamic-content .contact-content .contact-form form button {
    font-size: 16px;
    padding: 14px 24px; /* Touch için daha büyük buton */
    width: 100%;
    min-height: 48px; /* Touch target */
  }
  /* Map container mobil optimizasyonu */
  #dynamic-content .map-container {
    margin-top: 1.5rem;
  }
  #dynamic-content .map-container iframe {
    height: 250px; /* Mobilde daha kısa harita */
  }
}
/* ==========================================================================
   FAB (Floating Action Button) Mobil Optimizasyonları
   ========================================================================== */
@media (max-width: 768px) {
  .fab-container {
    bottom: 20px; /* Mobilde daha aşağıda */
    right: 20px; /* Mobilde daha içeride */
    gap: 12px; /* Butonlar arası boşluk */
  }
  .fab-container.active .fab-action {
    /* Mobilde daha yakın butonlar */
    margin-bottom: 0;
  }
  .fab-main, .fab-action a {
    width: 56px; /* Mobilde biraz küçült */
    height: 56px;
    font-size: 1.6rem;
    /* Touch feedback */
  }
  .fab-main:active, .fab-action a:active {
    transform: scale(0.95);
  }
}
/* Küçük ekranlar için FAB optimizasyonu */
@media (max-width: 480px) {
  .fab-container {
    bottom: 15px;
    right: 15px;
  }
  .fab-main, .fab-action a {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }
}
/* ==========================================================================
   Footer Mobil Optimizasyonları
   ========================================================================== */
@media (max-width: 768px) {
  .site-footer {
    padding: 2rem 1rem; /* Mobilde daha az padding */
  }
  .site-footer .footer-content {
    gap: 1.5rem;
  }
  .site-footer .footer-content .footer-logo img {
    max-width: 120px; /* Mobilde daha küçük logo */
  }
  .site-footer .footer-content .footer-social a {
    width: 40px; /* Mobilde daha küçük sosyal medya ikonları */
    height: 40px;
    font-size: 1.2rem;
  }
}
/* ==========================================================================
   Cookie Notice Mobil Optimizasyonları
   ========================================================================== */
@media (max-width: 768px) {
  #cookie-notice {
    width: 95%; /* Mobilde neredeyse tam genişlik */
    left: 2.5%;
    right: 2.5%;
    padding: 1rem;
    font-size: 0.9rem;
    bottom: 10px; /* Mobilde daha yukarıda */
  }
  #cookie-notice .cookie-buttons {
    flex-direction: column; /* Mobilde dikey butonlar */
    gap: 0.5rem;
  }
  #cookie-notice .cookie-buttons .cookie-button {
    width: 100%; /* Tam genişlik butonlar */
    margin: 0;
    padding: 12px;
    font-size: 0.9rem;
    min-height: 44px; /* Touch target */
  }
  #cookie-preference-popup {
    width: 95%;
    max-width: none;
    padding: 1.5rem 1rem;
  }
  #cookie-preference-popup .cookie-popup-content h2 {
    font-size: 1.3rem;
  }
  #cookie-preference-popup .cookie-popup-content .cookie-item-wrapper {
    padding: 1rem 0;
  }
}
/* ==========================================================================
   Search Overlay Mobil Optimizasyonları
   ========================================================================== */
@media (max-width: 768px) {
  #search-overlay .search-modal {
    width: 95%;
    max-width: none;
    padding: 1.5rem 1rem;
  }
  #search-overlay .search-modal #search-input-field {
    font-size: 16px; /* iOS zoom önleme */
    padding: 14px;
    min-height: 48px;
  }
  #search-overlay .search-modal #search-close-button {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
}
/* ==========================================================================
   Blog ve İçerik Sayfaları Mobil Optimizasyonları
   ========================================================================== */
@media (max-width: 768px) {
  /* Blog kartları mobilde tek sütun */
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  /* İçerik genişliğini mobil için optimize et */
  .blog-post-content,
  .about-content,
  .corporate-content {
    padding: 1.5rem 1rem;
    font-size: 1rem;
    line-height: 1.7;
  }
  .blog-post-content h1, .blog-post-content h2, .blog-post-content h3,
  .about-content h1,
  .about-content h2,
  .about-content h3,
  .corporate-content h1,
  .corporate-content h2,
  .corporate-content h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  .blog-post-content p,
  .about-content p,
  .corporate-content p {
    margin-bottom: 1rem;
  }
}
/* ==========================================================================
   Products Sayfası Mobil Optimizasyonları
   ========================================================================== */
@media (max-width: 768px) {
  .products-hero {
    min-height: 40vh; /* Mobilde daha kısa hero */
  }
  .product-categories {
    grid-template-columns: 1fr; /* Mobilde tek sütun */
    gap: 1rem;
  }
  /* Product slider mobil optimizasyonu */
  .product-slider-container {
    padding: 1rem 0;
  }
  .product-slider-container .product-slide {
    padding: 1rem;
  }
}
/* ==========================================================================
   Projects Sayfası Mobil Optimizasyonları
   ========================================================================== */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr; /* Mobilde tek sütun */
    gap: 1.5rem;
  }
  .project-card {
    padding: 1rem;
  }
  .project-card h3 {
    font-size: 1.2rem;
  }
}
/* ==========================================================================
   FAQ Sayfası Mobil Optimizasyonları
   ========================================================================== */
@media (max-width: 768px) {
  .faq-container {
    padding: 2rem 1rem;
  }
  .faq-container .faq-header h1 {
    font-size: 1.8rem;
  }
  .faq-container .faq-question {
    font-size: 1rem;
    padding: 1rem 0.75rem;
    min-height: 48px; /* Touch target */
  }
  .faq-container .faq-answer p {
    padding: 0 0.75rem 1rem 0.75rem;
    font-size: 0.95rem;
  }
}
/* ==========================================================================
   Touch ve Interactivity İyileştirmeleri
   ========================================================================== */
/* Touch cihazlar için genel iyileştirmeler */
@media (hover: none) and (pointer: coarse) {
  /* Tüm tıklanabilir elementler için touch feedback - outline kaldırıldı */
  a, button, .accordion-header, .menu-item {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation; /* Double-tap zoom'u önle */
    outline: none !important;
  }
  /* Hover efektlerini touch'ta devre dışı bırak */
  .tile:hover .tile-inner {
    transform: none;
  }
}
/* ==========================================================================
   Landscape Orientation Optimizasyonları
   ========================================================================== */
@media (max-width: 768px) and (orientation: landscape) {
  .tagline {
    padding: 1rem;
  }
  .tagline .headline_title {
    font-size: 1.2rem !important;
  }
  .tile-container {
    grid-template-columns: repeat(2, 1fr); /* Landscape'te 2 sütun */
  }
  .intro-video video {
    /* Landscape'te video daha iyi görünsün */
    object-fit: cover;
  }
}
/* ==========================================================================
   Çok Küçük Ekranlar (320px ve altı)
   ========================================================================== */
@media (max-width: 320px) {
  html {
    font-size: 12px;
  }
  .hamburger-menu {
    top: 2vh;
    right: 3%;
  }
  .hamburger-menu i {
    font-size: 1.4rem;
  }
  .logo-container .site-logo {
    max-width: 120px;
    height: 35px;
  }
  .tagline .headline_title {
    font-size: 1.2rem !important;
  }
}
/* ==========================================================================
   Slider Mobil Optimizasyonları
   ========================================================================== */
@media (max-width: 768px) {
  #fenestra-slider-overlay {
    padding: 1rem;
  }
  #fenestra-slider-content {
    max-width: 95%;
    max-height: 85vh;
  }
  #fenestra-media-container img, #fenestra-media-container video {
    max-width: 100%;
    max-height: 70vh;
  }
  /* Slider kapatma butonu mobilde daha büyük */
  #fenestra-slider-close {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    top: 10px;
    right: 10px;
  }
}
/* ==========================================================================
   Search Bar Mobil Optimizasyonları
   ========================================================================== */
@media (max-width: 768px) {
  .search-bar .search-input {
    font-size: 16px; /* iOS zoom önleme */
    padding: 12px;
    min-height: 44px;
    width: 100%;
  }
  .search-bar .search-button {
    min-width: 44px;
    min-height: 44px;
    font-size: 1.3rem;
  }
}
/* ==========================================================================
   Language Switcher Mobil Optimizasyonları
   ========================================================================== */
@media (max-width: 768px) {
  .language-options .language-button {
    min-width: 44px;
    min-height: 44px;
    font-size: 1.3rem;
  }
  .language-options .languages {
    top: 50px;
    min-width: 150px;
  }
  .language-options .languages button {
    padding: 12px 16px;
    min-height: 44px;
    font-size: 0.95rem;
  }
}
/* ==========================================================================
   Main Container Mobil Optimizasyonları
   ========================================================================== */
@media (max-width: 768px) {
  .main-container {
    margin-top: 100vh; /* Video yüksekliği */
    padding: 0;
  }
  /* Dynamic content padding mobilde azalt */
  #dynamic-content {
    padding: 1.5rem 1rem;
  }
}
/* ==========================================================================
   Performance Optimizasyonları
   ========================================================================== */
@media (max-width: 768px) {
  /* Mobilde gereksiz animasyonları azalt */
  * {
    will-change: auto; /* Performance için */
  }
  /* Mobilde transform kullan (GPU acceleration) */
  .tile-inner {
    transform: translateZ(0); /* Hardware acceleration */
  }
  /* Mobilde smooth scroll */
  html {
    scroll-behavior: smooth;
  }
}
/* ==========================================================================
   Accessibility İyileştirmeleri (Mobil)
   ========================================================================== */
@media (max-width: 768px) {
  /* Tüm tıklanabilir elementlerden outline'ı kaldır */
  a, button, .accordion-header, .menu-item, .tile, .fab-main, .fab-action a {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
  }
  a:focus, button:focus, .accordion-header:focus, .menu-item:focus, .tile:focus, .fab-main:focus, .fab-action a:focus {
    outline: none !important;
  }
  a:active, button:active, .accordion-header:active, .menu-item:active, .tile:active, .fab-main:active, .fab-action a:active {
    outline: none !important;
  }
  /* Sadece form elementleri için keyboard navigation için outline (accessibility) */
  input:focus,
  select:focus,
  textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
  /* Skip to content link (ekran okuyucular için) */
  .skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
  }
  .skip-to-content:focus {
    top: 0;
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
}

/*# sourceMappingURL=fenestra-style.css.map */
