:root {
  --color1: #1b1b1b;
  --color2: #3d3d3d;
  --font1: "Montserrat", Helvetica, Arial, sans-serif;
  --font2: "Cormorant Garamond", serif;
}

a {
  text-decoration: none;
}

body {
  font-family: var(--font1);
  margin: 0;
  padding: 0;
  color: var(--color1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.modal-open {
  overflow: hidden;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: none;
  z-index: 100;
  padding: 0 40px;
}

/* Header içindeki navigasyon barı */
.main-header .header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

/* Sol, orta ve sağ bölüm konteynerleri */
.main-header .header-left,
.main-header .header-center,
.main-header .header-right {
  display: flex;
  align-items: center;
  flex: 1;
}

/* Orta bölümün hizalaması */
.main-header .header-center {
  justify-content: center;
}

/* Sağ bölümün hizalaması ve elemanlar arası boşluk */
.main-header .header-right {
  justify-content: flex-end;
  gap: 20px;
}

/* GUCCI logo stili */
.main-header .logo {
  color: #1b1b1b;
}

.main-header .logo img {
  width: auto;
  height: 50px;
}

/* "Contact Us" ve "MENU" gibi yazı içeren link/butonların stili */
.main-header .header-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1b1b1b;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
}

/* Sadece ikon içeren linklerin stili */
.main-header .icon-link {
  display: inline-block;
  color: #1b1b1b;
}

/* Header içindeki tüm SVG ikonların boyutu */
.main-header .icon-link svg,
.main-header .header-link svg {
  width: 20px;
  height: 20px;
}
.main-header .header-left .header-link svg {
  width: 13px;
  height: 13px;
}
.main-header .icon-link.telefon svg {
  width: 17px;
  height: 17px;
}

/* Dil Seçici Ana Kapsayıcısı */
.language-selector {
  position: relative;
  display: inline-block;
}

/* Tetikleyici Link (İkon ve Yazıyı içerir) */
.language-selector .icon-link {
  display: flex;
  align-items: center; /* İkon ve yazıyı dikeyde hizalar */
  gap: 8px; /* İkon ve yazı arasına boşluk verir */
  text-decoration: none;
  color: inherit; /* Bağlı olduğu elementin rengini alır */
  padding: 5px; /* Tıklama alanını biraz büyütür */
  border-radius: 5px;
}
.language-selector .current-lang {
  font-weight: 500;
  font-size: 0.9rem;
}

/* Dil menüsü (Başlangıçta gizli) */
.language-selector .language-list {
  position: absolute;
  top: 100%; /* İkonun tam altında başlar */
  left: 50%;
  transform: translateX(-50%) translateY(10px); /* Yatayda ortalar ve başlangıçta biraz aşağıda */

  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  color: #2c3e50;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 8px;
  margin: 15px 0 0 0; /* İkon ile arasında boşluk bırakır */
  min-width: 140px;
  z-index: 100;

  /* Animasyon için başlangıç durumu */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* JavaScript ile .active sınıfı eklendiğinde menüyü göster */
.language-selector.active .language-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0); /* Son pozisyonuna yumuşakça kaydır */
}

/* Menünün üstündeki küçük ok işareti */
.language-selector .language-list::after {
  content: "";
  position: absolute;
  bottom: 100%; /* Menünün üstüne konumlandır */
  left: 50%;
  transform: translateX(-50%);
  border-width: 7px;
  border-style: solid;
  /* Aşağıyı gösteren üçgeni, menünün üstüne yerleştirir */
  border-color: transparent transparent rgba(255, 255, 255, 0.95) transparent;
}

/* Dil listesi içindeki linkler */
.language-selector .language-list li a {
  display: block;
  padding: 10px 15px;
  color: #2c3e50;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 5px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.language-selector .language-list li a .icon{
  display: none;
}

/* Dil linklerinin üzerine gelince */
.language-selector .language-list li a:hover {
  background-color: #4c5140;
  color: #ffffff;
}
/* --- Diğer Stiller (Değişiklik Yok) --- */

