/* ============================================================
   Dr. Kadriye Yıldız — Özel Eğitim Uzmanı
   Tasarım Tokenları
   Renkler kartvizitteki turuncu-kırmızı-pembe geçişinden
   pastel bir palete uyarlanmıştır.
   ============================================================ */

:root{
  --cream:      #FBF3EC;   /* sayfa zemini, sıcak şeftali-krem */
  --paper:      #FFFDFB;   /* kart zemini */
  --coral:      #E38B6B;   /* ana marka rengi - pastel mercan/turuncu */
  --coral-deep: #C96B4C;   /* vurgu / hover */
  --peach:      #F5C9A0;   /* ikincil pastel - şeftali */
  --rose:       #F0AFAE;   /* pastel pembe vurgu */
  --navy:       #333A5C;   /* başlıklar - kartvizitteki lacivert */
  --ink:        #463F3A;   /* gövde metni */
  --muted:      #948A80;   /* ikincil metin */
  --line:       #ECDFD1;   /* çizgi / kenarlık */
  --shadow:     0 18px 40px -22px rgba(51,58,92,.28);
  --radius-lg:  28px;
  --radius-md:  18px;
  --radius-sm:  10px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:'Plus Jakarta Sans', system-ui, sans-serif;
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family:'Fraunces', Georgia, serif;
  color:var(--navy);
  margin:0 0 .5em;
  line-height:1.15;
  font-weight:600;
}
h1{ font-size:clamp(2.1rem, 4.4vw, 3.4rem); font-optical-sizing:auto; }
h2{ font-size:clamp(1.7rem, 3vw, 2.4rem); }
h3{ font-size:1.3rem; }
p{ margin:0 0 1em; }
.container{
  width:100%;
  max-width:1160px;
  margin:0 auto;
  padding:0 24px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  font-family:'Plus Jakarta Sans', sans-serif;
  font-weight:700;
  font-size:.8rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--coral-deep);
  margin-bottom:.9em;
}
.eyebrow::before{
  content:"";
  width:22px; height:2px;
  background:var(--coral);
  display:inline-block;
  border-radius:2px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  padding:14px 28px;
  border-radius:999px;
  font-weight:700;
  font-size:.95rem;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-primary{
  background:linear-gradient(120deg, var(--coral), var(--rose));
  color:#fff;
  box-shadow:var(--shadow);
}
.btn-primary:hover{ transform:translateY(-2px); }
.btn-ghost{
  border-color:var(--coral);
  color:var(--coral-deep);
  background:transparent;
}
.btn-ghost:hover{ background:rgba(227,139,107,.09); }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,243,236,.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 24px;
  max-width:1160px; margin:0 auto;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-family:'Fraunces', serif;
  color:var(--navy);
  font-size:1.15rem;
  font-weight:600;
}
.brand-mark{
  width:44px; height:44px; border-radius:50%;
  background:linear-gradient(135deg, var(--coral), var(--peach) 55%, var(--rose));
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-family:'Fraunces', serif; font-weight:600; font-size:1.05rem;
  flex-shrink:0;
}
.brand small{
  display:block; font-family:'Plus Jakarta Sans',sans-serif;
  font-size:.72rem; font-weight:600; color:var(--muted); letter-spacing:.02em;
}
.nav-links{
  display:flex; align-items:center; gap:28px;
  font-size:.94rem; font-weight:600; color:var(--ink);
}
.nav-links a{ position:relative; padding:6px 0; }
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; height:2px; width:0;
  background:var(--coral); transition:width .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--coral-deep); }
.nav-toggle{ display:none; }

@media (max-width: 880px){
  .nav-links{
    position:fixed; inset:70px 16px auto 16px;
    background:var(--paper);
    border-radius:var(--radius-md);
    box-shadow:var(--shadow);
    flex-direction:column; align-items:flex-start;
    padding:18px 22px; gap:14px;
    transform:translateY(-12px); opacity:0; pointer-events:none;
    transition:all .22s ease;
  }
  .nav-links.open{ transform:translateY(0); opacity:1; pointer-events:auto; }
  .nav-toggle{
    display:flex; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer;
    padding:8px;
  }
  .nav-toggle span{ width:24px; height:2px; background:var(--navy); border-radius:2px; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  overflow:hidden;
  padding:64px 0 40px;
}
.hero-blob{
  position:absolute; top:-180px; right:-160px;
  width:560px; height:560px; border-radius:50%;
  background:radial-gradient(circle at 35% 35%, var(--peach), var(--rose) 60%, transparent 72%);
  opacity:.55; z-index:0;
}
.hero-grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center;
}
.hero-photo{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:var(--paper);
}
.hero-photo img{ width:100%; height:100%; object-fit:cover; }
.hero-copy h1 em{
  font-style:italic; color:var(--coral-deep);
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:26px; }
.hero-tagline{
  font-size:1.08rem; color:var(--ink); max-width:46ch;
}

