@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  color: #231e1f;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3436;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.section-title::before,
.section-title::after {
  content: "";
  height: 2px;
  width: 50px;
  background-color: #c5a059;
}

.logo img {
  max-height: 60px; /* Logonun yüksekliğini sınırlamak için */
  width: auto; /* Oranların bozulmaması için */
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  height: 80px;
  display: flex;
  align-items: center;
  background: transparent; /* Arka plan şeffaf */
  position: absolute; /* Sayfa akışından çıkarıp slider üzerine bindirir */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: none; /* Siyah çizgiyi şeffaf tasarımda kaldırmak daha şıktır */
  transition: all 0.4s ease;
}

/* Sayfa aşağı kaydırıldığında navbarın tekrar görünür olması için (JS ile çalışır) */
.navbar.scrolled {
  position: fixed;
  background: rgba(35, 30, 31, 0.7) /* %50 opak */;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 70px; /* Kaydırınca biraz küçülmesi şık durur */
}

.navbar.scrolled .logo a,
.navbar.scrolled .nav-links a {
  text-shadow: none;
}

.container-fluid {
  display: flex;
  justify-content: space-between; /* Logoyu sola, menüyü sağa iter */
  align-items: center;
  width: 100%;
  padding: 0 50px; /* Kenarlardan nefes alma payı */
}

.logo a {
  font-size: 26px;
  font-weight: bold;
  text-decoration: none;
  color: #fff !important;
}

.nav-links a {
  margin-left: 35px;
  text-decoration: none;
  color: #fff !important;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #c5a059 !important;
}

/* Hero Slider */
.hero {
  height: 80vh;
  width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  color: #1d1d1d;
}

