/* ============================================================
   Emre Koçer — Türkçe & Edebiyat
   styles.css  |  YEŞİL TAHTA + TEBEŞİR teması
   Tüm renkler :root içinden yönetilir.
   ============================================================ */

:root {
  /* Tahta yeşilleri */
  --board:      #21433a;   /* ana tahta */
  --board-2:    #1d3c34;   /* koyu panel / section-tint */
  --board-dark: #173029;   /* en koyu (footer) */
  --panel:      #284b40;   /* kart panel (biraz açık) */
  --panel-2:    #2e5447;   /* öne çıkan panel */

  /* Tebeşir renkleri */
  --chalk:      #f4f3ea;   /* beyaz tebeşir (metin) */
  --chalk-soft: rgba(244, 243, 234, .76);
  --chalk-dim:  rgba(244, 243, 234, .50);
  --line:       rgba(244, 243, 234, .22);   /* tebeşir çizgi / kenarlık */
  --line-strong:rgba(244, 243, 234, .40);

  --yellow:     #ffe27a;   /* sarı tebeşir (vurgu) */
  --pink:       #ff9ec4;   /* pembe tebeşir (CTA) */
  --blue:       #9bd1ff;   /* mavi tebeşir */
  --green:      #a7e8a0;   /* yeşil tebeşir (başarı) */

  --ink:        #1d3c34;   /* tahta rengi — açık butonların ÜZERİNDEKİ koyu metin */

  --radius:     14px;
  --radius-lg:  22px;
  --radius-pill: 999px;

  --container: 1180px;
  --header-h: 76px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .18);
  --shadow:    0 10px 26px rgba(0, 0, 0, .26);
  --shadow-md: 0 16px 38px rgba(0, 0, 0, .32);
  --shadow-lg: 0 26px 60px rgba(0, 0, 0, .40);

  --t-fast: .18s ease;
  --t: .28s cubic-bezier(.4, 0, .2, 1);

  --font: 'Shantell Sans', 'Comic Sans MS', system-ui, -apple-system, sans-serif;
  --font-display: 'Shantell Sans', 'Comic Sans MS', cursive;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--chalk);
  font-size: 17.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background-color: var(--board);
  background-image:
    radial-gradient(120% 80% at 50% -10%, rgba(255, 255, 255, .045), transparent 55%),
    radial-gradient(90% 60% at 85% 110%, rgba(0, 0, 0, .22), transparent 60%);
  background-attachment: fixed;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  color: var(--chalk);
  letter-spacing: .01em;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, .18), 0 0 10px rgba(244, 243, 234, .10);
}
p { margin: 0; }

::selection { background: var(--yellow); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--board-dark);
  color: var(--chalk);
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  border: 1px solid var(--line);
  z-index: 2000;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.container.narrow { max-width: 880px; }

.section { padding: clamp(56px, 8vw, 96px) 0; position: relative; }
.section-tint { background: var(--board-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { margin-bottom: 44px; }
.section-head.center { text-align: center; max-width: 720px; margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  letter-spacing: .04em;
  color: var(--yellow);
  background: rgba(255, 226, 122, .12);
  border: 1px dashed rgba(255, 226, 122, .5);
  padding: 3px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--yellow); }

.section-title { font-size: clamp(2rem, 4.6vw, 3.1rem); }
.section-title.light { color: var(--chalk); }

.section-desc { margin-top: 12px; color: var(--chalk-soft); font-size: 1.12rem; }
.lead { font-size: 1.18rem; color: var(--chalk); margin-top: 6px; }
.muted { color: var(--chalk-soft); margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
  line-height: 1.1;
}
.btn svg { transition: transform var(--t-fast); }
.btn-sm { padding: 9px 18px; font-size: 1.05rem; }
.btn-lg { padding: 14px 32px; font-size: 1.32rem; }
.btn-block { display: flex; width: 100%; white-space: normal; text-align: center; }

.btn-primary { background: var(--yellow); color: var(--ink); box-shadow: var(--shadow); }
.btn-primary:hover { background: #ffe9a0; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-accent { background: var(--pink); color: var(--ink); box-shadow: var(--shadow); }
.btn-accent:hover { background: #ffb6d3; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-soft { background: rgba(244, 243, 234, .10); color: var(--chalk); border: 1.5px solid var(--line); }
.btn-soft:hover { background: rgba(244, 243, 234, .18); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--chalk); border: 2px dashed var(--line-strong); }
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h);
  background: rgba(23, 48, 41, .80);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: box-shadow var(--t), border-color var(--t), background var(--t);
}
.site-header.scrolled { box-shadow: var(--shadow); border-color: var(--line); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; }