/* --- Ana İçerik (Arka Plan Resmi) --- */
.hero-section {
  height: 100vh;
  background-image: url("https://media.gucci.com/content/HeroRegularStandard_3200x1312/1715878803/HeroRegularStandard_Gucci-Ancora-Notte-25-MEN-001_001_Default.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding-top: 70px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
}

.shop-button {
  background-color: white;
  color: #1b1b1b;
  padding: 12px 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid white;
}

/* --- Yan Panel Stilleri --- */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0s 0.4s;
}

.overlay.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease;
}

.side-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 450px;
  max-width: 90vw;
  height: 100%;
  background-color: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 80px 40px 40px 40px;
  display: flex;
  flex-direction: column;
}

.side-panel.is-open {
  transform: translateX(0);
}

.close-btn {
  position: absolute;
  top: 25px;
  right: 35px;
  background: none;
  border: none;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  color: #1b1b1b;
}

/* Menu Panel İçeriği */
.panel-nav,
.panel-secondary-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.panel-nav li.nav-submenu ul {
  display: none;
}

.panel-nav li {
  list-style: none;
}

.panel-nav a,
.panel-secondary-nav a,
.sign-in-link {
  text-decoration: none;
  color: #1b1b1b;
  font-size: 16px;
}

.sign-in-link {
  text-decoration: underline;
}

.panel-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gucci-icon-small svg {
  width: 32px;
  height: 32px;
  fill: #1b1b1b;
}

/* Contact Panel İçeriği */
.contact-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contact-content h2 {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item a {
  text-decoration: underline;
  color: #1b1b1b;
  font-size: 16px;
  margin-bottom: 8px;
  display: inline-block;
}
.contact-item.live-chat a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00a54f;
}

.contact-item p {
  font-size: 14px;
  color: #757575;
}

.contact-footer {
  border-top: 1px solid #e0e0e0;
  padding-top: 25px;
  margin-top: auto;
}
.contact-footer p {
  font-size: 14px;
  margin-bottom: 10px;
}
.contact-footer a {
  text-decoration: underline;
  color: #1b1b1b;
  font-size: 14px;
}

.contact-content .gucci-icon-small {
  margin-top: 40px;
  align-self: flex-end;
}

/**/

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4%;
  background-color: #07111c7b;
  backdrop-filter: blur(8px);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

/* slider */
.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  background-color: #333;
  overflow: hidden;
}
.slider-container .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  background: #000;
}

.slider-container .slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 80%;
}
.slider-container .slide.active {
  opacity: 1;
}
.slider-container .slide.active img {
  z-index: 1;
}
.slider-container .slide .text-bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
}
.slider-container .slide .textic {
  max-width: 800px;
  position: relative;
  z-index: 9;
  color: #fff;
  text-align: center;
  margin: 0px auto 70px;
}

.slider-container .slide .textic .text1 {
  display: block;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.slider-container .slide .textic .text2 {
  display: block;
  font-size: 86px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 25px;
  font-family: var(--font2);
}

.slider-container .slide .textic .btn-genel {
  display: inline-flex;
  justify-content: center;
  font-size: 15px;
  background: #fff;
  padding: 15px 35px;
  font-size: 13px;
  letter-spacing: 1px;
  color: #4c5140;
}

.slider-container .slide.active {
  opacity: 1;
}

.slider-container .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #00000080;
  color: #fff;
  border: none;
  padding: 5px 10px;
  font-size: 23px;
  display: flex;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10;
  transition: background-color 0.3s ease;
  height: 42px;
  width: 42px;
}
.slider-container .slider-btn:hover {
  background-color: #000c;
}
.slider-container .prev-btn {
  left: 15px;
}
.slider-container .next-btn {
  right: 15px;
}

/**/

.py-5 {
  padding: 50px 0px;
}

.text-center {
  text-align: center;
}

.header-title {
  width: 100%;
}

.header-title h1,
.header-title h2 {
  width: 100%;
  font-size: 35px;
  color: var(--color1);
  font-family: var(--font2);
}