.swiper-pagination-bullet-active {
  background-color: #c5a059 !important;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

/*  ===================
          Hero Altı
    ================ */

/* Genel Galeri Ayarları */
.image-gallery {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: repeat(2, 280px); /* Yükseklik buradan ayarlanır */
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  display: block;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* --- OVERLAY (Gizli Başlangıç) --- */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Karartma miktarı */
  display: flex;
  align-items: center; /* Ortalamak için; alta almak istersen flex-end yap */
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;

  /* İlk başta görünmez */
  opacity: 0;
  transition: opacity 0.4s ease;
}

.overlay-content {
  /* Yazılar hafif aşağıda başlasın */
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.overlay-content h3 {
  color: white;
  margin: 0 0 10px 0;
  font-size: 1.5rem;
}

.overlay-content p {
  color: #ddd;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* Buton Stili */
.btn-gallery {
  display: inline-block;
  color: white;
  border: 2px solid white;
  padding: 8px 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

/* --- HOVER EFEKTLERİ --- */
.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .overlay {
  opacity: 1; /* Fare gelince karartma görünür */
}

.gallery-item:hover .overlay-content {
  transform: translateY(0); /* Fare gelince yazılar yukarı süzülür */
}

.btn-gallery:hover {
  background: white;
  color: black;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.large,
  .gallery-item.small {
    grid-row: span 1;
    height: 300px;
  }
}
/*  =======================
          About-us         
    =====================*/

/* About Section */
.about {
  padding: 80px 0;
}

.flex-row {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.8;
  color: #1d1d1d;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-video {
  border-radius: 20px; /* Yuvarlaklık derecesi */
  overflow: hidden; /* Videonun keskin köşelerini gizler */
  flex: 1;
}

.about-video video {
  display: block; /* Alt kısımdaki boşlukları önler */
}

.btn {
  padding: 12px 25px;
  background: #231e1f;
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  text-decoration: none;
}

/* Kartlar Genel Alanı */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin: 0 auto;
  margin-top: 50px; /* Video ve yazı ile arasındaki boşluk */
  text-align: center;
  max-width: 1200px;
}

/* Tekil Kart Tasarımı */
.card {
  background: #f9f9f9;
  padding: 30px 15px;
  border-radius: 15px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-bottom: 4px solid #c5a059; /* Buton renginle uyumlu alt çizgi */
}

.card i {
  color: #c5a059;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

/* Kartın üzerine gelince hafif yükselme efekti */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #231e1f;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #231e1f;
}

/* Mobil uyum için küçük ayar */
@media (max-width: 768px) {
  .flex-row {
    flex-direction: column;
  }
  .about-cards {
    grid-template-columns: 1fr; /* Mobilde kartlar üst üste biner */
  }
}
/*  =====================
        Projeler
    ===================== */

.projects {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.project-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

/* İkinci sırayı ters çevirmek istersen (Görsel solda, metin sağda) */
.project-row.reverse {
  flex-direction: row-reverse;
}

.project-info {
  flex: 1;
}

.project-info h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.project-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

/* Buton Stili */
.btn-project {
  display: inline-block;
  padding: 12px 35px;
  background-color: #231e1f;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 2px solid #c5a059;
}

.btn-project:hover {
  background: transparent;
  color: #c5a059;
}

/* Slider Alanı */
.project-slider {
  flex: 1.5; /* Görsel alanı metin alanından biraz daha geniş */
  min-width: 0; /* Swiper'ın taşmasını önlemek için önemli */
  border-radius: 22px;
}
.swiperOnSale,
.swiperCompleted {
  border-radius: 22px;
}
.project-slider img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 22px;
}

/* Swiper Oklarını Özelleştirme */
.project-slider .swiper-button-next,
.project-slider .swiper-button-prev {
  color: #fff;
  background: rgba(197, 160, 89, 0.8);
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.project-slider .swiper-button-next::after,
.project-slider .swiper-button-prev::after {
  font-size: 18px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
  .project-row,
  .project-row.reverse {
    flex-direction: column;
    text-align: center;
  }
  .project-slider {
    width: 100%;
  }
}
/* =====================
        HİZMETLER
   ===================== */
.services {
  padding: 100px 0;
  background-color: #fcfcfc; /* Hafif bir gri tonu, diğer bölümlerden ayırmak için */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: #ffffff;
  padding: 50px 30px;
  text-align: center;
  border-radius: 15px;
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Kartın altına şık bir dekoratif çizgi */
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #c5a059;
  transition: width 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover::after {
  width: 100%; /* Hover durumunda alt çizgi uzar */
}

/* İkon Tasarımı */
.service-card i {
  font-size: 3rem;
  color: #c5a059;
  margin-bottom: 25px;
  transition: transform 0.4s ease;
  display: inline-block;
}

.service-card:hover i {
  transform: scale(1.1) rotate(5deg); /* İkon hafifçe büyür ve döner */
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #231e1f;
  font-weight: 700;
}

.service-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr; /* Mobilde tek sütun */
  }

  .services {
    padding: 60px 0;
  }
}

/*  ================
    Founder Bölümü
    ================  */

.founder {
  padding: 80px 0;
  background: #231e1f;
}

.founder-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.founder-image {
  flex: 1;
}

.founder-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 15px 15px 0 #c5a059; /* Şık bir efekt */
}

.founder-text {
  flex: 1;
}

.founder-title {
  color: #ffffff;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  position: relative;
}

.founder-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.founder-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 15px;
}

/*  ==================
        Tarihçe
    ================== */

/* Genel Bölüm Ayarları */
.history-section {
  padding: 100px 0;
  background-color: #ffffff;
}

/* Flex Yapısı: Sol ve Sağ Sütunları Yönetir */
.main-content-flex {
  display: flex;
  gap: 60px;
  /* align-items: flex-start;  <-- BU SATIRI SİLİN veya 'stretch' yapın */
  align-items: stretch; /* Sütun boylarını eşitler, sticky için şarttır */
  margin-top: 50px;
  position: relative;
}
/* SOL SÜTUN: Tarihçe */
.timeline-column {
  flex: 1.6; /* Tarihçe alanı biraz daha geniş */
}

.timeline {
  position: relative;
  max-width: 100%;
}

/* Dikey Çizgi (Sola Yaslı) */
.timeline::after {
  content: "";
  position: absolute;
  width: 2px;
  background-color: rgba(35, 30, 31, 0.5); /* Altın rengi şeffaf çizgi */
  top: 0;
  bottom: 0;
  left: 20px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 60px;
}

/* Çizgi Üzerindeki Noktalar */
.timeline-item::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #c5a059;
  border: 3px solid #fff;
  border-radius: 50%;
  left: 12px;
  top: 10px;
  z-index: 1;
}

.timeline-year {
  min-width: 80px;
  font-size: 1.4rem;
  font-weight: 800;
  color: #c5a059;
  padding-left: 50px;
}

.timeline-content {
  flex: 1;
  background: #fdfdfd;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.timeline-text {
  padding: 25px;
}

.timeline-text h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;

  color: #1d1d1d;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* SAĞ SÜTUN: Sabitlenen Makale */
.article-column {
  flex: 1;
  top: 40px; /* Ekranın üstünden bırakılacak mesafe */
}

.sticky-article {
  background: #231e1f;
  padding: 40px;
  border-radius: 20px;
  border-top: 4px solid #c5a059;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);

  /* Sticky Ayarları */
  position: -webkit-sticky; /* Safari desteği */
  position: sticky;
  top: 120px; /* Ekranın üstünden ne kadar boşluk kalacağını belirler */
  z-index: 10;
}
.experience-badge {
  background: #c5a059;
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}