/* Header: tam genişlik yerleşim (logo sola, menü sağa) + biraz küçük yazı */
.site-header .container { max-width: none; padding-inline: clamp(20px, 3.5vw, 60px); }
.site-header .brand-name { font-size: 1.3rem; }
.site-header .brand-sub { font-size: .76rem; }
.site-header .nav-link { font-size: 1rem; padding: 8px 10px; }
.site-header .header-cta { font-size: 1rem; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(244, 243, 234, .08);
  border: 1.5px solid var(--line);
  color: var(--yellow);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--chalk); }
.brand-sub { font-size: .82rem; font-weight: 400; color: var(--yellow); letter-spacing: .02em; }

.main-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative; display: inline-block;
  padding: 8px 12px;
  font-size: 1.12rem; font-weight: 400;
  color: var(--chalk-soft);
  border-radius: 8px;
  transition: color var(--t-fast);
}
.nav-link::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px;
  height: 2px; background: var(--yellow); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.nav-link:hover { color: var(--chalk); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--chalk); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; border-radius: 11px;
  border: 1.5px solid var(--line); background: rgba(244, 243, 234, .06);
}
.nav-toggle-bar { width: 21px; height: 2.4px; background: var(--chalk); border-radius: 2px; margin-inline: auto; transition: transform var(--t), opacity var(--t-fast); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0;
  background: var(--board-dark); border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 14px 22px 26px;
  transform: translateY(-12px); opacity: 0; visibility: hidden;
  transition: transform var(--t), opacity var(--t), visibility var(--t);
  z-index: 999; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav-list { display: flex; flex-direction: column; }
.mobile-nav-link { display: block; padding: 13px 8px; font-size: 1.15rem; color: var(--chalk); border-bottom: 1px solid var(--line); transition: color var(--t-fast), padding-left var(--t-fast); }
.mobile-nav-link:hover { color: var(--yellow); padding-left: 14px; }
.mobile-cta { margin-top: 18px; }

.nav-overlay { position: fixed; inset: var(--header-h) 0 0 0; background: rgba(0, 0, 0, .5); backdrop-filter: blur(2px); z-index: 998; opacity: 0; animation: fade .25s ease forwards; }
@keyframes fade { to { opacity: 1; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(20px, 3.5vw, 40px));
  padding-bottom: clamp(36px, 5vw, 60px);
  overflow: hidden;
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(260px, 380px) 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; z-index: 2; }
.hero-side { align-self: center; }
.hero-side .hero-text { margin-top: 0; }
.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--chalk);
  background: rgba(244, 243, 234, .06);
  border: 1px dashed var(--line-strong);
  padding: 5px 18px; border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero-eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.hero-eyebrow-full { grid-column: 1 / -1; justify-self: center; text-align: center; margin-bottom: clamp(14px, 2.5vw, 28px); }