@media (max-width: 880px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-photo{ order:-1; max-width:340px; margin:0 auto; }
}

/* ---------- Footstep divider (imza öğesi) ---------- */
.step-divider{
  display:flex; align-items:center; justify-content:center;
  gap:10px; margin:8px 0 48px; opacity:.85;
}
.step-divider .dot{
  width:9px; height:9px; border-radius:50%;
}
.step-divider .dot:nth-child(1){ background:var(--peach); }
.step-divider .dot:nth-child(2){ background:var(--coral); width:12px;height:12px; }
.step-divider .dot:nth-child(3){ background:var(--rose); }
.step-divider .bar{ width:44px; height:1px; background:var(--line); }

/* ---------- Sections ---------- */
section{ padding:64px 0; }
.section-head{ max-width:640px; margin:0 0 40px; }
.section-head.center{ margin:0 auto 44px; text-align:center; }
.bg-soft{ background:var(--paper); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }

/* ---------- Cards grid ---------- */
.grid{ display:grid; gap:26px; }
.grid-3{ grid-template-columns:repeat(3, 1fr); }
.grid-2{ grid-template-columns:repeat(2, 1fr); }
@media (max-width: 900px){ .grid-3, .grid-2{ grid-template-columns:1fr 1fr; } }
@media (max-width: 620px){ .grid-3, .grid-2{ grid-template-columns:1fr; } }

.card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:30px;
  box-shadow:0 10px 26px -20px rgba(51,58,92,.35);
  font-size:.96rem;
  line-height:1.5;
}
.card .icon{
  width:52px; height:52px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem;
  background:linear-gradient(135deg, var(--peach), var(--rose));
  margin-bottom:16px;
}

/* service card with symptom/approach */
.service-card h3{ margin-bottom:10px; }
.service-card .label{
  display:block; font-size:.74rem; font-weight:700; letter-spacing:.06em;
  text-transform:uppercase; color:var(--coral-deep); margin:14px 0 4px;
}
.service-card p{ margin:0 0 4px; font-size:.96rem; }
.service-card .more{
  margin-top:16px; font-weight:700; color:var(--navy); font-size:.92rem;
  display:inline-flex; align-items:center; gap:6px;
}
.service-card .more::after{ content:"→"; transition:transform .2s; }
.service-card:hover .more::after{ transform:translateX(4px); }

/* ---------- Stats ---------- */
.stats{ display:flex; flex-wrap:wrap; gap:36px; }
.stat b{
  font-family:'Fraunces', serif; font-size:2.4rem; color:var(--coral-deep); display:block;
}
.stat span{ color:var(--muted); font-size:.92rem; }

/* ---------- Timeline / list ---------- */
.timeline{ display:flex; flex-direction:column; gap:18px; }
.timeline li{
  display:flex; gap:16px; align-items:flex-start;
  padding-bottom:18px; border-bottom:1px dashed var(--line);
}
.timeline li:last-child{ border-bottom:0; }
.timeline .yr{
  min-width:96px; font-weight:700; color:var(--coral-deep); font-family:'Fraunces',serif;
}