.header-title p {
  width: 100%;
  text-decoration: none;
  color: var(--color2);
  font-size: 16px;
  margin-top: 13px;
  margin-bottom: 0px;
}

.feature-grid {
  display: flex;
  height: calc(100vh - 47px);
  width: 100%;
  gap: 3px;
}

.feature-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 2;
  transition: background-color 0.3s ease;
}

.feature-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
}

.feature-content h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.feature-link {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  padding-bottom: 5px;
}

.feature-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: transform 0.3s ease-out;
}

.feature-item:hover img {
  transform: scale(1.03);
}

.feature-item:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.feature-link:hover::after {
  transform: scaleX(0);
}

@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    height: auto;
  }
  .feature-item {
    min-height: 50vh;
  }
}

/* --- Promosyonlar Slider Bölümü --- */

/* Ana Konteyner */
.promosyonlar {
  background-color: #f8f6f4; /* Açık bej arkaplan */
  padding: 40px 40px;
  width: 100%;
  margin: 40px 0px;
}

/* İçerik ve Slider'ı Saran Konteyner */
.promosyonlar .promo-container {
  display: flex;
  align-items: start;
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
}

/* Sol Metin Alanı */
.promosyonlar .promo-text {
  flex-basis: 30%;
  min-width: 300px;
  margin-top: 50px;
}

.promosyonlar .promo-text h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--color1);
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-family: var(--font2);
}

.promosyonlar .promo-text p {
  font-size: 15px;
  line-height: 1.4;
  color: var(--color2);
  max-width: 400px;
}

/* Sağ Slider Alanı */
.promosyonlar .promo-slider {
  flex: 1;
  position: relative;
  min-width: 0; /* Flexbox'ın taşma sorunlarını önler */
}

/* Slaytların Göründüğü Pencere */
.promosyonlar .slider-viewport {
  overflow: hidden;
}

/* Slaytları Taşıyan Yatay Şerit */
.promosyonlar .slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Her Bir Slayt Öğesi */
.promosyonlar .promo-slide {
  flex: 0 0 calc(100% / 3); /* Ekranda 3 slayt gösterir */
  padding: 0 10px; /* Slaytlar arası boşluk */
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.promosyonlar .promo-slide img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4; /* Resimlerin oranını sabit tutar */
  object-fit: cover;
}

/* Slayt Üzerindeki Yazı */
.promosyonlar .slide-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 15px;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap; /* Metnin tek satırda kalmasını sağlar */
}

/* Navigasyon Okları */
.promosyonlar .slider-nav {
  text-align: center;
  margin-top: 25px;
}

.promosyonlar .slider-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.promosyonlar .slider-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #888;
  transition: stroke 0.2s;
}

.promosyonlar .slider-arrow:hover svg {
  stroke: #222;
}

.promosyonlar .slider-arrow:disabled {
  cursor: not-allowed;
}

.promosyonlar .slider-arrow:disabled svg {
  stroke: #ccc;
}

/* --- Promosyonlar Responsive Ayarları --- */
@media (max-width: 992px) {
  .promosyonlar .promo-container {
    flex-direction: column;
    text-align: center;
  }
  .promosyonlar .promo-text {
    margin-bottom: 40px;
  }
  .promosyonlar .promo-text p {
    margin: 0 auto;
  }
  .promosyonlar .promo-slide {
    flex: 0 0 50%; /* Tablette 2 slayt göster */
  }
}

@media (max-width: 600px) {
  .promosyonlar {
    padding: 40px 20px;
  }
  .promosyonlar .promo-slide {
    flex: 0 0 90%; /* Mobilde 1 slayt göster, yanlardan biraz görünsün */
  }
}

/* --- Üretim Aşamaları Bölümü --- */

.uretim-asamasi {
  background-color: #fff;
  padding: 100px 0px;
}

.uretim-asamasi .uretim-container {
  max-width: 90%;
  margin: 0 auto;
}

/* Başlık Alanı */
.uretim-asamasi .uretim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 15px;
}

.uretim-asamasi .uretim-header h2 {
  width: auto;
}

