/* 1. Global Sıfırlama (Her şeyin temeli) */
*,
*::before,
*::after {
  box-sizing: border-box;
  /* Padding genişliği bozmasın */
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Sayfadan Çıkarken Kararma Efekti (Linklere tıklanınca çalışır, preloader'ı bozmaz) */
body.fade-out-page {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* ===== 2. HEADER ===== */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
  background: transparent;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  /* Logoyu dikeyde ortalar */
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.7;
}

.logo-img {
  height: 30px;
  /* Logonu buradaki yükseklikle kontrol edebilirsin */
  width: auto;
  display: block;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

/* "Who we are" ve "Contact" ikilisini sağa iten sihirli dokunuş */
.nav-menu ul li.push-right {
  margin-left: 60px;
}

/* --- PREMIUM MENÜ HOVER EFEKTLERİ BAŞLANGICI --- */
.nav-menu ul li a {
  text-decoration: none;
  color: #000;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  position: relative;
  /* Alt çizgi animasyonu için şart */
  padding-bottom: 4px;
  /* Çizgi ile yazı arasına nefes payı */
  transition:
    opacity 0.4s ease,
    color 0.4s ease;
}

/* 1. Odaklanma Efekti: Menünün (ul) üzerine gelince tüm linkleri (a) silikleştir */
.nav-menu ul:hover li a {
  opacity: 0.3;
}

/* Üzerine gelinen spesifik linkin şeffaflığını geri %100 yap */
.nav-menu ul li a:hover {
  opacity: 1;
}

/* 2. Zarif Alt Çizgi (Sleek Underline) Efekti */
.nav-menu ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  /* Çizginin kalınlığı */
  bottom: 0;
  left: 0;
  background-color: #000;

  /* Çizgiyi başlangıçta 0 boyutunda ve sağa dayalı gizle */
  transform: scaleX(0);
  transform-origin: right;

  /* Lüks markaların kullandığı "hızlı başla, yağ gibi yavaşlayarak dur" animasyon ivmesi */
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Üzerine gelindiğinde çizgiyi soldan sağa doğru uzat */
.nav-menu ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- PREMIUM MENÜ HOVER EFEKTLERİ SONU --- */

/* Hamburger — masaüstünde gizli, mobilde gösterilir */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 10002;
  transition: opacity 0.2s;
}

.nav-toggle:hover {
  opacity: 0.7;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #000;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}




/* ===== 3. FOOTER ===== */
.main-footer {
  border-top: 1px solid #e5e5e5;
  padding: 80px 60px;
  margin-top: 100px;
  background: #fff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-column h3 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: #000;
}

.newsletter {
  flex-basis: 40%;
}

.newsletter p {
  font-size: 12px;
  color: #666;
  margin-bottom: 20px;
  font-weight: 300;
}

.subscribe-form {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #000;
  width: fit-content;
  padding-bottom: 5px;
}

.subscribe-form input {
  border: none;
  outline: none;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  width: 250px;
  letter-spacing: 1px;
}

.subscribe-form button {
  background: none;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 1px;
  padding: 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-column ul li a {
  text-decoration: none;
  color: #000;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: lowercase;
  transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
  opacity: 0.5;
}

.copyright {
  margin-top: 30px;
  font-size: 10px;
  color: #999;
}






/* ===== 4. PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-logo {
  height: 40px;
  width: auto;
  margin-bottom: 25px;
  display: block;
  animation: pulseLogo 3s infinite ease-in-out;
}

.progress-container {
  width: 200px;
  height: 2px;
  background: #f0f0f0;
  position: relative;
  overflow: hidden;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #000;
  animation: fillProgress 2s ease-in-out forwards;
}




/* ===== 5. ANİMASYONLAR ===== */
@keyframes pulseLogo {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.98);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fillProgress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@keyframes pulseText {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* ===== 6. ANA SAYFA — HERO SLIDER ===== */
.hero-slider-section {
  width: 100%;
  padding: 0 60px;
  box-sizing: border-box;
  margin-top: 20px;
  margin-bottom: 80px;
}

.slider-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  cursor: grab;
  scrollbar-width: none;
}

.slider-track.active {
  cursor: grabbing;
}

/* Ana sayfada slider imleci default olsun */
.home-page .hero-slider-section .slider-track,
.home-page .hero-slider-section .slider-track.active {
  cursor: default;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slide-box {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 320px;
  aspect-ratio: 3 / 4;
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  background: #f0f0f0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  user-select: none;
  -webkit-user-select: none;
}

.slide-box:hover {
  transform: scale(0.96);
  cursor: pointer;
}

.slide-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  pointer-events: none;
  -webkit-user-drag: none;
}

.slide-title {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
  z-index: 2;
}

.slide-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  pointer-events: none;
}

/* --- ANA SAYFA SLIDER OKLARI --- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-radius: 50%;
  /* Tam yuvarlak ve şık */
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.slider-arrow:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.slider-arrow-left {
  left: 20px;
}

.slider-arrow-right {
  right: 20px;
}

.smooth-scroll-active {
  scroll-behavior: smooth !important;
}








/* ===== 7. ANA SAYFA — ABOUT SNIPPET ===== */
.about-snippet {
  padding: 150px 20px;
  text-align: center;
  background: #fff;
}

.snippet-content {
  max-width: 800px;
  margin: 0 auto;
}

.snippet-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #000;
  margin-bottom: 40px;
  text-transform: lowercase;
}

.snippet-text {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.6;
  color: #000;
  margin-bottom: 50px;
  text-transform: lowercase;
}

.snippet-link {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #000;
  text-decoration: none;
  padding-bottom: 6px;
  transition: opacity 0.3s ease;
}

.snippet-link:hover {
  opacity: 0.4;
}








/* ===== 8. ABOUT SAYFASI (WHO WE ARE & WHAT WE DO) ===== */

/* --- WHO WE ARE BÖLÜMÜ --- */
.who-we-are-section {
  padding: 120px 10% 80px;
  background: #ffffff;
  text-align: left;
}

.section-label {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: lowercase;
  margin-bottom: 80px;
  color: #000;
}

.listing-category-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: lowercase;
  margin-top: 0;
  margin-bottom: 110px;
  color: #000000ad;
}

.about-text-container {
  max-width: 1000px;
  margin: 0 auto;
}

.intro-text {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.4;
  color: #000;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.intro-text strong {
  font-weight: 600;
  letter-spacing: 1px;
}

.secondary-text p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
  max-width: 850px;
}






