/* =========================================================
   LEGALIST PARTNERS — Design System
   Palette: navy-900 #132649 / navy-800 #1B3355 / navy-700 #24406B
            gold-600 #C9973E / gold-400 #E3B368
   Type: Montserrat (display) + Inter (body)
   ========================================================= */

:root {
  --navy-900: #132649;
  --navy-800: #1B3355;
  --navy-700: #24406B;
  --gold-400: #E3B368;
  --gold-600: #C9973E;

  --ink: #1B2430;
  --muted: #5E6B80;
  --line: #E3E7EE;
  --surface: #FFFFFF;
  --surface-alt: #F5F7FA;

  --font-display: 'Montserrat', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius: 6px;
  --shadow-soft: 0 12px 34px rgba(19, 38, 73, 0.10);
  --shadow-card: 0 6px 20px rgba(19, 38, 73, 0.08);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 .5em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
/* Uctan uca (kenara yasli), sadece cok genis ekranlarda 1700px'de sinirlanan kapsayici */
.container-full {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Calisma alanlari karti icin biraz daha genis kapsayici (460x308 orani icin) */
.container-practice { max-width: 1484px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ---------- Eyebrow / section heading ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  display: inline-block;
}
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 38px); font-weight: 800; }
.section-head p { color: var(--muted); font-size: 16px; margin: 0; }

.section { padding: 96px 0; border-top: 1px solid var(--line); }
.section-tight { padding: 46px 0; }
.section-alt { background: var(--surface-alt); }
.section-dark { border-top: none; background: var(--navy-900); color: #C9D3E4; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .practice-card h3 { color: var(--navy-900); }

/* Bulanik arka plan fotografli bolum (calisma alanlari icin) */
.section-blur-bg {
  position: relative;
  overflow: hidden;
  background-color: var(--navy-900);
}
.section-blur-bg::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px; bottom: -20px; left: -20px;
  background-image: var(--blur-bg-image, none);
  background-size: cover;
  background-position: center;
  filter: blur(9px);
  transform: scale(1.06);
  z-index: 0;
}
.section-blur-bg::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(160deg, rgba(19,38,73,.90), rgba(19,38,73,.80));
  z-index: 1;
}
.section-blur-bg > .container { position: relative; z-index: 2; }

