/* Basit Trainer Kartı */
.simple-trainer-card {
  border: 2px solid #bbb;
  border-radius: 12px;
  background: #fff;
  padding: 32px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  width: 260px;
}

.trainer-img-placeholder {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.trainer-name-simple {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  color: #222;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}
/* === Global Ayarlar ve Fontlar === */
body {
  font-family: "Roboto", sans-serif;
}

/* Navbar içindeki yazılar için özel font */
.navbar {
  font-family: "Oswald", sans-serif;
  transition: all 0.4s ease-in-out; /* Yumuşak geçiş efekti */
  padding: 15px 0; /* Başlangıçta biraz daha geniş */
}

/* === Navbar Başlangıç Durumu (Şeffaf) === */
.navbar-brand,
.navbar-nav .nav-link {
  color: #000000; /* İsteğiniz üzerine siyah font */
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

/* Logo Yanındaki Yazı Rengi */
.navbar-brand span {
  color: #000000;
}

/* === Hover ve Active Durumları === */
/* Active: Şu anki sekme rengi (Fıstık Yeşili) */
.navbar-nav .nav-link.active {
  color: #93c572 !important;
}

/* Hover: Üzerine gelince renk değişimi */
.navbar-nav .nav-link:hover {
  color: #93c572;
}

/* === Scroll Edildiğinde Devreye Girecek Stil (.scrolled sınıfı) === */
/* Bu sınıfı JavaScript ile ekleyeceğiz */
.navbar.scrolled {
  background-color: #ffffff; /* Beyaz Arkaplan */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge */
  padding: 10px 0; /* Scroll edince biraz daralsın */
}

/* Scroll edildiğinde de link renkleri korunur, istenirse değiştirilebilir */
.navbar.scrolled .nav-link {
  color: #333333;
}

.navbar.scrolled .nav-link.active {
  color: #93c572 !important;
}

/* === Hero Slider Ayarları === */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh; /* Tam ekran yükseklik */
  background-color: #000; /* Resim yüklenmezse siyah zemin */
  overflow: hidden;
}

/* Resimlerin tam oturması için */
.carousel-item img {
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

/* Resimlerin üzerine hafif açık renk perde (Yazı Siyah olduğu için) */
/* Eğer resimleriniz çok açıksa bu rengi rgba(255,255,255,0.3) yapabilirsiniz */
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3); /* Hafif beyaz tül */
  z-index: 1;
}

/* === Carousel Alt Çizgiler (Indicators) === */
.carousel-indicators [data-bs-target] {
  height: 4px; /* Çizgi kalınlığı */
  width: 40px; /* Çizgi genişliği */
  background-color: #6d6d6d; /* Pasif durumdayken BEYAZ */
  border: none;
  opacity: 0.6; /* Beyazın şeffaflığı */
  margin: 0 5px;
  transition: all 0.3s ease;
}

/* Aktif (Seçili) Olan Çizgi */
.carousel-indicators .active {
  background-color: #93c572 !important; /* Aktifken FISTIK YEŞİLİ */
  opacity: 1; /* Tam görünürlük */
  transform: scale(1.1); /* Aktifken çok hafif büyüsün */
  box-shadow: 0 0 10px rgba(147, 197, 114, 0.5); /* Hafif yeşil parlama */
}

/* === Typewriter Konumlandırma === */
.typewriter-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* === Typewriter Konumlandırma === */
.typewriter-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 100%;
}

/* === Font ve Yazı Ayarları === */
#typewriter-text {
  font-family: "Oswald", sans-serif;
  /* Font boyutu responsive (Bootstrap display-1 kullanıldı ama buradan ezebiliriz) */
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 600;
}

/* Renk Sınıfları (JS tarafından eklenecek) */
.text-black {
  color: #000000;
  text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9); /* Okunurluk için parlama */
}

.text-custom {
  color: #93c572;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7);
}

/* === Sizin İstediğiniz Cursor Stili === */
.typewriter-cursor {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 250;
  color: #93c572; /* İmleç rengi yeşil olsun */
  margin-left: 2px;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .typewriter-text {
    font-size: 2rem; /* Mobilde daha küçük */
    border-right-width: 3px;
  }
}

/* === Hizmet Kartları (Poster Style) === */