.hero-title { font-size: clamp(2.5rem, 6.2vw, 4.6rem); line-height: 1.02; letter-spacing: .01em; }
.hero-title-img { line-height: 0; margin: 4px 0; }
.hero-title-img img { display: block; width: auto; max-width: 100%; max-height: clamp(300px, 34vw, 430px); border-radius: 14px; box-shadow: var(--shadow-lg); }
.hero-title .hl { position: relative; color: var(--yellow); white-space: nowrap; }
.hero-title .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.08em; height: .14em;
  background: var(--yellow);
  border-radius: 60% 40% 55% 45%;
  opacity: .55;
  transform: rotate(-1deg);
}
.hero-text { margin-top: 18px; font-size: 1.22rem; color: var(--chalk-soft); max-width: 560px; }
.hero-text strong { color: var(--chalk); font-weight: 400; border-bottom: 2px dotted var(--yellow); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 30px; padding-top: 26px; border-top: 1px dashed var(--line); }
.hero-trust li { display: inline-flex; align-items: center; gap: 9px; font-size: 1.1rem; color: var(--chalk); }
.hero-trust svg { color: var(--yellow); }

/* Hero görsel: tebeşirle çizilmiş gelişim panosu */
.hero-visual { position: relative; min-height: 420px; display: grid; place-items: center; z-index: 2; }
.hero-visual::before {
  content: ""; position: absolute; inset: 6% 4%;
  background: rgba(0, 0, 0, .18);
  border: 2px dashed var(--line-strong);
  border-radius: 26px; transform: rotate(-2.5deg);
}
.hero-badges { position: absolute; top: 1%; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 4; }
.exam-badge { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: .04em; color: var(--ink); padding: 6px 22px; border-radius: var(--radius-pill); box-shadow: var(--shadow-md); transform: rotate(-3deg); }
.exam-badge:last-child { transform: rotate(3deg); }
.badge-lgs { background: var(--yellow); }
.badge-yks { background: var(--pink); }

.dash-card { position: relative; background: var(--panel); border: 1.5px solid var(--line-strong); border-radius: 16px; padding: 18px; z-index: 3; box-shadow: var(--shadow-md); }
.dash-main { width: min(330px, 78%); margin-top: 26px; }
.dash-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.dash-title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--chalk); }
.dash-tag { font-size: 1rem; font-weight: 700; padding: 2px 12px; border-radius: var(--radius-pill); font-family: var(--font-display); }
.dash-tag.up { color: var(--green); background: rgba(167, 232, 160, .14); }
.dash-chart { display: flex; align-items: flex-end; gap: 10px; height: 120px; padding-bottom: 4px; border-bottom: 2px dashed var(--line); }
.dash-chart span { flex: 1; height: var(--h); background: repeating-linear-gradient(45deg, var(--blue), var(--blue) 6px, rgba(155,209,255,.7) 6px, rgba(155,209,255,.7) 12px); border-radius: 6px 6px 3px 3px; transform-origin: bottom; animation: grow-bar .9s cubic-bezier(.2,.7,.2,1) backwards; }
.dash-chart span:nth-child(1){animation-delay:.05s}
.dash-chart span:nth-child(2){animation-delay:.12s}
.dash-chart span:nth-child(3){animation-delay:.19s}
.dash-chart span:nth-child(4){animation-delay:.26s}
.dash-chart span:nth-child(5){animation-delay:.33s}
.dash-chart span:nth-child(6){ animation-delay:.4s; background: repeating-linear-gradient(45deg, var(--yellow), var(--yellow) 6px, rgba(255,226,122,.7) 6px, rgba(255,226,122,.7) 12px); }
@keyframes grow-bar { from { transform: scaleY(0); } }
.dash-foot { display: flex; justify-content: space-between; font-size: .92rem; color: var(--chalk-soft); margin-top: 8px; }