.uretim-asamasi .uretim-header .uretim-shop-all {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 600;
  padding-bottom: 3px;
  border-bottom: 1px solid #aaa;
}

/* Slider Alanı */
.uretim-asamasi .slider-viewport {
  overflow: hidden;
  cursor: grab;
}
.uretim-asamasi .slider-viewport.grabbing {
  cursor: grabbing;
}

.uretim-asamasi .slider-track {
  display: flex;
  gap: 20px;
  padding-left: 15px; /* Başlangıç boşluğu */
  padding-right: 15px; /* Bitiş boşluğu */
}

.uretim-asamasi .slider-track.smooth-transition {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Her Bir Ürün/Aşama */
.uretim-asamasi .uretim-item {
  flex: 0 0 22%; /* Ekranda yaklaşık 4.5 öğe görünür */
  text-decoration: none;
  display: block;
}

.uretim-asamasi .item-image-wrapper {
  overflow: hidden; /* Zoom efekti için gerekli */
  margin-bottom: 15px;
}

.uretim-asamasi .item-caption {
  color: #333;
  font-weight: 600;
  text-align: center;
  font-size: 15px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

/* Başlık Altı Çizgi Efekti */
.uretim-asamasi .item-caption::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease-out;
}

.uretim-asamasi .item-image-wrapper img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(100%); /* Siyah-beyaz yapar */
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              filter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Hem yakınlaşma hem renk geçişi */
}

/* Hover Efektleri */
.uretim-asamasi .uretim-item:hover .item-image-wrapper img {
  transform: scale(1.05); /* Resim yakınlaşır */
  filter: grayscale(0%);   /* Renkli hale gelir */
}


.uretim-asamasi .uretim-item:hover .item-caption::after {
  transform: scaleX(1); /* Alt çizgi belirir */
}

/* Kontroller: Scrollbar ve Oklar */
.uretim-asamasi .uretim-controls {
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding: 0 15px;
}

.uretim-asamasi .uretim-scrollbar {
  flex-grow: 1;
  height: 2px;
  background-color: #ddd;
  position: relative;
  cursor: pointer;
}

.uretim-asamasi .scrollbar-thumb {
  position: absolute;
  top: -1px; /* Ortalamak için */
  left: 0;
  height: 4px;
  background-color: #888;
  cursor: grab;
}

.uretim-asamasi .slider-nav {
  display: flex;
  margin-left: 20px;
}

.uretim-asamasi .slider-arrow {
  background: none;
  border: 1px solid #ccc;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 8px;
  transition: background-color 0.2s;
}
.uretim-asamasi .slider-arrow:hover {
  background-color: #eee;
}
.uretim-asamasi .slider-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.uretim-asamasi .slider-arrow svg {
  width: 20px;
  height: 20px;
  fill: #555;
}

/* Responsive Ayarlar */
@media (max-width: 1200px) {
  .uretim-asamasi .uretim-item {
    flex: 0 0 30%;
  }
}
@media (max-width: 768px) {
  .uretim-asamasi .uretim-item {
    flex: 0 0 45%;
  }
}
@media (max-width: 500px) {
  .uretim-asamasi .uretim-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .uretim-asamasi .uretim-item {
    flex: 0 0 70%;
  }
}

/* --- Sürdürülebilirlik Bölümü --- */
.surdurebilirlik {
  background-color: #fdfdfc;
  padding: 100px 0px;
  background: #f8f6f4;
}

.surdurebilirlik .s-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Sol İçerik Alanı */
.surdurebilirlik .s-content {
  flex: 1;
}

.surdurebilirlik .s-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 21px;
  color: var(--color2);
  margin-bottom: 25px;
  font-family: var(--font2);
}

.surdurebilirlik .s-subtitle span {
  width: 18px;
  height: 18px;
  background-color: #4db6ac; /* Turkuaz tonu */
}

.surdurebilirlik .s-description {
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 50px;
}

.surdurebilirlik .s-description strong {
}