/* --- WHAT WE DO BÖLÜMÜ --- */
.what-we-do-section {
  display: flex;
  align-items: flex-start;
  /* İçeriklerin üstten kusursuz hizalanmasını sağlar */
  padding: 100px 5%;
  background: #fff;
}

.side-title {
  flex: 1;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: lowercase;
  color: #000;
  margin: 0;
  margin-top: 0;
  /* Tarayıcıların eklediği serseri boşluğu ezer */
  line-height: 1.2;
}

.services-grid {
  flex: 4;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 60px 40px;
}

.service-category h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-top: 0;
  /* Tarayıcıların eklediği serseri boşluğu ezer */
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.service-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-category li {
  font-size: 12px;
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}






/* ===== 9. CONTACT ===== */
/* Contact sayfası (tek başına) */
.contact-section {
  text-align: center;
  padding: 100px 20px;
  color: #000;
  min-height: 50vh;
  border-top: 1px solid #eee;
}

.contact-title,
.contact-subtitle {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
}

.contact-title {
  margin-bottom: 40px;
}

.contact-subtitle {
  font-weight: 400;
  margin-bottom: 70px;
}

.contact-person {
  margin-bottom: 60px;
}

.contact-person p {
  margin: 5px 0;
}

.person-name,
.person-title {
  font-size: 18px;
  font-weight: 300;
}

.person-email {
  font-size: 16px;
  font-weight: 300;
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.person-email:hover {
  opacity: 0.5;
}

/* About sayfasındaki contact bölümü */
.contact-section h2 {
  font-size: 20px;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

.contact-section h3 {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 60px;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.contact-person h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
}

.contact-person p {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 10px;
}

.contact-person a {
  color: #000;
  text-decoration: none;
  font-size: 13px;
  border-bottom: 1px solid #ccc;
  transition: opacity 0.3s;
}

.contact-person a:hover {
  opacity: 0.5;
}

/* ===== 9. 404 HATA SAYFASI (ERROR PAGE) ===== */
.error-page {
  background: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.error-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.error-code {
  font-size: 120px;
  font-weight: 300;
  letter-spacing: 20px;
  margin-bottom: 20px;
  color: #000;
}

.error-message {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  max-width: 400px;
  line-height: 1.6;
  margin-bottom: 40px;
  text-transform: lowercase;
}

.back-home {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  padding: 15px 40px;
  transition: all 0.3s ease;
}

.back-home:hover {
  background: #000;
  color: #fff;
}



/* MOBİL AYARLARI */


/* ===== PORTFOLYO DETAY SAYFASI (YÖNETMEN / FOTOĞRAFÇI) ===== */
.portfolio-detail-section {
  background: #fff;
  position: relative;
}

/* YATAY GALERİ (NATIVE SCROLL - DOĞAL KAYDIRMA) */
.horizontal-gallery {
  display: flex;
  gap: 20px;
  padding: 0 60px 40px 60px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;

  /* ÖZEL İMLEÇ İÇİN GÜNCELLEME: Tarayıcının kendi faresi gizlenir */
  cursor: none !important;
}

/* Sürükleme esnasında da sistem faresi gizli kalmalı */
.horizontal-gallery.active {
  cursor: none !important;
}

/* Video sayfalarında custom cursor kapalı, butonlar var */
.aslihan-tokmak-page .horizontal-gallery,
.aslihan-tokmak-page .horizontal-gallery.active {
  cursor: auto !important;
}

/* Video sayfalarında galeri içindeki tüm öğelerde imleç kaybolmasın */
.aslihan-tokmak-page .horizontal-gallery *,
.aslihan-tokmak-page .horizontal-gallery *::before,
.aslihan-tokmak-page .horizontal-gallery *::after {
  cursor: auto !important;
}

/* Video sayfaları: ok butonlarını galeriye göre konumlandır */
.aslihan-tokmak-page .gallery-shell {
  position: relative;
  /* Galeri alanını biraz daha “frame” gibi hissettir */
  padding: 0;
}

/* Butonlar sadece galeride görünsün, tıklanabilir olsun */
.aslihan-tokmak-page .gallery-shell .slider-arrow {
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.aslihan-tokmak-page .gallery-shell:hover .slider-arrow {
  opacity: 1;
  pointer-events: auto;
}

/* Mobil / touch cihazlarda hover yok: butonlar hep görünür ve rahat tıklanır */
@media (hover: none), (pointer: coarse) {
  .aslihan-tokmak-page .gallery-shell .slider-arrow {
    opacity: 1;
    pointer-events: auto;
    width: 48px;
    height: 48px;
  }

  .aslihan-tokmak-page .gallery-shell .slider-arrow-left {
    left: 16px;
  }

  .aslihan-tokmak-page .gallery-shell .slider-arrow-right {
    right: 16px;
  }

  .aslihan-tokmak-page .gallery-shell .slider-arrow svg {
    width: 24px;
    height: 24px;
  }
}

.aslihan-tokmak-page .gallery-shell .slider-arrow-left {
  left: 22px;
}

.aslihan-tokmak-page .gallery-shell .slider-arrow-right {
  right: 22px;
}

/* Desktop: biraz daha “floating” dursun */
.aslihan-tokmak-page .gallery-shell .slider-arrow {
  width: 42px;
  height: 42px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.aslihan-tokmak-page .gallery-shell .slider-arrow:hover {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.04);
}

.aslihan-tokmak-page .gallery-shell .slider-arrow svg {
  width: 22px;
  height: 22px;
}

.horizontal-gallery::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari için scrollbar'ı gizler */
}

.horizontal-gallery img {
  height: 80vh;
  width: auto;
  object-fit: cover;
  background-color: #f5f5f5;

  /* İŞTE KAYDIRMAYI MÜMKÜN KILAN KOD (Resimlerin ezilmesini önler): */
  flex-shrink: 0;
  /* Geçişin 'ayvaşca' ve pürüzsüz olması için */
  transition: filter 0.05s linear;
  will-change: filter;
  filter: blur(0px);
  /* Başlangıç değeri */
  /* Resimlerin üzerine tıklayıp yanlışlıkla sürüklemeyi engeller: */
  user-select: none;
  -webkit-user-drag: none;

  /* NOT: pointer-events: none; satırı JS'in tıklamaları algılaması için SİLİNDİ. */
}

/* ===== MİNİMALİST OK İMLECİ ===== */
.simple-arrow-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  /* Küçük ve zarif */
  height: 30px;
  color: #000;
  /* Saf siyah ok */
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Galeri üzerindeyken oku göster */
.simple-arrow-cursor.active {
  opacity: 1;
}

/* Galeri alanında standart fareyi gizle (İstersen gizlemeyebilirsin ama gizlemek daha şık durur) */
.horizontal-gallery {
  cursor: none !important;
}

/* BİO VE KALIN METİN TASARIMI (GÖRSELE BİREBİR UYGUN) */
.portfolio-bio {
  max-width: 900px;
  margin: 80px auto 0 auto;
  padding: 0 40px;
  text-align: center;
}

.bio-name {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.bio-text p {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  /* Gönderdiğin görseldeki ekstra kalın yapı */
  font-size: 19px;
  /* Tok bir duruş için ideal boyut */
  text-transform: lowercase;
  line-height: 1.35;
  letter-spacing: 0.5px;
  color: #000;
  margin-bottom: 30px;
  /* Paragraflar arası boşluk */
}




.premium-video-section {
  width: 100%;
  padding: 0 60px;
  /* üst-alt 0, sağ-sol 60px */
  box-sizing: border-box;
  background-color: #fff;
}

.video-container {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
  transition: filter 0.8s ease;
  z-index: 1;
}

.video-container:hover video {
  filter: brightness(0.9) contrast(1);
}

.video-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  pointer-events: none;
}

/* Portfolio video sayfalarında play butonu tıklanabilsin */
.aslihan-tokmak-page .video-overlay {
  pointer-events: auto;
}

.overlay-sub {
  display: block;
  font-size: 11px;
  letter-spacing: 8px;
  margin-bottom: 20px;
  font-weight: 300;
  opacity: 0.9;
  text-transform: uppercase;
}

.overlay-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2vw;
  font-weight: 500;
  letter-spacing: 15px;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.2;
}

.overlay-arrow {
  margin-top: 40px;
  display: inline-block;
  animation: arrowBounce 2s infinite ease-in-out;
}

@keyframes arrowBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }
}