.poster-card {
  position: relative;
  width: 100%; /* Sütuna tam otursun */
  height: 450px;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

/* Poster Resmi */
.poster {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Resim */
.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover Efekti: Resim Büyür */
.poster-card:hover .poster img {
  transform: scale(1.1);
}

/* Gölge Efekti (Overlay) */
.poster::before {
  content: "";
  position: absolute;
  bottom: -45%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  z-index: 1;
  transition: 0.3s;
}
.poster-card:hover .poster::before {
  bottom: 0;
}

/* === Ortadaki Yazı (Yeni İstek) === */
.card-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; /* Resmin üstünde, detayların altında */
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none; /* Tıklamayı engellemesin */
}

/* Hover olunca ortadaki yazı kaybolsun/yukarı kaysın */
.poster-card:hover .card-center-text {
  opacity: 0;
  transform: translate(-50%, -150%);
}

/* === Detaylar Penceresi === */
.details {
  position: absolute;
  bottom: -100%; /* Başlangıçta gizli */
  left: 0;
  width: 100%;
  height: auto;
  padding: 1.5em;
  background: rgba(0, 0, 0, 0.85); /* Hafif şeffaf siyah */
  backdrop-filter: blur(10px); /* Buzlu cam efekti */
  border-top: 2px solid #93c572; /* Üstte yeşil çizgi */
  transition: bottom 0.4s ease-in-out; /* Animasyon hızı */
  color: #fff;
  z-index: 3;
}

/* Hover olunca Detaylar yukarı çıkar */
.poster-card:hover .details {
  bottom: 0;
}

/* Tipografi */
.details h1 {
  font-family: "Oswald", sans-serif;
  font-size: 1.8em;
  color: #93c572; /* Başlık Yeşil */
  margin-bottom: 5px;
}
.details h2 {
  font-size: 0.9em;
  opacity: 0.8;
  margin-bottom: 10px;
}

/* Etiketler */
.details .tags span {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  margin-right: 5px;
  font-size: 0.8em;
  border: 1px solid #93c572;
  border-radius: 20px;
  color: #fff;
}

/* Açıklama */
.details .desc {
  font-size: 0.9em;
  opacity: 0.9;
  margin: 15px 0;
  line-height: 1.4;
}

/* Eğitmenler (Yuvarlak Fotoğraflar) */
.details .cast ul {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.details .cast ul li {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #93c572;
}
.details .cast ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Motivasyon Bölümü (Asimetrik Tasarım) === */
.motivation-section {
  padding: 100px 0;
  background-color: #0b0b0b; /* Çok koyu gri/siyah zemin */
}

/* Arka Plandaki Dev Silik Yazı */
.big-bg-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Oswald", sans-serif;
  font-size: 15vw; /* Ekran genişliğine göre büyür */
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03); /* Çok silik */
  z-index: 0;
  pointer-events: none; /* Tıklanamaz */
  line-height: 1;
}

/* === Görsel Kompozisyon (Sol Taraf) === */
.media-composition {
  position: relative;
  padding-bottom: 50px; /* Alttaki resim taşacağı için boşluk */
  padding-right: 30px;
}

/* Ana Video Çerçevesi */
.video-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-left: 5px solid #93c572; /* Soldan yeşil çizgi */
}

.main-media {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.8); /* Biraz karartalım */
  transition: filter 0.3s ease;
}

.video-frame:hover .main-media {
  filter: brightness(1); /* Hoverda parlasın */
}

/* Play Butonu */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: #93c572;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 0 0 10px rgba(147, 197, 114, 0.3); /* Yayılma efekti */
  transition: all 0.3s ease;
  z-index: 2;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #fff;
  color: #93c572;
}

