/* ═══════════════════════════════════════════════════════════════
   ÖZEL İZ AKADEMİ — Design System v2
   Aesthetic: Refined Editorial × Premium Academic
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Palette */
  --ink:       #0C1A2E;
  --ink-80:    rgba(12,26,46,.8);
  --ink-40:    rgba(12,26,46,.4);
  --ink-10:    rgba(12,26,46,.06);
  --navy:      #1A3A6B;
  --navy-mid:  #1D4ED8;
  --navy-lt:   #EFF6FF;
  --gold:      #C9952A;
  --gold-lt:   #FBF5E6;
  --gold-glow: rgba(201,149,42,.25);
  --cream:     #FAFAF7;
  --white:     #FFFFFF;
  --slate:     #64748B;
  --slate-lt:  #F1F5F9;
  --green:     #059669;
  --green-lt:  #D1FAE5;
  --red:       #DC2626;
  --red-lt:    #FEE2E2;
  --amber:     #D97706;
  --amber-lt:  #FEF3C7;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Spacing */
  --r-xs:  4px;
  --r-sm:  8px;
  --r:     12px;
  --r-lg:  18px;
  --r-xl:  28px;
  --r-2xl: 40px;

  /* Shadows */
  --sh-xs:  0 1px 3px rgba(12,26,46,.06);
  --sh-sm:  0 2px 8px rgba(12,26,46,.08);
  --sh:     0 4px 20px rgba(12,26,46,.10);
  --sh-md:  0 8px 32px rgba(12,26,46,.13);
  --sh-lg:  0 16px 56px rgba(12,26,46,.16);
  --sh-xl:  0 28px 80px rgba(12,26,46,.20);

  /* Layout */
  --max:    1240px;
  --hdr:    72px;
  --ann:    38px;
}
body.no-ann{
  --ann: 0px;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--hdr) + var(--ann));
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: var(--font-body); }
button { cursor: pointer; background: none; border: none; }

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--slate-lt); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 4px; }

/* ── ANNOUNCE BAR ───────────────────────────────────────────── */
.ann-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--ann);
  background: var(--navy);
  color: rgba(255,255,255,.9);
  font-size: 12.5px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  z-index: 1010;
  transition: transform .3s ease;
}
body.scrolled .ann-bar { transform: translateY(-100%); }
.ann-badge {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.ann-cta {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid rgba(201,149,42,.4);
  transition: border-color .2s;
}
.ann-cta:hover { border-color: var(--gold); }
.ann-close {
  position: absolute; right: 16px;
  color: rgba(255,255,255,.4);
  font-size: 18px; line-height: 1;
  transition: color .2s;
  padding: 4px;
}
.ann-close:hover { color: white; }

/* ── HEADER ─────────────────────────────────────────────────── */
.hdr {
  position: fixed;
  top: var(--ann); left: 0; right: 0;
  height: var(--hdr);
  background: rgba(250,250,247,.95);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(12,26,46,.07);
  z-index: 1000;
  transition: top .3s ease, box-shadow .3s ease;
}
.hdr.compact { top: 0; box-shadow: var(--sh-sm); }
.hdr-inner {
  max-width: var(--max);
  margin: 0 auto; padding: 0 28px;
  height: 100%;
  display: flex; align-items: center; gap: 40px;
}

/* Logo */
.hdr-logo { display: flex; align-items: center; flex-shrink: 0; transition: opacity .18s; }
.hdr-logo:hover { opacity: .85; }
.hdr-logo-img {
  height: 52px; width: auto; max-width: 240px;
  display: block;
  object-fit: contain;
  transition: height .25s;
}
.hdr.compact .hdr-logo-img { height: 44px; }
@media (max-width: 600px) {
  .hdr-logo-img { height: 40px; }
  .hdr.compact .hdr-logo-img { height: 36px; }
}

/* Nav */
.hdr-nav {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 2px;
}
.nav-item { position: relative; }
.nav-a {
  display: block;
  padding: 8px 16px;
  font-size: 14px; font-weight: 500;
  color: var(--slate);
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-a:hover, .nav-a.on { color: var(--navy); background: var(--navy-lt); }
.nav-a.on { font-weight: 600; }

/* Dropdown */
.nav-drop {
  position: absolute;
  top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: var(--white);
  border: 1px solid rgba(12,26,46,.09);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 200;
}
.nav-item:hover .nav-drop {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-drop a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  font-size: 13.5px; font-weight: 500;
  color: var(--slate);
  border-radius: var(--r-sm);
  transition: background .15s, color .15s;
}
.nav-drop a:hover { background: var(--navy-lt); color: var(--navy); }
.nav-drop-icon { font-size: 15px; }

/* Hdr Actions */
.hdr-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-hdr-tel {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  font-size: 13px; font-weight: 600;
  color: var(--slate);
  border: 1.5px solid rgba(12,26,46,.12);
  border-radius: var(--r-sm);
  transition: all .2s;
}
.btn-hdr-tel:hover { color: var(--navy); border-color: var(--navy); background: var(--navy-lt); }
.btn-hdr-reg {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 20px;
  font-size: 13.5px; font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #1D3461 100%);
  border-radius: var(--r-sm);
  letter-spacing: .2px;
  transition: all .25s;
  box-shadow: 0 2px 12px rgba(26,58,107,.25);
}
.btn-hdr-reg:hover { transform: translateY(-1px); box-shadow: 0 5px 20px rgba(26,58,107,.38); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px; border-radius: var(--r-sm);
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── WHATSAPP ───────────────────────────────────────────────── */
.wa-btn {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.3);
  z-index: 990;
  transition: transform .3s, box-shadow .3s;
  animation: waPulse 3s ease-in-out 2s infinite;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.3); }
  50%      { box-shadow: 0 4px 24px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,0); }
}
.wa-btn:hover { transform: scale(1.1) rotate(-5deg); box-shadow: 0 8px 32px rgba(37,211,102,.55); }
.wa-btn svg { width: 28px; height: 28px; fill: white; }
.wa-tip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--ink); color: white;
  font-size: 12px; font-weight: 500;
  white-space: nowrap;
  padding: 7px 12px; border-radius: var(--r-sm);
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.wa-tip::after {
  content: '';
  position: absolute; top: 50%; right: -5px; transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: var(--ink); border-right: 0;
}
.wa-btn:hover .wa-tip { opacity: 1; }