/* ===== NETOVIX PRO PLAYER: ULTRA PREMİUM VIDEO POPUP ===== */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  align-items: center;
  justify-content: center;
}

.video-modal.is-open {
  display: flex;
  opacity: 1;
}

.modal-content {
  width: 90%;
  max-width: 1300px;
  position: relative;
  transform: scale(0.98);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.is-open .modal-content {
  transform: scale(1);
}

.video-wrapper {
  position: relative;
  width: 100%;
  line-height: 0;
  background: #000;
}

#modalVideo {
  width: 100%;
  height: auto;
  outline: none;
  cursor: pointer;
}

#modalVideo::-webkit-media-controls {
  display: none !important;
}

/* ===== PREMİUM ALL-IN-ONE KONTROL BARI ===== */
.pro-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 10;
}

.video-wrapper:hover .pro-controls {
  opacity: 1;
}

/* İlerleme Çubuğu (Premium) */
.video-progress-area {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  margin-bottom: 22px;
  position: relative;
  border-radius: 999px;
  overflow: visible;
  transition:
    height 0.22s ease,
    background 0.22s ease;
}

/* Hit-area büyütme (çizgi ince ama tıklaması kolay) */
.video-progress-area::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}

.video-progress-area:hover {
  height: 4px;
  background: rgba(255, 255, 255, 0.28);
}

.video-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), #ffffff);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.video-progress-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 999px;
  margin-right: -5px;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.12);
  transform: scale(0.95);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.video-progress-area:hover .video-progress-dot {
  transform: scale(1.15);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 0, 0, 0.12);
}

/* Kontrol Grupları */
.controls-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.control-left,
.control-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.time-display {
  color: #fff;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1.5px;
  opacity: 0.7;
}

/* Buton Tasarımları */
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.icon-btn:hover svg {
  transform: scale(1.1);
  opacity: 0.8;
}

/* YENİ: CLOSE Metin Butonu */
.text-btn {
  background: none;
  border: none;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  text-transform: uppercase;
}

.text-btn:hover {
  opacity: 1;
}

/* En Sağdaki Tam Ekran İkonu ve Çizgi */
.exit-btn {
  margin-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 20px !important;
}

/* ===== TAM EKRAN (FULLSCREEN) DÜZELTMESİ ===== */
#proVideoWrapper:fullscreen {
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#proVideoWrapper:fullscreen .pro-controls {
  bottom: 20px;
  width: calc(100% - 60px);
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border-radius: 100px;
  /* Tam ekranda kapsül gibi gözüksün */
  padding: 15px 40px;
}

#proVideoWrapper:fullscreen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== AKILLI GİZLEME VE FARE MOTORU ===== */
.pro-controls.hide-interface {
  opacity: 0 !important;
  transform: translateY(15px);
  pointer-events: none;
}

/* Fareyi ve içindeki her şeyi yok et */
.hide-cursor,
.hide-cursor * {
  cursor: none !important;
}




/* Sadece Aslıhan Tokmak sayfasındaki videolar için */
.aslihan-tokmak-page .horizontal-gallery {
  display: flex;
  align-items: center;
  gap: 30px;
  /* Videolar arası boşluk */
  padding: 50px 0;
}

.aslihan-tokmak-page .horizontal-gallery video {
  height: 70vh;
  /* Tüm videoların yüksekliği ekranın %70'i kadar sabit */
  width: auto;
  /* Genişlik oranı bozmadan otomatik ayarlanır */
  object-fit: cover;
  flex-shrink: 0;
  /* Videoların sıkışmasını engeller */
  background-color: #000;
}

/* Mobilde boyutları biraz küçültelim ki taşmasın */