.dash-plan { position: absolute; right: 1%; bottom: 12%; width: min(238px, 64%); z-index: 5; }
.dash-plan-title { display: flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--chalk); margin-bottom: 11px; }
.dash-plan-title svg { color: var(--yellow); }
.dash-plan ul { display: flex; flex-direction: column; gap: 9px; }
.dash-plan li { position: relative; padding-left: 26px; font-size: .98rem; color: var(--chalk-soft); }
.dash-plan li::before { content: ""; position: absolute; left: 0; top: 1px; width: 16px; height: 16px; border-radius: 4px; border: 1.8px solid var(--line-strong); }
.dash-plan li.done { color: var(--chalk); }
.dash-plan li.done::before { background: var(--green); border-color: var(--green); }
.dash-plan li.done::after { content: ""; position: absolute; left: 4px; top: 5px; width: 7px; height: 4px; border-left: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(-45deg); }
.dash-mini { position: absolute; left: 0; top: 22%; display: flex; flex-direction: column; padding: 12px 18px; z-index: 5; }
.mini-num { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--yellow); line-height: 1; }
.mini-label { font-size: .9rem; color: var(--chalk-soft); margin-top: 2px; }

/* ---- Hero tebeşir karalamaları (doodles) ---- */
.hero-decor { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.doodle { position: absolute; animation: floaty 6s ease-in-out infinite; }
.doodle svg { width: 100%; height: 100%; filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .3)); }
.d-cap   { top: 22%; left: 45%; width: 96px; height: 96px; color: var(--yellow); --r: -8deg; }
.d-star  { top: 14%; left: 38%; width: 46px; height: 46px; color: var(--pink); --r: 12deg; animation-delay: .6s; }
.d-book  { bottom: 20%; left: 5%; width: 64px; height: 64px; color: var(--blue); --r: 8deg; animation-delay: 1.1s; }
.d-pen   { bottom: 30%; left: 56%; width: 54px; height: 54px; color: var(--green); --r: -14deg; animation-delay: 1.6s; }
@keyframes floaty { 0%, 100% { transform: rotate(var(--r, 0)) translateY(0); } 50% { transform: rotate(var(--r, 0)) translateY(-12px); } }

/* ============================================================
   HİZMETLER
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { position: relative; display: flex; flex-direction: column; background: var(--panel); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 26px 24px; box-shadow: var(--shadow); transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.service-card.featured { background: var(--panel-2); border: 2px dashed var(--yellow); }
.card-flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(-2deg); font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; color: var(--ink); background: var(--pink); padding: 3px 16px; border-radius: var(--radius-pill); box-shadow: var(--shadow); white-space: nowrap; }
.service-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.service-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; border: 2px solid currentColor; background: rgba(244, 243, 234, .06); }
.i-lgs { color: var(--yellow); }
.i-yks { color: var(--pink); }
.i-ozel { color: var(--blue); }
.i-koc { color: var(--green); }
.service-pill { font-family: var(--font-display); font-size: 1rem; color: var(--chalk-soft); background: rgba(244, 243, 234, .08); padding: 3px 14px; border-radius: var(--radius-pill); }
.service-card h3 { font-size: 1.55rem; margin-bottom: 8px; }
.service-card > p { font-size: 1.02rem; color: var(--chalk-soft); }
.service-list { display: flex; flex-direction: column; gap: 8px; margin: 16px 0 22px; }
.service-list li { position: relative; padding-left: 26px; font-size: 1rem; color: var(--chalk); }
.service-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--green); font-weight: 700; }
.service-card .btn { margin-top: auto; }

/* ============================================================
   NEDEN BİZ
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { background: var(--panel); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 26px 22px; box-shadow: var(--shadow); transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.why-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; border: 2px solid var(--yellow); color: var(--yellow); margin-bottom: 16px; }
.why-card:nth-child(2) .why-icon { border-color: var(--pink); color: var(--pink); }
.why-card:nth-child(3) .why-icon { border-color: var(--blue); color: var(--blue); }
.why-card:nth-child(4) .why-icon { border-color: var(--green); color: var(--green); }
.why-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.why-card p { font-size: 1.02rem; color: var(--chalk-soft); }

/* ============================================================
   İSTATİSTİK
   ============================================================ */