/* === Yüzen Fotoğraf (Kritik Kısım) === */
.floating-photo {
  position: absolute;
  bottom: 0;
  right: 0; /* Ana çerçevenin sağına taşar */
  width: 55%; /* Ana görselin yarısı kadar */
  border: 5px solid #0b0b0b; /* Arka plan rengiyle çerçeve (Kesik görünümü verir) */
  box-shadow: -10px -10px 30px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

/* === Tipografi Efektleri === */
.text-outline {
  /* İçi boş, kenarı çizgili yazı efekti */
  color: transparent;
  -webkit-text-stroke: 1px #93c572;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

/* Butonun genel stili (eğer globalde yoksa) */
.btn-custom {
  background-color: #93c572;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}
.btn-custom:hover {
  background-color: #fff;
  color: #93c572;
}

/* === Mobil Uyumluluk === */
@media (max-width: 991px) {
  .media-composition {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .floating-photo {
    width: 40%;
    bottom: -30px;
    right: 10px;
  }
  .big-bg-text {
    font-size: 20vw;
    top: 20%;
  }
}

/* === Parallax (Sabit Arkaplan) Bölümü === */
.parallax-section {
  position: relative;
  /* Yükseklik ayarı: Ekranın %60'ı kadar olsun */
  height: 60vh;

  /* Buraya kullanacağınız geniş açılı güzel bir salon fotoğrafı koyun */
  background-image: url("../img/bg.583Z.png");

  /* PARALLAX EFEKTİNİ SAĞLAYAN KOD: */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Siyah Karartma Katmanı (Overlay) */
.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Siyahın şeffaflığı: 0.7 (%70 koyu) */
  background-color: rgba(95, 95, 95, 0.7);
  z-index: 1;
}

/* Telefondaki Performans Sorununu Önleme */
/* Bazı telefonlarda "fixed" özelliği titreme yapar, mobilde normal scroll olsun */
@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
    height: 50vh; /* Mobilde biraz daha kısa olabilir */
  }
}

/* === 3D Antrenör Kartları === */

/* Değişkenler: Kart boyutlarını buradan yönetebilirsin */
:root {
  --card-height: 400px; /* Kart yüksekliği */
  --card-width: 300px; /* Kart genişliği */
}

.trainer-3d-card {
  width: var(--card-width);
  height: var(--card-height);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  perspective: 2500px; /* 3D derinlik hissi */
  cursor: pointer;
}

/* Kartın İç Kaplaması (Wrapper) */
.trainer-3d-card .wrapper {
  transition: all 0.5s;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 15px; /* Köşeleri yumuşattım */
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

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

/* === HOVER EFEKTİ (Wrapper Hareketi) === */
.trainer-3d-card:hover .wrapper {
  transform: perspective(900px) translateY(-5%) rotateX(25deg) translateZ(0);
  box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
}

/* Wrapper Üzerindeki Gölgelendirmeler (Gradient) */
.trainer-3d-card .wrapper::before,
.trainer-3d-card .wrapper::after {
  content: "";
  opacity: 0;
  width: 100%;
  height: 80px;
  transition: all 0.5s;
  position: absolute;
  left: 0;
}

/* Üst Gölge */
.trainer-3d-card .wrapper::before {
  top: 0;
  height: 100%;
  background-image: linear-gradient(
    to top,
    transparent 46%,
    rgba(12, 13, 19, 0.5) 68%,
    rgba(12, 13, 19) 97%
  );
}

/* Alt Gölge */
.trainer-3d-card .wrapper::after {
  bottom: 0;
  opacity: 1; /* Alt kısım hep biraz karanlık kalsın ki yazı okunsun */
  background-image: linear-gradient(
    to bottom,
    transparent 46%,
    rgba(12, 13, 19, 0.5) 68%,
    rgba(12, 13, 19) 97%
  );
}

.trainer-3d-card:hover .wrapper::before,
.trainer-3d-card:hover .wrapper::after {
  opacity: 1;
}

.trainer-3d-card:hover .wrapper::after {
  height: 120px;
}

/* === KARAKTER (Antrenör PNG) === */
.character {
  width: 100%;
  height: auto;
  opacity: 0;
  position: absolute;

  /* 1. KURAL: En alta sabitle */
  bottom: 0;
  left: 0;

  z-index: -1;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Daha canlı bir yaylanma efekti */

  /* 2. KURAL: Büyüme işlemi ALT TARAFTAN başlasın (Ayaklar sabit kalır) */
  transform-origin: bottom;

  transform: translate3d(0%, 0%, 0px);
}

/* Hover olunca Karakter Ortaya Çıkar ve BÜYÜR */
.trainer-3d-card:hover .character {
  opacity: 1;
  z-index: 2;

  /* 3. KURAL: 
     translate3d(0, 0, 100px) -> Sadece öne doğru gelsin (Z ekseni), yukarı kaldırmıyoruz.
     scale(1.3) -> %30 Büyüsün (Sadece yukarı doğru büyüyecek çünkü origin: bottom dedik).
  */
  transform: translate3d(0, 0, 100px) scale(2.7);
}

/* === İSİM ALANI (İsteğin Üzerine Eklendi) === */
.trainer-info {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3; /* En üstte */
  opacity: 0; /* Başlangıçta gizli */
  transform: translateY(20px);
  transition: all 0.5s ease 0.1s; /* Hafif gecikmeli gelsin */
}

.trainer-3d-card:hover .trainer-info {
  opacity: 1;
  transform: translateY(0);
}

/* İsim Stili */
.trainer-name {
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

/* Ünvan Stili */
.trainer-title {
  font-family: "Roboto", sans-serif;
  color: #93c572; /* Fıstık Yeşili */
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* === Özellikler (Features) Kutuları === */

.feature-box {
  background-color: #1a1a1a; /* Sayfa zemininden çok az daha açık gri */
  padding: 40px 25px;
  border-radius: 10px;
  transition: all 0.4s ease;
  border-bottom: 3px solid transparent; /* Alt çizgi için hazırlık */
  height: 100%; /* Kutuların boyu eşit olsun */
}

/* İkonun Çerçevesi */
.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto; /* Ortala */
  background-color: rgba(147, 197, 114, 0.1); /* Çok silik yeşil zemin */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* İkonun Kendisi */
.icon-wrapper i {
  font-size: 2rem;
  color: #93c572; /* Fıstık Yeşili */
  transition: all 0.4s ease;
}

/* === HOVER EFEKTLERİ === */
.feature-box:hover {
  transform: translateY(-10px); /* Kutu yukarı kalkar */
  background-color: #222;
  border-bottom: 3px solid #93c572; /* Altına yeşil çizgi gelir */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-box:hover .icon-wrapper {
  background-color: #93c572; /* İkon arkası yeşil olur */
  transform: rotateY(360deg); /* İkon kendi etrafında döner */
}

.feature-box:hover .icon-wrapper i {
  color: #fff; /* İkon rengi beyaza döner */
}

.feature-box h4 {
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
}
/* === Partner Logo Slider Alanı (Özel İsimlendirme) === */
.partner-section {
  padding: 40px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.partner-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Kayan Pist (Yeni İsim: .partner-slider-track) */
.partner-slider-track {
  display: flex;
  /* Genişlik Hesabı: (Logo Genişliği 250px) x (Toplam Logo Sayısı 14) = 3500px */
  width: calc(250px * 14);
  animation: scroll-partner 30s linear infinite; /* Özel animasyon ismi */
}

/* Her Bir Logo Kutusu (Yeni İsim: .partner-slide) */
.partner-slide {
  width: 250px; /* Her logonun alanı */
  padding: 0 30px; /* Boşluk */
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-slide img {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
  /* Logoları BEYAZ yap (Silersen kendi rengi kalır) */

  opacity: 0.8;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* === HOVER EFEKTİ === */
.partner-slide img:hover {
  transform: scale(1.2); /* Büyüme */
  opacity: 1;
}

/* === Animasyon Keyframes (Çakışma Önleyici İsim) === */
@keyframes scroll-partner {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Yarısı kadar kaydır: -250px * 7 adet orijinal logo */
    transform: translateX(calc(-250px * 7));
  }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .partner-slide {
    width: 150px;
    padding: 0 15px;
  }
  .partner-slide img {
    max-height: 50px;
  }
  .partner-slider-track {
    /* Mobilde hesap: 150px * 14 */
    width: calc(150px * 14);
    animation: scroll-partner 15s linear infinite;
  }
  @keyframes scroll-partner {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-150px * 7));
    }
  }
}

/* === Footer Alanı === */
.footer-section {
  background-color: #111111; /* Koyu Gri/Siyah */
  font-family: "Roboto", sans-serif;
}

/* Mini Logo Kutuları */
.mini-logo-box {
  width: 50px;
  height: 50px;
  display: block;
  background-color: #1a1a1a;
  border-radius: 50%; /* Yuvarlak */
  padding: 10px;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.mini-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1); /* Siyah logoları beyaza çevirir (gerekirse silin) */
}

/* Logo Hover Efekti */
.mini-logo-box:hover {
  background-color: #93c572; /* Yeşil arka plan */
  border-color: #93c572;
  transform: translateY(-5px);
}

.mini-logo-box:hover img {
  filter: invert(0); /* Yeşil üstünde siyah/orijinal görünsün */
}

/* İletişim İkonları */
.text-custom {
  color: #93c572; /* Fıstık Yeşili */
}

/* Ayırıcı Çizgi */
.footer-divider {
  opacity: 1;
  border-width: 3px;
  border-radius: 5px;
}

/* Çalışma Saatleri Düzeni */
.opening-hours ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* İnce çizgi */
  padding-bottom: 5px;
}
.opening-hours ul li:last-child {
  border-bottom: none;
}

/* Copyright (En Alt Kısım) */
.copyright-bar {
  background-color: #000000; /* Tam Siyah */
  border-top: 1px solid #222;
}

/* === Footer Mini Logolar === */
.footer-logo-mini {
  height: 40px; /* Logoların yüksekliği (Küçültmek istersen burayı 30px yap) */
  width: auto; /* En-boy oranını korur */
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
  /* Eğer logolar siyahsa ve beyaz görünsün istersen alttaki satırı aç: */
  /* filter: brightness(0) invert(1); */
}

/* Üzerine gelince hafif büyüme efekti */
.footer-logo-mini:hover {
  transform: scale(1.1);
}

/* === About Page Styles === */

/* About Hero Section */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background: linear-gradient(
      135deg,
      rgba(147, 197, 114, 0.9),
      rgba(0, 0, 0, 0.7)
    ),
    url("../img/kapak2.618Z.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.about-hero h1 {
  font-family: "Oswald", sans-serif;
  letter-spacing: 5px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease-in-out;
}

.hero-underline {
  width: 120px;
  height: 4px;
  background: #93c572;
  margin: 20px auto;
  border-radius: 2px;
  animation: expandWidth 1s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 120px;
  }
}

/* About Content Section */
.about-content {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.about-image-wrapper img {
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.image-overlay-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #93c572, #7db05a);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(147, 197, 114, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(147, 197, 114, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(147, 197, 114, 0.6);
  }
}

.about-text-content h2 {
  color: #93c572;
}

.about-text-content .text-custom {
  color: #1a1a1a;
}

.about-text-content .lead {
  color: #333;
  line-height: 1.8;
}

.feature-item {
  font-size: 1.05rem;
  color: #555;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
}

.feature-item i {
  font-size: 1.2rem;
}

/* Stats Section */
.stat-box {
  padding: 30px;
  background: white;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(147, 197, 114, 0.2);
}

.stat-box h3 {
  color: #93c572;
}

/* Mission & Vision Boxes */
.mission-vision-box {
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 5px solid #93c572;
}

.mission-vision-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(147, 197, 114, 0.2);
}