/* ── SECTION UTILITIES ──────────────────────────────────────── */
.sec { padding: 88px 28px; }
.sec-sm { padding: 60px 28px; }
.sec-lg { padding: 120px 28px; }
.wrap { max-width: var(--max); margin: 0 auto; }
.bg-cream  { background: var(--cream); }
.bg-white  { background: var(--white); }
.bg-ink    { background: var(--ink); }
.bg-navy   { background: var(--navy); }
.bg-gold-lt { background: var(--gold-lt); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.h1 { font-family: var(--font-display); font-size: clamp(40px,6vw,72px); font-weight: 600; line-height: 1.08; letter-spacing: -1px; }
.h2 { font-family: var(--font-display); font-size: clamp(30px,4vw,52px); font-weight: 600; line-height: 1.15; letter-spacing: -.5px; }
.h3 { font-family: var(--font-display); font-size: clamp(22px,3vw,36px); font-weight: 600; line-height: 1.2; }
.h4 { font-family: var(--font-display); font-size: 22px; font-weight: 600; line-height: 1.3; }

.lead { font-size: 18px; color: var(--slate); line-height: 1.7; }

.sec-head { margin-bottom: 56px; }
.sec-head.center { text-align: center; }
.sec-head.center .lead { max-width: 540px; margin: 14px auto 0; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 96vh;
  background: var(--ink);
  overflow: hidden;
  display: flex; align-items: center;
}
/* Geometric background pattern */
.hero-geo {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 70% 40%, rgba(29,78,216,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201,149,42,.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 90% 10%, rgba(5,150,105,.08) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-diag {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  background: linear-gradient(135deg, transparent 0%, rgba(29,78,216,.06) 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; padding: 100px 28px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center;
}

/* Hero Left */
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold);
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-kicker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 78px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-h1 em { color: var(--gold); font-style: italic; }
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,.6);
  line-height: 1.75; max-width: 480px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.btn-hero-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  background: var(--gold);
  color: var(--ink);
  font-size: 15px; font-weight: 700;
  border-radius: var(--r-sm);
  letter-spacing: .2px;
  transition: all .25s;
  box-shadow: 0 4px 24px var(--gold-glow);
}
.btn-hero-gold:hover { background: #d9a030; transform: translateY(-2px); box-shadow: 0 8px 36px var(--gold-glow); }
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.2);
  font-size: 15px; font-weight: 600;
  border-radius: var(--r-sm);
  transition: all .25s;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,.5); color: white; background: rgba(255,255,255,.06); }

