/* ============================================================
   ERZURUM SINAV KOLEJİ — ÖN KAYIT LANDING PAGE  (v3)
   Tasarım dili: liquid glass + modern minimal
   Kurumsal renk: #005178 · Vurgu: kırmızı pill CTA
   Mobil öncelikli · framework'süz.
   ============================================================ */

:root {
  --brand: #005178;          /* Kurumsal ana renk */
  --brand-deep: #003b57;
  --brand-ink: #0e2a3a;      /* Başlık metni */
  --red: #e03a2f;            /* Birincil CTA kırmızısı */
  --red-dark: #c22c22;
  --ink: #22303b;            /* Ana metin */
  --muted: #5c6b77;          /* İkincil metin */
  --line: #e4eaef;
  --bg: #fbfcfd;
  --bg-soft: #f2f6f9;        /* Yumuşak bölüm zemini */

  /* Tint paleti (güven kartları / rozetler) */
  --tint-blue: #e3eff6;   --tint-blue-ink: #005178;
  --tint-sand: #f9f0e3;   --tint-sand-ink: #9a6a1f;
  --tint-mint: #e6f4ec;   --tint-mint-ink: #1f7a4d;
  --tint-lilac: #eeecf9;  --tint-lilac-ink: #5b4fa8;

  /* Liquid glass */
  --glass: rgba(255, 255, 255, .58);
  --glass-border: rgba(255, 255, 255, .75);
  --glass-dark: rgba(255, 255, 255, .12);
  --glass-dark-border: rgba(255, 255, 255, .28);
  --blur: saturate(1.6) blur(18px);

  --radius: 22px;            /* Kart köşeleri */
  --radius-sm: 14px;
  --pill: 999px;             /* Buton köşeleri */
  --shadow: 0 10px 34px rgba(0, 59, 87, .10);
  --shadow-soft: 0 4px 18px rgba(0, 59, 87, .07);
  --bar-h: 64px;             /* Mobil alt bar yüksekliği */
}

/* ---------- Reset / taban ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); }
h1, h2, h3 { font-weight: 800; letter-spacing: -0.015em; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.section-brand {
  background:
    radial-gradient(900px 480px at 90% -10%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(160deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
}
.section-title { font-size: clamp(1.6rem, 3.2vw, 2.3rem); line-height: 1.18; margin: 0 0 16px; color: var(--brand-ink); }
.section-brand .section-title { color: #fff; }
.section-sub { color: var(--muted); max-width: 620px; margin: 0 0 40px; font-size: 1.02rem; }
.lead-text { color: var(--muted); font-size: 1.05rem; margin: 0 0 24px; max-width: 540px; }

/* Kicker */
.kicker {
  font-size: .76rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--brand); margin: 0 0 14px;
}
.kicker-light { color: rgba(255,255,255,.75); }

/* Metin linki */
.text-link {
  display: inline-block; background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; font-weight: 800; font-size: .95rem; color: var(--brand);
  text-decoration: none; transition: color .15s ease;
}
.text-link:hover, .text-link:focus-visible { color: var(--red); }

/* ---------- Butonlar (pill) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--pill);
  border: 1px solid transparent;
  font-family: inherit; font-size: .98rem; font-weight: 700; line-height: 1.2;
  text-decoration: none; cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, transform .12s ease, box-shadow .18s ease;
}
.btn:active { transform: scale(.98); }
.btn .ico { width: 19px; height: 19px; fill: currentColor; flex: none; }
.ico-wa { fill: #22b358 !important; }

/* Kırmızı oval birincil CTA */
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 8px 22px rgba(224, 58, 47, .32);
}
.btn-primary:hover, .btn-primary:focus-visible { background: var(--red-dark); box-shadow: 0 10px 26px rgba(224, 58, 47, .4); }

/* Glass buton — açık zemin */
.btn-glass {
  background: var(--glass); color: var(--brand-ink);
  border-color: var(--glass-border);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  box-shadow: var(--shadow-soft);
}
.btn-glass:hover, .btn-glass:focus-visible { background: rgba(255,255,255,.82); }

/* Glass buton — koyu zemin */
.btn-glass-dark {
  background: var(--glass-dark); color: #fff;
  border-color: var(--glass-dark-border);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
}
.btn-glass-dark:hover, .btn-glass-dark:focus-visible { background: rgba(255,255,255,.22); }