.mission-vision-box .icon-wrapper {
  display: inline-block;
  transition: transform 0.3s ease;
}

.mission-vision-box:hover .icon-wrapper {
  transform: scale(1.2) rotate(5deg);
}

.mission-vision-box h3 {
  color: #1a1a1a;
  letter-spacing: 2px;
}

.mission-vision-box p {
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-hero {
    height: 50vh;
    min-height: 300px;
  }

  .about-hero h1 {
    font-size: 2.5rem;
    letter-spacing: 3px;
  }

  .hero-underline {
    width: 80px;
  }

  .stat-box h3 {
    font-size: 2.5rem;
  }

  .mission-vision-box {
    padding: 25px;
    margin-bottom: 20px;
  }
}

/* === Services Section === */
.services-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(147, 197, 114, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.services-section::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(147, 197, 114, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.section-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, transparent, #93c572, transparent);
  margin: 10px auto;
}

/* Service Card */
.service-card {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* Background Images for Each Service */
.card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
  z-index: 1;
}

.service-card[data-bg="fitness"] .card-bg-image {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.7)
    ),
    url("../img/hakkımda1.056Z.png");
}

.service-card[data-bg="zumba"] .card-bg-image {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.7)
    ),
    url("../img/hakkımda1.056Z.png");
}

