/* =========================================================
   1. GENEL AYARLAR & TİPOGRAFİ SİSTEMİ (SABANCI DİSİPLİNİ)
   ========================================================= */
:root {
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
  --text-hero: clamp(44px, 4vw, 62px);
  --text-h2: clamp(32px, 2.6vw, 40px);
  --text-h3: 23px;
  --text-h4: 19px;
  --text-body: 17px;
  --text-nav: 16px;
  --text-btn: 16px;
  --text-small: 14px;
  --text-stat: clamp(36px, 4vw, 48px);
  --text-eyebrow: 13px;
  
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
}

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

body { 
  font-family: var(--font-sans); 
  background-color: #ffffff; 
  color: #333333;
  font-size: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.wrap { max-width: 1340px; margin: 0 auto; padding: 0 80px; }

/* =========================================================
   2. YAPIŞKAN (STICKY) HEADER (SABANCI BEYAZLIĞI)
   ========================================================= */
header {
  position: fixed;
  top: 0; left: 0; width: 100%; z-index: 1200;
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  padding: 32px 80px;
  border-bottom: none; 
  transition: all 0.4s ease;
}

.header-logo { display: flex; align-items: center; flex: none; }
.header-logo img { height: 72px; width: auto; transition: height 0.4s ease, filter 0.4s ease; }
header.scrolled .header-logo img { height: 54px; }

header.scrolled {
  background: rgba(255, 255, 255, 0.98); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 80px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
}

header nav { 
  display: flex; gap: 10px; align-items: center;
  position: absolute; left: 50%; transform: translateX(-50%); 
}
header nav a { 
  color: #ffffff; 
  font-size: var(--text-nav); 
  font-weight: var(--weight-regular); 
  transition: color 0.3s ease, border-color 0.3s ease; 
  text-transform: none;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  white-space: nowrap;
}
header nav a.active, header nav a:hover { 
  color: #ffffff; 
  border-color: rgba(255,255,255,0.7);
}

header.scrolled nav a { color: #4A5568; }
header.scrolled nav a.active, header.scrolled nav a:hover { color: #0b1c2e; border-color: rgba(11,28,46,0.3); }

.header-right { display: flex; align-items: center; gap: 24px; }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.7); 
  padding: 10px 20px; 
  border-radius: 2px;
  font-size: var(--text-nav); 
  font-weight: var(--weight-semibold); 
  color: #ffffff; 
  transition: 0.3s ease;
  text-transform: none;
}
.btn-outline:hover { background: #ffffff; color: #0b1c2e; }

header.scrolled .btn-outline { border-color: #4A5568; color: #4A5568; }
header.scrolled .btn-outline:hover { background: #002b66; border-color: #002b66; color: #ffffff; }

/* ARAMA VE DİL İKONLARI SARICISI */
.header-icons { display: flex; align-items: center; gap: 20px; }

/* YENİ: ARAMA İKONU VE KUTUSU */
.search-wrapper { position: relative; display: flex; align-items: center; }
.search-icon { 
  color: #ffffff; 
  transition: color 0.3s ease; 
  cursor: pointer; 
  display: flex; align-items: center;
}
.search-icon:hover { color: #ffffff; }
header.scrolled .search-icon { color: #4A5568; }
header.scrolled .search-icon:hover { color: #002b66; }

.search-input-box {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 12px;
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(15px);
  transition: all 0.3s ease;
  margin-top: 16px;
  display: flex;
}
.search-input-box.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.search-input-box input {
  border: 1px solid #e2e8f0;
  padding: 8px 12px;
  border-radius: 2px;
  outline: none;
  font-family: var(--font-sans);
  font-size: 14px;
  width: 220px;
  color: #333;
}

/* DİL İKONU VE AÇILIR MENÜ (SABANCI TARZI) */
.lang-wrapper { position: relative; display: flex; align-items: center; }

.lang-icon { 
  color: #ffffff; 
  transition: color 0.3s ease; 
  cursor: pointer; 
  display: flex; align-items: center;
}
.lang-icon:hover { color: #ffffff; }
header.scrolled .lang-icon { color: #4A5568; }
header.scrolled .lang-icon:hover { color: #002b66; }

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0; 
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 12px 0;
  min-width: 140px;
  border-radius: 2px;
  
  opacity: 0;
  visibility: hidden;
  pointer-events: none; 
  
  transform: translateY(15px);
  transition: all 0.3s ease;
  margin-top: 16px; 
}

.lang-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-dropdown span {
  display: block;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-dropdown span:hover {
  background: #f8fafc;
  color: #0b1c2e;
}
.lang-dropdown span.active {
  color: #0b1c2e;
  font-weight: 600;
}

/* =========================================================
   3. ARKA PLAN VİDEO HERO BÖLÜMÜ
   ========================================================= */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 700px;
  display: flex; flex-direction: column; justify-content: flex-start;
  background-color: #000000;
  overflow: hidden;
}

.video-bg-wrapper {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
}
.video-bg-wrapper video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.video-bg-wrapper video.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg, rgba(11, 28, 46, 0.85) 0%, rgba(11, 28, 46, 0.4) 50%, rgba(11, 28, 46, 0.1) 100%);
}

.hero-content {
  position: relative; z-index: 10; width: 100%; max-width: 980px; 
  padding-top: clamp(190px, 24vh, 260px);
  padding-left: clamp(40px, 5vw, 90px); 
  color: #ffffff;
}
.hero-content h1 {
  font-size: var(--text-hero); 
  font-weight: var(--weight-semibold); 
  line-height: 1.08; 
  letter-spacing: -0.025em;
  margin-bottom: 28px; 
  text-transform: none; 
  max-width: 980px;
}
.hero-content p {
  font-size: var(--text-body); 
  font-weight: var(--weight-regular); 
  line-height: 1.65; 
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px; 
  max-width: 650px;
}

.sabanci-btn {
  display: inline-block; 
  padding: 14px 32px;
  background: #002b66; color: #ffffff;
  font-size: var(--text-btn); 
  font-weight: var(--weight-semibold); 
  text-transform: none; 
  border-radius: 2px; 
  transition: all 0.3s ease;
}
.sabanci-btn:hover { background: #004099; }

/* =========================================================
   5. BULGULAR (SABANCI TARZI EŞİT KART GRİDİ)
   ========================================================= */
.section { padding: 120px 0; background: #ffffff; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
/* Bulgular bölümünde başlık/buton satırı, alttaki kart bloğuyla (oklar hariç)
   tam aynı sol-sağ kenarda dursun diye ok butonlarının kapladığı alan kadar
   (44px genişlik + 20px boşluk = 64px) içeri alıyoruz */
#bulgular .section-head { padding-left: 64px; padding-right: 64px; }
.section-title { font-size: var(--text-h2); font-weight: var(--weight-semibold); color: #0b1c2e; text-transform: none; letter-spacing: -0.02em; line-height: 1.18; }

.news-grid-wrap { position: relative; display: flex; align-items: center; gap: 0; }
.news-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; flex: 1; min-width: 0;
}
.news-card { cursor: pointer; }
.news-img { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: #0b1c2e; border-radius: 2px; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-body { padding-top: 20px; }
.news-date { display: flex; align-items: center; gap: 8px; font-size: var(--text-small); font-weight: var(--weight-regular); color: #4A5568; margin-bottom: 12px; }
.news-body h3 { font-size: 18px; font-weight: var(--weight-semibold); color: #0b1c2e; line-height: 1.4; text-transform: none; }
.news-excerpt { font-size: 14.5px; font-weight: var(--weight-regular); color: #4A5568; line-height: 1.65; margin-top: 10px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.news-arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid #E2E8F0; background: #ffffff;
  display: flex; align-items: center; justify-content: center; color: #0b1c2e; cursor: pointer; transition: all 0.25s ease;
  flex: none;
}
.news-arrow:hover:not(:disabled) { background: #f8fafc; border-color: #0b1c2e; }
.news-arrow:disabled { color: #cbd5e1; border-color: #f1f5f9; cursor: default; }
.news-arrow-side { margin-top: -30px; }
.news-arrow-left { margin-right: 20px; }
.news-arrow-right { margin-left: 20px; }
.news-cta { background: #002b66; color: #ffffff; padding: 14px 32px; font-size: var(--text-btn); font-weight: var(--weight-semibold); border-radius: 2px; text-transform: none; transition: background 0.3s ease; flex: none; }
.news-cta:hover { background: #004099; }

/* =========================================================
   6. EKİP MARQUEE & ANONİM KART
   ========================================================= */
.team-section { padding: 120px 0; background: #f8fafc; overflow: hidden; }
.marquee-container { width: 100%; overflow: hidden; display: flex; }
.marquee-track {
  display: flex; gap: 24px;
  animation: scrollTeam 35s linear infinite;
}
.team-member { width: 240px; flex-shrink: 0; position: relative; background: #ffffff; border: 1px solid #e2e8f0; }
.team-member .img-wrapper { width: 100%; height: 280px; background: #e2e8f0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.team-member img.real-photo { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter 0.4s ease; }
.team-member:hover img.real-photo { filter: grayscale(0%); }

.anon-icon { width: 64px; height: 64px; fill: #94a3b8; opacity: 0.5; }

.team-info { padding: 20px 16px; text-align: center; }
.team-info h4 { font-size: var(--text-h4); font-weight: var(--weight-semibold); color: #0b1c2e; margin-bottom: 6px; text-transform: none; line-height: 1.35; }
.team-info span { font-size: var(--text-small); font-weight: var(--weight-regular); color: #64748b; text-transform: none; }

@keyframes scrollTeam {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

/* =========================================================
   7. İSTATİSTİKLER
   ========================================================= */
.stats-section { padding: 120px 0; background: #ffffff; border-top: 1px solid #f1f5f9; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 48px; }
.stat-box { display: flex; flex-direction: column; align-items: center; }
.stat-icon { width: 48px; height: 48px; margin-bottom: 20px; opacity: 0.4; } 
.stat-num { font-size: var(--text-stat); font-weight: var(--weight-semibold); color: #0b1c2e; line-height: 1.1; margin-bottom: 12px; letter-spacing: -0.02em; }
.stat-text { font-size: var(--text-body); font-weight: var(--weight-regular); color: #475569; line-height: 1.5; text-transform: none; }

/* =========================================================
   8. FOOTER
   ========================================================= */
footer { background: #0b1c2e; padding: 80px 0 40px 0; color: #ffffff; }
.footer-flex { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 48px; margin-bottom: 32px; }
.f-col h4 { font-size: var(--text-eyebrow); font-weight: var(--weight-semibold); letter-spacing: 0.04em; margin-bottom: 24px; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.f-col a, .f-col p { display: block; font-size: var(--text-nav); font-weight: var(--weight-regular); color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 12px; transition: color 0.3s; text-transform: none; }
.f-col a:hover { color: #ffffff; }
.f-bottom { display: flex; justify-content: space-between; font-size: var(--text-small); font-weight: var(--weight-regular); color: rgba(255,255,255,0.4); }

/* =========================================================
   9. MOBİL MENÜ & ASİMETRİK ANİMASYONLU İKON (YENİ)
   ========================================================= */
.menu-toggle {
  display: none; flex-direction: column; align-items: flex-end; gap: 6px; background: none; border: none;
  cursor: pointer; padding: 6px; position: relative; z-index: 1300;
}
.menu-toggle span { 
  height: 3px; background: #ffffff; display: block; border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Yaylanarak X olma efekti */
}
/* Sabancı Tarzı Asimetrik Çizgiler */
.menu-toggle span:nth-child(1) { width: 24px; }
.menu-toggle span:nth-child(2) { width: 32px; }
.menu-toggle span:nth-child(3) { width: 16px; }

/* Menü Açıkken X (Çarpı) Şeklini Alması */
.menu-toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); width: 32px; }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: translateX(20px); }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); width: 32px; }

.mobile-nav {
  position: fixed; top: 0; left: -320px; right: auto; height: 100vh; width: min(300px, 84vw);
  background: #0b1c2e; z-index: 1090; padding: 100px 30px 30px;
  display: flex; flex-direction: column; gap: 4px;
  transition: left .32s cubic-bezier(.4,0,.2,1); /* SOLDAN AÇILMA */
  overflow-y: auto;
}
.mobile-nav.is-open { left: 0; }
.mobile-nav a {
  color: rgba(255,255,255,.8); font-size: var(--text-nav); font-weight: var(--weight-medium); padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1); text-transform: none;
}
.mobile-nav a.active, .mobile-nav a:hover { color: #ffffff; }
.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(11,28,46,.5); z-index: 1080;
  opacity: 0; visibility: hidden; transition: opacity .3s ease;
}
.mobile-nav-overlay.is-open { opacity: 1; visibility: visible; }

/* =========================================================
   10. SCROLL REVEAL (AŞAĞIDAN YUKARI SÜZÜLME EFEKTİ)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   11. YAKINDA GELİYOR (ALT SAYFALAR)
   ========================================================= */
.coming-soon-section {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  background-color: #0b1c2e; 
  color: #ffffff; text-align: center; padding: 0 40px;
}
.coming-soon-section h1 {
  font-size: var(--text-hero); font-weight: var(--weight-bold);
  letter-spacing: -0.02em; margin-bottom: 24px; text-transform: none;
}
.coming-soon-section p {
  font-size: var(--text-body); font-weight: var(--weight-regular);
  color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 40px;
  line-height: 1.65;
}
.coming-soon-icon {
  width: 64px; height: 64px; margin-bottom: 32px; opacity: 0.7;
  stroke: #ffffff; fill: none; stroke-width: 1.5;
}

/* =========================================================
   12. RESPONSIVE (TİPOGRAFİK BREAKPOINTLER)
   ========================================================= */
@media (max-width: 1440px) {
  .wrap { padding: 0 72px; }
  header, header.scrolled { padding-left: 72px; padding-right: 72px; }
  .hero-content { padding-left: 72px; }
}

@media (max-width: 1279px) {
  .wrap { padding: 0 48px; }
  header, header.scrolled { padding-left: 48px; padding-right: 48px; }
  .section, .team-section, .stats-section { padding: 96px 0; }
}

@media (max-width: 1024px) {
  /* MOBİLDE HER ZAMAN BEYAZ HEADER */
  header, header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  
  /* Mobilde ikonlar koyu renk */
  header .lang-icon { color: #4A5568 !important; }
  header .search-icon { color: #4A5568 !important; }
  header .menu-toggle span { background: #4A5568 !important; }

  .hero-content { width: 100%; max-width: 100%; text-align: center; padding-left: 48px; padding-right: 48px; padding-top: 20vh; }
  .hero-content p { max-width: 100%; margin: 0 auto 36px; }
  header nav { display: none; } 
  .header-right .btn-outline { display: none; }
  .menu-toggle { display: flex; }
  
  .news-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .news-arrow-side { display: none; }
  #bulgular .section-head { padding-left: 0; padding-right: 0; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .footer-flex { flex-wrap: wrap; gap: 40px; }
  .f-col { width: 45% !important; }
}

@media (max-width: 767px) {
  :root {
    --text-hero: clamp(26px, 7vw, 30px);
    --text-h2: clamp(28px, 6vw, 32px);
    --text-h3: clamp(20px, 5vw, 22px);
    --text-body: 16px;
    --text-nav: 15px;
  }
  .wrap { padding: 0 24px; }
  .header-logo img { height: 44px; }
  header.scrolled .header-logo img { height: 36px; }
  header, header.scrolled { padding-left: 24px; padding-right: 24px; }
  
  .hero-content { padding-left: 24px; padding-right: 24px; padding-top: 150px; text-align: left; }
  .hero-content p { font-size: 16px; margin-bottom: 24px; }
  
  .section, .team-section, .stats-section { padding: 72px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  
  .news-grid { grid-template-columns: 1fr; gap: 32px; }
  
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-flex { flex-direction: column; gap: 40px; }
  .f-col { width: 100% !important; }
  .f-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* =========================================================
   TAM SAYFA BÖLÜM KAYDIRMA (FULL-PAGE SECTION SCROLL)
   Sadece masaüstünde aktif olur (bkz. js/main.js içindeki
   matchMedia kontrolü). Mobilde js hiç devreye girmez,
   burada da aşağıdaki .fp-mode sınıfı hiç eklenmediği için
   section'lar normal, sırayla akan bloklar olarak kalır.
   ========================================================= */
html.fp-mode, html.fp-mode body {
  height: 100%;
  overflow: hidden;
}
.fp-wrapper {
  will-change: transform;
}
html.fp-mode .fp-wrapper {
  transition: transform var(--fp-duration, 850ms) var(--fp-easing, cubic-bezier(.65,0,.35,1));
}
html.fp-mode [data-fp-section] {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.fp-dots {
  position: fixed; right: 28px; top: 50%; transform: translateY(-50%);
  z-index: 1300; display: none; flex-direction: column; gap: 14px;
}
html.fp-mode .fp-dots { display: flex; }
.fp-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: 1.5px solid rgba(255,255,255,0.6);
  padding: 0; cursor: pointer; transition: all 0.3s ease;
}
.fp-dot:hover { background: rgba(255,255,255,0.7); }
.fp-dot.active { background: #ffffff; transform: scale(1.25); }
.fp-dot:focus-visible { outline: 2px solid #ffffff; outline-offset: 3px; }

/* Koyu zeminli section'larda noktalar zaten beyaz kalsin; acik (beyaz/gri)
   zeminli section'lara gelindiginde noktalari koyulastiriyoruz ki gorunur olsun */
html.fp-mode.fp-on-light .fp-dot {
  background: rgba(11,28,46,0.25); border-color: rgba(11,28,46,0.5);
}
html.fp-mode.fp-on-light .fp-dot:hover { background: rgba(11,28,46,0.55); }
html.fp-mode.fp-on-light .fp-dot.active { background: #0b1c2e; }

@media (max-width: 1024px) {
  .fp-dots { display: none !important; }
}

/* =========================================================
   BULGULAR SAYFASI: SABANCI BASIN BÜLTENLERİ TARZI LİSTE
   ========================================================= */
.press-list-section { padding: 160px 0 120px; background: #ffffff; min-height: 60vh; }
.press-list { border: 1px solid #E2E8F0; border-radius: 2px; overflow: hidden; }
.press-row {
  display: grid; grid-template-columns: 160px 1fr 130px; gap: 24px; align-items: center;
  padding: 22px 28px; border-bottom: 1px solid #E2E8F0;
}
.press-row:last-child { border-bottom: none; }
.press-row-head { background: #002b66; color: #ffffff; font-weight: var(--weight-semibold); font-size: 14px; padding: 18px 28px; }
.press-row:not(.press-row-head) .press-date { color: #4A5568; font-size: 14.5px; }
.press-row:not(.press-row-head) .press-title { color: #0b1c2e; font-weight: var(--weight-medium); font-size: 15.5px; line-height: 1.5; }
.press-link { display: flex; align-items: center; gap: 6px; color: #0b1c2e; font-weight: var(--weight-semibold); font-size: 14.5px; justify-self: end; transition: gap 0.25s ease; }
.press-row:not(.press-row-head):hover { background: #f8fafc; }
.press-row:not(.press-row-head):hover .press-link { gap: 10px; }

@media (max-width: 767px) {
  .press-list-section { padding: 120px 0 72px; }
  .press-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 20px; }
  .press-row-head { display: none; }
  .press-link { justify-self: start; margin-top: 6px; }
}

/* =========================================================
   MAKALE DETAY SAYFASI (Sabancı basın detayı tarzı)
   ========================================================= */
.article-detail-section { padding: 160px 0 100px; background: #ffffff; }
.article-detail-wrap { max-width: 860px; }
.article-back-link { display: inline-block; font-size: 14px; font-weight: var(--weight-semibold); color: #4A5568; margin-bottom: 28px; transition: color 0.25s ease; }
.article-back-link:hover { color: #002b66; }
.eyebrow-tag { display: block; font-size: 13px; font-weight: var(--weight-semibold); color: #002b66; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; }
.article-detail-title { font-size: clamp(26px, 3.4vw, 38px); font-weight: var(--weight-semibold); color: #0b1c2e; line-height: 1.28; letter-spacing: -0.015em; margin-bottom: 32px; }
.article-detail-img { width: 100%; aspect-ratio: 16/9; border-radius: 3px; overflow: hidden; margin-bottom: 40px; background: #0b1c2e; }
.article-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.article-detail-body p { font-size: 16px; line-height: 1.85; color: #333333; margin-bottom: 24px; }
.article-detail-body p:last-child { margin-bottom: 0; }

@media (max-width: 767px) {
  .article-detail-section { padding: 120px 0 64px; }
  .article-detail-body p { font-size: 15px; line-height: 1.8; }
}

/* =========================================================
   HAKKIMIZDA SAYFASI
   ========================================================= */
.eyebrow-tag { display: block; font-size: 13px; font-weight: var(--weight-semibold); color: #002b66; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }

/* --- Görsel arkaplanlı hero benzeri section'lar (Biz Kimiz / Vizyonumuz) --- */
.about-hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,28,46,0.86) 0%, rgba(11,28,46,0.55) 48%, rgba(11,28,46,0.28) 100%);
}
.about-hero-content { position: relative; z-index: 2; max-width: 700px; color: #ffffff; padding: 140px 0 80px; }
.about-hero-content h1 { font-size: clamp(32px, 4vw, 52px); font-weight: var(--weight-semibold); line-height: 1.18; letter-spacing: -0.02em; margin-bottom: 28px; }
.about-hero-content p { font-size: 16px; line-height: 1.85; color: rgba(255,255,255,0.9); margin-bottom: 20px; font-weight: 400; }
.about-hero-content p:last-child { margin-bottom: 0; }

/* --- Açık zeminli içerik section'ları (Amacımız / Odak Noktamız / Künye) --- */
.about-section { min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; background: #ffffff; padding: 140px 0 80px; }
.about-section h2 { font-size: clamp(28px, 3vw, 40px); font-weight: var(--weight-semibold); color: #0b1c2e; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 24px; max-width: 20ch; }
.about-lead { font-size: 16px; line-height: 1.85; color: #333333; max-width: 780px; margin-bottom: 18px; }

/* --- AMAÇLARIMIZ: 3 kutu yan yana (kırmızı notta istenen) --- */
.amac-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 44px; }
.amac-card { background: #f8fafc; border: 1px solid #eef0f2; border-radius: 3px; padding: 32px 28px; }
.amac-num { display: block; font-size: 13px; font-weight: var(--weight-semibold); color: #94a3b8; margin-bottom: 16px; letter-spacing: 0.05em; }
.amac-card h3 { font-size: 17px; font-weight: var(--weight-semibold); color: #0b1c2e; line-height: 1.4; margin-bottom: 14px; }
.amac-card p { font-size: 14px; line-height: 1.75; color: #4A5568; }

/* --- ODAK NOKTAMIZ: istatistik satırı --- */
.odak-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 48px; border-top: 1px solid #eef0f2; padding-top: 40px; }
.odak-cta { display: inline-block; margin-top: 48px; }
.odak-stat strong { display: block; font-size: clamp(30px, 3vw, 40px); font-weight: var(--weight-semibold); color: #002b66; letter-spacing: -0.02em; margin-bottom: 8px; }
.odak-stat span { font-size: 13px; color: #4A5568; line-height: 1.5; display: block; }

/* --- INTERLUDE: ekip fotoğrafları, modern mozaik, marka rengiyle harmanlanmış --- */
.interlude { position: relative; min-height: 100vh; min-height: 100dvh; overflow: hidden; background: #0b1c2e; display: flex; align-items: center; }
.interlude-grid {
  position: relative; z-index: 1; width: 100%; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; gap: 14px; padding: 0 40px;
}
.interlude-photo {
  overflow: hidden; border-radius: 3px; position: relative;
  filter: grayscale(100%);
}
.interlude-photo::after {
  content: ''; position: absolute; inset: 0; background: #002b66; mix-blend-mode: color; opacity: 0.85;
}
.interlude-photo::before {
  content: ''; position: absolute; inset: 0; background: rgba(11,28,46,0.35); z-index: 2;
}
.interlude-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* mozaik hissi: bazi kareler diger tile'lardan daha uzun */
.interlude-photo:nth-child(1), .interlude-photo:nth-child(6) { grid-row: span 2; }
.interlude-photo:nth-child(4) { grid-column: span 1; grid-row: span 1; margin-top: 40px; }
.interlude-photo:nth-child(3) { margin-top: 24px; }
.interlude-photo:nth-child(7) { margin-top: -24px; }

.interlude-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at center, rgba(11,28,46,0.35) 0%, rgba(11,28,46,0.82) 82%);
}

@media (max-width: 1024px) {
  .amac-grid { grid-template-columns: 1fr; }
  .odak-stats { grid-template-columns: repeat(2, 1fr); }
  .interlude-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 110px; padding: 0 24px; }
}

@media (max-width: 767px) {
  .about-hero-content { padding: 120px 0 60px; }
  .about-section { padding: 110px 0 56px; }
  .odak-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .interlude-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 90px; padding: 0 20px; }
  .odak-cta { margin-top: 32px; }
}

/* =========================================================
   TÜRKİYE'NİN KÜRESEL TİCARET AĞI (harita + sayaç section'ı)
   ========================================================= */
.trade-map-section {
  background: radial-gradient(ellipse at 30% 25%, #24507a 0%, #16304a 45%, #0d2038 100%);
  padding: 100px 0;
  min-height: 680px;
  position: relative;
}
/* Sabancı'daki gibi arka planda hafif, dusuk opakli noktali doku */
.trade-map-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.16) 1px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.5;
}
.trade-map-section > .wrap { position: relative; z-index: 1; }
.trade-map-title { color: #ffffff; }

.trade-map-layout {
  display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: center;
  margin-top: 48px;
}

/* --- sol: mevcut proje metrikleri, sayac animasyonlu (Sabancı'daki gibi
   yan yana, kompakt, aralarinda ince bir ayirici cizgi ile) --- */
.trade-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; }
.trade-metric {
  padding-left: 20px; border-left: 1px solid rgba(255,255,255,0.18);
}
.trade-metric:nth-child(odd) { padding-left: 0; border-left: none; }
.trade-metric-num {
  font-size: clamp(26px, 2.4vw, 34px); font-weight: var(--weight-semibold);
  color: #ffffff; letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px;
}
.trade-metric-label { font-size: 12.5px; color: rgba(255,255,255,0.6); line-height: 1.5; font-weight: 400; }

/* --- sag: harita (buyutuldu) --- */
.trade-map-wrap { position: relative; width: 100%; aspect-ratio: 16 / 9; max-height: 640px; }
.trade-map-svg-holder { position: absolute; inset: 0; opacity: 0; transform: translateY(10px) scale(0.99); transition: opacity 0.9s ease, transform 0.9s ease; }
.trade-map-svg-holder svg { width: 100%; height: 100%; display: block; }
.trade-map-section.in-view .trade-map-svg-holder { opacity: 1; transform: translateY(0) scale(1); }

/* Turkiye VE 10 ticaret ortagi: Sabancı'daki gibi ulkenin gercek sinirlari
   baz alinarak dolduruluyor, ama mavi degil SAF BEYAZ. Digerleri (etiketsiz
   diger tum ulkeler) cok hafif, sessiz bir zeminde kaliyor. */
#tradeWorldMap path,
#tradeWorldMap polygon {
  fill: rgba(255,255,255,0.14) !important;
  stroke: rgba(255,255,255,0.2) !important;
  stroke-width: 0.4;
}
#tradeWorldMap #tr,
#tradeWorldMap #de, #tradeWorldMap #gb, #tradeWorldMap #us, #tradeWorldMap #it,
#tradeWorldMap #iq, #tradeWorldMap #cn, #tradeWorldMap #ru, #tradeWorldMap #ch,
#tradeWorldMap #nl, #tradeWorldMap #fr {
  fill: #ffffff !important;
  stroke: rgba(255,255,255,0.6) !important;
}

/* --- baglanti cizgileri: tek bir SVG katmaninda, koseli (elbow) hatlarla ---
   Turkiye'ye artik ozel bir nokta/etiket/nabiz yok; ayirt edicilik dogrudan
   haritadaki beyaz ulke seklinden geliyor. */
.trade-connector-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.trade-connector-line {
  fill: none; stroke: rgba(255,255,255,0.45); stroke-width: 0.35; vector-effect: non-scaling-stroke;
  stroke-dasharray: 300; stroke-dashoffset: 300;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--delay, 0s);
}
.trade-map-section.in-view .trade-connector-line { stroke-dashoffset: 0; }

/* --- marker'lar (nokta + etiket) --- */
.trade-marker {
  position: absolute; transform: translate(-50%, -50%) scale(0);
  display: flex; flex-direction: column; align-items: center;
  opacity: 0; pointer-events: none; z-index: 2;
  transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--delay, 0s);
}
.trade-map-section.in-view .trade-marker { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* Sade, cercevesiz/golgesiz, kucuk duz beyaz noktalar */
.trade-dot-only {
  position: absolute; width: 3.5px; height: 3.5px; border-radius: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0; z-index: 2;
  transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--delay, 0s);
}
.trade-map-section.in-view .trade-dot-only { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.trade-marker-offset { pointer-events: none; }
/* Kutusuz, zarif etiket */
.trade-label {
  font-size: 9.5px; font-weight: var(--weight-medium); color: #ffffff;
  white-space: nowrap; text-align: center; line-height: 1.35;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55);
}
.trade-label small { display: block; font-size: 8px; font-weight: 400; color: rgba(255,255,255,0.65); }

.trade-source-note { margin-top: 32px; font-size: 11.5px; color: rgba(255,255,255,0.35); text-align: right; }

@media (max-width: 1024px) {
  .trade-map-layout { grid-template-columns: 1fr; gap: 40px; }
  .trade-map-wrap { aspect-ratio: 16/10; }
  .trade-label { font-size: 8.5px; }
}

@media (max-width: 767px) {
  .trade-map-section { padding: 72px 0; }
  .trade-map-layout { margin-top: 32px; }
  .trade-metrics { gap: 20px 24px; }
  .trade-metric-num { font-size: 30px; }
  .trade-map-wrap { aspect-ratio: 4/5; max-height: none; }
  .trade-label { font-size: 7.5px; }
  .trade-label small { font-size: 7px; }
  .trade-source-note { text-align: left; }
}