.btn-outline { background: transparent; color: var(--brand); border-color: #c2d2dc; }
.btn-outline:hover, .btn-outline:focus-visible { border-color: var(--brand); }
.btn-sm { min-height: 44px; padding: 10px 20px; font-size: .92rem; }
.btn-lg { min-height: 58px; font-size: 1.02rem; }
.btn-block { width: 100%; }
:focus-visible { outline: 3px solid #7ab8d9; outline-offset: 2px; }

/* Glass rozet / chip */
.glass-chip {
  display: inline-flex; align-items: center;
  padding: 8px 14px; border-radius: var(--pill);
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  color: var(--brand-ink); font-size: .8rem; font-weight: 700; letter-spacing: .01em;
  box-shadow: var(--shadow-soft);
}

/* ---------- Header (glass, #005178) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0, 81, 120, .88);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.header-inner { display: flex; align-items: center; gap: 28px; min-height: 86px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 62px; width: auto; }
@media (max-width: 699px) { .brand-logo { height: 52px; } }
.header-nav { display: none; gap: 28px; }
.header-nav a {
  text-decoration: none; color: rgba(255,255,255,.88);
  font-size: .88rem; font-weight: 600; letter-spacing: .03em;
}
.header-nav a:hover { color: #fff; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: none; text-decoration: none; color: #fff;
  font-weight: 800; font-size: .95rem;
}
.header-phone:hover { color: rgba(255,255,255,.8); }

@media (min-width: 700px)  { .header-phone { display: inline; } }
@media (min-width: 980px)  { .header-nav { display: flex; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(800px 420px at 12% -8%, rgba(0, 81, 120, .10), transparent 60%),
    linear-gradient(175deg, #e8f2f8 0%, #fbfcfd 72%);
  padding: 76px 0 92px;
}
/* Yumuşak renk blobları (liquid hissi) */
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.hero-blob-a { width: 520px; height: 520px; top: -180px; right: -120px; background: rgba(0, 81, 120, .18); }
.hero-blob-b { width: 400px; height: 400px; bottom: -200px; left: -130px; background: rgba(224, 58, 47, .09); }
/* İnce halka deseni — sağ üst */
.hero-rings {
  position: absolute; width: 560px; height: 560px;
  top: -180px; right: -140px;
  color: rgba(0, 81, 120, .12); pointer-events: none;
}

.hero-grid { position: relative; display: grid; gap: 52px; align-items: center; }

/* Kicker: canlı nokta içeren glass chip */
.hero-kicker { margin: 0 0 22px; gap: 8px; font-size: .82rem; }
.hero-kicker .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 4px rgba(224, 58, 47, .15);
}

.hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.3rem); line-height: 1.08;
  margin: 0 0 18px; color: var(--brand-ink); letter-spacing: -0.028em;
}
/* Gradyan vurgulu satır */
.hero h1 .grad {
  background: linear-gradient(92deg, var(--brand) 20%, #2a8ab8 60%, var(--brand) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub { color: var(--muted); font-size: 1.06rem; margin: 0 0 30px; max-width: 540px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Kademe chip'leri (ortalanmış) */
.hero-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 26px; }
.hero-tag {
  padding: 7px 16px; border-radius: var(--pill);
  font-size: .82rem; font-weight: 800; letter-spacing: .01em;
}

/* Kolaj */
.hero-media { position: relative; padding-bottom: 56px; }
.hero-img-main {
  border-radius: 28px; width: 88%; margin-left: auto; object-fit: cover;
  aspect-ratio: 4 / 3;              /* Kaynak görsel oranından bağımsız sabit çerçeve */
  box-shadow: var(--shadow);
}
.hero-img-small {
  position: absolute; bottom: 0; left: 0;
  width: 44%; border-radius: 20px; object-fit: cover;
  aspect-ratio: 4 / 3;
  border: 5px solid #fff; box-shadow: var(--shadow);
  transform: rotate(-3deg);
  z-index: 2;
}
/* Üçüncü görsel: havuz kartı — sol üstte, hafif ters açıyla */
.hero-img-pool {
  position: absolute; top: 10%; left: -2%;
  width: 40%; border-radius: 20px; object-fit: cover;
  aspect-ratio: 4 / 3;
  border: 5px solid #fff; box-shadow: var(--shadow);
  transform: rotate(2.5deg);
  z-index: 2;
}
.chip-top { position: absolute; top: 16px; right: 16px; }
.chip-bottom { position: absolute; bottom: 16px; right: 16px; }

/* Kolaj üzerindeki glass play butonu */
.hero-play {
  position: absolute; right: 6%; bottom: 22px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px 10px 12px; border-radius: var(--pill); cursor: pointer;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  box-shadow: var(--shadow-soft);
  font-family: inherit; font-size: .88rem; font-weight: 800; color: var(--brand-ink);
  transition: transform .15s ease, background-color .18s ease;
}
.hero-play:hover { background: rgba(255,255,255,.85); transform: scale(1.03); }
.hero-play svg {
  width: 34px; height: 34px; fill: #fff; flex: none;
  background: var(--red); border-radius: 50%; padding: 9px;
  box-shadow: 0 4px 12px rgba(224, 58, 47, .35);
}

@media (max-width: 699px) {
  .hero { padding: 48px 0 64px; }
  .hero-ctas .btn-primary { flex: 1 1 100%; }
  .hero-ctas .btn-glass { flex: 1 1 calc(50% - 6px); }
  .hero-rings { width: 380px; height: 380px; top: -140px; right: -120px; }
  .hero-media { padding-bottom: 44px; }
  .hero-img-small { width: 48%; }
  .hero-img-pool { width: 44%; top: 8%; border-width: 4px; }
  .hero-play { right: 4%; bottom: 12px; }
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.02fr .98fr; gap: 72px; } }