.service-card[data-bg="crossfit"] .card-bg-image {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.7)
    ),
    url("../img/hakkımda1.056Z.png");
}

.service-card[data-bg="personal"] .card-bg-image {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.7)
    ),
    url("../img/hakkımda1.056Z.png");
}

.service-card:hover .card-bg-image {
  transform: scale(1.1);
  filter: brightness(0.6);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #93c572, #7db05a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 4;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(147, 197, 114, 0.25);
}

/* Service Icon Wrapper */
.service-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 40px auto 25px;
  background: linear-gradient(
    135deg,
    rgba(147, 197, 114, 0.9),
    rgba(125, 176, 90, 0.9)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  opacity: 1;
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.15) rotate(10deg);
  background: linear-gradient(
    135deg,
    rgba(125, 176, 90, 0.95),
    rgba(147, 197, 114, 0.95)
  );
  box-shadow: 0 10px 30px rgba(147, 197, 114, 0.4);
  opacity: 0;
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.15) rotate(10deg);
  background: linear-gradient(135deg, #7db05a, #93c572);
  box-shadow: 0 10px 30px rgba(147, 197, 114, 0.4);
}

.service-icon {
  font-size: 3rem;
  color: white;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  opacity: 0;
}

/* Service Content */
.service-content {
  padding: 0 30px 30px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  opacity: 1;
}