/* Baslik solda / aciklama ortada / buton sagda tek satir duzeni */
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.header-row-title { flex-shrink: 0; }
.header-row-title .eyebrow { margin-bottom: 10px; }
.header-row-title h2 { margin: 0; font-size: clamp(24px, 2.6vw, 32px); white-space: nowrap; }
.header-row-desc {
  flex: 1;
  min-width: 220px;
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.section-dark .header-row-desc { color: rgba(255,255,255,.72); }
.header-row .btn { flex-shrink: 0; border-radius: 0; }

@media (max-width: 860px) {
  .header-row { flex-direction: column; align-items: flex-start; }
  .header-row-title h2 { white-space: normal; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(201, 151, 62, .35); }
.btn-outline {
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-navy {
  border-color: var(--navy-700);
  color: var(--navy-800);
}
.btn-outline-navy:hover { background: var(--navy-800); color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 12px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 22px 0;
}
.site-header.is-scrolled {
  background: rgba(19, 38, 73, 0.97);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 60px; width: auto; transition: height .35s var(--ease); }
.is-scrolled .brand img { height: 50px; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > ul { display: flex; gap: 28px; }
.main-nav a {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold-400);
  transition: width .3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--gold-400); }

/* Calisma alanlari acilir alt menu */
.has-dropdown { position: relative; }
.dropdown {
  display: block;
  position: absolute;
  top: 100%;
  left: -18px;
  margin-top: 14px;
  width: 260px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--gold-600);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s var(--ease);
  z-index: 60;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li { border-bottom: 1px solid var(--line); }
.dropdown li:last-child { border-bottom: none; }
.dropdown li a {
  display: block;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
}
.dropdown li a::after { display: none; }
.dropdown li a:hover { background: var(--surface-alt); color: var(--gold-600); }

.lang-toggle {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 4px;
  padding: 6px 12px;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.lang-toggle:hover { background: var(--gold-400); border-color: var(--gold-400); color: var(--navy-900); }

.header-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; }

/* Reused on interior page headers (.page-header .hero-columns) */
.hero-columns {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  opacity: .10;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 78px, rgba(227,179,104,.7) 78px, rgba(227,179,104,.7) 82px);
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 75%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 75%, transparent);
  pointer-events: none;
}

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero-slider {
  position: relative;
  height: 92vh;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
}
.hero-slider .slides { position: relative; width: 100%; height: 100%; }
.hero-slider .slide {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s var(--ease), visibility 1.1s var(--ease);
}
.hero-slider .slide > .container {
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-slider .slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slider .slide-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(115deg, rgba(19,38,73,.93) 0%, rgba(19,38,73,.78) 45%, rgba(36,64,107,.55) 100%);
}
/* Gercek gorsel yuklenmediginde kullanilan zarif yedek desenler */
.hero-slider .slide.fallback-1 {
  background-image:
    radial-gradient(circle at 85% 15%, rgba(227,179,104,.25), transparent 55%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
}
.hero-slider .slide.fallback-1 .slide-pattern {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; opacity: .28;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 74px, var(--gold-400) 74px, var(--gold-400) 78px);
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 85%, transparent);
}
.hero-slider .slide.fallback-2 {
  background-image:
    radial-gradient(circle at 15% 80%, rgba(227,179,104,.22), transparent 55%),
    linear-gradient(205deg, var(--navy-800) 0%, var(--navy-900) 100%);
}
.hero-slider .slide.fallback-2 .slide-pattern {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; opacity: .3;
  background: radial-gradient(circle at 82% 22%, var(--gold-400), transparent 60%);
}
.hero-slider .slide.fallback-3 {
  background-image:
    radial-gradient(circle at 75% 75%, rgba(227,179,104,.2), transparent 55%),
    linear-gradient(140deg, var(--navy-700) 0%, var(--navy-900) 100%);
}
.hero-slider .slide.fallback-3 .slide-pattern {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; opacity: .24;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 38px, var(--gold-400) 38px, var(--gold-400) 42px);
}

.slide-content { position: relative; z-index: 3; max-width: 680px; }
.slide-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-400);
  margin-bottom: 22px;
}
.slide-kicker::before { content: ''; width: 34px; height: 2px; background: var(--gold-400); }
.slide-content h1 { color: #fff; font-size: clamp(32px, 4.6vw, 54px); font-weight: 800; letter-spacing: -.01em; margin-bottom: 22px; }
.slide-content p { color: rgba(255,255,255,.78); font-size: 17px; max-width: 560px; margin-bottom: 34px; }

.slider-dots {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 12px; z-index: 5;
}
.slider-dots button {
  width: 10px; height: 10px; border-radius: 50%; padding: 0;
  border: 1px solid rgba(255,255,255,.5); background: transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.slider-dots button.is-active { background: var(--gold-400); border-color: var(--gold-400); transform: scale(1.2); }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3); background: rgba(19,38,73,.35);
  color: #fff; font-size: 20px; display: flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.slider-arrow:hover { background: var(--gold-400); border-color: var(--gold-400); color: var(--navy-900); }
.slider-arrow.prev { left: 26px; }
.slider-arrow.next { right: 26px; }

.hero-slider .hero-stats { position: absolute; bottom: 34px; right: 40px; z-index: 5; display: flex; gap: 40px; }
.hero-slider .hero-stats div strong { display: block; font-family: var(--font-display); font-size: 26px; color: var(--gold-400); font-weight: 800; }
.hero-slider .hero-stats div span { font-size: 12.5px; color: rgba(255,255,255,.6); }

@media (max-width: 900px) {
  .hero-slider { height: 78vh; min-height: 520px; }
  .slider-arrow { display: none; }
  .hero-slider .hero-stats { display: none; }
}

/* =========================================================
   FLANKED SECTION TITLE ("—— Hakkımızda ——")
   ========================================================= */
.title-flanked {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 18px;
}
.title-flanked .line {
  flex: 1;
  max-width: 130px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-600));
}
.title-flanked .line.right { background: linear-gradient(90deg, var(--gold-600), transparent); }
.title-flanked h2 {
  margin: 0;
  white-space: nowrap;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
}
.lead-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 16.5px;
}