.stats-band { padding: clamp(46px, 7vw, 72px) 0; background: var(--board-dark); border-top: 2px dashed var(--line); border-bottom: 2px dashed var(--line); position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(3rem, 7vw, 4.4rem); line-height: 1; color: var(--yellow); }
.stat-item:nth-child(2) .stat-num { color: var(--pink); }
.stat-item:nth-child(3) .stat-num { color: var(--blue); }
.stat-label { color: var(--chalk); font-size: 1.15rem; margin-top: 6px; display: block; }
.stats-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 32px; }
.stat-pill { display: inline-flex; align-items: center; gap: 9px; font-size: 1.08rem; color: var(--chalk); background: rgba(244, 243, 234, .07); border: 1px dashed var(--line-strong); padding: 9px 20px; border-radius: var(--radius-pill); }
.stat-pill svg { color: var(--green); }

/* ============================================================
   YORUMLAR
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { margin: 0; background: var(--panel); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow); transition: transform var(--t), box-shadow var(--t); }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stars { color: var(--yellow); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-card blockquote { margin: 0; font-size: 1.12rem; color: var(--chalk); line-height: 1.55; }
.review-card figcaption { display: flex; align-items: center; gap: 13px; margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--line); }
.rev-avatar { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--yellow); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.review-card:nth-child(2) .rev-avatar { background: var(--pink); }
.review-card:nth-child(3) .rev-avatar { background: var(--blue); }
.review-card figcaption strong { display: block; color: var(--chalk); font-weight: 400; font-size: 1.1rem; }
.review-card figcaption small { color: var(--chalk-soft); font-size: .92rem; }

/* ============================================================
   ÜCRETLER & ÖDEME
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; background: var(--panel); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 32px 26px 28px; box-shadow: var(--shadow); transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.price-card.featured { background: var(--panel-2); border: 2px dashed var(--yellow); }
.price-flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(-2deg); font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink); background: var(--pink); padding: 3px 18px; border-radius: var(--radius-pill); box-shadow: var(--shadow); white-space: nowrap; }
.price-name { font-size: 1.55rem; }
.price-tag { align-self: flex-start; font-family: var(--font-display); font-size: 1rem; color: var(--yellow); background: rgba(255, 226, 122, .12); padding: 2px 14px; border-radius: var(--radius-pill); margin: 8px 0 16px; }
.price-amount { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--chalk); line-height: 1; }
.price-amount span { font-size: 1.05rem; color: var(--chalk-soft); }
.price-sub { font-size: 1rem; color: var(--chalk-soft); margin-top: 10px; }
.price-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 26px; }
.price-list li { position: relative; padding-left: 26px; font-size: 1rem; color: var(--chalk); }
.price-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--green); font-weight: 700; }
.price-card .btn { margin-top: auto; }

.price-note { display: flex; align-items: center; gap: 10px; justify-content: center; max-width: 740px; margin: 26px auto 0; font-size: 1rem; color: var(--chalk-soft); }
.price-note svg { color: var(--yellow); flex-shrink: 0; }

.pay-head { text-align: center; max-width: 640px; margin: 56px auto 30px; }
.pay-title { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.pay-desc { color: var(--chalk-soft); margin-top: 8px; font-size: 1.08rem; }
.pay-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 720px; margin-inline: auto; }
.pay-card { display: flex; flex-direction: column; background: var(--panel); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow); transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast); }
.pay-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.pay-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; border: 2px solid var(--yellow); color: var(--yellow); margin-bottom: 16px; }
.pay-card:nth-child(2) .pay-icon { border-color: var(--pink); color: var(--pink); }
.pay-card:nth-child(3) .pay-icon { border-color: var(--blue); color: var(--blue); }
.pay-card h4 { font-size: 1.4rem; }
.pay-card > p { font-size: 1rem; color: var(--chalk-soft); margin-top: 6px; }
.iban { display: flex; flex-direction: column; gap: 4px; background: rgba(0, 0, 0, .18); border: 1.5px dashed var(--line-strong); border-radius: 12px; padding: 14px 16px; margin: 16px 0 6px; }
.iban-label { font-family: var(--font-display); font-size: .9rem; letter-spacing: .14em; text-transform: uppercase; color: var(--yellow); }
.iban-no { font-weight: 400; color: var(--chalk); font-size: 1.05rem; letter-spacing: .02em; word-break: break-word; }
.iban-name { font-size: .95rem; color: var(--chalk-soft); }
.pay-btn { margin-top: auto; margin-bottom: 8px; }
.pay-mini { display: flex; align-items: center; gap: 7px; font-size: .95rem; color: var(--chalk-soft); padding-top: 12px; }
.pay-card > .pay-mini { margin-top: auto; }
.pay-card > .pay-btn ~ .pay-mini { margin-top: 0; }
.pay-mini svg { color: var(--green); flex-shrink: 0; }

/* ============================================================
   RANDEVU (FORM)
   ============================================================ */