/* ---------- Hızlı güven kartları (tint'li) ---------- */
.trust { padding: 26px 0 0; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.trust-card {
  display: flex; align-items: center; gap: 14px;
  border-radius: var(--radius-sm); padding: 18px 18px;
}
.trust-card p { margin: 0; font-weight: 700; font-size: .9rem; line-height: 1.4; }
.trust-ico-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: rgba(255,255,255,.65);
}
.trust-ico { width: 22px; height: 22px; }

/* Tint varyantları */
.tint-blue  { background: var(--tint-blue); }
.tint-blue  .trust-ico, .tint-blue  p { fill: var(--tint-blue-ink); color: var(--tint-blue-ink); }
.tint-sand  { background: var(--tint-sand); }
.tint-sand  .trust-ico, .tint-sand  p { fill: var(--tint-sand-ink); color: var(--tint-sand-ink); }
.tint-mint  { background: var(--tint-mint); }
.tint-mint  .trust-ico, .tint-mint  p { fill: var(--tint-mint-ink); color: var(--tint-mint-ink); }
.tint-lilac { background: var(--tint-lilac); }
.tint-lilac .trust-ico, .tint-lilac p { fill: var(--tint-lilac-ink); color: var(--tint-lilac-ink); }

@media (min-width: 900px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .trust-card { padding: 22px 20px; }
}

/* ---------- Okul hakkında ---------- */
.about-grid { display: grid; gap: 36px; align-items: center; }
.about-media img { border-radius: var(--radius); object-fit: cover; aspect-ratio: 16 / 11; width: 100%; box-shadow: var(--shadow-soft); }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.05fr .95fr; gap: 72px; } }

/* ---------- Kademeler ---------- */
.levels-grid { display: grid; gap: 16px; }
.level-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-soft);
}
.level-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: .82rem; font-weight: 800; letter-spacing: .06em;
}
.level-card h3 { margin: 0; color: var(--brand-ink); font-size: 1.18rem; }
.level-card p { margin: 0; color: var(--muted); font-size: .94rem; flex: 1; }
.level-card .text-link { align-self: flex-start; margin-top: 4px; }
@media (min-width: 640px)  { .levels-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .levels-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Kampüs / medya mozaiği ----------
   Masaüstü: dikey video 2 satır kaplar + 6 fotoğraf.
   Mobil: yatay kaydırmalı scroll-snap şeridi. */
.media-mosaic { display: grid; gap: 16px; }

.video-card {
  position: relative; display: block;
  border: 0; padding: 0; margin: 0;
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background: var(--brand-deep); box-shadow: var(--shadow);
}
.video-card img, .video-card video { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 9 / 16; }
.play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.play-btn svg {
  width: 72px; height: 72px; fill: var(--brand);
  background: rgba(255,255,255,.82); border-radius: 50%; padding: 20px;
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  transition: transform .15s ease;
}
.video-card:hover .play-btn svg { transform: scale(1.06); }
.video-card .glass-chip { position: absolute; bottom: 14px; left: 14px; right: auto; }

/* Fotoğraflar HER ZAMAN yatay (4:3) — yalnızca video dikey (9:16) */
.media-card { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); align-self: start; }
.media-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-card .glass-chip { position: absolute; bottom: 12px; left: 12px; max-width: calc(100% - 24px); }