/* =========================================================
   PRACTICE AREA CARDS
   ========================================================= */
.practice-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
.practice-card {
  position: relative;
  display: block;
  aspect-ratio: 460 / 308;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  background: var(--surface);
  padding: 40px 34px;
  box-shadow: 0 2px 14px rgba(19,38,73,.06);
}
/* Calisma Alanlarimiz sayfasina ozel: kare format, biraz daha kucuk */
.practice-grid-square .practice-card {
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 32px 28px;
}

/* Varsayilan durum: ikon + baslik + kisa aciklama - hep sabit kalir, kaybolmaz */
.practice-icon-badge {
  position: relative;
  z-index: 1;
  width: 40px; height: 40px;
  color: var(--gold-600);
  margin-bottom: 26px;
}
.practice-icon-badge svg { width: 100%; height: 100%; }
.practice-card h3 {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
}
.practice-card .practice-desc {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}

/* Hover'da sagdan sola kayarak yazinin USTUNE gelen gorsel */
.practice-media {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 2;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  opacity: 0;
  transform: translateX(100%);
  /* Cikista (hover sona ererken) gecikmeli kaybolur: buton once, gorsel sonra gider */
  transition: transform .5s var(--ease) .5s, opacity 0s linear 1s;
}
.practice-media::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg, rgba(19,38,73,.25), rgba(19,38,73,.78));
}
.practice-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.practice-card:hover .practice-media {
  opacity: 1;
  transform: translateX(0);
  /* Giriste (hover baslarken) gecikmesiz gorunur: gorsel once gelir */
  transition: transform .5s var(--ease) 0s, opacity 0s linear 0s;
}

/* Kartin tam dikey/yatay ortasinda, gorselden sonra gelen buton */
.practice-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%) translateX(160%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 15px 26px;
  border-radius: 0;
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
  opacity: 0;
  pointer-events: none;
  /* Cikista gecikmesiz kaybolur: buton once gider */
  transition: transform .5s var(--ease) 0s, opacity 0s linear .5s, background .3s var(--ease), color .3s var(--ease);
}
.practice-card:hover .practice-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) translateX(0);
  /* Giriste gecikmeli gorunur: gorselden yarim saniye sonra gelir */
  transition: transform .5s var(--ease) .5s, opacity 0s linear .5s, background .3s var(--ease), color .3s var(--ease);
}
/* Butonun kendi uzerine gelince renkler tam tersine doner */
.practice-btn:hover {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: var(--gold-400);
}

@media (max-width: 900px) { .practice-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .practice-grid { grid-template-columns: 1fr; }
  /* Dokunmatik cihazlarda hover olmadigi icin buton her zaman gorunur kalir */
  .practice-btn { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) translateX(0); }
  /* Ana sayfadaki Calisma Alanlarimiz bolumune ozel: mobilde sadece 3 kart, buton yok, sadece ust "Tum Calisma Alanlarimiz" butonu kalir */
  .section-blur-bg .practice-grid .practice-card:nth-child(n+4) { display: none; }
  .section-blur-bg .practice-btn { display: none; }
}

/* Ilkelerimiz vb. icon+metin kartlari (hakkimizda.php) - practice-card'dan bagimsiz */
.principle-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid transparent;
  border-radius: var(--radius);
  padding: 38px 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.principle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-top-color: var(--gold-600);
}
.principle-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--gold-400);
  margin-bottom: 22px;
}
.principle-icon svg { width: 26px; height: 26px; }
.principle-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.principle-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* =========================================================
   ABOUT / SPLIT SECTION
   ========================================================= */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.split-media .badge {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--navy-900);
  color: #fff;
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border-left: 3px solid var(--gold-600);
}
.split-media .badge strong { display: block; font-family: var(--font-display); font-size: 26px; color: var(--gold-400); }
.split-media .badge span { font-size: 12.5px; color: rgba(255,255,255,.65); }