.section-cta { background: var(--board-dark); border-top: 2px dashed var(--line); border-bottom: 2px dashed var(--line); position: relative; }
.appointment-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(34px, 5vw, 64px); align-items: start; }
.appointment-text { color: var(--chalk-soft); font-size: 1.15rem; margin-top: 12px; }
.appointment-points { display: grid; gap: 12px; margin-top: 26px; }
.appointment-points li { display: flex; align-items: center; gap: 11px; color: var(--chalk); font-size: 1.05rem; }
.appointment-points svg { color: var(--green); flex-shrink: 0; }
.appointment-contact { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
.ac-line { display: inline-flex; align-items: center; gap: 11px; color: var(--chalk); font-size: 1.1rem; width: fit-content; transition: color var(--t-fast), transform var(--t-fast); }
.ac-line svg { color: var(--yellow); }
.ac-line:hover { color: var(--yellow); transform: translateX(3px); }

.appointment-form-wrap { background: var(--panel); border: 1.5px solid var(--line-strong); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(24px, 3vw, 36px); }
.form-title { font-size: 1.7rem; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; display: flex; flex-direction: column; }
.form-group label, .group-label { font-size: 1.05rem; color: var(--chalk); margin-bottom: 6px; }
.req { color: var(--pink); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--line); border-radius: 11px;
  background: rgba(0, 0, 0, .20); color: var(--chalk);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.form-group select { color: var(--chalk); }
.form-group option { color: #1d3c34; background: #f4f3ea; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--chalk-dim); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--yellow); background: rgba(0, 0, 0, .28); box-shadow: 0 0 0 4px rgba(255, 226, 122, .16); }
.form-group textarea { resize: vertical; min-height: 84px; }
.form-group.invalid input, .form-group.invalid select { border-color: var(--pink); }
.error-msg { color: var(--pink); font-size: .92rem; margin-top: 6px; min-height: 1px; }

.radio-row { display: flex; gap: 12px; }
.radio-chip { flex: 1; display: flex !important; align-items: center; justify-content: center; gap: 8px; padding: 10px 14px; border: 1.5px solid var(--line); border-radius: 11px; background: rgba(0, 0, 0, .18); margin-bottom: 0 !important; cursor: pointer; color: var(--chalk); transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast); }
.radio-chip input { accent-color: var(--yellow); width: auto; }
.radio-chip:has(input:checked) { border-color: var(--yellow); background: rgba(255, 226, 122, .14); color: var(--yellow); }

/* Ekran okuyucu için görünmez başlık (SEO + erişilebilirlik) */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Hizmet kartı fotoğrafı (yüklenirse görünür) */
.service-photo { width: 100%; height: 170px; object-fit: cover; border-radius: 14px; margin-bottom: 16px; display: block; border: 1px solid var(--line); }
.service-photo[hidden] { display: none; }

/* Hakkımda bölümü */
.about-grid { display: grid; grid-template-columns: minmax(220px, 340px) 1fr; gap: clamp(24px, 5vw, 56px); align-items: start; }
.about-photo { position: sticky; top: 96px; border-radius: 20px; padding: 10px; background: linear-gradient(160deg, rgba(255, 226, 122, .16), rgba(255, 255, 255, .04)); border: 1px solid var(--line); box-shadow: 0 22px 55px rgba(0, 0, 0, .38); }
.about-photo img { width: 100%; height: auto; border-radius: 13px; display: block; }
.about-photo img[hidden] { display: none; }
.about-photo-ph { display: grid; place-items: center; aspect-ratio: 4 / 5; border-radius: 18px; background: rgba(0, 0, 0, .18); border: 1.5px dashed var(--line); color: var(--chalk-dim); }
.about-photo img:not([hidden]) ~ .about-photo-ph { display: none; }
.about-text { color: var(--chalk-soft, var(--chalk)); line-height: 1.7; margin: 10px 0 24px; font-size: 1.08rem; }
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } .about-photo { max-width: 300px; margin: 0 auto; } }