/* Mobil: yatay kaydırma şeridi */
@media (max-width: 759px) {
  .media-mosaic {
    display: flex; gap: 12px; align-items: stretch;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -22px; padding: 4px 22px 18px;
    scrollbar-width: none;
  }
  .media-mosaic::-webkit-scrollbar { display: none; }
  .video-card { flex: 0 0 58vw; max-width: 280px; scroll-snap-align: center; }
  /* Fotoğraf kartları yatay kalır, videoyla aynı yükseklikte ortalanır */
  .media-card { flex: 0 0 80vw; max-width: 380px; scroll-snap-align: center; align-self: center; }
}

/* Masaüstü: mozaik grid — video solda 2 satır kaplar,
   son sıradaki geniş kart 2 sütun yayılır (video 2 + 12 normal + 1 geniş = 16 hücre, 4x4 tam dolar) */
@media (min-width: 760px) {
  .media-mosaic { grid-template-columns: repeat(3, 1fr); grid-auto-flow: dense; }
  .video-card { grid-row: span 2; }
  .video-card img { aspect-ratio: auto; min-height: 100%; }
  .media-wide { grid-column: span 2; }
  .media-wide img { aspect-ratio: auto; height: 100%; min-height: 100%; }
}
@media (min-width: 1000px) {
  .media-mosaic { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}

/* ---------- Neden biz ---------- */
.why-grid { display: grid; gap: 14px; }
.why-item {
  background: #fff; border-radius: var(--radius-sm);
  padding: 22px 24px; box-shadow: var(--shadow-soft);
}
.why-item h3 { margin: 0 0 6px; font-size: 1.06rem; color: var(--brand-ink); }
.why-item p { margin: 0; color: var(--muted); font-size: .95rem; }
@media (min-width: 800px) {
  .why-grid { grid-template-columns: repeat(6, 1fr); }
  .why-item { grid-column: span 2; }
  .why-item:nth-child(4) { grid-column: 2 / span 2; }
  .why-item:nth-child(5) { grid-column: 4 / span 2; }
}

/* ---------- Kayıt süreci ---------- */
.steps-grid { display: grid; gap: 32px; }
.step-card { position: relative; padding-left: 64px; }
.step-no {
  position: absolute; left: 0; top: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--tint-blue); color: var(--brand);
  font-weight: 800; font-size: 1.05rem;
}
.step-card h3 { margin: 0 0 6px; font-size: 1.08rem; color: var(--brand-ink); }
.step-card p { margin: 0; color: var(--muted); font-size: .95rem; }
@media (min-width: 760px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 44px; }
  .step-card:not(:last-child)::after {
    content: ""; position: absolute; top: 23px; left: calc(100% - 22px);
    width: 44px; height: 1px; background: #c9d8e1;
  }
}

/* ---------- Form ---------- */
.form-grid { display: grid; gap: 44px; }
.form-intro p { color: rgba(255,255,255,.82); }
.form-benefits { margin: 0 0 26px; padding: 0; list-style: none; color: rgba(255,255,255,.9); }
.form-benefits li {
  padding: 11px 16px; margin-bottom: 8px;
  background: var(--glass-dark); border: 1px solid var(--glass-dark-border);
  border-radius: var(--radius-sm);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  font-size: .95rem;
}
.form-alt { font-weight: 700; margin-bottom: 12px; color: #fff !important; }
.form-alt-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.lead-form {
  background: #fff; color: var(--ink);
  border-radius: var(--radius); padding: 32px 26px;
  box-shadow: 0 18px 50px rgba(0, 30, 46, .28);
}
.field { margin-bottom: 18px; border: 0; padding: 0; }
.field label, .field legend { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 7px; color: var(--brand-ink); }
.field input[type="text"], .field input[type="tel"], .field input[type="number"], .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 16px;
  border: 1px solid #ccd8e0; border-radius: var(--radius-sm);
  font: inherit; font-size: .98rem; color: var(--ink); background: #fbfcfd;
}
/* Number alanının artı/eksi oklarını gizle (temiz görünüm) */
.field input[type="number"]::-webkit-outer-spin-button,
.field input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.field input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brand); outline: 2px solid rgba(0, 81, 120, .18); background: #fff;
}
.field-row { display: grid; gap: 18px; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.radio-row { display: flex; gap: 22px; }
.radio, .checkbox { display: flex; align-items: flex-start; gap: 9px; font-weight: 500; cursor: pointer; }
.radio input, .checkbox input { width: 20px; height: 20px; margin-top: 2px; flex: none; accent-color: var(--brand); }
.checkbox-field span { font-size: .86rem; line-height: 1.55; font-weight: 400; color: var(--muted); }
.req { color: var(--red); }
.form-error { color: var(--red); font-weight: 700; font-size: .92rem; }
.form-trust { color: var(--muted); font-size: .8rem; margin: 14px 0 0; text-align: center; }
.form-success {
  margin-top: 18px; padding: 16px 18px; border-radius: var(--radius-sm);
  background: #ebf7f0; border: 1px solid #bfe3cd; color: #1c5c34; font-size: .95rem;
}
.is-invalid { border-color: var(--red) !important; }
@media (min-width: 900px) { .form-grid { grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: start; } }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; gap: 36px; }
.contact-item { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-item:first-child { padding-top: 0; }
.contact-item h3 {
  margin: 0 0 4px; font-size: .74rem; color: var(--muted);
  font-weight: 800; text-transform: uppercase; letter-spacing: .14em;
}
.contact-item p { margin: 0; font-size: 1.02rem; }
.contact-link { font-size: 1.1rem; font-weight: 800; color: var(--brand); text-decoration: none; }
.contact-link:hover { color: var(--red); }
.contact-info .btn { margin-top: 24px; }
.map-frame {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  min-height: 300px;
}
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 380px; }
/* Form: opsiyonel alan etiketi */
.field .opt { font-weight: 500; color: var(--muted); font-size: .82rem; }
/* Honeypot: ekran dışına taşınır (display:none bazı botlarca algılanır) */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .8fr 1.2fr; gap: 72px; } }