/* =========================================================
   VALUE CARDS (görsel fonlu, rakam filigranlı, hover'da öne çıkan başlık)
   ========================================================= */
.vc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 50px;
}
.vc-card {
  position: relative;
  flex: 1 1 calc(33.333% - 15px);
  aspect-ratio: 16 / 9;
  min-height: 230px;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}
.vc-card .vc-photo-wrap {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
}
.vc-card .vc-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.vc-card:hover .vc-photo { transform: scale(1.08); }

.vc-card .vc-tint {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  transition: opacity .45s var(--ease), background .45s var(--ease);
}
.vc-card.vc-navy .vc-tint { background: linear-gradient(150deg, rgba(19,38,73,.90), rgba(36,64,107,.55)); }
.vc-card.vc-navy:hover .vc-tint { background: linear-gradient(150deg, rgba(19,38,73,.96), rgba(19,38,73,.82)); }
.vc-card.vc-gold .vc-tint { background: linear-gradient(150deg, rgba(201,151,62,.88), rgba(227,179,104,.55)); }
.vc-card.vc-gold:hover .vc-tint { background: linear-gradient(150deg, rgba(201,151,62,.94), rgba(201,151,62,.78)); }
.vc-card.vc-white .vc-tint { background: linear-gradient(150deg, rgba(255,255,255,.90), rgba(255,255,255,.62)); }
.vc-card.vc-white:hover .vc-tint { background: linear-gradient(150deg, rgba(255,255,255,.96), rgba(255,255,255,.82)); }

.vc-card .vc-num {
  position: absolute;
  left: 18px;
  bottom: -10px;
  z-index: 2;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: clamp(100px, 11vw, 175px);
  line-height: 1;
  color: rgba(255,255,255,.20);
  pointer-events: none;
  user-select: none;
  transition: transform .6s var(--ease), opacity .6s var(--ease);
}
.vc-card.vc-white .vc-num { color: rgba(19,38,73,.12); }
/* Hover'da rakam uzaklaşarak (büyüyüp solarak) merkeze doğru kayar */
.vc-card:hover .vc-num { transform: translate(90px, 6px) scale(1.12); opacity: .5; }
.vc-card.vc-white:hover .vc-num { opacity: .16; }

.vc-card .vc-title {
  position: absolute;
  top: 50%;
  right: 26px;
  z-index: 3;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 2px;
  pointer-events: none;
  transform: translate(0%, -50%);
  transition: right .6s var(--ease), transform .6s var(--ease);
}
.vc-card .vc-title span {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.3;
  color: #fff;
  opacity: 1;
}
.vc-card.vc-white .vc-title span { color: var(--navy-900); }
/* Hover'da yazı bloğu tamamen ortaya kayar ve ortalanır */
.vc-card:hover .vc-title {
  right: 50%;
  transform: translate(50%, -50%);
}

@media (max-width: 900px) {
  .vc-card { flex: 1 1 100%; }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-media .badge { position: static; margin-top: -40px; margin-left: 20px; display: inline-block; }
}

/* =========================================================
   TEAM
   ========================================================= */
.team-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 100px 30px; }
.team-card { position: relative; }
.team-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/3.8;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-photo .placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: rgba(255,255,255,.3); font-family: var(--font-display); font-size: 42px; font-weight: 800; }

.team-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  z-index: 2;
  background: #fff;
  padding: 18px 20px 16px;
  box-shadow: var(--shadow-soft);
  max-height: 118px;
  overflow: hidden;
  transform: translateY(50%);
  transition: transform .45s var(--ease), max-height .45s var(--ease);
}
/* Hover'da beyaz kutu, görselin tam ortasina kadar yukari acilir */
.team-card:hover .team-info { max-height: 50%; transform: translateY(0%); }
.team-info h4 { font-size: 16.5px; margin: 0 0 2px; }
.team-info .team-role { font-size: 13px; color: var(--gold-600); font-weight: 600; display: block; margin-bottom: 12px; }

