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

  :root {
    --navy: #252876;
    --navy-deep: #1A1D5C;
    --navy-light: #3A3DA0;
    --navy-hover: #2E3188;
    --cream: #F3EEE2;
    --cream-dark: #E8E1D1;
    --white: #FFFFFF;
    --ink: #1A1D3D;
    --body: #3A3E55;
    --muted: #7A7D90;
    --line: rgba(37,40,118,0.12);

    --r-sm: 12px;
    --r: 18px;
    --r-lg: 28px;
    --r-xl: 40px;
    --r-pill: 999px;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'Fira Sans', sans-serif;
    background: var(--cream);
    color: var(--body);
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.55;
  }

  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--cream-dark); }
  ::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 3px; }

  /* ══════ TOP HEADER ══════ */
  .top-header {
    background: var(--cream);
    padding: 20px 56px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 100;
  }
  .brand {
    display: flex; align-items: center; gap: 18px;
    text-decoration: none; color: var(--navy);
  }
  .brand-logo {
    width: 86px; height: 86px;
    object-fit: contain;
    transition: transform 0.5s ease;
  }
  .brand:hover .brand-logo { transform: rotate(-8deg) scale(1.05); }
  .brand-text { line-height: 1.15; }
  .brand-text .name {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 26px; font-weight: 800; letter-spacing: -0.01em;
    color: var(--navy);
  }
  .brand-text .tagline {
    font-size: 13px; font-weight: 500;
    color: var(--navy); opacity: 0.7;
    margin-top: 4px; letter-spacing: 0.02em;
  }

  .social-row {
    display: flex; align-items: center; justify-content: center;
    gap: 14px;
  }
  .social-row a {
    width: 38px; height: 38px; border-radius: var(--r-pill);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
  }
  .social-row a:hover {
    background: var(--navy); color: #fff;
    transform: translateY(-2px);
  }
  .social-row svg { width: 16px; height: 16px; fill: currentColor; }

  .top-actions { display: flex; align-items: center; gap: 10px; }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 20px; border-radius: var(--r);
    border: 1px solid var(--line);
    background: transparent; color: var(--navy);
    font-family: 'Fira Sans', sans-serif;
    font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
    cursor: pointer; text-decoration: none;
    transition: all 0.25s ease;
  }
  .btn-ghost:hover { background: rgba(37,40,118,0.05); border-color: var(--navy); }
  .btn-ghost svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
  .btn-donate {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px; border-radius: var(--r);
    background: var(--navy); color: #fff;
    font-family: 'Fira Sans', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
    text-decoration: none; text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(37,40,118,0.15);
  }
  .btn-donate:hover {
    background: var(--navy-deep); transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37,40,118,0.35);
  }
  .btn-donate .heart { font-size: 14px; }

  /* ══════ MEGA MENU NAV ══════ */
  .nav-wrap {
    background: var(--navy);
    position: relative;
    z-index: 90;
  }
  .nav {
    max-width: 1400px; margin: 0 auto;
    display: flex; justify-content: center;
    padding: 0 56px;
  }
  .nav-item {
    position: relative;
  }
  .nav-item > a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 20px 28px;
    color: #fff; text-decoration: none;
    font-family: 'Fira Sans', sans-serif;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    transition: background 0.25s ease;
  }
  .nav-item > a svg {
    width: 10px; height: 10px; fill: currentColor;
    transition: transform 0.3s ease;
    opacity: 0.7;
  }
  .nav-item:hover > a { background: var(--navy-deep); }
  .nav-item:hover > a svg { transform: rotate(180deg); }

  /* mega panel */
  .mega {
    position: absolute;
    top: 100%; left: 0;
    background: #fff;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    padding: 36px 40px;
    min-width: 640px;
    box-shadow: 0 30px 80px rgba(26,29,92,0.18), 0 0 0 1px rgba(37,40,118,0.05);
    opacity: 0; visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .nav-item:hover .mega,
  .nav-item:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }

  .mega-col h4 {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 14px; font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--navy);
  }
  .mega-col ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
  .mega-col ul a {
    display: block;
    padding: 8px 12px;
    color: var(--ink);
    font-size: 14px; font-weight: 400;
    text-decoration: none;
    border-radius: var(--r-sm);
    transition: all 0.2s ease;
  }
  .mega-col ul a:hover {
    background: var(--cream);
    color: var(--navy);
    padding-left: 18px;
  }

  /* ══════ HERO (wide, short) ══════ */
  .hero {
    position: relative;
    background: var(--navy);
    overflow: hidden;
    height: 560px;
  }
  .hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 80px;
    background: var(--cream);
    clip-path: ellipse(75% 100% at 50% 100%);
    z-index: 2;
    pointer-events: none;
  }
  .hero-bg-pattern {
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04) 0%, transparent 45%);
  }
  .hero-grid {
    position: absolute; inset: 0; opacity: 0.06;
    background-image:
      linear-gradient(0deg, transparent calc(100% - 1px), #fff calc(100% - 1px)),
      linear-gradient(90deg, transparent calc(100% - 1px), #fff calc(100% - 1px));
    background-size: 80px 80px;
  }

  .hero-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 56px;
    height: 100%;
  }
  .hero-slide {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    padding: 60px 56px 120px;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
  }
  .hero-slide.active { opacity: 1; pointer-events: auto; }

  .hero-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
  }

  .hero-text-wrap { position: relative; }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    color: #fff;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0; transform: translateY(20px);
    transition: opacity .7s .3s ease, transform .7s .3s ease;
  }
  .hero-slide.active .hero-eyebrow { opacity: 1; transform: translateY(0); }
  .hero-eyebrow::before {
    content: ''; width: 32px; height: 1px; background: #fff; opacity: 0.6;
  }

  .hero-title {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: clamp(36px, 4.2vw, 56px);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    opacity: 0; transform: translateY(30px);
    transition: opacity .8s .5s ease, transform .8s .5s ease;
  }
  .hero-slide.active .hero-title { opacity: 1; transform: translateY(0); }
  .hero-title em { font-style: italic; font-weight: 500; color: rgba(255,255,255,0.8); }

  .hero-sub {
    font-size: 16px; color: rgba(255,255,255,0.7);
    line-height: 1.65;
    max-width: 500px; margin-bottom: 28px;
    opacity: 0; transform: translateY(20px);
    transition: opacity .7s .7s ease, transform .7s .7s ease;
  }
  .hero-slide.active .hero-sub { opacity: 1; transform: translateY(0); }

  .hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    transition: opacity .7s .9s ease, transform .7s .9s ease;
  }
  .hero-slide.active .hero-actions { opacity: 1; transform: translateY(0); }

  .btn-white {
    background: #fff; color: var(--navy);
    padding: 14px 28px; border-radius: var(--r);
    font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s ease;
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }

  .btn-outline-white {
    background: transparent; color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
    padding: 14px 28px; border-radius: var(--r);
    font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s ease;
  }
  .btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

  .hero-visual {
    position: relative;
    height: 340px;
    opacity: 0; transform: translateX(30px);
    transition: opacity 1s .4s ease, transform 1s .4s ease;
  }
  .hero-slide.active .hero-visual { opacity: 1; transform: translateX(0); }

  .hero-img-card {
    position: absolute;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }
  .hero-img-card.big {
    width: 75%; height: 90%; right: 8%; top: 5%;
    background: linear-gradient(135deg, #6A6EC5, #8A8ED9);
  }
  .hero-img-card.small {
    width: 42%; height: 42%; left: 0; bottom: 5%;
    background: linear-gradient(135deg, #3A3DA0, #5558B8);
    border: 4px solid var(--navy);
  }
  .hero-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); font-weight: 500;
  }

  /* Hero nav controls — moved to top area, above curve */
  .hero-controls {
    position: absolute;
    top: 32px; right: 80px;
    display: flex; align-items: center; gap: 16px;
    z-index: 10;
  }
  .hero-dots {
    display: flex; gap: 8px;
  }
  .hero-dot {
    width: 28px; height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
  }
  .hero-dot.active { background: #fff; width: 48px; }

  .hero-arrows {
    display: flex; gap: 8px;
  }
  .hero-arrow {
    width: 40px; height: 40px;
    border-radius: var(--r-pill);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s ease;
  }
  .hero-arrow:hover { background: rgba(255,255,255,0.2); transform: scale(1.05); border-color: rgba(255,255,255,0.4); }
  .hero-arrow svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
  .hero-counter {
    color: rgba(255,255,255,0.7);
    font-family: 'Fira Sans', sans-serif;
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.15em;
    min-width: 42px;
  }
  .hero-counter strong { color: #fff; font-weight: 700; }

  /* ══════ QUICK ACTION CARDS ══════ */
  .quick-actions {
    position: relative;
    margin-top: -40px;
    padding: 0 56px 40px;
    z-index: 20;
    background: var(--cream);
  }
  .quick-row {
    max-width: 1100px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .quick-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 28px;
    display: flex; align-items: center; gap: 20px;
    box-shadow: 0 20px 50px rgba(26,29,92,0.12);
    transition: all 0.35s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
  }
  .quick-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 0;
  }
  .quick-card:hover::before { transform: translateY(0); }
  .quick-card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(26,29,92,0.25); }
  .quick-card:hover .qc-title,
  .quick-card:hover .qc-sub { color: #fff; }
  .quick-card:hover .qc-icon { background: #fff; color: var(--navy); }
  .quick-card:hover .qc-arrow { color: #fff; transform: translateX(4px); }

  .qc-icon {
    width: 60px; height: 60px;
    border-radius: var(--r);
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    color: #fff; flex-shrink: 0;
    transition: all 0.35s ease;
    position: relative; z-index: 1;
  }
  .qc-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; }
  .qc-body { flex: 1; position: relative; z-index: 1; }
  .qc-title {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 18px; font-weight: 800;
    color: var(--navy); letter-spacing: -0.01em;
    transition: color 0.3s ease;
  }
  .qc-sub {
    font-size: 13px; color: var(--muted);
    margin-top: 4px;
    transition: color 0.3s ease;
  }
  .qc-arrow {
    color: var(--navy); font-size: 20px;
    transition: all 0.3s ease;
    position: relative; z-index: 1;
  }

  /* ══════ SECTION COMMONS ══════ */
  section { position: relative; }
  .section-label {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--navy);
    margin-bottom: 16px;
  }
  .section-label::before {
    content: ''; width: 28px; height: 1px; background: var(--navy);
  }
  .section-title {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 900; line-height: 1.1;
    color: var(--navy);
    letter-spacing: -0.015em;
  }
  .section-title em { font-style: italic; font-weight: 500; color: var(--muted); }

  /* ══════ ABOUT ══════ */
  #about {
    background: var(--cream);
    padding: 80px 56px 100px;
  }
  .about-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-visual { position: relative; }
  .about-img-main {
    width: 100%; aspect-ratio: 4/5;
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, #2A2D8E 0%, #5558B8 100%);
    overflow: hidden;
    position: relative;
  }
  .about-img-main .placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  }
  .about-img-sub {
    position: absolute;
    width: 48%; aspect-ratio: 1;
    bottom: -40px; right: -40px;
    background: #fff;
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: 0 20px 50px rgba(26,29,92,0.15);
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .about-img-sub .big-num {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 72px; font-weight: 900;
    color: var(--navy); line-height: 0.9;
    letter-spacing: -0.03em;
  }
  .about-img-sub .label {
    font-size: 13px; color: var(--muted);
    line-height: 1.4;
  }
  .about-img-sub .label strong {
    display: block;
    color: var(--navy); font-weight: 700;
    font-size: 14px; margin-bottom: 4px;
  }

  .about-text h2 { margin-bottom: 24px; }
  .about-text p {
    font-size: 16px; line-height: 1.75;
    color: var(--body);
    margin-bottom: 16px;
  }
  .about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .about-highlight {
    padding: 20px;
    background: #fff;
    border-radius: var(--r);
    border: 1px solid var(--line);
  }
  .about-highlight .val {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 32px; font-weight: 900;
    color: var(--navy); line-height: 1;
  }
  .about-highlight .key {
    font-size: 12px; color: var(--muted);
    margin-top: 6px;
  }

  /* ══════ BAŞKANDAN ══════ */
  #chairman {
    background: var(--navy);
    padding: 100px 56px;
    color: #fff;
    overflow: hidden;
  }
  .chairman-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
  }
  .chairman-photo {
    aspect-ratio: 4/5;
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, #3A3DA0, #5558B8);
    position: relative;
    overflow: hidden;
  }
  .chairman-photo .placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  }
  .chairman-text .section-label {
    color: rgba(255,255,255,0.7);
  }
  .chairman-text .section-label::before { background: rgba(255,255,255,0.5); }
  .chairman-text h2 { color: #fff; margin-bottom: 28px; }
  .chairman-quote {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 26px; font-weight: 400; font-style: italic;
    line-height: 1.4; color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    position: relative;
    padding-left: 28px;
    border-left: 3px solid rgba(255,255,255,0.4);
  }
  .chairman-body {
    font-size: 15px; line-height: 1.75;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
  }
  .chairman-sig {
    display: flex; align-items: center; gap: 16px;
  }
  .chairman-sig .line { width: 40px; height: 1px; background: rgba(255,255,255,0.4); }
  .chairman-sig .name {
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 800; font-size: 16px; color: #fff;
  }
  .chairman-sig .role {
    font-size: 12px; color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em; text-transform: uppercase;
  }

  /* ══════ HABERLER & ETKINLIKLER ══════ */
  #news {
    background: var(--cream);
    padding: 120px 56px;
  }
  .news-inner { max-width: 1400px; margin: 0 auto; }
  .news-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 60px;
  }
  .news-tabs { display: flex; gap: 8px; }
  .news-tab {
    padding: 10px 20px;
    background: transparent;
    color: var(--muted);
    font-family: 'Fira Sans', sans-serif;
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all 0.25s ease;
  }
  .news-tab:hover { color: var(--navy); border-color: var(--navy); }
  .news-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }

  .news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
  }
  .news-card {
    background: #fff;
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
  }
  .news-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(26,29,92,0.15); }
  .news-card:hover .news-img-inner { transform: scale(1.08); }

  .news-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
  }
  .news-card.featured .news-img { aspect-ratio: 5/4; }
  .news-img-inner {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #7577C8, #ABAEEC);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    transition: transform 0.6s ease;
  }
  .news-img .tag {
    position: absolute; top: 20px; left: 20px;
    padding: 6px 14px; border-radius: var(--r-pill);
    background: #fff; color: var(--navy);
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
  }
  .news-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
  .news-date {
    font-size: 12px; color: var(--muted);
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 12px; font-weight: 500;
  }
  .news-title {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 20px; font-weight: 800;
    color: var(--navy); letter-spacing: -0.01em;
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .news-card.featured .news-title { font-size: 26px; }
  .news-excerpt {
    font-size: 14px; line-height: 1.6;
    color: var(--body);
    margin-bottom: 20px; flex: 1;
  }
  .news-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--navy);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    transition: gap 0.3s ease;
  }
  .news-card:hover .news-link { gap: 14px; }
  .news-link svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

  /* ══════ ÜNLÜ MEZUNLAR ══════ */
  #alumni {
    background: #fff;
    padding: 120px 56px;
  }
  .alumni-inner { max-width: 1400px; margin: 0 auto; }
  .alumni-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 60px;
  }
  .alumni-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .alumni-card {
    aspect-ratio: 3/4;
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--navy);
  }
  .alumni-photo {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, #3A3DA0 0%, #1A1D5C 100%);
    position: relative;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.5s ease;
  }
  .alumni-card:hover .alumni-photo { transform: scale(1.05); }
  .alumni-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,29,92,0.95) 0%, rgba(26,29,92,0) 50%);
  }
  .alumni-initial {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 140px; font-weight: 900;
    color: rgba(255,255,255,0.1);
    letter-spacing: -0.05em;
  }
  .alumni-info {
    position: absolute; left: 24px; right: 24px; bottom: 24px;
    color: #fff; z-index: 2;
  }
  .alumni-info .name {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 22px; font-weight: 800;
    line-height: 1.1; letter-spacing: -0.01em;
  }
  .alumni-info .role {
    font-size: 12px; color: rgba(255,255,255,0.7);
    margin-top: 4px;
    letter-spacing: 0.05em;
  }
  .alumni-info .years {
    position: absolute; top: -220px; right: 0;
    background: #fff;
    color: var(--navy);
    padding: 6px 12px;
    border-radius: var(--r-pill);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em;
  }

  /* ══════ MENTORSHIP + CARD ══════ */
  #features {
    background: var(--cream);
    padding: 120px 56px;
  }
  .features-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .feature-block {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
  }
  .feature-block:hover { transform: translateY(-6px); }
  .feature-block.navy { background: var(--navy); color: #fff; }
  .feature-block.navy .fb-title { color: #fff; }
  .feature-block.navy .fb-body { color: rgba(255,255,255,0.7); }

  .fb-icon {
    width: 64px; height: 64px;
    border-radius: var(--r);
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    margin-bottom: 32px;
  }
  .feature-block.navy .fb-icon { background: rgba(255,255,255,0.1); color: #fff; }
  .fb-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; }

  .fb-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--navy);
    margin-bottom: 12px; opacity: 0.7;
  }
  .feature-block.navy .fb-eyebrow { color: rgba(255,255,255,0.7); }

  .fb-title {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 34px; font-weight: 900;
    color: var(--navy); letter-spacing: -0.015em;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .fb-body {
    font-size: 15px; line-height: 1.7;
    color: var(--body);
    margin-bottom: 32px;
  }
  .fb-link {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px;
    border-radius: var(--r);
    background: var(--navy); color: #fff;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .feature-block.navy .fb-link { background: #fff; color: var(--navy); }
  .fb-link:hover { transform: translateX(4px); }

  /* ══════ CTA ══════ */
  #cta {
    background: var(--cream);
    padding: 0 56px 120px;
  }
  .cta-inner {
    max-width: 1400px; margin: 0 auto;
    background: var(--navy);
    border-radius: var(--r-xl);
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .cta-inner::after {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
  }
  .cta-title {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 900; line-height: 1.1;
    color: #fff;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
    position: relative; z-index: 2;
  }
  .cta-title em { font-style: italic; font-weight: 500; opacity: 0.8; }
  .cta-sub {
    font-size: 16px; color: rgba(255,255,255,0.7);
    line-height: 1.7; max-width: 520px;
    position: relative; z-index: 2;
  }
  .cta-actions {
    display: flex; flex-direction: column; gap: 12px;
    position: relative; z-index: 2;
  }

  /* ══════ FOOTER ══════ */
  footer {
    background: var(--navy-deep);
    padding: 80px 56px 32px;
    color: rgba(255,255,255,0.6);
  }
  .footer-inner { max-width: 1400px; margin: 0 auto; }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand img {
    width: 72px; margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
  }
  .footer-brand h3 {
    font-family: 'Alegreya Sans', sans-serif;
    color: #fff; font-size: 18px; font-weight: 800;
    margin-bottom: 14px; max-width: 260px;
    line-height: 1.2;
  }
  .footer-brand p {
    font-size: 13px; line-height: 1.6;
    max-width: 280px;
  }
  .footer-col h4 {
    color: #fff; font-size: 12px; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
  }
  .footer-col ul a:hover { color: #fff; }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 32px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
  }
  .footer-social { display: flex; gap: 12px; }
  .footer-social a {
    width: 36px; height: 36px;
    border-radius: var(--r-pill);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s ease;
  }
  .footer-social a:hover { background: #fff; color: var(--navy-deep); transform: translateY(-2px); }
  .footer-social svg { width: 14px; height: 14px; fill: currentColor; }

  /* ══════ REVEAL ANIMATIONS ══════ */

  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }
  .d-1 { transition-delay: 0.1s; }
  .d-2 { transition-delay: 0.2s; }
  .d-3 { transition-delay: 0.3s; }
  .d-4 { transition-delay: 0.4s; }

  /* Reveal title chars */
  .split-title {
    display: inline-block;
  }
  .split-title .char, .split-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .split-title.visible .char, .split-title.visible .word {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 1100px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .about-inner, .chairman-inner, .features-inner, .cta-inner { grid-template-columns: 1fr; gap: 40px; }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .alumni-scroll { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 720px) {
    .top-header { grid-template-columns: auto auto; padding: 14px 20px; gap: 12px; }
    .social-row { display: none; }
    .top-actions > .btn-ghost { display: none; }
    .nav { overflow-x: auto; padding: 0 12px; }
    .nav-item > a { padding: 18px 14px; font-size: 11px; }
    .mega { display: none; }
    .hero { height: 420px; }
    .hero-slider, .hero-slide { padding: 0 24px; }
    #about, #chairman, #news, #alumni, #features { padding: 80px 20px; }
    #cta { padding: 0 20px 80px; }
    .quick-actions { padding: 0 20px; }
    .quick-row { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .alumni-scroll { grid-template-columns: 1fr; }
    footer { padding: 60px 20px 24px; }
    .footer-top { grid-template-columns: 1fr; }
    .cta-inner { padding: 48px 28px; }
  }

  /* ══════ SUBPAGE HERO (lightweight) ══════ */
  .page-hero {
    position: relative;
    background: var(--navy);
    color: #fff;
    padding: 72px 56px 120px;
    overflow: hidden;
  }
  .page-hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 80px;
    background: var(--cream);
    clip-path: ellipse(75% 100% at 50% 100%);
    z-index: 2;
    pointer-events: none;
  }
  .page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
  }
  .page-hero .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
  }
  .page-hero .breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .page-hero .breadcrumb a:hover { color: #fff; }
  .page-hero .breadcrumb .sep { opacity: 0.4; }
  .page-hero h1 {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: clamp(36px, 4.2vw, 56px);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -0.01em;
    max-width: 820px;
  }
  .page-hero h1 em {
    font-style: italic;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
  }
  .page-hero .lede {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 680px;
    margin-top: 20px;
  }

  /* ══════ SUBPAGE BODY ══════ */
  .page-body {
    background: var(--cream);
    padding: 20px 56px 100px;
    margin-top: -60px;
    position: relative;
    z-index: 3;
  }
  .page-body-inner {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--r-lg);
    padding: 56px 60px;
    box-shadow: 0 20px 60px rgba(26,29,92,0.08);
  }
  .page-body-inner.wide { max-width: 1200px; }
  .page-body h2 {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin: 40px 0 16px;
  }
  .page-body h2:first-child { margin-top: 0; }
  .page-body h3 {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin: 32px 0 12px;
  }
  .page-body p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--body);
    margin-bottom: 16px;
  }
  .page-body ul, .page-body ol {
    margin: 0 0 20px 20px;
    color: var(--body);
    font-size: 16px;
    line-height: 1.75;
  }
  .page-body li { margin-bottom: 6px; }
  .page-body .lead {
    font-size: 18px;
    color: var(--ink);
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 500;
  }
  .page-body blockquote {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 22px;
    font-style: italic;
    color: var(--navy);
    border-left: 3px solid var(--navy);
    padding: 8px 0 8px 24px;
    margin: 32px 0;
    line-height: 1.4;
  }

  /* Draft badge */
  .draft-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    border-radius: var(--r-pill);
    background: rgba(255,193,7,0.18);
    color: #B07E00;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .draft-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #FFC107;
  }

  /* Timeline (for Tarihçe) */
  .timeline {
    position: relative;
    padding-left: 32px;
    margin: 32px 0;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 8px; top: 8px; bottom: 8px;
    width: 2px;
    background: var(--line);
  }
  .timeline-item {
    position: relative;
    padding-bottom: 28px;
  }
  .timeline-item::before {
    content: '';
    position: absolute;
    left: -32px; top: 6px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--navy);
    border: 4px solid var(--cream);
    box-shadow: 0 0 0 2px var(--navy);
  }
  .timeline-year {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.01em;
    display: block;
    margin-bottom: 6px;
  }
  .timeline-body { color: var(--body); font-size: 15px; line-height: 1.7; }

  /* Chairman layout (page variant) */
  .chairman-page {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
  }
  .chairman-page .photo {
    aspect-ratio: 4/5;
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, #3A3DA0, #5558B8);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: sticky;
    top: 100px;
  }
  .chairman-page .sig-block {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex; align-items: center; gap: 16px;
  }
  .chairman-page .sig-block .line { width: 40px; height: 1px; background: var(--navy); }
  .chairman-page .sig-block strong {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    display: block;
  }
  .chairman-page .sig-block span {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* Contact grid */
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 28px 0 12px;
  }
  .contact-card {
    background: var(--cream);
    border-radius: var(--r);
    padding: 24px;
  }
  .contact-card h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 10px;
  }
  .contact-card p, .contact-card a {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.6;
    text-decoration: none;
    display: block;
  }
  .contact-card a:hover { color: var(--navy); text-decoration: underline; }

  /* Simple form (draft) */
  .draft-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 28px;
  }
  .draft-form .full { grid-column: 1 / -1; }
  .draft-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .draft-form input, .draft-form textarea, .draft-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    background: var(--cream);
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: border-color 0.2s ease;
  }
  .draft-form input:focus, .draft-form textarea:focus, .draft-form select:focus {
    outline: none;
    border-color: var(--navy);
    background: #fff;
  }
  .draft-form textarea { min-height: 120px; resize: vertical; }
  .draft-form button {
    padding: 14px 32px;
    border-radius: var(--r);
    background: var(--navy);
    color: #fff;
    border: 0;
    font-family: 'Fira Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    justify-self: start;
  }
  .draft-form button:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,40,118,0.25); }

  /* Burs amount cards */
  .burs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin: 28px 0;
  }
  .burs-card {
    background: var(--cream);
    border-radius: var(--r);
    padding: 24px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .burs-card:hover { border-color: var(--navy); transform: translateY(-4px); }
  .burs-card .amount {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.01em;
  }
  .burs-card .period {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  @media (max-width: 720px) {
    .page-hero { padding: 48px 20px 96px; }
    .page-body { padding: 20px 16px 64px; }
    .page-body-inner { padding: 32px 24px; }
    .draft-form { grid-template-columns: 1fr; }
    .chairman-page { grid-template-columns: 1fr; gap: 24px; }
    .chairman-page .photo { position: relative; top: 0; max-width: 220px; }
  }