/* Liste Alanı */
.surdurebilirlik .s-list {
  list-style: none;
  padding: 0;
  padding-left: 25px;
  max-width: 60%;
}

.surdurebilirlik .s-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  text-decoration: none;
  color: var(--color1);
  font-weight: 700;
  font-size: 22px;
  position: relative;
  cursor: pointer;
  position: relative;
  cursor: pointer;
}

.surdurebilirlik .s-list-item::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #af6a23;
}

.surdurebilirlik .s-list-item svg {
  width: 24px;
  height: 24px;
  fill: #aaa;
  transition: transform 0.3s ease;
}

.surdurebilirlik .s-list-item:hover svg {
  transform: translateX(5px);
}

/* Aktif Durum ve Alt Çizgi Animasyonu */
.surdurebilirlik .s-list-item::after {
  content: "";
  position: absolute;
  bottom: -1px; /* Çizginin üzerine gelmesi için */
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.surdurebilirlik .s-list-item.active::after {
  transform: scaleX(1);
}

/* Sağ Resim Alanı */
.surdurebilirlik .s-image-wrapper {
  flex: 1;
  min-width: 0;
  border-radius: 0 100px 100px 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.surdurebilirlik #s-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
  .surdurebilirlik .s-container {
    flex-direction: column;
  }
  .surdurebilirlik .s-image-wrapper {
    width: 100%;
    margin-top: 40px;
    border-radius: 20px; /* Mobilde tüm köşeler yuvarlak olsun */
  }
}

/* --- Neden Biz / Soft Kurumsal Tasarım --- */
.neden-biz-soft {
  background-color: #ffffff; /* Temiz beyaz arkaplan */
  padding: 100px 0px;
  color: #3d4852; /* Ana metin rengi, saf siyahtan daha yumuşak */
}

.neden-biz-soft .header-title {
  margin-bottom: 70px;
}

.neden-biz-soft .nbs-container {
  margin: 0 auto;
}

/* Bölüm Başlığı */
.neden-biz-soft .nbs-header {
  text-align: center;
  margin-bottom: 70px;
}

.neden-biz-soft .nbs-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #22292f; /* Başlık için daha koyu bir ton */
  margin-bottom: 12px;
}

.neden-biz-soft .nbs-header p {
  font-size: 18px;
  color: #8795a1; /* Alt başlık için soluk gri */
  max-width: 600px;
  margin: 0 auto; /* Ortalamak için */
  line-height: 1.6;
}

/* Özellikler Listesi */
.neden-biz-soft .nbs-list {
  display: grid;
  /* İki sütunlu yapı, mobil için tek sütuna düşecek */
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px; /* Dikey ve yatay boşluklar */
}

/* Tek Bir Madde */
.neden-biz-soft .nbs-item {
  display: flex;
  align-items: flex-start; /* İkonu ve metni yukarıdan hizala */
  gap: 20px;
}

/* İkon Stili */
/* İkon Stili - DÜZELTİLMİŞ VERSİYON */
.neden-biz-soft .nbs-icon {
  flex-shrink: 0; /* İkonun küçülmesini engelle */
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: #f0f4f8; /* Çok soluk mavi-gri arkaplan */
  transition: background-color 0.3s ease;
}

.neden-biz-soft .nbs-icon svg {
  width: 24px;
  height: 24px;
  stroke: #606f7b; /* İkon rengi */
  transition: stroke 0.3s ease;
  flex-shrink: 0; /* YENİ EKLENDİ: SVG'nin flex container içinde istenmeden büyümesini engeller. */
}

/* Metin İçeriği */
.neden-biz-soft .nbs-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: #22292f;
  margin-bottom: 8px;
}

.neden-biz-soft .nbs-content p {
  font-size: 14px;
  line-height: 1.4;
  color: #606f7b;
}

/* Zarif Hover Efekti */
.neden-biz-soft .nbs-item:hover .nbs-icon {
  background-color: #4c5140; /* Marka renginize göre değiştirin */
}

.neden-biz-soft .nbs-item:hover .nbs-icon svg {
  stroke: #ffffff;
}