/* Yasal sayfalar (gizlilik / KVKK) */
.legal { padding: 120px 0 70px; }
.legal .container { max-width: 820px; }
.legal-back { display: inline-flex; align-items: center; gap: 7px; color: var(--yellow); text-decoration: none; font-size: 1rem; margin-bottom: 22px; }
.legal-back:hover { text-decoration: underline; }
.legal h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--chalk); margin: 0 0 6px; }
.legal .legal-updated { color: var(--chalk-dim); font-size: .95rem; margin-bottom: 28px; }
.legal h2 { font-family: var(--font-display); font-size: clamp(1.2rem, 2.4vw, 1.5rem); color: var(--yellow); margin: 30px 0 10px; }
.legal h3 { color: var(--chalk); font-size: 1.08rem; margin: 18px 0 6px; }
.legal p, .legal li { color: var(--chalk-soft, var(--chalk)); line-height: 1.7; font-size: 1.02rem; }
.legal ul { margin: 8px 0 8px 4px; padding-left: 20px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--yellow); }
.legal .legal-card { background: rgba(0, 0, 0, .18); border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; margin: 14px 0; }

.consent-group { margin-top: 4px; }
.consent { display: flex !important; flex-direction: row; align-items: flex-start; gap: 10px; cursor: pointer; margin-bottom: 0 !important; font-size: .95rem; line-height: 1.5; color: var(--chalk-soft, var(--chalk)); }
.consent input[type="checkbox"] { accent-color: var(--yellow); width: 18px; height: 18px; margin-top: 2px; flex: 0 0 auto; cursor: pointer; }
.consent a { color: var(--yellow); text-decoration: underline; }
.form-group.invalid .consent { color: var(--pink); }
.form-group.invalid .consent input[type="checkbox"] { outline: 2px solid var(--pink); outline-offset: 2px; }

.hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }

.form-error { display: flex; align-items: center; gap: 11px; margin-top: 18px; padding: 14px 18px; background: rgba(255, 158, 196, .12); border: 1px solid var(--pink); border-radius: 12px; color: var(--pink); font-size: 1.02rem; }
.form-error a { color: var(--pink); text-decoration: underline; }
.form-error svg { flex-shrink: 0; }
.form-error[hidden] { display: none; }

.form-success { display: flex; align-items: center; gap: 11px; margin-top: 18px; padding: 15px 18px; background: rgba(167, 232, 160, .14); border: 1px solid var(--green); border-radius: 12px; color: var(--green); font-size: 1.05rem; }
.form-success svg { color: var(--green); flex-shrink: 0; }
.form-success[hidden] { display: none; }

