/* ══ HAKKIMIZDA SAYFASI ÖZEL STİLLERİ ══ */

/* Pinned Fullscreen Hero Alanı */
.about-hero-pin-wrap {
  height: 250vh; /* Kaydırma derinliği */
  position: relative;
  background: #000;
}

.about-hero-sticky {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* Arka Plan Katmanları */
.about-bg-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(1.08);
}

.about-bg-layer.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.about-bg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  /* İstediğiniz bulanıklık ve karartma filtresi */
  filter: blur(8px) brightness(0.22) saturate(1.1);
  transform: scale(1.05);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(26,26,46,0.4) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

/* ── SLOGAN HERO METİN KATLANLARI ── */
.about-hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6vw;
}

.about-text-layer {
  position: absolute;
  width: 100%;
  max-width: 900px;
  text-align: center;
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
              transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.about-text-layer.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Üst etiket — ince, büyük harf, teal */
.about-sec-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.55em;
  color: rgba(42, 157, 143, 0.9);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: block;
}

/* Ana slogan başlık — devasa, güçlü */
.about-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.about-hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--teal);
  display: block;
}

/* Alt slogan — kısa, sade */
.about-hero-desc {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  letter-spacing: 0.04em;
  max-width: 520px;
  margin: 0 auto;
}

/* Alt Bar Tasarımı */
.about-bottom-bar {
  position: absolute;
  bottom: 5vh;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.about-scroll-ind {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.about-hs-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4);
}

.about-hs-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ══ ASİMETRİK BLOK DÜZENİ ══ */
.asym-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6vw;
  align-items: center;
  max-width: 88vw;
  margin: 0 auto 150px auto;
}

.asym-row.inverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.asym-text-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}

.asym-text-col p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-2);
  font-weight: 300;
}

.asym-img-frame {
  width: 100%;
  height: clamp(400px, 55vh, 680px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.asym-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.asym-row:hover .asym-img-frame img {
  transform: scale(1.04);
}

/* 6'lı Takım Grid Tasarımı */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .asym-row, .asym-row.inverse {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 80px;
  }
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .asym-img-frame {
    height: 380px;
  }
}

@media (max-width: 600px) {
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .about-team-grid {
    grid-template-columns: 1fr;
  }
}
/* ── SLOGAN AYRAÇ çizgisi (etiket altı) ── */
.about-sec-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--teal);
  margin: 16px auto 0;
  opacity: 0.6;
}

/* ── HERO SLIDE SAYACI (sağ alt köşe) ── */
.about-slide-counter {
  position: absolute;
  bottom: 6vh;
  right: 5vw;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.about-slide-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: all 0.4s ease;
}

.about-slide-dot.active {
  background: var(--teal);
  transform: scale(1.4);
}

/* ── MOBİL SLOGAN HERO ── */
@media (max-width: 768px) {
  .about-hero-title {
    font-size: clamp(2.6rem, 11vw, 4rem);
    line-height: 1.08;
    margin-bottom: 20px;
  }
  .about-hero-desc {
    font-size: 0.9rem;
    letter-spacing: 0.02em;
  }
  .about-sec-label {
    font-size: 0.52rem;
    letter-spacing: 0.4em;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
  .about-text-layer { max-width: 92vw; }
}

/* ══════════════════════════════════════════
   ŞİRKƏT KİMLİK BÖLÜMÜ — Organik Tipografi
══════════════════════════════════════════ */

.about-info-section {
  padding: 120px 0;
  background: var(--bg);
}

/* ── Kimlik bloğu sarmalayıcı ── */
.about-identity-block {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── Direktor ismi — öne çıkan ── */
.aib-director {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.aib-director-role {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--teal);
}

.aib-director-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* ── Organik açıklama paragrafı ── */
.aib-bio {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.9;
  color: var(--text-2);
  font-weight: 300;
  max-width: 460px;
}

/* ── Alt meta bilgiler — ince, soluk ── */
.aib-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.aib-meta-item {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--text-2);
  opacity: 0.65;
}

.aib-meta-sep {
  color: var(--teal);
  opacity: 0.5;
  font-size: 0.7rem;
}

.aib-meta--langs .aib-meta-item {
  color: var(--teal);
  opacity: 0.85;
  letter-spacing: 0.22em;
}

/* ── İstatistik üçlüsü ── */
.about-partners-stat {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.aps-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.aps-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.02em;
}

.aps-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
  opacity: 0.7;
}

.aps-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Şehir listesi ── */
.aib-cities {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--text-2);
  opacity: 0.55;
  margin-top: 4px;
  text-transform: uppercase;
}

/* ── Mobil ── */
@media (max-width: 768px) {
  .about-info-section { padding: 80px 5vw; }
  .aib-director-name { font-size: 1.7rem; }
  .aps-num { font-size: 1.8rem; }
  .aib-bio { font-size: 0.93rem; }
}