.sticky-article h2 {
  font-size: 2rem;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 25px;
  text-align: center;
}

.article-body p {
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.09rem;
}

/* İstatistik Alanı */
.stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item strong {
  font-size: 1.8rem;
  color: #c5a059;
  line-height: 1;
}

.stat-item span {
  font-size: 0.9rem;
  color: #c4c4c4;
  text-transform: uppercase;
  margin-top: 5px;
}

/* Responsive (Mobil) Düzenlemeler */
@media (max-width: 1024px) {
  .main-content-flex {
    flex-direction: column;
    gap: 40px;
  }

  .article-column {
    position: static; /* Mobilde yapışkanlık iptal */
    order: -1; /* Makale tarihçeden önce görünebilir (isteğe bağlı) */
  }

  .timeline-column {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .timeline-year {
    padding-left: 40px;
    font-size: 1.1rem;
    min-width: 60px;
  }
} /*  ====================
        relax
    ==================*/

.vision-container {
  position: relative;
  width: 100%;
  overflow: hidden; /* Taşmaları engeller */
}

.vision-container img {
  width: 100%;
  height: auto;
  display: block;
}

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

.vision-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%; /* Kenarlardan pay bırakır */
  z-index: 2;
  /* Satır yüksekliğini sıfırlayan ana kapsayıcı etkisini kırıyoruz */
  line-height: 1.4;
}

.vision-content h2 {
  margin-bottom: 15px; /* Mobilde çok büyük margin sorun yaratır */
  font-size: 1.8rem;
  color: white;
  font-weight: bold;
}

.vision-content p {
  color: white;
  font-size: 1.1rem;
}

/* --- MOBİL AYARLAR (Ekran 768px'den küçükse) --- */
@media (max-width: 768px) {
  .vision-content h2 {
    font-size: 1.1rem; /* Yazıyı küçültüyoruz */
    margin-bottom: 10px;
  }

  .vision-content p {
    font-size: 0.9rem; /* Yazıyı küçültüyoruz */
  }
} /* =====================
       İLETİŞİM (CONTACT)
   ===================== */
.contact {
  padding: 100px 0;
  background-color: #ffffff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

/* Sol Taraf Bilgiler */
.contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-info .info-item i {
  font-size: 1.2rem;
  color: #c5a059; /* Logo Altın Rengi */
  width: 50px;
  height: 50px;
  background: #231e1f; /* Logo Siyahı */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #231e1f;
  margin-bottom: 5px;
}

.contact-info p {
  color: #666;
  font-size: 0.95rem;
}

.map-container {
  margin-top: 30px;
  border: 1px solid #f1f1f1;
  padding: 5px;
  border-radius: 12px;
  background: #fff;
}

/* Sağ Taraf Form */
.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e1e1e1;
  background: #fdfdfd;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c5a059;
  background: #fff;
}

/* =====================
       FOOTER
   ===================== */
/* Footer Genel Ayarları */
/* Ana Footer Ayarları */
.footer {
  background-color: #231e1f;
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* İçerik Düzeni (Flexbox) */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

/* Başlık Stilleri (Ortak) */
.footer-column h4 {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: #fff;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #c5a059;
}

/* 1. Sütun: Logo ve VR */
.footer-logo img {
  max-height: 60px;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.footer-logo p {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 25px;
}

.vr-button {
  display: inline-block;
  padding: 12px 24px;
  background: #333;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 22px;
}

.vr-button:hover {
  transform: translateY(-3px);
  background-color: #555;
}

/* 2. Sütun: Hızlı Linkler */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #c5a059;
  padding-left: 5px;
}

/* 3. Sütun: İletişim Aksiyonları */
.action-link {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  margin-bottom: 15px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.action-link i {
  margin-right: 12px;
  font-size: 1.2rem;
}

.action-link.phone {
  background: #0088cc; /* Arama için kurumsal mavi veya markanızın rengi */
  color: white;
}

.action-link.whatsappf {
  background: #25d366;
}
.action-link.email {
  background: #ff9900;
}
.action-link.location {
  background: #ea4335;
}

/* 4. Sütun: Hızlı Form Alanı */
.footer-form {
  margin-bottom: 30px;
}

.footer-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #444;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.footer-form input:focus,
.footer-form textarea:focus {
  border-color: #c5a059;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
}

.footer-form .submit-btn {
  background-color: #c5a059;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.footer-form .submit-btn:hover {
  background-color: #a8874a;
}

/* Sosyal Medya */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  color: #fff;
  background-color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background-color: #c5a059;
  transform: translateY(-3px);
}

/* Alt Bilgi (Copyright) */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 25px;
  text-align: center;
  font-size: 14px;
  color: #b0b0b0;
}