/* Responsive (Mobil Uyum) */
@media (max-width: 768px) {
  .neden-biz-soft .nbs-list {
    grid-template-columns: 1fr; /* Mobilde tek sütun */
    gap: 40px;
  }

  .neden-biz-soft .nbs-header {
    margin-bottom: 50px;
  }

  .neden-biz-soft .nbs-header h2 {
    font-size: 28px;
  }
}

/**/

/* Ana Konteyner */

.hakkimizda {
  background-color: #4c5140;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 50px 0px;
  height: 650px;
}

.hakkimizda .container {
  display: flex;
}

.hakkimizda .content-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 50px;
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInText 1s ease-out 1.5s forwards;
}

@keyframes fadeInText {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hakkimizda .logo {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hakkimizda h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: var(--font2);
}

.hakkimizda .content-left p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
  opacity: 0.8;
}

.hakkimizda .content-right {
  flex: 1.5;
  position: relative;
}

.hakkimizda .map-container {
  width: 100%;
  height: auto;
  margin-top: -40px;
}

.hakkimizda .map-container img {
  width: 126%;
  height: auto;
  margin-left: -140px;
}

@keyframes draw-map {
  to {
    stroke-dashoffset: 0;
  }
}

.hakkimizda .map-marker {
  position: absolute;
  transform: scale(0);
  opacity: 0; /* Başlangıçta görünmez */
  animation: showMarker 0.5s ease-out forwards;
}

.hakkimizda .map-marker .marker-icon {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  animation: pulse 2s infinite ease-in-out 3s;
  margin: 0px auto 5px;
}
.hakkimizda .map-marker .marker-label {
  font-size: 12px;
  letter-spacing: -0.8px;
}

.hakkimizda .map-marker:nth-child(1) {
  animation-delay: 2.5s, 3s;
}
.hakkimizda .map-marker:nth-child(2) {
  animation-delay: 2.6s, 3.1s;
}
.hakkimizda .map-marker:nth-child(3) {
  animation-delay: 2.7s, 3.2s;
}
.hakkimizda .map-marker:nth-child(4) {
  animation-delay: 2.8s, 3.3s;
}
.hakkimizda .map-marker:nth-child(5) {
  animation-delay: 2.9s, 3.4s;
}
.hakkimizda .map-marker:nth-child(6) {
  animation-delay: 3s, 3.5s;
}
.hakkimizda .map-marker:nth-child(7) {
  animation-delay: 3s, 3.5s;
}

@keyframes showMarker {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 8px #fff, 0 0 4px #858b77;
  }
  70% {
    transform: scale(1.4);
    box-shadow: 0 0 12px #fff, 0 0 4px #858b77;
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 8px #fff, 0 0 4px #858b77;
  }
}

/* İstatistikler */
.hakkimizda .stats {
  text-align: center;
  bottom: 60px;
  right: 0;
  display: flex;
  position: absolute;
  width: 90%;
  gap: 40px;
  justify-content: space-between;
  opacity: 0; /* Başlangıçta görünmez */
  transform: translateY(20px);
  animation: fadeInStats 1s ease-out 2s forwards; /* Harita çizilirken gelsin */
}

@keyframes fadeInStats {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hakkimizda .stat-item .number {
  font-size: 50px;
  font-weight: 700;
  display: block;
}
.hakkimizda .stat-item .label {
  font-size: 1rem;
  opacity: 0.8;
}
.hakkimizda .footnote {
  position: absolute;
  bottom: -20px;
  right: 0;
  font-size: 0.8rem;
  opacity: 0.6;
}

/**/

/* Footer Ana Kapsayıcı */
.footer-container {
  border-top: 1px solid #000;
  padding: 50px 80px;
  max-width: 1600px;
  margin: 0 auto; /* Sayfada ortalamak için */
}

/* Üst Kısım (Logo, Linkler, Form) */
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 50px;
}

/* Logo Stili */
.footer-logo {
  display: block;
}

.footer-logo2 img {
  width: auto;
  height: 20px;
}

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