/* ---------- Son CTA ---------- */
.final-cta { padding: 76px 0; text-align: center; }
.final-inner h2 { font-size: clamp(1.45rem, 3vw, 2rem); margin: 0 0 10px; color: #fff; }
.final-inner p { color: rgba(255,255,255,.75); margin: 0 0 30px; }
.final-inner .hero-ctas { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand-deep); color: rgba(255,255,255,.6);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 26px 0; font-size: .85rem;
}
.footer-inner { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center; }
.site-footer a { color: rgba(255,255,255,.8); }
/* Mobil alt bar footer'ı kapatmasın */
body { padding-bottom: calc(var(--bar-h) + 20px); }
@media (min-width: 900px) { body { padding-bottom: 0; } }

/* ---------- Mobil sabit iletişim barı (yüzen glass) ---------- */
.mobile-bar {
  position: fixed; left: 12px; right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 60;
  display: flex; height: var(--bar-h);
  background: rgba(255,255,255,.72);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--pill);
  box-shadow: 0 10px 30px rgba(0, 40, 60, .18);
  overflow: hidden;
}
.mobile-bar-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  font-size: .73rem; font-weight: 700; letter-spacing: .01em;
  text-decoration: none; color: var(--brand-ink);
}
.mobile-bar-btn .ico { width: 21px; height: 21px; fill: currentColor; }
.mobile-bar-wa { color: #128c4b; }
.mobile-bar-form { background: var(--red); color: #fff; }
@media (min-width: 900px) { .mobile-bar { display: none; } }

/* ---------- Video modal (dikey 9:16) ---------- */
.video-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 16px; }
.video-modal[hidden] { display: none; }
.video-modal-backdrop {
  position: absolute; inset: 0; background: rgba(4, 20, 30, .7);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.video-modal-body { position: relative; width: 100%; max-width: 400px; }
.video-modal-body video {
  width: 100%; border-radius: var(--radius); background: #000;
  aspect-ratio: 9 / 16; max-height: 82vh; object-fit: contain;
}
.video-modal-close {
  position: absolute; top: -48px; right: 0;
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  color: #fff; font-size: 1.5rem; line-height: 1;
}

/* ---------- Fotoğraf lightbox ---------- */
.img-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 16px; }
.img-modal[hidden] { display: none; }
.img-modal-backdrop {
  position: absolute; inset: 0; background: rgba(4, 20, 30, .78);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.img-modal-body {
  position: relative; margin: 0;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  max-width: min(1080px, 94vw);
}
.img-modal-body img {
  max-width: 100%; max-height: 80vh; object-fit: contain;
  border-radius: var(--radius); box-shadow: 0 24px 70px rgba(0,0,0,.45);
}
.img-modal-close {
  position: absolute; top: -48px; right: 0; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  color: #fff; font-size: 1.5rem; line-height: 1;
}
.img-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  color: var(--brand-ink); font-size: 1.7rem; line-height: 1; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .15s ease;
}
.img-nav:hover { background: rgba(255,255,255,.9); }
.img-prev { left: 10px; }
.img-next { right: 10px; }
@media (max-width: 699px) {
  .img-nav { width: 40px; height: 40px; font-size: 1.4rem; }
  .img-prev { left: 4px; } .img-next { right: 4px; }
}

/* ---------- Hareket azaltma tercihi ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