.hero-metrics {
  display: flex; gap: 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-metric-num {
  font-family: var(--font-display);
  font-size: 36px; color: var(--gold);
  line-height: 1; margin-bottom: 4px;
}
.hero-metric-lbl { font-size: 12px; color: rgba(255,255,255,.4); letter-spacing: .5px; }

/* Hero Right — Sinav Card */
.hero-right { position: relative; }
.sinav-glass {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
}
.sinav-glass-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.sinav-glass-title::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.08); }
.sinav-row {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 16px;
  margin-bottom: 12px;
  transition: border-color .2s;
}
.sinav-row:hover { border-color: rgba(201,149,42,.3); }
.sinav-row:last-of-type { margin-bottom: 0; }
.sinav-row-name { font-size: 14px; font-weight: 600; color: white; margin-bottom: 6px; }
.sinav-row-meta { display: flex; gap: 14px; font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 10px; }
.sinav-bar-wrap { height: 3px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; }
.sinav-bar { height: 100%; background: linear-gradient(90deg, var(--gold), #e8b84b); border-radius: 2px; transition: width .8s ease; }
.sinav-bar-info { display: flex; justify-content: space-between; font-size: 10px; color: rgba(255,255,255,.3); margin-top: 5px; }
.sinav-glass-cta {
  display: block; text-align: center;
  margin-top: 20px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700; font-size: 14px;
  padding: 13px; border-radius: var(--r-sm);
  letter-spacing: .2px;
  transition: all .2s;
}
.sinav-glass-cta:hover { background: #d9a030; transform: translateY(-1px); }

/* Floating chips */
.hero-chips {
  position: absolute;
  right: -28px; bottom: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.chip {
  display: flex; align-items: center; gap: 10px;
  background: white;
  border-radius: 40px;
  padding: 10px 16px;
  box-shadow: var(--sh-md);
  font-size: 13px; font-weight: 600; color: var(--navy);
  white-space: nowrap;
  animation: chipFloat 3s ease-in-out infinite;
}
.chip:nth-child(2) { animation-delay: .7s; }
.chip:nth-child(3) { animation-delay: 1.4s; }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.chip-icon { font-size: 18px; }

/* ── FEATURES ───────────────────────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.feat-card {
  background: var(--white);
  border: 1px solid rgba(12,26,46,.07);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feat-card::after {
  content: '';
  position: absolute; bottom: 0; left: 32px; right: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: rgba(26,58,107,.12); }
.feat-card:hover::after { transform: scaleX(1); }
.feat-icon-wrap {
  width: 56px; height: 56px;
  background: var(--navy-lt);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.feat-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.feat-desc { font-size: 14px; color: var(--slate); line-height: 1.7; }

/* ── PROGRAMS ───────────────────────────────────────────────── */
.prog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 28px; }
.prog-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform .3s, box-shadow .3s;
  background: white;
}
.prog-card:hover { transform: translateY(-7px); box-shadow: var(--sh-xl); }
.prog-head {
  padding: 36px 30px 28px;
  position: relative; overflow: hidden;
}
.prog-head.c-navy  { background: linear-gradient(140deg, #0F2347 0%, var(--navy) 100%); }
.prog-head.c-earth { background: linear-gradient(140deg, #7c2d12 0%, #b45309 100%); }
.prog-head.c-forest { background: linear-gradient(140deg, #064e3b 0%, #059669 100%); }
.prog-head.c-ocean { background: linear-gradient(140deg, #0c4a6e 0%, #0284c7 100%); }
.prog-head-decor {
  position: absolute; top: -20px; right: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.prog-emoji { font-size: 40px; margin-bottom: 16px; position: relative; z-index: 1; }
.prog-name { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: white; margin-bottom: 4px; position: relative; z-index: 1; }
.prog-grade { font-size: 13px; color: rgba(255,255,255,.55); position: relative; z-index: 1; }
.prog-body { padding: 26px 30px; }
.prog-list { list-style: none; }
.prog-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  font-size: 14px; color: var(--slate);
  border-bottom: 1px solid rgba(12,26,46,.05);
}
.prog-list li:last-child { border-bottom: none; }
.prog-check { color: var(--green); font-size: 16px; flex-shrink: 0; }
.prog-cta {
  display: block; text-align: center;
  margin-top: 20px;
  padding: 11px;
  border: 1.5px solid rgba(12,26,46,.12);
  border-radius: var(--r-sm);
  font-size: 13.5px; font-weight: 600; color: var(--navy);
  transition: all .2s;
}
.prog-cta:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* ── STATS ──────────────────────────────────────────────────── */
.stats-band {
  background: var(--navy);
  padding: 72px 28px;
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); }
.stat-col {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stat-col:last-child { border-right: none; }
.stat-n {
  font-family: var(--font-display);
  font-size: 54px; font-weight: 600;
  color: var(--gold); line-height: 1;
  margin-bottom: 8px;
}
.stat-l { font-size: 13px; color: rgba(255,255,255,.5); letter-spacing: .5px; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; }
.testi-card {
  background: var(--white);
  border: 1px solid rgba(12,26,46,.07);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
}
.testi-quote-mark {
  font-family: var(--font-display);
  font-size: 72px; color: var(--gold);
  opacity: .2; line-height: .8;
  position: absolute; top: 20px; left: 24px;
}
.testi-text { font-size: 15px; color: var(--slate); line-height: 1.75; margin-bottom: 24px; padding-top: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px;
  background: var(--navy-lt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.testi-name { font-size: 15px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--slate); margin-top: 2px; }
.testi-stars { color: var(--gold); font-size: 13px; margin-top: 3px; }

/* ── ANNOUNCEMENTS ──────────────────────────────────────────── */
.ann-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 20px; }
.ann-card {
  background: var(--white);
  border: 1px solid rgba(12,26,46,.07);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.ann-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.ann-card-top {
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(12,26,46,.05);
}
.tag {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .3px; text-transform: uppercase;
}
.tag-duyuru  { background: var(--navy-lt);  color: var(--navy-mid); }
.tag-etkinlik { background: var(--green-lt); color: #065F46; }
.tag-sinav   { background: var(--amber-lt);  color: #92400E; }
.tag-haber   { background: #F3E8FF;           color: #6D28D9; }
.ann-date { font-size: 11px; color: var(--slate); }
.ann-card-body { padding: 18px 20px; }
.ann-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.ann-excerpt { font-size: 13px; color: var(--slate); line-height: 1.65; }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #102852 100%);
  padding: 96px 28px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(201,149,42,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(29,78,216,.12) 0%, transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-eyebrow { color: var(--gold); margin-bottom: 16px; justify-content: center; }
.cta-h2 { font-family: var(--font-display); font-size: clamp(30px,5vw,56px); font-weight: 600; color: white; margin-bottom: 18px; line-height: 1.15; }
.cta-desc { font-size: 17px; color: rgba(255,255,255,.6); max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── GALLERY ────────────────────────────────────────────────── */
.gal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 16px; }
.gal-item {
  aspect-ratio: 4/3; border-radius: var(--r); overflow: hidden;
  background: var(--slate-lt); position: relative; cursor: pointer;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gal-item:hover img { transform: scale(1.06); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,26,46,.75) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
  padding: 16px;
  display: flex; align-items: flex-end;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-label { color: white; font-size: 13px; font-weight: 600; }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.cinfo-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid rgba(12,26,46,.07);
  border-radius: var(--r);
}
.cinfo-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.cinfo-lbl { font-size: 11px; color: var(--slate); text-transform: uppercase; letter-spacing: .5px; }
.cinfo-val { font-size: 15px; font-weight: 600; color: var(--navy); margin-top: 2px; }
.cinfo-val a { transition: color .2s; }
.cinfo-val a:hover { color: var(--gold); }

/* Form Card */
.form-card {
  background: var(--white);
  border: 1px solid rgba(12,26,46,.07);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--sh-md);
}
.form-card-title { font-family: var(--font-display); font-size: 28px; color: var(--navy); margin-bottom: 6px; }
.form-card-sub { font-size: 14px; color: var(--slate); margin-bottom: 28px; }
.fg { margin-bottom: 18px; }
.fg-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.fl { display: block; font-size: 12.5px; font-weight: 700; color: var(--slate); letter-spacing: .2px; margin-bottom: 6px; }
.fl span { color: var(--red); }
.fi, .fs, .ft {
  width: 100%; padding: 11px 15px;
  border: 1.5px solid rgba(12,26,46,.12);
  border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 14px; color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.fi:focus, .fs:focus, .ft:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,58,107,.09);
}
.fi.err, .fs.err { border-color: var(--red); }
.ft { resize: vertical; min-height: 120px; }
.fe { font-size: 11.5px; color: var(--red); margin-top: 4px; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  font-size: 14px; font-weight: 600;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer; transition: all .2s;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--ink); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,58,107,.3); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #b8841f; }
.btn-ghost { background: transparent; border: 1.5px solid var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: white; }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-xl { padding: 16px 34px; font-size: 16px; font-weight: 700; }
.btn-block { width: 100%; justify-content: center; }

/* Alerts */
.al { padding: 14px 18px; border-radius: var(--r-sm); font-size: 13.5px; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 10px; }
.al-ok   { background: var(--green-lt); color: #065F46; border: 1px solid #A7F3D0; }
.al-err  { background: var(--red-lt);   color: #991B1B; border: 1px solid #FECACA; }
.al-warn { background: var(--amber-lt); color: #92400E; border: 1px solid #FDE68A; }
.al-info { background: var(--navy-lt);  color: #1D4ED8; border: 1px solid #BFDBFE; }

/* ── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--navy) 100%);
  padding: 64px 28px 56px;
  color: white;
}
.page-hero-wrap { max-width: var(--max); margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb-sep { font-size: 11px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(30px,4.5vw,52px); font-weight: 600; margin-bottom: 12px; line-height: 1.15; }
.page-hero p  { font-size: 16px; color: rgba(255,255,255,.6); max-width: 520px; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.ftr { background: var(--ink); color: rgba(255,255,255,.6); }
.ftr-top { padding: 72px 28px 56px; }
.ftr-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 56px; }
.ftr-logo { display: flex; align-items: center; margin-bottom: 18px; }
.ftr-logo-img {
  height: 56px; width: auto; max-width: 260px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.ftr-logo-name { font-family: var(--font-display); font-size: 22px; color: white; }
.ftr-desc { font-size: 14px; line-height: 1.75; max-width: 280px; margin-bottom: 24px; }
.ftr-social { display: flex; gap: 10px; }
.social-ico {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all .2s;
}
.social-ico:hover { background: var(--navy); color: white; border-color: var(--navy); }
.ftr-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.ftr-nav { display: flex; flex-direction: column; gap: 9px; }
.ftr-nav a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .2s; }
.ftr-nav a:hover { color: white; }
.ftr-nav a.gold { color: var(--gold); }
.ftr-contact { display: flex; flex-direction: column; gap: 12px; }
.fci { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.fci-icon { font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.fci a { color: rgba(255,255,255,.5); transition: color .2s; }
.fci a:hover { color: white; }
.ftr-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 28px;
}
.ftr-bottom-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,.3);
  flex-wrap: wrap; gap: 12px;
}
.ftr-bottom-links { display: flex; gap: 20px; }
.ftr-bottom-links a { color: rgba(255,255,255,.3); transition: color .2s; }
.ftr-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-24px); transition: opacity .7s ease, transform .7s ease; }
.reveal-l.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ── MAP ────────────────────────────────────────────────────── */
.map-wrap { border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(12,26,46,.07); box-shadow: var(--sh); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --hdr: 62px; --ann: 34px; }
  .hdr-nav { display: none; position: fixed; top: calc(var(--ann) + var(--hdr)); left: 0; right: 0; background: var(--white); flex-direction: column; align-items: stretch; gap: 4px; padding: 16px; border-bottom: 1px solid rgba(12,26,46,.08); box-shadow: var(--sh); z-index: 999; }
  .hdr-nav.open { display: flex; }
  .nav-drop { position: static; transform: none; opacity: 1; pointer-events: all; box-shadow: none; border: none; padding-left: 14px; display: none; }
  .nav-item:hover .nav-drop, .nav-drop.open { display: block; }
  .btn-hdr-tel { display: none; }
  .btn-hdr-reg { display: none; }
  .hamburger { display: flex; }
  /* Mobilde logoyu ortala — hamburger absolute, logo flex:1 center */
  .hdr-inner { position: relative; justify-content: center; gap: 0; }
  .hdr-logo { margin: 0 auto; }
  .hdr-actions { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); gap: 0; }
  .hero-btns { flex-direction: column; }
  .btn-hero-gold, .btn-hero-ghost { width: 100%; justify-content: center; }
  .hero-metrics { flex-wrap: wrap; gap: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-col:nth-child(even) { border-left: 1px solid rgba(255,255,255,.07); }
  .ftr-grid { grid-template-columns: 1fr; gap: 28px; }
  .ftr-bottom-inner { flex-direction: column; text-align: center; }
  .sec, .sec-lg { padding: 60px 16px; }
  .ann-bar .ann-cta { display: none; }
  .fg-2 { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .hero-inner { padding: 72px 16px; }
  .sinav-glass { display: none; }
  .hdr-inner { padding: 0 16px; gap: 20px; }
}