/* Mobil Buton Tasarımı (Hamburger) */
.mobile-menu-btn {
  display: none; /* Masaüstünde gizli */
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 30px;
  height: 2px;
  background-color: #fff; /* Şeffaf navbar üzerinde beyaz çizgi */
  transition: 0.3s;
}
/* --- TABLET & MOBİL (992px ve altı) --- */
@media (max-width: 992px) {
  .footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
  }
  .footer-column h4::after {
    display: none;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .sticky-article h2,
  .founder-title,
  .section-title,
  .about-text h2,
  .hero-content h1 {
    font-size: 2rem;
  }
  .article-title {
    font-size: 3rem;
  }

  .container-fluid {
    padding: 0 20px;
  }

  /* Proje Izgarası - 2 Kolon */
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Mobil Menü Navigasyon */
  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: #231e1f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease-in-out;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    margin: 20px 0;
    margin-left: 0;
    font-size: 20px;
  }

  /* Hamburger Icon Animasyonu */
  .mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

/* --- MOBİL (768px ve altı) --- */
@media (max-width: 768px) {
  /* Genel Düzen Ayarları */
  .footer-content,
  .founder-content,
  .timeline-item,
  .flex-row {
    flex-direction: column;
    text-align: center;
  }

  /* Footer Düzenlemeleri */
  .footer-content {
    gap: 30px;
  }
  .footer-right-side {
    text-align: center;
  }

  .footer-contact-actions h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social a {
    margin: 0 10px;
  }
  .share-icons a {
    margin: 0 5px;
  }

  /* Grid Sistemleri */
  .contact-wrapper,
  .project-grid {
    grid-template-columns: 1fr;
  }

  /* Timeline (Zaman Çizelgesi) */
  .timeline-year {
    padding-left: 50px;
    margin-bottom: 10px;
  }

  /* Kurucu Bölümü */
  .founder-image img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
  }
}

.sticky-container {
  position: fixed;
  right: 20px;
  top: 90%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Butonların sağ hizasını korur */
  gap: 15px;
}

.sticky-button {
  text-decoration: none;
  color: white;
  height: 60px;
  width: 60px; /* Başlangıç genişliği (Sadece ikon görünür) */
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* İçeriği sağa dayalı tutar */
  padding: 0 18px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  white-space: nowrap;
}

/* Renk Tanımlamaları */
.katalog {
  background-color: #007bff;
}
.sanal-tur {
  background-color: #6f42c1; /* Modern VR Moru */
}

/* WhatsApp Marka Yeşili */
.whatsapp {
  background-color: #25d366;
}

/* WhatsApp ikonunun biraz daha belirgin olması için (isteğe bağlı) */
.whatsapp .icon-box i {
  font-size: 26px; /* WhatsApp ikonu genellikle biraz daha büyük şık durur */
}

/* Hover'da genişlik ayarı (Yazı uzun olduğu için 220px idealdir) */
.whatsapp:hover {
  width: 220px;
}

/* Hover (Üzerine Gelince) Durumu */
.sticky-button:hover {
  width: 210px; /* Genişleme miktarı */
}

.button-text {
  opacity: 0;
  max-width: 0;
  transition: all 0.3s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
}

.sticky-button:hover .button-text {
  opacity: 1;
  max-width: 150px; /* Yazının sığacağı alan */
  margin-right: 15px; /* Yazı ile ikon arasındaki boşluk */
}

.icon-box {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
}

/* İkonun hover'da hafif büyümesi */
.sticky-button:hover .icon-box {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .sticky-container {
    /* Ortalamayı iptal et ve sağ alta çek */
    top: auto !important;
    bottom: 20px !important;
    right: 15px !important;
    transform: none !important; /* Ortalamak için kullanılan transformu kaldır */
    gap: 10px;
  }

  .sticky-button {
    /* Mobilde butonları biraz daha küçük ve kibar yapalım */
    width: 50px !important;
    height: 50px !important;
    padding: 0;
    justify-content: center; /* İkonu butona ortala */

    /* Sayfayı okurken çok dikkat dağıtmaması için hafif şeffaf yapalım */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  }

  .button-text {
    display: none !important; /* Mobilde yazıyı tamamen kaldır, sadece ikon kalsın */
  }

  .icon-box {
    font-size: 20px;
    margin: 0 !important;
  }
}
.fanusyazilim a {
  color: #a8874a;
  text-decoration: none;
  font-size: 0.7rem;
}
.fanusyazilim {
  font-size: 0.7rem;
}