/* Sosyal ikonlar hover'dan once de her zaman gorunur */
.team-social { display: flex; gap: 9px; }
.team-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.team-social a:hover { background: var(--gold-600); border-color: var(--gold-600); color: #fff; }
.team-social svg { width: 14px; height: 14px; }

.team-info-extra { margin-top: 14px; opacity: 0; transition: opacity .4s var(--ease) .08s; }
.team-card:hover .team-info-extra { opacity: 1; }
.team-info-extra .divider { display: block; width: 34px; height: 2px; background: var(--gold-600); margin-bottom: 13px; }
.team-info-extra .team-bio { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 0; }
.team-social svg { width: 14px; height: 14px; }

@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; gap: 70px; } }

/* =========================================================
   FAQ FLIP CARDS (soru-cevap, hover'da ters donen kartlar)
   ========================================================= */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 26px; margin-top: 130px; }
.faq-card { aspect-ratio: 4 / 3; perspective: 1400px; cursor: pointer; }
.faq-card-inner {
  position: relative;
  width: 100%; height: 100%;
  transition: transform .7s var(--ease);
  transform-style: preserve-3d;
}
.faq-card:hover .faq-card-inner { transform: rotateY(180deg); }

.faq-front, .faq-back {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  text-align: center;
}
.faq-front {
  background-size: cover;
  background-position: center;
}
.faq-front::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(160deg, rgba(19,38,73,.60), rgba(19,38,73,.82));
}
.faq-front span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.45;
}
.faq-back {
  background: var(--navy-900);
  color: rgba(255,255,255,.85);
  transform: rotateY(180deg);
  font-size: 14.5px;
  line-height: 1.7;
  border: 1px solid rgba(227,179,104,.3);
}

@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }

/* =========================================================
   BLOG
   ========================================================= */
.blog-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 26px; }
.blog-card {
  display: block;
  transition: transform .3s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-thumb {
  aspect-ratio: 1 / 1.05;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-700));
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }

.blog-date-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--navy-900);
  color: #fff;
  padding: 10px 14px;
  text-align: center;
  line-height: 1.15;
}
.blog-date-badge .day { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 800; }
.blog-date-badge .month { display: block; font-size: 11px; color: rgba(255,255,255,.75); }

.blog-body { padding-top: 20px; }
.blog-cat-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.blog-cat-row .line { width: 22px; height: 1px; background: var(--gold-600); flex-shrink: 0; }
.blog-cat-row span { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.blog-body h3 { font-size: 17px; line-height: 1.4; margin: 0; color: var(--ink); transition: color .2s var(--ease); }
.blog-card:hover .blog-body h3 { color: var(--gold-600); }

@media (max-width: 1000px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; }
.contact-info-card {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius);
  padding: 44px 36px;
}
.contact-info-card h3 { color: #fff; font-size: 20px; margin-bottom: 26px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-info-item .ic {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(227,179,104,.15); color: var(--gold-400);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 13px; color: rgba(255,255,255,.55); font-weight: 600; margin-bottom: 3px; text-transform: uppercase; letter-spacing: .04em; }
.contact-info-item span, .contact-info-item a { font-size: 15px; color: #fff; }
.contact-social { display: flex; gap: 12px; margin-top: 30px; }
.contact-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center; transition: all .25s var(--ease);
}
.contact-social a:hover { background: var(--gold-400); border-color: var(--gold-400); color: var(--navy-900); }

.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy-800); }
.form-group input, .form-group textarea, .form-group select {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--surface-alt);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold-600); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.alert { padding: 14px 18px; border-radius: 4px; font-size: 14px; margin-bottom: 20px; }
.alert-success { background: #EAF6EC; color: #1E7A34; border: 1px solid #B9E4C1; }
.alert-error { background: #FBEAEA; color: #A02525; border: 1px solid #F0C3C3; }

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* =========================================================
   PAGE HEADER (interior pages)
   ========================================================= */
.page-header {
  background-color: var(--navy-900);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 200px 0 100px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 700px) {
  .page-header { padding: 150px 0 60px; }
}
.page-header .hero-columns { opacity: .08; }
.page-header h1 { color: #fff; font-size: clamp(28px, 4vw, 42px); margin-bottom: 12px; position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.6); position: relative; z-index: 2; }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--gold-400); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.65); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand img { height: 42px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; margin-bottom: 20px; }

.footer-contact-rows { display: grid; gap: 10px; margin-bottom: 22px; }
.footer-contact-row { display: flex; gap: 8px; font-size: 13.5px; line-height: 1.6; }
.footer-contact-row .label { flex-shrink: 0; width: 76px; color: rgba(255,255,255,.4); font-weight: 600; }
.footer-contact-row a { color: rgba(255,255,255,.75); }
.footer-contact-row a:hover { color: var(--gold-400); }

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-col ul li {
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}
.footer-col ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-600);
}
.footer-col a { font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--gold-400); }

