/* =========================================================
   [İSİM SOYİSİM] — Resmi Web Sitesi
   Tasarım sistemi: Klasik devlet adamı + modern dinamizm
   Renk paleti: Lacivert + altın + bordo aksanlar
   ========================================================= */

/* ---------- Reset & Temeller ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  /* Renkler */
  --navy:        #0a2540;
  --navy-deep:   #061829;
  --navy-light:  #1a3a5c;
  --gold:        #c9a961;
  --gold-light:  #e3cb8a;
  --burgundy:    #8b1e2f;
  --cream:       #faf8f3;
  --paper:       #ffffff;
  --charcoal:    #1a1f2e;
  --gray:        #5a6478;
  --gray-light:  #e8e9ec;
  --gray-soft:   #f3f4f6;

  /* Tipografi */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Ölçek */
  --container:   1200px;
  --container-wide: 1400px;
  --radius:      4px;
  --radius-lg:   12px;
  --shadow-sm:   0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow-md:   0 8px 24px rgba(10, 37, 64, 0.10);
  --shadow-lg:   0 20px 60px rgba(10, 37, 64, 0.18);

  /* Geçişler */
  --t-fast: 150ms ease;
  --t-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--burgundy); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Tipografi ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: var(--charcoal); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 400;
}

/* ---------- Konteyner & Yardımcılar ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-sm { padding: 64px 0; }

.section-light { background: var(--cream); }
.section-dark  { background: var(--navy); color: var(--gray-light); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255, 255, 255, 0.78); }

.text-center { text-align: center; }
.gold-bar {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 24px;
}
.gold-bar-left {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 0 24px;
}

/* ---------- Üst Bilgi Çubuğu (Top Bar) ---------- */
.top-bar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  padding: 8px 0;
  letter-spacing: 0.03em;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-bar a { color: rgba(255, 255, 255, 0.85); }
.top-bar a:hover { color: var(--gold); }

.top-bar .lang-toggle {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.top-bar .lang-toggle button {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border-radius: 2px;
  transition: all var(--t-fast);
}
.top-bar .lang-toggle button.active,
.top-bar .lang-toggle button:hover {
  color: var(--gold);
}
.top-bar .lang-toggle .sep { color: rgba(255, 255, 255, 0.25); }

/* ---------- Navigasyon ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow var(--t-base);
}

.navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name .name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand-name .role {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--radius);
  position: relative;
  transition: color var(--t-fast);
}

.nav-links a:hover { color: var(--navy); }

.nav-links a.active {
  color: var(--navy);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  background: var(--navy);
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--t-base);
}
.nav-cta:hover { background: var(--burgundy); color: #fff !important; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: all var(--t-base);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--t-base);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--navy); }

.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); color: var(--gold); }

.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--burgundy); color: #fff; transform: translateY(-2px); }

.btn-arrow::after {
  content: '\2192';
  transition: transform var(--t-base);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Kahraman (Hero) Bölümleri ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-light) 100%);
  color: #fff;
  overflow: hidden;
  padding: 80px 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,169,97,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139,30,47,0.15) 0%, transparent 45%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-content .eyebrow { color: var(--gold); }
.hero-content .eyebrow::before { background: var(--gold); }

.hero-content h1 {
  color: #fff;
  margin: 16px 0 24px;
  font-weight: 600;
}
.hero-content h1 .accent {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-meta .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero-meta .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.hero-portrait::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 2px solid var(--gold);
  z-index: -1;
}

.portrait-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1a3a5c 0%, #0a2540 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 32px;
}
.portrait-placeholder svg { width: 100px; height: 100px; opacity: 0.5; margin-bottom: 16px; }
.portrait-placeholder .ph-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
}
.portrait-placeholder .ph-hint {
  font-size: 0.75rem;
  margin-top: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ---------- Sayfa İçi Kahraman (alt sayfalar için) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(201,169,97,0.12) 0%, transparent 40%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, 80px 80px, 80px 80px;
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero .eyebrow { color: var(--gold); }
.page-hero .eyebrow::before { background: var(--gold); }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,0.78); max-width: 720px; }

.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 10px; opacity: 0.5; }

/* ---------- Bölüm Başlığı ---------- */
.section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
}

.section-head h2 {
  margin-bottom: 16px;
}

/* ---------- Vizyon / Özellik Kartları ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #fff;
  padding: 40px 32px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201,169,97,0.12);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.feature-icon svg { width: 26px; height: 26px; }

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Zaman Çizelgesi (Timeline) ---------- */
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-light);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  padding-bottom: 48px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: 16px;
  top: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--gold);
  z-index: 1;
}

.timeline-item .year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.timeline-item h4 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.timeline-item .org {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-style: italic;
}