/* =========================================================
   ASLIHAN TOKMAK SAYFASI - ÖZEL VİDEO DÜZENİ
   ========================================================= */

/* Ana Galeri Konteyneri */
.aslihan-tokmak-page .horizontal-gallery {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  cursor: none !important;
  /* Standart fareyi KESİN OLARAK GİZLE */
}

/* Video Kutusu (Wrapper) */
.aslihan-tokmak-page .video-item-wrapper {
  position: relative;
  height: 70vh;
  /* Tüm videolar sabit boyda */
  flex-shrink: 0;
  cursor: none !important;
  /* Standart fareyi gizle */
  background: #000;
  overflow: hidden;
}

/* VİDEO OYNAYINCA STANDART FAREYİ GERİ GETİR */
.aslihan-tokmak-page .video-item-wrapper.is-playing {
  cursor: default !important;
  /* Video oynarken standart fare hep görünür */
}

.aslihan-tokmak-page video {
  height: 100%;
  width: auto;
  display: block;
}

/* Videonun üzerindeki saydam filigran */
.aslihan-tokmak-page .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* Saydam siyah filigran */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  z-index: 2;
  cursor: none !important;
  /* Standart fareyi gizle */
}

/* Play butonu ve metin hizalaması */
.aslihan-tokmak-page .play-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  /* Buton ile marka ismi arasındaki boşluk */
}

/* Minimal Play Butonu */
.aslihan-tokmak-page .play-button {
  width: 50px;
  /* 80px'den 50px'e düşürdük, daha kibar duracak */
  height: 50px;
  background: transparent;
  /* Arka planı tam şeffaf yaptık */
  backdrop-filter: blur(4px);
  /* Cam efekti hafifletildi */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* Çizgiyi daha ince ve silik hale getirdik */
  cursor: pointer !important;
  pointer-events: auto;
  transition: all 0.3s ease;
  /* Hover için yumuşak bir geçiş animasyonu eklendi */
}

/* Mouse ile üzerine gelindiğinde hafifçe belirginleşsin */
.aslihan-tokmak-page .play-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.05);
  /* Çok hafif bir büyüme hissi */
}

/* Play butonu içindeki SVG ikon */
.aslihan-tokmak-page .play-button svg,
.aslihan-tokmak-page .play-button * {
  width: 18px;
  /* Dış çembere uyumlu olması için ikonu 30px'den 18px'e indirdik */
  height: 18px;
  margin-left: 2px;
  /* İkon küçüldüğü için optik ortalama (üçgenin dengesi) boşluğunu 2px'e çektik */
  cursor: pointer !important;
}

/* Marka ismi tasarımı */
.aslihan-tokmak-page .video-brand-label {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 5px;
  /* Lüks bir görünüm için harf arası boşluk */
  text-transform: uppercase;
  opacity: 0.9;
}

/* Video oynarken filigranı gizle */
.aslihan-tokmak-page .video-item-wrapper.is-playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

/* --- ALTTAN ÇIKAN PRO KONTROL BARI --- */
.aslihan-tokmak-page .pro-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  /* Başlangıçta gizli */
  transition: opacity 0.3s ease;
  z-index: 3;
  pointer-events: none;
}

/* Progress bar bu sayfalarda üstte tek satır olsun */
.aslihan-tokmak-page .pro-controls .video-progress-area {
  flex: 0 0 100%;
  order: 0;
  margin-bottom: 14px;
}

.aslihan-tokmak-page .left-controls,
.aslihan-tokmak-page .right-controls {
  order: 1;
}

/* Video oynarken ve fare üzerindeyken barı göster */
.aslihan-tokmak-page .video-item-wrapper.is-playing:hover .pro-controls {
  opacity: 1;
  pointer-events: auto;
}

.aslihan-tokmak-page .left-controls,
.aslihan-tokmak-page .right-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.aslihan-tokmak-page .ctrl-btn {
  background: none;
  border: none;
  display: flex;
  padding: 0;
  cursor: pointer !important;
  /* Butonların üzerinde tıklanabilir el işareti çıksın */
}

.aslihan-tokmak-page .ctrl-btn svg {
  width: 22px;
  height: 22px;
  transition: transform 0.2s;
  opacity: 0.9;
}

.aslihan-tokmak-page .ctrl-btn:hover svg {
  transform: scale(1.1);
  opacity: 1;
}