.footer-cta p { font-size: 13.5px; line-height: 1.7; margin: 0 0 18px; }
.footer-cta .btn { display: inline-flex; }
.footer-cta .btn svg { width: 16px; height: 16px; }

.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--gold-400); color: var(--navy-900); border-color: var(--gold-400); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold-400); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* =========================================================
   MOBILE NAV
   ========================================================= */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 0; right: -100%; width: min(320px, 85%); height: 100vh;
    background: var(--navy-900); flex-direction: column; align-items: flex-start;
    padding: 100px 32px 32px; transition: right .4s var(--ease); z-index: 99;
    overflow-y: auto;
  }
  .main-nav.is-open { right: 0; box-shadow: -20px 0 40px rgba(0,0,0,.3); }
  .main-nav > ul { flex-direction: column; gap: 22px; }
  .header-actions { gap: 10px; }

  /* Mobilde hover calismadigi icin alt menu her zaman acik/dokunulabilir gorunur */
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    border-top: none;
    width: auto;
    margin: 10px 0 0;
    padding: 0 0 0 14px;
    border-left: 1px solid rgba(255,255,255,.15);
  }
  .dropdown li { border-bottom: none; }
  .dropdown li a { color: rgba(255,255,255,.65); padding: 7px 0; font-weight: 300; }
  .dropdown li a:hover { background: transparent; color: var(--gold-400); }
}

/* =========================================================
   MISC: quote block, page content
   ========================================================= */
.quote-block {
  border-left: 3px solid var(--gold-600);
  padding-left: 26px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy-900);
  font-weight: 600;
  line-height: 1.5;
}
.prose { font-size: 16px; color: var(--ink); line-height: 1.75; }
.prose p { margin: 0 0 1.2em; }
.prose h2, .prose h3, .prose h4 { margin: 1.6em 0 .6em; color: var(--navy-900); font-family: var(--font-display); }
.prose h2 { font-size: 24px; font-weight: 800; }
.prose h3 { font-size: 19px; font-weight: 700; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 22px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--gold-600); }
.prose strong, .prose b { color: var(--navy-900); font-weight: 700; }
.prose a { color: var(--gold-600); text-decoration: underline; }
.prose blockquote { border-left: 3px solid var(--gold-600); padding-left: 18px; color: var(--muted); font-style: italic; margin: 1.4em 0; }
.prose img { max-width: 100%; height: auto; margin: 1em 0; }

.pill-tag {
  display: inline-block; background: rgba(201,151,62,.12); color: var(--gold-600);
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: .04em;
}

/* =========================================================
   WHATSAPP FLOATING BUTTON (sag altta sabit, sayfa kaymasindan etkilenmez)
   ========================================================= */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(0,0,0,.32);
  color: #fff;
}
.whatsapp-float svg { width: 30px; height: 30px; }

@media (max-width: 600px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
