/* ═══════════════════════════════════════════════════
   Av. Celal Engin BAKA — Ana Stil Dosyası
   Tema: Navy / Gold — Bilişim Hukuku & KVKK
   ═══════════════════════════════════════════════════ */

:root {
  --navy: #080D1A;
  --navy-mid: #0E1628;
  --navy-light: #162040;
  --gold: #B8913A;
  --gold-light: #D4AA55;
  --gold-pale: #F2E8D0;
  --white: #F8F6F1;
  --muted: #A0A5B5;
  --border: rgba(184, 145, 58, 0.2);
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'DM Sans', sans-serif;
  --ff-mono: 'Space Mono', monospace;
  --container: 1200px;
  --gap: 40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grid Doku */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,145,58,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,145,58,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

a { color: var(--gold-light); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-pale); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  position: relative;
  z-index: 1;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(8, 13, 26, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Logo kendi kelime markasını içeriyor; yanına ayrıca isim yazılmıyor.
   Daire kırpma ve çerçeve yok — altıgen siluet bozulmasın. */
.nav-logo img {
  width: 56px;
  height: 56px;
  transition: width 0.4s ease, height 0.4s ease;
}

nav.scrolled .nav-logo img {
  width: 44px;
  height: 44px;
}

/* Hero'daki büyük logo — ana sayfa girişinde arma olarak */
.hero-logo {
  width: 190px;
  height: auto;
  margin-bottom: 30px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.6em;
  opacity: 0.6;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 101;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 4px);
}

.dropdown-menu a {
  display: block;
  padding: 8px 24px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--navy-light);
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 24px;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--white);
  text-decoration: none;
}

.mobile-nav a:hover { color: var(--gold); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(184,145,58,0.10) 0%, transparent 70%);
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(22,32,64,0.8) 0%, transparent 70%);
  bottom: 0;
  left: -100px;
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-name {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.hero-name em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}

.hero-desc {
  max-width: 520px;
  font-size: 0.93rem;
  color: rgba(248,246,241,0.7);
  line-height: 1.9;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-badges {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 20px 28px;
  min-width: 200px;
}

.badge-num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.badge-label {
  font-size: 0.73rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 15px 36px;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 15px 36px;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-secondary {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.btn-secondary:hover { color: var(--white); }
.btn-secondary::after { content: '↓'; font-size: 1rem; }

/* ─── SECTION COMMON ─── */
section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-label {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-desc {
  color: rgba(248,246,241,0.65);
  line-height: 1.9;
  font-size: 0.93rem;
  max-width: 600px;
}

.bg-dark { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ─── UZMANLIK GRID ─── */
.uzmanlik-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}

.uzmanlik-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.uzmanlik-card {
  background: var(--navy);
  padding: 44px 32px;
  border-top: 2px solid transparent;
  transition: all 0.4s;
  text-decoration: none;
  color: var(--white);
  display: block;
}

.uzmanlik-card:hover {
  background: var(--navy-light);
  border-top-color: var(--gold);
  color: var(--white);
}

.uzmanlik-card:hover .uzmanlik-icon { color: var(--gold); }

.uzmanlik-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--muted);
  transition: color 0.4s;
}

.uzmanlik-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.uzmanlik-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.8;
}

.uzmanlik-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}

.tag {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 0.63rem;
  font-family: var(--ff-mono);
  letter-spacing: 0.08em;
  padding: 3px 10px;
}

/* ─── HAKKIMDA ─── */
.hakkimda-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.hakkimda-left { position: sticky; top: 100px; }

.hakkimda-photo-frame {
  position: relative;
  margin-bottom: 36px;
}

.hakkimda-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid var(--border);
  filter: grayscale(20%);
}

.hakkimda-photo-frame::after {
  content: '';
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 80%;
  height: 80%;
  border: 1px solid var(--gold);
  opacity: 0.25;
  z-index: -1;
}

.info-box {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 24px;
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.info-item:last-child { border-bottom: none; }

.info-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
}

.info-label {
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.info-value {
  font-size: 0.85rem;
  color: var(--white);
}

.info-value a { color: var(--white); text-decoration: none; }
.info-value a:hover { color: var(--gold-light); }

.hakkimda-content p {
  color: rgba(248,246,241,0.7);
  line-height: 1.95;
  margin-bottom: 20px;
  font-size: 0.93rem;
}

.hakkimda-content p strong {
  color: var(--white);
  font-weight: 500;
}

/* Timeline */
.timeline { margin-top: 48px; }

.timeline-label {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.timeline-item:last-child { border-bottom: none; margin-bottom: 0; }

.timeline-year {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 600;
  padding-top: 4px;
}

.timeline-title {
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── ÖNE ÇIKANLAR / EĞİTİM ─── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.card-numbered {
  background: var(--navy);
  padding: 44px;
  border-left: 2px solid transparent;
  transition: border-color 0.3s;
}

.card-numbered:hover { border-left-color: var(--gold); }

.card-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}

.card-numbered h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-numbered p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── MAKALE KARTLARI ─── */
.makale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.makale-card {
  background: var(--navy-mid);
  padding: 36px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--white);
  display: block;
}

.makale-card:hover {
  background: var(--navy-light);
  border-bottom-color: var(--gold);
  color: var(--white);
}

.makale-date {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.makale-card h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 14px;
}

.makale-excerpt {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.8;
}

.makale-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 20px;
  transition: gap 0.3s;
}