.timeline-item p {
  color: var(--charcoal);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- İstatistik Bandı ---------- */
.stats-band {
  background: var(--navy);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,169,97,0.15) 0%, transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-card .num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-card .label {
  margin-top: 12px;
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ---------- İki Sütunlu İçerik ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col .img-frame {
  aspect-ratio: 4 / 5;
  background: var(--gray-soft);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.img-frame.with-accent::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-soft), var(--gray-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-align: center;
  padding: 24px;
}
.img-placeholder svg { width: 64px; height: 64px; opacity: 0.4; margin-bottom: 12px; }
.img-placeholder .ph-text { font-family: var(--font-display); font-style: italic; font-size: 0.95rem; }

/* ---------- Alıntı / Söz ---------- */
.quote-block {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 64px 24px;
}

.quote-block .mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 16px;
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 24px;
}

.section-dark .quote-block blockquote { color: #fff; }

.quote-block cite {
  display: inline-block;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
.section-dark .quote-block cite { color: rgba(255,255,255,0.6); }

/* ---------- Politika / Sektör Kartları ---------- */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--gray-light);
  border: 1px solid var(--gray-light);
}

.policy-card {
  background: #fff;
  padding: 48px 36px;
  transition: background var(--t-base);
  position: relative;
}

.policy-card:hover { background: var(--cream); }

.policy-card .num-mark {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.policy-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.policy-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.policy-card .read-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.policy-card .read-more::after { content: ' \2192'; transition: margin var(--t-fast); }
.policy-card .read-more:hover::after { margin-left: 4px; }

/* ---------- Aksaray Bölümü Özel ---------- */
.aksaray-hero {
  background:
    linear-gradient(135deg, rgba(10,37,64,0.92), rgba(6,24,41,0.92)),
    linear-gradient(135deg, #2c4a6e 0%, #0a2540 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
}

.aksaray-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.aksaray-feature:nth-child(even) { direction: rtl; }
.aksaray-feature:nth-child(even) > * { direction: ltr; }

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-light);
  margin: 32px 0;
  border: 1px solid var(--gray-light);
}

.fact {
  background: #fff;
  padding: 24px;
  text-align: center;
}

.fact .fact-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
  line-height: 1;
}

.fact .fact-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* ---------- Doküman Kartları ---------- */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.doc-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--t-base);
}

.doc-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.doc-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(10,37,64,0.06);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.doc-icon svg { width: 22px; height: 22px; }

.doc-card h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.doc-card .meta {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

.doc-card .meta .pill {
  display: inline-block;
  background: var(--gray-soft);
  padding: 2px 8px;
  border-radius: 2px;
  margin-right: 8px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.7rem;
}

/* ---------- İletişim Formu ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  background: var(--navy);
  color: #fff;
  padding: 48px 40px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(201,169,97,0.12);
}

.contact-info h3 { color: #fff; margin-bottom: 8px; position: relative; }
.contact-info > p { color: rgba(255,255,255,0.75); margin-bottom: 32px; position: relative; }

.contact-list {
  list-style: none;
  position: relative;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}
.contact-list .ico {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201,169,97,0.18);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-list .ico svg { width: 16px; height: 16px; }
.contact-list strong { display: block; color: #fff; font-size: 0.85rem; margin-bottom: 2px; letter-spacing: 0.05em; }

.form { display: grid; gap: 18px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,0.15);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
}

/* ---------- Sosyal Medya ---------- */
.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  position: relative;
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
  border: 1px solid rgba(255,255,255,0.12);
}
.social-row a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.social-row a svg { width: 18px; height: 18px; }

.social-row.dark a {
  background: var(--gray-soft);
  color: var(--navy);
  border-color: var(--gray-light);
}
.social-row.dark a:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ---------- Çağrı Bandı (CTA Strip) ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--burgundy), #6e1525);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.cta-strip h2 { color: #fff; margin-bottom: 16px; }
.cta-strip p { color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto 32px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer h5 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; line-height: 1.65; }

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--t-fast);
}
.footer ul a:hover { color: var(--gold); padding-left: 4px; }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand .brand-mark { width: 40px; height: 40px; font-size: 1rem; }
.footer-brand .name { font-family: var(--font-display); color: #fff; font-size: 1.05rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Newsletter ---------- */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form button {
  padding: 12px 18px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
}
.newsletter-form button:hover { background: var(--gold-light); }

/* ---------- Bayrak / Ulusal Şerit ---------- */
.flag-strip {
  height: 4px;
  background: linear-gradient(90deg,
    var(--burgundy) 0%, var(--burgundy) 35%,
    #fff 35%, #fff 50%,
    var(--gold) 50%, var(--gold) 65%,
    var(--navy) 65%, var(--navy) 100%);
}

/* ---------- Animasyonlar ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobil Düzen ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-portrait { max-width: 420px; margin: 0 auto; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .aksaray-feature { grid-template-columns: 1fr; gap: 32px; direction: ltr !important; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--gray-light);
    padding: 16px;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--t-base);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 16px; }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { background: var(--cream); border-radius: var(--radius); }
  .nav-cta { margin: 8px 0 0; justify-content: center; }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding: 64px 0; }
  .hero-meta { gap: 20px; }
  .hero-meta .stat-num { font-size: 1.5rem; }

  .top-bar .container { flex-wrap: wrap; gap: 8px; }
  .top-bar .info { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .timeline { padding-left: 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

/* ---------- Print ---------- */
@media print {
  .navbar, .top-bar, .footer, .cta-strip, .nav-toggle { display: none; }
  .hero { background: #fff; color: #000; min-height: auto; }
  .hero-content h1, .hero-content .lead { color: #000; }
}