/* ---------- Footer ---------- */
footer{
  background:var(--navy); color:#EFE8E1; padding:52px 0 26px; margin-top:40px;
}
footer a:hover{ color:var(--peach); }
.footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:36px; margin-bottom:36px;
}
footer h4{ color:#fff; font-family:'Plus Jakarta Sans',sans-serif; font-size:.92rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:14px;}
footer li{ margin-bottom:9px; font-size:.94rem; color:#D9D1C8; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.14); padding-top:18px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:.82rem; color:#B9AFA5;
}
@media (max-width:760px){ .footer-grid{ grid-template-columns:1fr; } }

/* ---------- Social row (footer) ---------- */
.social-row{ display:flex; align-items:center; gap:12px; margin-top:18px; }
.social-btn{
  display:inline-flex; align-items:center; gap:8px;
  width:42px; height:42px; border-radius:50%;
  background:rgba(255,255,255,.1);
  color:#EFE8E1;
  justify-content:center;
  transition:background .18s ease, transform .18s ease, color .18s ease;
  flex-shrink:0;
}
.social-btn:hover{ background:linear-gradient(135deg, var(--coral), var(--rose)); color:#fff; transform:translateY(-2px); }
.social-btn.wa{
  width:auto; padding:0 18px 0 14px; border-radius:999px;
  background:rgba(255,255,255,.1); font-weight:700; font-size:.86rem; white-space:nowrap;
}
.social-btn.wa span{ color:#EFE8E1; }
.social-btn.wa:hover span{ color:#fff; }

/* ---------- Floating WhatsApp button ---------- */
.wa-float{
  position:fixed; right:22px; bottom:22px; z-index:60;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 28px -8px rgba(37,211,102,.6);
  transition:transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover{ transform:scale(1.08); box-shadow:0 16px 34px -6px rgba(37,211,102,.7); }
.wa-float svg{ width:28px; height:28px; }
@media (max-width:480px){
  .wa-float{ width:52px; height:52px; right:16px; bottom:16px; }
  .wa-float svg{ width:25px; height:25px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  padding:52px 0 30px; position:relative; overflow:hidden;
}
.page-hero .hero-blob{ width:420px; height:420px; top:-140px; right:-140px; }
.page-hero h1{ position:relative; z-index:1; }
.breadcrumb{
  position:relative; z-index:1;
  font-size:.86rem; color:var(--muted); margin-bottom:14px;
}
.breadcrumb a{ color:var(--coral-deep); font-weight:700; }

/* ---------- FAQ ---------- */
.faq-item{
  border-bottom:1px solid var(--line);
  padding:20px 0;
}
.faq-item summary{
  cursor:pointer; font-weight:700; color:var(--navy);
  font-family:'Fraunces',serif; font-size:1.06rem;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+"; font-size:1.4rem; color:var(--coral); flex-shrink:0;
  transition:transform .2s ease;
}
.faq-item[open] summary::after{ transform:rotate(45deg); }
.faq-item p{ margin-top:12px; color:var(--ink); }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:44px; }
@media (max-width:860px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-item{ display:flex; gap:14px; align-items:flex-start; margin-bottom:20px; }
.contact-item .icon{
  width:44px;height:44px;border-radius:14px;flex-shrink:0;
  background:linear-gradient(135deg,var(--peach),var(--rose));
  display:flex;align-items:center;justify-content:center;font-size:1.2rem;
}
.form-field{ margin-bottom:16px; }
.form-field label{ display:block; font-weight:700; font-size:.86rem; margin-bottom:6px; color:var(--navy); }
.form-field input, .form-field textarea{
  width:100%; padding:13px 16px; border-radius:12px; border:1.5px solid var(--line);
  font-family:inherit; font-size:.95rem; background:var(--paper); color:var(--ink);
}
.form-field textarea{ min-height:120px; resize:vertical; }
.form-field input:focus, .form-field textarea:focus{ outline:2px solid var(--coral); outline-offset:1px; }

/* ---------- Gallery ---------- */
.gallery-grid{
  columns:3 220px; column-gap:18px;
}
.gallery-grid figure{
  margin:0 0 18px; break-inside:avoid; border-radius:var(--radius-md);
  overflow:hidden; box-shadow:0 10px 26px -20px rgba(51,58,92,.4);
  position:relative;
}
.gallery-grid figcaption{
  position:absolute; left:0; right:0; bottom:0;
  padding:14px 16px; font-size:.82rem; font-weight:600; color:#fff;
  background:linear-gradient(0deg, rgba(51,58,92,.78), transparent);
}
@media (max-width:640px){ .gallery-grid{ columns:1 100%; } }

/* ---------- Blog ---------- */
.blog-card .meta{ font-size:.8rem; color:var(--muted); font-weight:700; letter-spacing:.03em; margin-bottom:8px; }
.post-body h2{ margin-top:1.4em; }
.post-body p{ font-size:1.02rem; }
.post-hero-img{ border-radius:var(--radius-lg); overflow:hidden; margin-bottom:8px; box-shadow:var(--shadow); }

/* ---------- CTA banner ---------- */
.cta-banner{
  background:linear-gradient(120deg, var(--coral), var(--rose));
  border-radius:var(--radius-lg);
  padding:48px; color:#fff; text-align:center;
  position:relative; overflow:hidden;
}
.cta-banner h2{ color:#fff; }
.cta-banner p{ color:rgba(255,255,255,.92); }
.cta-banner .btn-ghost{ border-color:#fff; color:#fff; }
.cta-banner .btn-ghost:hover{ background:rgba(255,255,255,.15); }
.cta-banner .btn-primary{ background:#fff; color:var(--coral-deep); box-shadow:none; }