.makale-link:hover { gap: 14px; color: var(--gold-light); }

/* ─── İLETİŞİM / FORM ─── */
.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-group { margin-bottom: 20px; }

.form-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus { border-color: var(--gold); }

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8913A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea { height: 130px; resize: vertical; }

/* Açık rıza onay kutusu */
.form-consent {
  margin: 4px 0 22px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  background: rgba(184, 145, 58, 0.04);
}

.form-consent > label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  flex: none;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-consent span {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--white);
}

.form-consent strong { color: var(--gold-light); font-weight: 500; }

.form-consent-note {
  margin: 10px 0 0 29px;
  font-size: 0.74rem;
  line-height: 1.6;
  color: var(--muted);
}

.form-submit {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 16px 48px;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s;
}

.form-submit:hover { background: var(--gold-light); }

.kvkk-note {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 14px;
}

.iletisim-info { padding-top: 16px; }

.iletisim-block { margin-bottom: 44px; }

.iletisim-block h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.iletisim-block p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}

.iletisim-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.iletisim-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.iletisim-icon svg { width: 18px; height: 18px; }

.iletisim-text-label {
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.iletisim-text-value { font-size: 0.88rem; }
.iletisim-text-value a { color: var(--white); text-decoration: none; }
.iletisim-text-value a:hover { color: var(--gold-light); }

/* ─── PAGE HEADER (sub-pages) ─── */
.page-header {
  padding: 160px 0 80px;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header .hero-glow {
  width: 400px;
  height: 400px;
  top: 0;
  right: -100px;
  transform: none;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 20px;
  list-style: none;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.5; }

/* ─── CONTENT SECTIONS (sub-pages) ─── */
.content-section {
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}

.content-main h2 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 40px 0 16px;
  color: var(--white);
}

.content-main h2:first-child { margin-top: 0; }

.content-main p {
  color: rgba(248,246,241,0.7);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 0.93rem;
}

.content-main ul,
.content-main ol {
  margin: 16px 0;
  padding-left: 20px;
}

.content-main li {
  color: rgba(248,246,241,0.7);
  font-size: 0.93rem;
  line-height: 1.9;
  margin-bottom: 8px;
}

.content-main li::marker { color: var(--gold); }

.content-highlight {
  background: var(--navy-mid);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin: 28px 0;
}

.content-highlight p {
  color: rgba(248,246,241,0.8) !important;
  margin-bottom: 0 !important;
  font-style: italic;
}

/* Sidebar */
.sidebar-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 24px;
}

.sidebar-card h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--gold-light);
}

.sidebar-links { list-style: none; }

.sidebar-links li {
  border-bottom: 1px solid var(--border);
}

.sidebar-links li:last-child { border-bottom: none; }

.sidebar-links a {
  display: block;
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s;
}

.sidebar-links a:hover {
  color: var(--gold-light);
  padding-left: 8px;
}

.sidebar-links a.active {
  color: var(--gold);
  font-weight: 500;
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 44px 0 28px;
  position: relative;
  z-index: 1;
}

.footer-legal {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 20px 28px;
  margin-bottom: 44px;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.8;
}

.footer-legal strong { color: var(--gold-light); font-weight: 500; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 44px;
}

.footer-brand {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-brand span { color: var(--gold); }

.footer-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.83rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--muted);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-eyebrow,
.hero-name,
.hero-subtitle,
.hero-desc,
.hero-actions,
.hero-badges {
  opacity: 0;
  animation: fadeUp 0.7s forwards;
}

.hero-eyebrow  { animation-delay: 0.15s; }
.hero-name     { animation-delay: 0.3s; }
.hero-subtitle { animation-delay: 0.45s; }
.hero-desc     { animation-delay: 0.55s; }
.hero-actions  { animation-delay: 0.7s; }
.hero-badges   { animation-delay: 0.85s; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ═══════════════════════════════════════════════════
   V2 — "Hukuk & Kod" Bileşenleri
   ═══════════════════════════════════════════════════ */

:root {
  --term-green: #9BC4A0;
  --term-bg: #0A101F;
}

/* ─── SPLIT HERO ─── */
.hero-v2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-v2-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ─── TERMINAL ─── */
.hero-terminal-wrap {
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.terminal {
  background: var(--term-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 60px rgba(184,145,58,0.06);
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  line-height: 1.9;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--navy-light);
  border-bottom: 1px solid var(--border);
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--border);
}

.terminal-dot:nth-child(1) { background: rgba(216,106,106,0.7); border: none; }
.terminal-dot:nth-child(2) { background: rgba(212,170,85,0.7); border: none; }
.terminal-dot:nth-child(3) { background: rgba(122,168,116,0.7); border: none; }

.terminal-title {
  margin-left: auto;
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.terminal-body {
  padding: 24px 22px 28px;
  min-height: 300px;
}

.terminal-body .t-prompt { color: var(--gold); }
.terminal-body .t-cmd    { color: var(--white); }
.terminal-body .t-out    { color: var(--term-green); display: block; white-space: pre-wrap; }
.terminal-body .t-dim    { color: var(--muted); }

.terminal-line { display: block; }

.t-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--gold);
  vertical-align: middle;
  margin-left: 2px;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

/* ─── MEVZUAT TICKER ─── */
.ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--navy-mid);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 1;
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}