.aslihan-tokmak-page .time-text {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Mobilde boyutları korumak için */


/* =========================================================
   ÖZEL İMLEÇ ZEKASI (SAĞ/SOL OKUN GİZLENMESİ)
   ========================================================= */

/* Fare tam olarak PLAY butonundayken VEYA video OYNARKEN (.is-playing)
   Senin siyah sağ/sol okunu gizleriz, tarayıcı kendi faresini gösterir 
*/
body:has(.aslihan-tokmak-page .play-button:hover) .simple-arrow-cursor,
body:has(.aslihan-tokmak-page .video-item-wrapper.is-playing:hover) .simple-arrow-cursor {
  opacity: 0 !important;
  display: none !important;
}

.horizontal-gallery {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* ===== THE FLOATING GALLERY VISUAL ===== */
.editorial-visual-section {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
}

.visual-container {
  /* Genişliği ciddi oranda daralttık */
  width: 55%;
  max-width: 900px;
  /* Büyük ekranlarda çok yayılmasın */
  position: relative;
  overflow: visible;
  /* Etiketin dışarı taşabilmesi için */
}

.editorial-visual-section video {
  width: 100%;
  /* Eski ebata (sinematik oran) geri döndük */
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
  /* Jilet gibi keskin bitiş */
}

.visual-label {
  position: absolute;
  bottom: -35px;
  /* Videonun biraz daha uzağına, daha zarif */
  right: 0;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: lowercase;
  color: #000;
  opacity: 0.3;
}

/* Mobilde ebatları kullanıcıyı yormayacak şekilde optimize edelim */


/* ===== THE EDITORIAL INDEX: REFINED (SEAMLESS VERSION) ===== */
.services-refined-section {
  /* Üst ve alt boşluklar tamamen sıfırlandı, yanlar 60px kaldı */
  padding: 0 60px;
  margin: 0 !important;
  background-color: #fff;
  color: #000;
  /* Diğer section'larla arada boşluk kalmaması için */
  display: block;
  overflow: hidden;
}

.refined-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* İçeriklerin üstten ne kadar mesafede başlayacağını buradan ayarlayabilirsin */
.refined-header {
  margin-top: 100px;
  /* Bölüm içindeki ilk başlığın üst boşluğu */
  margin-bottom: 80px;
}

.refined-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  opacity: 0.4;
  display: block;
  margin-bottom: 10px;
}

.refined-main-title {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: -1px;
  text-transform: uppercase;
}

/* LISTE TASARIMI */
.refined-list {
  border-top: 0.5px solid #e0e0e0;
}

.refined-row {
  display: flex;
  align-items: center;
  padding: 40px 0;
  border-bottom: 0.5px solid #e0e0e0;
  transition: all 0.4s ease;
  cursor: pointer;
}

.row-num {
  font-size: 11px;
  font-weight: 600;
  width: 60px;
  opacity: 0.3;
}

.row-content {
  flex: 1;
}

.row-title {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 8px;
  transition: transform 0.4s ease;
}

.row-tags {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.5;
}

.row-arrow {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s ease;
}

/* HOVER DURUMU */
.refined-row:hover {
  padding-left: 20px;
}

.refined-row:hover .row-title {
  letter-spacing: 2px;
}

.refined-row:hover .row-arrow {
  opacity: 1;
  transform: translateX(0);
}

.refined-row:hover .row-num {
  opacity: 1;
  color: #000;
}

/* MOBİL */


/* ===== THE SILENT ESSENCE: PURE SIMPLICITY ===== */
.silent-essence-section {
  padding: 180px 60px;
  /* Üstten ve alttan devasa boşluk, asalet buradadır */
  background-color: #fff;
  margin: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #f2f2f2;
  /* Çok ama çok silik bir üst çizgi */
}

.essence-wrapper {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  /* Her şey merkezde, dengeli */
}

.essence-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 6px;
  opacity: 0.3;
  display: block;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.essence-statement {
  font-size: 42px;
  /* Doyurucu ama yormayan bir boyut */
  font-weight: 300;
  /* İnce font = Premium */
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #000;
  margin-bottom: 60px;
  /* Zara tarzı: Sadece ilk harfler büyük, geri kalanı küçük */
}

.essence-footer {
  display: flex;
  justify-content: center;
  border-top: 0.5px solid #eee;
  /* Çok ince bir ayırıcı çizgi */
  padding-top: 40px;
}

.essence-footer p {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 450px;
  line-height: 2;
  opacity: 0.5;
}




.aslihan-tokmak-page .video-item-wrapper video {
  /* Geçişin 'ayvaşca' ve pürüzsüz olması için */
  transition: filter 0.05s linear;
  will-change: filter;
  filter: blur(0px);
  /* Başlangıçta cam gibi net */
}

.typewriter-text {
  /* Daktilo / Yazılımcı fontu - Premium Brutalizm */
  font-family: "Courier New", Courier, monospace;
  font-size: 18px;
  font-weight: 550;
  /* YAZIYI KALINLAŞTIRAN KISIM BURASI */
  line-height: 1.2;
  /* Satır aralarını iyice açtık ki o havalı duruş gelsin */
  text-align: center;
  color: #000;
  margin: 0;
}

.typewriter-text strong {
  font-weight: 500;
  letter-spacing: 1px;

  line-height: 2.2;
  /* Satır aralarını iyice açtık ki o havalı duruş gelsin */
}



/* ===== WHAT WE DO: KUSURSUZ HİZALAMA ===== */
.what-we-do-section .side-title {
  margin-top: 0 !important;
  /* Soldaki yazının tepesindeki boşluğu ezer */
  line-height: 1.2;
}

.services-grid .service-category h3 {
  margin-top: 0 !important;
  /* Sağdaki H3'lerin tepesindeki boşluğu ezer */
  line-height: 1.2;
}

/* Eğer kapsayıcıda flex veya grid kullanıyorsan öğelerin üstten hizalandığına emin ol */
.what-we-do-section {
  align-items: flex-start;
}

/* ===== 11. RESPONSIVE (YENİ UZMAN MOBİL DÜZENİ) ===== */

/* --- TABLET UYUM (MAX-WIDTH: 1024px) --- */
@media (max-width: 1024px) {
  .main-header {
    padding: 30px 40px;
  }

  .hero-slider-section {
    padding: 0 40px;
    margin-bottom: 50px;
  }

  .slide-box {
    flex: 0 0 calc(50% - 15px);
    min-width: 280px;
  }

  .about-snippet {
    padding: 100px 40px;
  }

  .snippet-text {
    font-size: 24px;
  }

  .who-we-are-section {
    padding: 80px 40px;
  }

  .what-we-do-section {
    padding: 80px 40px;
    flex-direction: column;
    gap: 50px;
  }

  .main-footer {
    padding: 60px 40px;
    margin-top: 60px;
  }

  .footer-container {
    gap: 40px;
  }

  .newsletter {
    flex-basis: 100%;
  }

  .contact-section {
    padding: 80px 40px;
  }

  .contact-grid {
    gap: 50px;
  }

  .visual-container {
    width: 70%;
  }
}

/* --- MOBİL UYUM (MAX-WIDTH: 768px) --- */
@media (max-width: 768px) {

  /* HEADER & NAV */
  .main-header {
    padding: 20px;
    flex-wrap: wrap;
  }

  .logo-bold {
    font-size: 20px;
  }

  .logo-light {
    font-size: 11px;
  }

  .nav-menu ul li.push-right {
    margin-left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  body.nav-open .nav-menu {
    transform: translateX(0);
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 10000;
    cursor: pointer;
    display: none;
  }

  body.nav-open .nav-overlay {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0;
  }

  .nav-menu ul li {
    border-bottom: 1px solid #eee;
  }

  .nav-menu ul li a {
    display: block;
    padding: 16px 0;
    font-size: 14px;
  }

  /* PRELOADER */
  .loader-logo {
    height: 30px;
    margin-bottom: 20px;
  }

  .progress-container {
    width: 160px;
  }

  /* HERO SLIDER */
  .hero-slider-section {
    padding: 0 20px;
    margin-top: 10px;
    margin-bottom: 40px;
  }

  .slider-track {
    gap: 16px;
    padding-bottom: 12px;
  }

  .slide-box {
    flex: 0 0 240px;
    min-width: 240px;
  }

  .slide-title {
    font-size: 12px;
    bottom: 24px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  /* ABOUT SNIPPET */
  .about-snippet {
    padding: 60px 20px;
  }

  .snippet-title {
    font-size: 10px;
    margin-bottom: 24px;
  }

  .snippet-text {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.5;
  }

  /* WHO WE ARE */
  .who-we-are-section {
    padding: 50px 20px;
  }

  .section-label {
    font-size: 10px;
    margin-bottom: 30px;
  }

  .intro-text {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .secondary-text p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .about-header {
    justify-content: center;
  }

  .typewriter-text {
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
    padding: 0 15px;
  }

  .desk-break {
    display: none;
  }

  /* WHAT WE DO */
  .what-we-do-section {
    padding: 50px 20px;
    gap: 30px;
  }

  .side-title {
    margin-top: 0 !important;
    font-size: 14px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-grid .service-category h3 {
    margin-top: 0 !important;
    font-size: 13px;
  }

  /* PORTFOLIO / GALLERY */
  .horizontal-gallery {
    padding: 0 20px 20px 20px;
    gap: 10px;
  }

  .horizontal-gallery img {
    height: 50vh;
  }

  .portfolio-bio {
    padding: 0 20px;
    margin-top: 50px;
  }

  .bio-text p {
    font-size: 14px;
  }


  /* ASLIHAN TOKMAK PAGE */
  .aslihan-tokmak-page .horizontal-gallery video {
    height: 50vh;
  }

  .aslihan-tokmak-page .video-item-wrapper {
    height: 50vh;
  }

  /* CONTACT */
  .contact-section {
    padding: 60px 20px;
  }

  .contact-section h2 {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .contact-section h3 {
    font-size: 12px;
    margin-bottom: 30px;
  }

  .contact-grid {
    flex-direction: column;
    gap: 30px;
  }

  .contact-title,
  .contact-subtitle {
    font-size: 14px;
  }

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

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

  /* FOOTER */
  .main-footer {
    padding: 40px 20px;
    margin-top: 40px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-column h3 {
    margin-bottom: 16px;
  }

  .subscribe-form {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    border-bottom: none;
    gap: 15px;
  }

  .subscribe-form input {
    width: 100%;
    border-bottom: 1px solid #000;
    padding-bottom: 8px;
  }

  /* REFINDED INDEX */
  .services-refined-section {
    padding: 0 20px;
  }

  .refined-header {
    margin-top: 60px;
    margin-bottom: 50px;
  }

  .refined-main-title {
    font-size: 24px;
  }

  .row-title {
    font-size: 18px;
  }

  .row-tags {
    font-size: 9px;
    line-height: 1.5;
  }

  .row-num {
    width: 40px;
  }

  /* SILENT ESSENCE */
  .silent-essence-section {
    padding: 80px 20px;
  }

  .essence-statement {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .essence-footer {
    padding-top: 30px;
  }

  .essence-footer p {
    font-size: 10px;
  }

  /* EDITORIAL VISUAL */
  .editorial-visual-section {
    padding: 60px 0;
  }

  .visual-container {
    width: 90%;
  }

  .editorial-visual-section video {
    aspect-ratio: 16 / 9;
  }

  /* PRO VIDEO CONTROLS */
  .pro-controls {
    opacity: 1;
    padding: 15px;
  }

  .time-display {
    display: none;
  }

  .control-left,
  .control-right {
    gap: 15px;
  }

  /* 404 PAGE */
  .error-code {
    font-size: 64px;
    letter-spacing: 8px;
  }

  .error-message {
    font-size: 13px;
    padding: 0 16px;
    margin-bottom: 30px;
  }

  .back-home {
    padding: 12px 28px;
    font-size: 10px;
  }
}

/* --- KÜÇÜK MOBİL EKRANLAR (MAX-WIDTH: 480px) --- */
@media (max-width: 480px) {
  .main-header {
    padding: 16px;
  }

  .logo-img {
    height: 24px;
  }

  .slide-box {
    flex: 0 0 200px;
    min-width: 200px;
  }

  .about-snippet {
    padding: 40px 16px;
  }

  .snippet-text {
    font-size: 16px;
  }

  .error-code {
    font-size: 48px;
    letter-spacing: 4px;
  }

  .refined-main-title {
    font-size: 20px;
  }

  .essence-statement {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .horizontal-gallery {
    padding: 30px 20px !important;
    gap: 15px !important;
    /* Mobilde videolar arası boşluk daralır */
  }

  .video-item-wrapper {
    /* MUCİZE BURADA: Yüksekliği serbest bırakıp genişliği ekranın %85'ine kilitliyoruz. 
       Böylece sağdaki videonun ucu gözükür, kullanıcıya "kaydır" mesajı verir. */
    width: 85vw !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    /* 16:9 sinematik formata zorlar, uzamayı/basılmayı önler */
  }

  .video-item-wrapper video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* FİLİGRAN VE PLAY BUTONU KÜÇÜLTME (Mobilde devasa durmasın diye) */
  .play-button {
    width: 50px !important;
    height: 50px !important;
  }

  .play-button svg {
    width: 20px !important;
    height: 20px !important;
  }

  .video-brand-label {
    font-size: 10px !important;
    letter-spacing: 2px !important;
  }

  /* ALT KONTROL BARI KÜÇÜLTME */
  .pro-controls {
    padding: 10px 15px !important;
  }

  .ctrl-btn svg {
    width: 18px !important;
    height: 18px !important;
  }

  .time-text {
    font-size: 10px !important;
  }
}

@media (max-width: 1024px) {
  .premium-video-section {
    padding: 0 24px;
    /* Tablet ekranlarda yan boşlukları daralt */
  }

  .video-container {
    height: 50vh;
    /* Tablette yüksekliği biraz kıs */
  }
}

@media (max-width: 768px) {
  .premium-video-section {
    padding: 0 20px;
    /* Mobil ekranlarda yan boşlukları iyice daralt */
  }

  .video-container {
    height: 35vh;
    /* Mobilde ekranı tamamen kaplayıp kullanıcıyı yormaması için boyu kısaltılır */
  }

  .video-container:hover video {
    transform: none;
    /* Mobilde hover (yakınlaşma) efektini iptal et (Telefonda hover olmaz) */
  }
}

/* =========================================================
   HAKKIMIZDA (ABOUT) SAYFASI - KESİN ORTALANMIŞ MOBİL UYUM 
   ========================================================= */

@media (max-width: 768px) {

  /* --- 1. WHO WE ARE KISMI KESİN ORTALAMA --- */
  .who-we-are-section {
    padding: 60px 20px 40px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    /* Tüm içeriği yatayda merkeze kilitler */
    justify-content: center !important;
  }

  .section-label {
    width: 100% !important;
    text-align: center !important;
    font-size: 10px !important;
    letter-spacing: 3px !important;
    margin-bottom: 40px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .listing-category-title {
    font-size: 14px !important;
    letter-spacing: 4px !important;
    margin-bottom: 50px !important;
  }

  .about-text-container {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .typewriter-text {
    font-size: 14px !important;
    line-height: 1.6 !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .desk-break {
    display: none !important;
  }

  /* --- 2. ORTADAKİ VİDEO (EDITORIAL VISUAL) --- */
  .editorial-visual-section {
    padding: 20px 20px 60px !important;
  }

  .visual-container {
    width: 100% !important;
  }

  .editorial-visual-section video {
    aspect-ratio: 16 / 9 !important;
    width: 100% !important;
  }

  /* --- 3. WHAT WE DO KISMI KESİN ORTALAMA --- */
  .what-we-do-section {
    padding: 40px 20px 80px !important;
    display: flex !important;
    flex-direction: column !important;
    /* Yan yana dizilimi alt alta alır */
    align-items: center !important;
    /* Ana kutuları merkeze çeker */
    justify-content: center !important;
  }

  .what-we-do-section .side-title {
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 40px !important;
  }

  .services-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    /* Izgara içindeki grupları merkeze çeker */
    width: 100% !important;
    gap: 50px !important;
  }

  .service-category {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    /* Başlık ve listeyi kendi içinde merkeze çeker */
    width: 100% !important;
  }

  .service-category h3 {
    font-size: 14px !important;
    margin-bottom: 15px !important;
    text-align: center !important;
    width: 100% !important;
  }

  /* GİZLİ BOŞLUKLARI YOK EDEN KISIM */
  .service-category ul {
    padding: 0 !important;
    /* Tarayıcının soldan bıraktığı 40px boşluğu siler */
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    /* Bütün maddeleri (li) merkeze dizer */
    width: 100% !important;
  }

  .service-category li {
    font-size: 12px !important;
    line-height: 1.8 !important;
    text-align: center !important;
    width: 100% !important;
  }
}

/* =========================================================
   PREMIUM MINIMALIST FOOTER (MASAÜSTÜ & GENEL)
   ========================================================= */
.premium-footer {
  background-color: #ffffff;
  color: #000000;
  padding: 60px 20px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /* Kaymaları önler: Ekrana sığmadığında kibarca alt satıra geçer */
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 2;
}

.footer-content a,
.footer-content span {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  /* Kelimelerin veya çizgilerin yarım kopmasını engeller */
}

.premium-footer a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.premium-footer a:hover {
  opacity: 0.5;
}

.separator {
  font-weight: 300;
  color: #cccccc;
  font-size: 10px;
}

.copyright {
  color: #777777;
  font-weight: 400;
}

/* =========================================================
   FOOTER - KESİN ORTALANMIŞ MOBİL UYUM (768px ve altı)
   ========================================================= */
@media screen and (max-width: 768px) {

  /* --- ÜST FOOTER (Bülten & Linkler) --- */
  .main-footer {
    padding: 60px 20px 40px;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
    /* Sütunlar arası ferah boşluk */
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-column h3 {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .newsletter p {
    text-align: center;
    margin-bottom: 25px;
  }

  /* Abone Ol Formu */
  .subscribe-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border-bottom: none;
    /* Masaüstü çizgisini kaldırır */
    gap: 15px;
  }

  .subscribe-form input {
    width: 100%;
    max-width: 280px;
    text-align: center;
    /* Yazı ortadan başlar */
    border: none;
    border-bottom: 1px solid #000;
    /* Sadece input'un altında çizgi kalır */
    padding-bottom: 10px;
    border-radius: 0;
  }

  .subscribe-form button {
    width: auto;
    margin-top: 10px;
    letter-spacing: 2px;
  }

  /* Link Listeleri */
  .footer-column ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
    width: 100%;
    gap: 15px;
  }

  .footer-column ul li {
    text-align: center;
    width: 100%;
    margin-bottom: 0;
  }

  /* --- ALT PREMİUM FOOTER MOBİL --- */
  .premium-footer {
    padding: 40px 10px;
  }

  .footer-content {
    gap: 10px;
    /* Elemanlar arası boşluğu mobilde daraltır */
    font-size: 10px;
    /* Mobilde daha kibar durması için fontu 1 tık küçültür */
  }

  .premium-footer a {
    padding: 5px 0;
    /* Dokunmayı kolaylaştırmak için hafif tıklama alanı */
  }
}

/* Ana sayfa slider'ı ve portfolyo galerisinde varsayılan bilgisayar faresini gizle */
.horizontal-gallery,
.horizontal-gallery img,
.horizontal-gallery video {
  cursor: none !important;
}

/* Ana sayfada DEĞİL, diğer sayfalardaki slider-track için fare gizle */
body:not(.home-page) .slider-track,
body:not(.home-page) .slider-track a {
  cursor: none !important;
}

/* =============================================================
   FIX: Video sayfalarında imleç gizlenmesin
   (Dosyada aşağıda gelen cursor:none kuralları override ediyordu)
   ============================================================= */
.aslihan-tokmak-page .horizontal-gallery,
.aslihan-tokmak-page .horizontal-gallery.active,
.aslihan-tokmak-page .horizontal-gallery img,
.aslihan-tokmak-page .horizontal-gallery video,
.aslihan-tokmak-page .horizontal-gallery *,
.aslihan-tokmak-page .gallery-shell,
.aslihan-tokmak-page .video-item-wrapper,
.aslihan-tokmak-page .video-overlay,
.aslihan-tokmak-page .pro-controls,
.aslihan-tokmak-page .slider-arrow,
.aslihan-tokmak-page .slider-arrow * {
  cursor: auto !important;
}

/* Ana sayfada slider-track'te fare GÖRÜNÜR olsun */
.home-page .slider-track,
.home-page .slider-track a,
.home-page .slider-track * {
  cursor: default !important;
}

/* Slide-box'a gelinince pointer göster (tıklanabilir işareti) */
.home-page .slide-box:hover,
.home-page .slide-box:hover * {
  cursor: pointer !important;
}

/* =============================================================
   KATEGORİ BAŞLIKLARI (GENEL MERKEZLEME + ÜST BOŞLUK)
   ============================================================= */

.category-title-wrapper {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important; /* Yatayda tam orta */
  align-items: center !important;
  
  /* Üst ve Alt Boşluk Ayarları */
  margin-top: 60px !important;    /* Navigasyondan uzaklık (İstediğin boşluk) */
  margin-bottom: 80px !important; /* Aşağıdaki isim listesiyle mesafe */
  
  z-index: 10;
}

.category-page-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  
  /* Harf boşluğu ayarı */
  letter-spacing: 14px !important; 
  /* ÖNEMLİ: letter-spacing kaynaklı görsel kaymayı önlemek için */
  text-indent: 14px !important; 
  
  text-transform: lowercase !important;
  color: #000 !important;
  opacity: 0.6 !important;
  margin: 0 !important;
  text-align: center !important;
  width: auto !important;
}

/* MOBİL İNCE AYAR (768px altı) */
@media (max-width: 768px) {
  .category-title-wrapper {
    margin-top: 40px !important;    /* Mobilde biraz daha az üst boşluk */
    margin-bottom: 50px !important; /* Mobilde alt listeyle mesafe */
    padding: 0 20px !important; 
  }

  .category-page-title {
    font-size: 16px !important; 
    letter-spacing: 8px !important;
    text-indent: 8px !important; 
    line-height: 1.5 !important;
  }
}
/* =============================================================
   THËNN CREATIVE - MASTER CSS (Desktop Focused Animation)
   ============================================================= */

/* 1. ANA KAPSAYICI */
.photographers-section {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 100vh !important;
  padding-top: 120px !important; /* Navigasyon boşluğu */
  background: #fff;
  overflow-x: hidden !important;
}

/* 2. KATEGORİ BAŞLIĞI */
.category-title-wrapper {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  margin-top: 20px !important;
  margin-bottom: 70px !important;
}

.category-page-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 14px !important;
  text-indent: 14px !important; /* Mükemmel yatay denge */
  text-transform: lowercase !important;
  color: #000 !important;
  opacity: 0.6 !important;
  text-align: center !important;
}

/* 3. LİSTE VE ÖĞELER (GENEL) */
.names-list {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  gap: 30px !important;
  list-style: none !important;
  padding: 0 20px !important;
}

.director-item, .photographer-item, .ai-artist-item, .names-list > div {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* 4. BUTON / İSİM STİLİ (MOBİL - VARSAYILAN) */
.outline-text {
  font-family: Lineto, "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  color: transparent !important;
  -webkit-text-stroke: 1px #000 !important;
  display: block !important;
  text-align: center !important;
  font-size: clamp(26px, 8vw, 34px) !important;
  line-height: 1.2 !important;
  transition: all 0.3s ease !important;
}

.outline-text:hover {
  color: #000 !important;
  -webkit-text-stroke: 1px transparent !important;
}

/* =============================================================
   5. SADECE MASAÜSTÜ (MIN-WIDTH: 769PX) - SLICED EFEKT BURADA AKTİF
   ============================================================= */
@media (min-width: 769px) {
  /* Desktop hizalama düzeltmeleri (mobil'e dokunmadan) */
  .photographers-section {
    padding-top: 140px !important; /* header boşluğu */
  }

  .category-title-wrapper {
    margin-top: 10px !important;
    margin-bottom: 60px !important;
  }

  .outline-text {
    font-size: clamp(30px, 5vw, 48px) !important;
    -webkit-text-stroke: 1.2px #000 !important;
    text-transform: uppercase !important;
    /* Tam ortalama için tam genişlik + flex */
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    white-space: nowrap !important;
  }

  .slide-title {
    text-transform: uppercase !important;
  }

  /* Butonlar arası boşluğu hafif azalt */
  .names-list {
    gap: 22px !important;
  }

  .nav-menu ul {
    gap: 22px !important;
  }

  /* Sliced (Parçalı) Animasyon Sadece Masaüstünde Çalışır */
  .outline-text span {
    display: inline-block !important;
    position: relative !important;
    transition: clip-path 0.4s ease, margin 0.4s ease !important;
  }

  .outline-text span.sliced-right {
    clip-path: inset(0 50% 0 0);
    margin-right: var(--pull-amount, 0);
  }

  .outline-text span.sliced-left {
    clip-path: inset(0 0 0 50%);
    margin-left: var(--pull-amount, 0);
  }
}

/* 6. MOBİL İNCE AYARLAR (EKSTRA GÜVENLİK) */
@media (max-width: 768px) {
  .photographers-section {
    padding-top: 100px !important;
  }
  
  /* Mobilde harfler bölünmesin, düz dursun */
  .outline-text span {
    clip-path: none !important;
    margin: 0 !important;
  }
}
/* Dil Değiştirme Butonu Stilleri */
.lang-switcher-item {
    display: flex;
    align-items: center;
}

.lang-switch-btn {
    background: transparent;
    border: none;
    padding: 0;
    margin-left: 15px; /* Contact linki ile arasına ufak bir esneklik */
    font-family: inherit;
    font-size: inherit; /* Navigasyon font boyutu neyse onu alır */
    color: inherit; /* Navigasyon yazı rengini alır */
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.3s ease;
}

.lang-switch-btn:hover {
    opacity: 0.8;
}

.lang-divider {
    font-size: 0.9em;
    opacity: 0.3;
}