.service-card:hover .service-content {
  opacity: 0;
}

.service-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-align: center;
  transition: color 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-card:hover .service-title {
  color: #93c572;
}

.service-description {
  color: #f0f0f0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Service Features */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 10px;
  padding-left: 10px;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.service-features li i {
  color: #93c572;
  margin-right: 10px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-features li {
  transform: translateX(5px);
}

.service-card:hover .service-features li i {
  transform: scale(1.2);
}

/* Service Overlay (Hover Effect) */
.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(147, 197, 114, 0.95),
    rgba(125, 176, 90, 0.95)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

.service-card:hover .service-overlay {
  opacity: 1;
  transform: translateY(0);
}

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.service-card:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content i {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.overlay-content h4 {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.overlay-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Responsive Services */
@media (max-width: 992px) {
  .service-card {
    height: 480px;
  }
}

@media (max-width: 768px) {
  .service-card {
    height: auto;
    min-height: 400px;
    margin-bottom: 20px;
  }

  .service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 30px auto 20px;
  }

  .service-icon {
    font-size: 2.5rem;
  }

  .service-content {
    padding: 0 20px 20px;
  }

  .service-title {
    font-size: 1.3rem;
  }

  .overlay-content h4 {
    font-size: 1.5rem;
  }

  .overlay-content i {
    font-size: 3rem;
  }
}

/* === Shops Page Styles === */

/* Shops Hero Section */
.shops-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background: linear-gradient(
      135deg,
      rgba(147, 197, 114, 0.9),
      rgba(0, 0, 0, 0.7)
    ),
    url("../img/kapak3.908Z.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shops-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.shops-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.shops-hero h1 {
  font-family: "Oswald", sans-serif;
  letter-spacing: 5px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease-in-out;
}

/* Shops Cards Section */
.shops-cards-section {
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  min-height: 70vh;
}

/* Shop Card */
.shop-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 100%;
}

.shop-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(147, 197, 114, 0.3);
}

/* Shop Card Image */
.shop-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-card:hover .shop-card-image img {
  transform: scale(1.1);
}

.shop-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(147, 197, 114, 0.9),
    rgba(125, 176, 90, 0.9)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.shop-card:hover .shop-card-overlay {
  opacity: 1;
}

.overlay-icon {
  color: white;
  transform: scale(0.5);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.shop-card:hover .overlay-icon {
  transform: scale(1);
  animation: bounce 1s ease;
}

@keyframes bounce {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.1) translateY(-10px);
  }
}

/* Shop Card Content */
.shop-card-content {
  padding: 30px;
  text-align: center;
}

.shop-logo-wrapper {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5f9b53, #000000);
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.shop-logo {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.shop-card:hover .shop-logo {
  transform: scale(1.1);
}

.shop-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.shop-card:hover .shop-title {
  color: #93c572;
}

/* Shop Info */
.shop-info {
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #666;
  text-align: left;
  transition: transform 0.3s ease;
}

.shop-card:hover .info-item {
  transform: translateX(5px);
}

.info-item i {
  color: #93c572;
  margin-right: 10px;
  margin-top: 3px;
  min-width: 20px;
  font-size: 1rem;
}

.info-item span {
  flex: 1;
}

/* Shop Button */
.shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #93c572, #7db05a);
  color: rgb(255, 255, 255);
  text-decoration: none;
  border-radius: 30px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.shop-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.shop-btn:hover::before {
  width: 300px;
  height: 300px;
}

.shop-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(147, 197, 114, 0.4);
  color: white;
}

.shop-btn i {
  transition: transform 0.3s ease;
}

.shop-btn:hover i {
  transform: translateX(5px);
}

.shop-btn span {
  position: relative;
  z-index: 1;
}

/* Responsive Shops */
@media (max-width: 768px) {
  .shops-hero {
    height: 50vh;
    min-height: 300px;
  }

  .shops-hero h1 {
    font-size: 2.5rem;
    letter-spacing: 3px;
  }

  .shop-card-image {
    height: 220px;
  }

  .shop-card-content {
    padding: 20px;
  }

  .shop-title {
    font-size: 1.3rem;
  }

  .info-item {
    font-size: 0.85rem;
  }

  .shop-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}