.ticker:hover { animation-play-state: paused; }

.ticker span {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 28px;
  white-space: nowrap;
}

.ticker span b {
  color: var(--gold);
  font-weight: 400;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── FİHRİST (INDEX ROWS) ─── */
.fihrist { border-top: 1px solid var(--border); }

.fihrist-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 34px 8px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--white);
  position: relative;
  transition: all 0.35s ease;
}

.fihrist-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(184,145,58,0.07), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.fihrist-row:hover { color: var(--white); padding-left: 20px; }
.fihrist-row:hover::before { opacity: 1; }

.fihrist-num {
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.35s;
}

.fihrist-row:hover .fihrist-num { color: var(--gold); }

.fihrist-main h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  transition: color 0.35s;
}

.fihrist-row:hover .fihrist-main h3 { color: var(--gold-light); }

.fihrist-main p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 8px;
  /* Masaüstünde gizli, hover'da açılır */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.45s ease, margin-top 0.45s ease;
  margin-top: 0;
}

.fihrist-row:hover .fihrist-main p {
  max-height: 120px;
  opacity: 1;
  margin-top: 8px;
}

.fihrist-arrow {
  font-family: var(--ff-mono);
  font-size: 1.1rem;
  color: var(--muted);
  transition: all 0.35s;
}

.fihrist-row:hover .fihrist-arrow {
  color: var(--gold);
  transform: translateX(6px);
}

.fihrist-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* ─── GIT LOG TIMELINE ─── */
.gitlog {
  background: var(--term-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 26px;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  line-height: 2.1;
  overflow-x: auto;
}

.gitlog-header {
  color: var(--muted);
  margin-bottom: 14px;
  display: block;
}

.gitlog-header .t-prompt { color: var(--gold); }
.gitlog-header .t-cmd { color: var(--white); }

.gitlog-line {
  display: grid;
  grid-template-columns: 72px 96px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(184,145,58,0.12);
}

.gitlog-line:last-child { border-bottom: none; }

.gitlog-hash { color: var(--gold); }
.gitlog-year { color: var(--term-green); white-space: nowrap; }
.gitlog-msg  { color: rgba(248,246,241,0.85); font-family: var(--ff-body); font-size: 0.85rem; }
.gitlog-msg small { display: block; color: var(--muted); font-size: 0.76rem; line-height: 1.6; margin-top: 2px; }

/* ─── HERO SOL BLOK ─── */
.hero-v2 .hero-name { margin-bottom: 20px; }

.hero-kanun-cizgi {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-kanun-cizgi .cizgi {
  width: 48px;
  height: 1px;
  background: var(--gold);
  align-self: center;
}

.hero-kanun-cizgi span {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── SECTION NUMARALARI ─── */
.sec-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 56px;
}

.sec-no {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ─── HAREKET AZALTMA ─── */
@media (prefers-reduced-motion: reduce) {
  .ticker { animation: none; flex-wrap: wrap; }
  .t-cursor { animation: none; }
  .fade-in { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow, .hero-name, .hero-subtitle, .hero-desc,
  .hero-actions, .hero-badges, .hero-terminal-wrap { animation: none; opacity: 1; }
}

/* ─── V2 RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-logo { width: 140px; margin-bottom: 22px; }
}

@media (max-width: 900px) {
  .hero-v2 { padding: 120px 0 56px; }
  .hero-v2-grid { grid-template-columns: 1fr; gap: 44px; }
  .terminal { font-size: 0.7rem; }
  .terminal-body { min-height: 240px; }
  .fihrist-row { grid-template-columns: 48px 1fr auto; gap: 16px; padding: 26px 4px; }
  /* Mobilde açıklamalar hep açık */
  .fihrist-main p { max-height: none; opacity: 1; margin-top: 8px; }
  .gitlog-line { grid-template-columns: 60px 1fr; }
  .gitlog-line .gitlog-msg { grid-column: 1 / -1; padding-left: 0; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-badges { display: none; }
  .uzmanlik-intro { grid-template-columns: 1fr; gap: 32px; }
  .uzmanlik-grid { grid-template-columns: 1fr; }
  .hakkimda-grid { grid-template-columns: 1fr; gap: 48px; }
  .hakkimda-left { position: static; }
  .grid-2 { grid-template-columns: 1fr; }
  .makale-grid { grid-template-columns: 1fr; }
  .iletisim-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .content-grid { grid-template-columns: 1fr; gap: 48px; }
  .page-header { padding: 120px 0 60px; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 16px; }
}