.footer-logo .line1 {
  margin-left: -0.1em;
}
.footer-logo .line2 {
  margin-left: -0.25em;
}
.footer-logo .line3 {
  margin-left: 0.25em;
}

/* Link Sütunları için Ortak Stil */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-column h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px 0;
}
.footer-column a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}
.footer-column a:hover {
  text-decoration: underline;
}

/* Sağ Taraftaki Form ve Sosyal Medya Bölümü */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 300px; /* Elemanların alt alta geçmesini önler */
}

.footer-subscribe h3,
.footer-social h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 15px 0;
}

/* E-posta Formu */
.subscribe-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
}
.subscribe-form input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  background-color: transparent;
}
.subscribe-form input::placeholder {
  color: #888;
}
.subscribe-form button {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.1em;
  color: #000;
  padding: 0;
  margin-left: 15px;
  flex-shrink: 0; /* Butonun küçülmesini engeller */
}

/* Sosyal Medya İkonları */
.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}
.social-icons a {
  display: inline-block;
  color: #000;
}
.social-icons svg {
  width: 24px;
  height: 24px;
}

/* Alt Kısım (Copyright, vs.) */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #333;
}
.footer-bottom-links {
  display: flex;
  gap: 30px;
}
.footer-bottom-links a {
  text-decoration: none;
  color: #333;
}
.footer-bottom-links a:hover {
  text-decoration: underline;
}
.footer-credits {
  display: flex;
  align-items: center;
  gap: 15px;
}
.back-to-top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: #f0f0f0;
  border: none;
  cursor: pointer;
}
.back-to-top svg {
  width: 12px;
  height: 12px;
}


/**/

.form2 {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    color: #333;
    position: relative;
    overflow: hidden;
}

.form2::before,
.form2::after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    z-index: 0;
    display: none;
}

.form2::before {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -80px;
}

.form2::after {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: -50px;
}

.form2 label {
    font-size: 14px;
    text-transform: uppercase;
    color: #888;
    margin-top: 10px;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 1.5px;
}

.form2 .guvenlik_input {
    position: relative;
}

.form2 .guvenlik_resim {
    position: absolute;
    top: 40px;
    right: 0;
}

.form2 .guvenlik_resim .guvenlikResim {
    width: 80px;
}

.form2 input {
    width: 100%;
    padding: 16px;
    margin-bottom: 0;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
    height: 40px;
}

.form2 textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
    height: 70px;
}

.form2 input:focus,
.form2 textarea:focus {
    border-color: #3498db;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.2);
}

.form2 input::placeholder,
.form2 textarea::placeholder {
    color: #f9f9f9;
    display: none;
    opacity: 0;
}

.form2 button {
    background-color: #3498db;
    color: #fff;
    padding: 10px 10px;
    border: none;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 16px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 30%);
    margin-top: 35px;
}

.form2 button:hover {
    box-shadow: 0 8px 20px rgb(0 0 0 / 50%);
}

.form2 .help-block {
    color: #aaa;
    font-size: 12px;
    margin-top: -20px;
    margin-bottom: 25px;
    display: none;
}

.form2 .alert {
    background-color: #e74c3c;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 20px;
    text-align: center;
    display: none;
}

@media (max-width: 768px) {
    .form2 {
        padding: 30px 10px;
    }
}

.mobilbuttonlar{
  display: none;
}

@media(max-width:1024px){
    .btn {
        border-radius: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 20px;
        width: 100%
    }

    .btn svg {
        width: 24px;
        height: 24px;
        fill: currentColor
    }

    .mobilbuttonlar {
        position: fixed;
        width: 100%;
        bottom: 0;
        z-index: 999;
        display: flex;
    }

    .btn1 {
        background: #4c5140;
        border-color: #4c5140;
        color: #fff
    }

    .btn2 {
        background: #353a2b;
        border-color: #353a2b;
        color: #fff
    }

    .btn3 {
        background: #202319;
        border-color: #202319;
        color: #fff
    }

    .footer-container{
        margin-bottom: 45px !important;
    }

}
/**/