/* ============================================================
   SSS
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--panel); border: 1.5px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--t-fast), border-color var(--t-fast); }
.faq-item[open] { box-shadow: var(--shadow); border-color: var(--line-strong); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 22px; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--chalk); cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; flex-shrink: 0; width: 24px; height: 24px; border-radius: 7px; border: 1.5px solid var(--line-strong); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--yellow); border-radius: 2px; transform: translate(-50%, -50%); transition: transform var(--t), opacity var(--t-fast); }
.faq-icon::before { width: 11px; height: 2.2px; }
.faq-icon::after { width: 2.2px; height: 11px; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer { padding: 0 22px 20px; color: var(--chalk-soft); font-size: 1.05rem; line-height: 1.6; }
.faq-item[open] .faq-answer { animation: faq-in .3s ease; }
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } }

/* ============================================================
   İLETİŞİM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; background: var(--panel); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 30px 22px; box-shadow: var(--shadow); transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.contact-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 16px; border: 2px solid var(--yellow); color: var(--yellow); margin-bottom: 8px; }
.contact-card:nth-child(2) .contact-icon { border-color: var(--green); color: var(--green); }
.contact-card:nth-child(3) .contact-icon { border-color: var(--pink); color: var(--pink); }
.contact-card:nth-child(4) .contact-icon { border-color: var(--blue); color: var(--blue); }
.contact-card h3 { font-size: 1.35rem; }
.contact-card p { font-size: 1rem; color: var(--chalk-soft); }

.contact-social { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.contact-social > span { font-family: var(--font-display); font-size: 1.2rem; color: var(--chalk); }
.soc { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; border: 1.5px solid var(--line); background: rgba(244, 243, 234, .05); color: var(--chalk); transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast); }
.soc:hover { background: var(--yellow); color: var(--ink); transform: translateY(-3px); border-color: var(--yellow); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--board-dark); border-top: 2px dashed var(--line); color: var(--chalk-soft); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 38px; padding: clamp(46px, 6vw, 70px) 22px clamp(32px, 4vw, 46px); }
.footer-brand-link .brand-name { color: var(--chalk); }
.footer-desc { margin-top: 16px; font-size: 1.02rem; line-height: 1.6; max-width: 340px; }
.footer-role { color: var(--yellow); font-family: var(--font-display); font-size: 1.18rem; margin-top: 8px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-col h4 { color: var(--chalk); font-size: 1.3rem; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 1.02rem; transition: color var(--t-fast), padding-left var(--t-fast); }
.footer-col a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact li { font-size: 1.02rem; }
.footer-cta { margin-top: 18px; }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: .95rem; }
.footer-made { color: var(--yellow); }

/* ============================================================
   SABİT WHATSAPP
   ============================================================ */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; box-shadow: 0 10px 26px rgba(0, 0, 0, .4); transition: transform var(--t-fast), box-shadow var(--t-fast); animation: wa-pulse 2.6s infinite; }
.whatsapp-float:hover { transform: scale(1.08); }
.wa-tooltip { position: absolute; right: 72px; background: var(--board-dark); color: var(--chalk); border: 1px solid var(--line); font-size: 1rem; padding: 7px 14px; border-radius: 10px; white-space: nowrap; opacity: 0; transform: translateX(8px); pointer-events: none; transition: opacity var(--t-fast), transform var(--t-fast); }
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
@keyframes wa-pulse { 0% { box-shadow: 0 10px 26px rgba(0,0,0,.4), 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 10px 26px rgba(0,0,0,.4), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 10px 26px rgba(0,0,0,.4), 0 0 0 0 rgba(37,211,102,0); } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav-link { padding: 8px 9px; font-size: 1.02rem; }
  .services-grid, .why-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 360px; max-width: 460px; margin-inline: auto; width: 100%; }
  .d-cap, .d-star, .d-pen { display: none; }
  .pricing-grid, .pay-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .appointment-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 600px) {
  body { font-size: 17px; }
  .container { padding-inline: 18px; }
  .hero-actions .btn { flex: 1; }
  .services-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-decor { display: none; }
  .brand-sub { display: none; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  body { background: #fff; color: #000; }
  .site-header, .whatsapp-float, .nav-overlay, .mobile-nav, .hero-decor { display: none !important; }
}
