/* =========================================================================
   Eryetiş Balkanlar Eğitim Kurumları - Modern Stil
   Renk paleti: Kırmızı #CC2020, Koyu Mavi #1E3A8A, Teal Yeşil #407040
   ========================================================================= */

:root {
  --primary: #CC2020;
  --primary-dark: #a81818;
  --secondary: #1E3A8A;
  --secondary-dark: #16296b;
  --accent: #407040;
  --accent-dark: #2f5630;
  --white: #ffffff;
  --light: #f5f6f8;
  --light-2: #eef1f6;
  --text: #2b2f38;
  --text-soft: #5a6473;
  --border: #e4e8ef;
  --shadow-sm: 0 2px 8px rgba(30, 58, 138, 0.06);
  --shadow: 0 8px 30px rgba(30, 58, 138, 0.10);
  --shadow-lg: 0 18px 50px rgba(30, 58, 138, 0.16);
  --radius: 14px;
  --radius-sm: 9px;
  --gradient: linear-gradient(135deg, var(--secondary) 0%, #2b50b8 55%, var(--primary) 130%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #5a9657 100%);
  --gradient-secondary: linear-gradient(135deg, #16296b 0%, var(--secondary) 60%, #2b50b8 120%);
  --container: 1200px;
  --header-h: 96px;
  --font: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --transition: 0.32s cubic-bezier(.25,.8,.35,1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; overflow-x: hidden; }
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* ---------- Layout ---------- */
.container { width: 92%; max-width: var(--container); margin: 0 auto; }
.section { padding: 80px 0; }
.section--tight { padding: 56px 0; }
.bg-light { background: var(--light); }
.bg-soft { background: var(--light-2); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.section-head .eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--primary);
  padding: 6px 16px; border-radius: 50px; background: rgba(204,32,32,.08);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 800; color: var(--secondary); line-height: 1.2;
}
.section-head h2 span { color: var(--primary); }
.section-head p { color: var(--text-soft); margin-top: 14px; font-size: 1.04rem; }
.section-head .divider {
  width: 70px; height: 4px; border-radius: 4px; margin: 18px auto 0;
  background: var(--gradient-accent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px; border-radius: 50px; font-weight: 600;
  font-size: .96rem; cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 22px rgba(204,32,32,.28); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(204,32,32,.36); }
.btn-secondary { background: var(--secondary); color: #fff; box-shadow: 0 8px 22px rgba(30,58,138,.28); }
.btn-secondary:hover { background: var(--secondary-dark); transform: translateY(-3px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-3px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: #fff; color: var(--secondary); }
.btn-outline { background: transparent; color: var(--secondary); border-color: var(--secondary); }
.btn-outline:hover { background: var(--secondary); color: #fff; }

/* =========================================================================
   TOP BAR
   ========================================================================= */
.topbar {
  background: var(--secondary);
  color: rgba(255,255,255,.92);
  font-size: .85rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 42px; gap: 18px; }
.topbar a { color: rgba(255,255,255,.92); }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-left span, .topbar-left a { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 15px; height: 15px; fill: currentColor; opacity: .85; }
.topbar-social { display: flex; gap: 8px; align-items: center; }
.topbar-social a {
  width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); border-radius: 50%; transition: var(--transition);
}
.topbar-social a:hover { background: var(--primary); transform: translateY(-2px); }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 80px; gap: 18px; }
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 58px; width: auto; transition: var(--transition); }
.site-header.scrolled .nav-logo img { height: 50px; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 14px 14px; font-weight: 600; font-size: .92rem;
  color: var(--text); border-radius: 8px; position: relative;
}
.nav-menu > li > a .caret { width: 11px; height: 11px; fill: currentColor; transition: transform var(--transition); opacity: .7; }
.nav-menu > li > a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 8px; height: 2.5px;
  background: var(--primary); border-radius: 3px; transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-menu > li > a:hover, .nav-menu > li.active > a { color: var(--primary); }
.nav-menu > li > a:hover::after, .nav-menu > li.active > a::after { transform: scaleX(1); }
.nav-menu > li:hover > a .caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 252px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: var(--transition); border-top: 3px solid var(--primary); z-index: 50;
}
.nav-menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: flex; align-items: center; gap: 9px; padding: 11px 14px;
  border-radius: 8px; font-size: .9rem; font-weight: 500; color: var(--text-soft);
}
.dropdown li a:hover { background: var(--light); color: var(--primary); padding-left: 20px; }
.dropdown li a .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.nav-toggle {
  display: none; width: 46px; height: 46px; border: none; background: var(--light);
  border-radius: 10px; cursor: pointer; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2.5px; background: var(--secondary); border-radius: 3px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-overlay { display: none; }

/* =========================================================================
   HERO SLIDER
   ========================================================================= */
.hero { position: relative; height: clamp(440px, 78vh, 720px); overflow: hidden; background: var(--secondary); }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1.1s ease, transform 7s ease;
  background-size: cover; background-position: center; transform: scale(1.08);
}
.hero-slide.active { opacity: 1; visibility: visible; transform: scale(1); z-index: 2; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,28,75,.92) 0%, rgba(30,58,138,.78) 45%, rgba(204,32,32,.42) 100%);
}
.hero-content {
  position: relative; z-index: 5; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff; max-width: 720px;
}
.hero-content .badge {
  display: inline-flex; align-items: center; gap: 9px; width: fit-content;
  background: rgba(255,255,255,.14); backdrop-filter: blur(6px);
  padding: 8px 18px; border-radius: 50px; font-size: .82rem; font-weight: 600;
  letter-spacing: 1px; margin-bottom: 22px; border: 1px solid rgba(255,255,255,.22);
}
.hero-content .badge .pulse { width: 9px; height: 9px; border-radius: 50%; background: #ff5c5c; box-shadow: 0 0 0 0 rgba(255,92,92,.7); animation: pulse 2s infinite; }
.hero-content h1 { font-size: clamp(2rem, 5.2vw, 3.7rem); font-weight: 800; line-height: 1.12; margin-bottom: 18px; }
.hero-content h1 span { color: #ffd24d; }
.hero-content p { font-size: clamp(1rem, 2vw, 1.22rem); max-width: 560px; color: rgba(255,255,255,.92); margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-arrows { position: absolute; z-index: 8; bottom: 34px; right: 5%; display: flex; gap: 12px; }
.hero-arrow {
  width: 50px; height: 50px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.12); color: #fff; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: var(--transition); backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--primary); border-color: var(--primary); }
.hero-arrow svg { width: 20px; height: 20px; fill: currentColor; }
.hero-dots { position: absolute; z-index: 8; bottom: 34px; left: 5%; display: flex; gap: 10px; }
.hero-dots button { width: 13px; height: 13px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; transition: var(--transition); padding: 0; }
.hero-dots button.active { background: #fff; width: 34px; border-radius: 7px; }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,92,92,.7);} 70% { box-shadow: 0 0 0 12px rgba(255,92,92,0);} 100% { box-shadow: 0 0 0 0 rgba(255,92,92,0);} }

/* =========================================================================
   QUICK FEATURE STRIP
   ========================================================================= */
.feature-strip { margin-top: -64px; position: relative; z-index: 20; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow);
  text-align: center; transition: var(--transition); border-bottom: 4px solid transparent;
}
.feature-card:hover { transform: translateY(-8px); border-bottom-color: var(--primary); box-shadow: var(--shadow-lg); }
.feature-card .icon {
  width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.feature-card .icon svg { width: 30px; height: 30px; fill: currentColor; }
.feature-card:nth-child(1) .icon { background: var(--gradient); }
.feature-card:nth-child(2) .icon { background: var(--gradient-accent); }
.feature-card:nth-child(3) .icon { background: linear-gradient(135deg, var(--primary), #e85d5d); }
.feature-card:nth-child(4) .icon { background: linear-gradient(135deg, #5b3a8a, var(--secondary)); }
.feature-card h3 { font-size: 1.08rem; color: var(--secondary); margin-bottom: 6px; }
.feature-card p { font-size: .9rem; color: var(--text-soft); }

/* =========================================================================
   ABOUT / INTRO
   ========================================================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.about-media .badge-float {
  position: absolute; bottom: -26px; right: -10px; background: var(--gradient);
  color: #fff; padding: 22px 26px; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-media .badge-float strong { font-size: 2rem; display: block; line-height: 1; }
.about-media .badge-float span { font-size: .82rem; opacity: .9; }
.about-text .eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--primary); margin-bottom: 12px;
}
.about-text h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); color: var(--secondary); font-weight: 800; line-height: 1.2; margin-bottom: 18px; }
.about-text > p { color: var(--text-soft); margin-bottom: 16px; }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 30px; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; font-size: .94rem; }
.about-list li svg { width: 22px; height: 22px; fill: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* =========================================================================
   SCHOOL CARDS
   ========================================================================= */
.school-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.school-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); border: 1px solid var(--border); display: flex; flex-direction: column;
}
.school-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.school-card-media { position: relative; height: 190px; overflow: hidden; }
.school-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.school-card:hover .school-card-media img { transform: scale(1.08); }
.school-card-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,28,75,.55), transparent 55%); }
.school-card-logo {
  position: absolute; bottom: -26px; left: 22px; width: 60px; height: 60px; border-radius: 14px;
  background: #fff; box-shadow: var(--shadow); padding: 7px; z-index: 3;
}
.school-card-logo img { width: 100%; height: 100%; object-fit: contain; }
.school-card-body { padding: 36px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.school-card-body h3 { font-size: 1.05rem; color: var(--secondary); line-height: 1.35; margin-bottom: 14px; min-height: 56px; }
.school-meta { display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.school-meta li { display: flex; align-items: flex-start; gap: 10px; font-size: .87rem; color: var(--text-soft); }
.school-meta svg { width: 17px; height: 17px; fill: var(--primary); flex-shrink: 0; margin-top: 3px; }
.school-card-foot { margin-top: auto; display: flex; gap: 10px; align-items: center; }
.school-card-foot .btn { padding: 10px 18px; font-size: .85rem; flex: 1; justify-content: center; }
.school-qr { width: 52px; height: 52px; border-radius: 9px; border: 1px solid var(--border); padding: 4px; background:#fff; }
.school-qr img { width: 100%; height: 100%; object-fit: contain; }

/* =========================================================================
   STATS
   ========================================================================= */
.stats { background: var(--gradient); position: relative; overflow: hidden; }
.stats::before, .stats::after {
  content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,.06);
}
.stats::before { width: 340px; height: 340px; top: -120px; right: -80px; }
.stats::after { width: 260px; height: 260px; bottom: -120px; left: -60px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 2; }
.stat { text-align: center; color: #fff; }
.stat .num { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1; }
.stat .num .suffix { color: #ffd24d; }
.stat .lbl { margin-top: 10px; font-size: .98rem; opacity: .9; font-weight: 500; }
.stat .ico { width: 48px; height: 48px; margin: 0 auto 14px; display:flex;align-items:center;justify-content:center; background: rgba(255,255,255,.14); border-radius: 14px; }
.stat .ico svg { width: 26px; height: 26px; fill: #fff; }

/* =========================================================================
   NEWS / ANNOUNCEMENTS
   ========================================================================= */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); border: 1px solid var(--border);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-media { height: 200px; overflow: hidden; position: relative; }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.news-card:hover .news-media img { transform: scale(1.07); }
.news-cat {
  position: absolute; top: 14px; left: 14px; background: var(--primary); color: #fff;
  font-size: .72rem; font-weight: 700; padding: 5px 13px; border-radius: 50px; letter-spacing: .5px;
}
.news-body { padding: 22px; }
.news-date { font-size: .8rem; color: var(--text-soft); display: flex; align-items: center; gap: 7px; margin-bottom: 10px; }
.news-date svg { width: 15px; height: 15px; fill: var(--accent); }
.news-body h3 { font-size: 1.08rem; color: var(--secondary); line-height: 1.4; margin-bottom: 10px; }
.news-body p { font-size: .9rem; color: var(--text-soft); margin-bottom: 14px; }
.news-link { font-weight: 600; color: var(--primary); font-size: .88rem; display: inline-flex; align-items: center; gap: 6px; }
.news-link svg { width: 16px; height: 16px; fill: currentColor; transition: var(--transition); }
.news-card:hover .news-link svg { transform: translateX(4px); }

/* =========================================================================
   CTA STRIP
   ========================================================================= */
.cta-band {
  background: var(--gradient); border-radius: 22px; padding: 52px 44px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.cta-band::after { content:''; position:absolute; width:300px;height:300px;border-radius:50%;background:rgba(255,255,255,.07); right:-90px; top:-90px; }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.2; position: relative; z-index:2; }
.cta-band p { opacity: .92; margin-top: 8px; position: relative; z-index:2; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index:2; }

/* =========================================================================
   QR ACCESS SECTION
   ========================================================================= */
.qr-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.qr-item { background:#fff; border-radius: var(--radius); padding: 20px; text-align:center; box-shadow: var(--shadow-sm); border:1px solid var(--border); transition: var(--transition); }
.qr-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.qr-item img { width: 130px; height: 130px; object-fit: contain; margin: 0 auto 12px; border-radius: 10px; }
.qr-item h4 { font-size: .9rem; color: var(--secondary); }

/* =========================================================================
   PAGE HERO (interior pages)
   ========================================================================= */
.page-hero { position: relative; padding: 76px 0; background-size: cover; background-position: center; }
.page-hero::after { content:''; position:absolute; inset:0; background: linear-gradient(100deg, rgba(15,28,75,.93), rgba(30,58,138,.82) 60%, rgba(204,32,32,.55)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color:#fff; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
.breadcrumb { display: flex; align-items: center; gap: 9px; margin-top: 14px; color: rgba(255,255,255,.85); font-size: .9rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .6; }
.breadcrumb .current { color: #ffd24d; font-weight: 600; }

/* =========================================================================
   CONTENT / ARTICLE
   ========================================================================= */
.content-wrap { max-width: 960px; margin: 0 auto; }
.prose { font-size: 1.04rem; color: var(--text); }
.prose p { margin-bottom: 18px; color: var(--text-soft); }
.prose h2 { font-size: 1.7rem; color: var(--secondary); margin: 38px 0 16px; font-weight: 800; }
.prose h3 { font-size: 1.3rem; color: var(--primary); margin: 28px 0 12px; font-weight: 700; }
.prose .lead { font-size: 1.18rem; color: var(--text); font-weight: 500; border-left: 4px solid var(--primary); padding-left: 20px; margin-bottom: 26px; }
.prose ul.ticks { margin: 18px 0 24px; display: grid; gap: 12px; }
.prose ul.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-soft); }
.prose ul.ticks li svg { width: 22px; height: 22px; fill: var(--accent); flex-shrink: 0; margin-top: 2px; }

.callout {
  background: var(--light); border-radius: var(--radius); padding: 30px 34px; margin: 30px 0;
  border-left: 5px solid var(--accent);
}
.callout.quote { text-align: center; border: none; background: var(--gradient); color: #fff; padding: 44px; }
.callout.quote .q { font-size: 1.5rem; font-weight: 800; font-style: italic; }
.callout.quote .a { margin-top: 10px; opacity: .9; }

/* Cards generic */
.card-grid { display: grid; gap: 26px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.info-card {
  background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: var(--transition); border-top: 4px solid var(--primary);
}
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.info-card .ic { width: 56px; height: 56px; border-radius: 16px; background: var(--gradient); display:flex;align-items:center;justify-content:center; margin-bottom: 18px; }
.info-card .ic svg { width: 28px; height: 28px; fill:#fff; }
.info-card h3 { color: var(--secondary); font-size: 1.2rem; margin-bottom: 10px; }
.info-card p { color: var(--text-soft); font-size: .95rem; }
.info-card.accent { border-top-color: var(--accent); }
.info-card.accent .ic { background: var(--gradient-accent); }

/* People / founders */
.people-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.person-card {
  background:#fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border:1px solid var(--border); display:flex; gap: 22px; padding: 24px; transition: var(--transition);
}
.person-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.person-photo { width: 130px; height: 160px; border-radius: 12px; object-fit: cover; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.person-info h3 { color: var(--secondary); font-size: 1.18rem; }
.person-info .role { color: var(--primary); font-weight: 600; font-size: .9rem; margin: 4px 0 12px; display:block; }
.person-info ul { display: grid; gap: 6px; }
.person-info ul li { font-size: .86rem; color: var(--text-soft); display:flex; gap:8px; align-items:flex-start; }
.person-info ul li::before { content:''; width:6px;height:6px;border-radius:50%;background:var(--accent); margin-top:8px; flex-shrink:0; }
.person-info .mail { display:inline-flex; align-items:center; gap:7px; margin-top:12px; font-size:.85rem; color: var(--secondary); font-weight:600; }
.person-info .mail svg { width:16px;height:16px;fill:var(--primary); }

/* Achievements */
.ach-cat { margin-bottom: 40px; }
.ach-cat-head { display:flex; align-items:center; gap:14px; margin-bottom: 22px; }
.ach-cat-head .ic { width: 54px; height:54px; border-radius:14px; background: var(--gradient); display:flex;align-items:center;justify-content:center; flex-shrink:0; }
.ach-cat-head .ic svg { width:28px;height:28px;fill:#fff; }
.ach-cat-head h3 { color: var(--secondary); font-size: 1.5rem; font-weight: 800; }
.ach-cat-head .line { flex:1; height:2px; background: var(--border); }
.ach-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.ach-item {
  background:#fff; border:1px solid var(--border); border-radius: 12px; padding: 16px 18px;
  display:flex; gap: 12px; align-items:flex-start; transition: var(--transition); box-shadow: var(--shadow-sm);
}
.ach-item:hover { transform: translateX(5px); border-left: 4px solid var(--primary); }
.ach-item .medal { width: 34px; height:34px; border-radius:50%; background: rgba(204,32,32,.1); display:flex;align-items:center;justify-content:center; flex-shrink:0; }
.ach-item .medal svg { width:20px;height:20px;fill:var(--primary); }
.ach-item span { font-size: .93rem; color: var(--text); font-weight: 500; }

/* Magazine cards */
.mag-card { text-align:center; }
.mag-cover {
  position: relative; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow);
  aspect-ratio: 3/4; display:flex; align-items:center; justify-content:center; color:#fff;
  background: var(--gradient); transition: var(--transition);
}
.mag-card:hover .mag-cover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.mag-cover .mag-inner { padding: 30px; }
.mag-cover .mag-inner svg { width: 64px; height:64px; fill: rgba(255,255,255,.9); margin-bottom: 16px; }
.mag-cover h3 { font-size: 1.3rem; font-weight: 800; }
.mag-cover .issue { margin-top: 8px; opacity:.9; font-size:.95rem; }
.mag-card > h4 { margin-top: 16px; color: var(--secondary); font-size: 1.05rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .ov { position:absolute; inset:0; background: linear-gradient(to top, rgba(15,28,75,.75), transparent 60%); opacity:0; transition: var(--transition); display:flex; align-items:flex-end; padding: 18px; color:#fff; font-weight:600; }
.gallery-item:hover .ov { opacity: 1; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-card { background:#fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); border:1px solid var(--border); display:flex; gap:16px; align-items:flex-start; transition: var(--transition); margin-bottom: 18px; }
.contact-info-card:hover { box-shadow: var(--shadow); }
.contact-info-card .ic { width: 50px;height:50px;border-radius:14px;background:var(--gradient);display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.contact-info-card .ic svg { width:24px;height:24px;fill:#fff; }
.contact-info-card h4 { color: var(--secondary); margin-bottom: 5px; font-size: 1.02rem; }
.contact-info-card p, .contact-info-card a { color: var(--text-soft); font-size: .92rem; }
.contact-info-card a:hover { color: var(--primary); }
.form-control { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-family: inherit; font-size: .95rem; margin-bottom: 16px; transition: var(--transition); background: var(--light); }
.form-control:focus { outline: none; border-color: var(--secondary); background:#fff; box-shadow: 0 0 0 4px rgba(30,58,138,.08); }
textarea.form-control { resize: vertical; min-height: 130px; }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border:1px solid var(--border); }
.map-frame iframe { width: 100%; height: 420px; border: 0; display:block; }

/* School list table cards (okullarimiz / iletisim) */
.contact-school-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 22px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: #0f1c4b; color: rgba(255,255,255,.78); padding-top: 70px; position: relative; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer-col h4 { color:#fff; font-size: 1.1rem; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content:''; position:absolute; left:0; bottom:0; width: 42px; height:3px; background: var(--primary); border-radius:3px; }
.footer-about img { height: 64px; background:#fff; padding: 9px 12px; border-radius: 10px; margin-bottom: 18px; }
.footer-about p { font-size: .9rem; line-height: 1.8; }
.footer-social { display:flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height:40px; border-radius:50%; background: rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-social svg { width: 18px; height:18px; fill:#fff; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: .92rem; display:inline-flex; align-items:center; gap: 9px; }
.footer-links a::before { content:''; width:6px;height:6px;border-radius:50%; background: var(--accent); transition: var(--transition); }
.footer-links a:hover { color:#fff; padding-left: 5px; }
.footer-contact li { display:flex; gap: 12px; align-items:flex-start; margin-bottom: 16px; font-size: .9rem; }
.footer-contact svg { width: 19px; height:19px; fill: var(--primary); flex-shrink:0; margin-top:3px; }
.footer-contact a:hover { color:#fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display:flex; justify-content: space-between; align-items:center; gap: 16px; flex-wrap: wrap; font-size: .85rem; }
.footer-bottom a:hover { color:#fff; }

/* =========================================================================
   FLOATING BUTTONS + BACK TO TOP
   ========================================================================= */
.floaters { position: fixed; right: 22px; bottom: 24px; z-index: 900; display: flex; flex-direction: column; gap: 14px; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-lg); color:#fff; transition: var(--transition); position: relative; }
.float-btn svg { width: 28px; height:28px; fill:#fff; }
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25D366; }
.float-tel { background: var(--secondary); }
.float-btn .tip { position:absolute; right: 70px; top:50%; transform: translateY(-50%); background:#fff; color: var(--text); padding: 7px 14px; border-radius: 8px; font-size:.82rem; font-weight:600; white-space: nowrap; box-shadow: var(--shadow); opacity:0; visibility:hidden; transition: var(--transition); }
.float-btn:hover .tip { opacity:1; visibility:visible; right: 66px; }
.float-tel .pulse-ring, .float-wa .pulse-ring { position:absolute; inset:0; border-radius:50%; animation: floatpulse 2.2s infinite; }
.float-wa .pulse-ring { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
.float-tel .pulse-ring { box-shadow: 0 0 0 0 rgba(30,58,138,.5); }
@keyframes floatpulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);} 70%{box-shadow:0 0 0 14px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }

.back-top { position: fixed; right: 22px; bottom: 100px; width: 50px; height:50px; border-radius: 14px; background: var(--primary); color:#fff; display:flex; align-items:center;justify-content:center; cursor:pointer; opacity:0; visibility:hidden; transform: translateY(15px); transition: var(--transition); z-index: 899; box-shadow: var(--shadow); border:none; }
.back-top.show { opacity:1; visibility:visible; transform: translateY(0); }
.back-top:hover { background: var(--primary-dark); }
.back-top svg { width: 24px; height:24px; fill:#fff; }

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .school-grid, .news-grid, .card-grid.cols-3 { grid-template-columns: repeat(2,1fr); }
  .qr-grid { grid-template-columns: repeat(3,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  /* İletişim butonu mobilde sadece ikon */
  .nav-cta .btn-text { display: none; }
  .nav-cta .btn-primary { width: 44px; height: 44px; padding: 0; justify-content: center; border-radius: 50%; }
  .nav-cta .btn-primary svg { width: 20px; height: 20px; }
}

@media (max-width: 900px) {
  /* Logo küçült + hamburger menüye alan bırak */
  .nav-logo img { height: 46px; }
  .site-header.scrolled .nav-logo img { height: 42px; }
  .nav-cta { gap: 8px; }
  .nav-toggle { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: min(360px, 85vw); height: 100vh;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: 90px 22px 30px; box-shadow: var(--shadow-lg); transition: right .4s ease;
    overflow-y: auto; z-index: 1100;
  }
  .nav-menu.open { right: 0; }
  .nav-menu > li > a { padding: 14px 6px; min-height: 48px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); font-size: 1.02rem; }
  .nav-menu > li > a::after { display: none; }
  .dropdown li a { min-height: 44px; align-items: center; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border-top: none; padding: 0 0 8px 14px; max-height: 0; overflow: hidden;
    transition: max-height .35s ease; border-left: 2px solid var(--light-2);
  }
  .nav-menu > li.sub-open .dropdown { max-height: 600px; }
  .nav-menu > li:hover .dropdown { opacity:1; visibility:visible; }
  .nav-overlay { display: block; position: fixed; inset: 0; background: rgba(15,28,75,.5); opacity:0; visibility:hidden; transition: var(--transition); z-index: 1050; }
  .nav-overlay.show { opacity:1; visibility:visible; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-list { grid-template-columns: 1fr; }
  .people-grid, .contact-school-grid { grid-template-columns: 1fr; }
  .ach-list { grid-template-columns: 1fr; }
  .about-media .badge-float { right: 16px; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .feature-grid, .school-grid, .news-grid, .qr-grid, .stats-grid,
  .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4, .gallery-grid { grid-template-columns: 1fr; }
  .topbar-left { gap: 12px; font-size: .78rem; }
  .topbar .hide-sm { display: none; }
  .feature-strip { margin-top: 30px; }
  .cta-band { padding: 36px 24px; text-align: center; justify-content: center; }
  .cta-band .cta-actions { justify-content: center; }
  .person-card { flex-direction: column; }
  .person-photo { width: 100%; height: 240px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-dots { left: 50%; transform: translateX(-50%); gap: 14px; }
  /* Slider noktaları: görünür 20px + min 44x44 dokunma alanı */
  .hero-dots button { width: 20px; height: 20px; position: relative; }
  .hero-dots button::before { content: ""; position: absolute; top: -12px; left: -12px; right: -12px; bottom: -12px; }
  .hero-dots button.active { width: 44px; border-radius: 10px; }
  .hero-arrows { display: none; }
  body { font-size: 16px; }
  .form-control { font-size: 16px; }
}

@media (max-width: 420px) {
  .qr-item img { width: 110px; height: 110px; }
}
