/* ============================================
   Psikolog Kıvanç Kandemir — Site Stilleri
   Palet: beyaz/krem zemin, kahverengi vurgu — kurumsal, aydınlık
   ============================================ */

:root{
  --bg: #ffffff;
  --bg-alt: #f1e6d3;
  --surface: #ffffff;
  --surface-2: #f3ece1;
  --ink: #2b2018;
  --ink-muted: #6e5c4a;
  --ink-faint: #9c8971;
  --accent: #6b4423;       /* ana kahverengi */
  --accent-soft: #8a5a32;  /* açık zeminde okunan orta kahve */
  --accent-deep: #4a2e16;  /* koyu vurgu — başlık/rakam */
  --sage: #6b4423;         /* imza ikon rengi (yaprak, onay işareti) — koyu kahve */
  --sage-soft: #c79f6e;    /* koyu kahve zeminlerde kullanılan açık ton */
  --wa-green: #25D366;     /* WhatsApp marka yeşili — sadece CTA butonlarında */
  --wa-green-deep: #1CA750;
  --line: rgba(43,32,24,0.10);
  --line-strong: rgba(43,32,24,0.18);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1160px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
}

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

html{ scroll-behavior: smooth; }

body{
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }

a{ color: inherit; text-decoration: none; }

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Eyebrow / etiket ---------- */
.eyebrow{
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content: "";
  width: 22px;
  height: 1px;
  background: var(--sage);
  display: inline-block;
}

/* ---------- Üst menü ---------- */
header.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand{
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand span{ color: var(--accent-soft); font-style: italic; font-weight: 400; }
.brand small{
  display:block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 2px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 10px;
  list-style:none;
}
.nav-links a{
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-muted);
  transition: color .2s ease, background .2s ease;
  padding: 8px 14px;
  border-radius: 20px;
}
.nav-links a:hover{ color: var(--accent-deep); background: rgba(107,68,35,0.10); }
.nav-links a.active{ color: var(--accent-deep); background: rgba(107,68,35,0.15); font-weight: 700; }

.btn{
  display:inline-flex;
  align-items:center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor:pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--wa-green);
  color: #ffffff;
  font-weight: 700;
}
.btn-primary:hover{ background: var(--wa-green-deep); }
.btn-ghost{
  border-color: rgba(107,68,35,0.3);
  color: var(--ink);
}
.btn-ghost:hover{ border-color: var(--accent-soft); color: var(--accent-soft); }

.nav-toggle{ display:none; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  background: var(--bg);
}
.hero::before{
  content: "";
  position: absolute;
  top: -18%;
  right: -10%;
  width: 64%;
  height: 145%;
  background: var(--bg-alt);
  border-radius: 42% 58% 63% 37% / 47% 42% 58% 53%;
  z-index: 0;
}
.hero .wrap{ position: relative; z-index: 1; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 64px;
  align-items:center;
}
.hero h1{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.14;
  margin: 20px 0 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero h1 em{
  color: var(--accent-soft);
  font-style: italic;
  font-weight: 400;
}
.hero p.lead{
  color: var(--ink-muted);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-actions{ display:flex; gap: 14px; flex-wrap: wrap; }

.hero-portrait{
  position: relative;
}
.hero-portrait .frame{
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(107,68,35,0.16);
  box-shadow: 0 34px 64px -24px rgba(43,32,24,0.22);
}
.hero-portrait img{
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
}
.hero-portrait .tag{
  position:absolute;
  left: -18px;
  bottom: 28px;
  background: var(--surface);
  border: 1px solid rgba(107,68,35,0.16);
  padding: 14px 20px;
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--ink-muted);
  box-shadow: 0 20px 40px -20px rgba(43,32,24,0.3);
}
.hero-portrait .tag strong{ color: var(--ink); display:block; font-family: var(--serif); font-size: 15px; font-weight: 500;}

/* ---------- Bölüm ortak ---------- */
section{ padding: 88px 0; }
.section-alt{
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
h2.section-title{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 38px);
  margin: 16px 0 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
p.section-desc{
  color: var(--ink-muted);
  max-width: 620px;
  font-size: 16px;
}
.section-head{ margin-bottom: 52px; }

/* ---------- Yaprak ayırıcı (imza öge) ---------- */
.leaf-divider{
  display:flex;
  align-items:center;
  gap: 16px;
  margin: 0 0 40px;
  color: var(--sage);
  opacity: 0.9;
}
.leaf-divider svg{ width: 34px; height: 34px; flex-shrink:0; }
.leaf-divider .line{ flex:1; height:1px; background: var(--line-strong); }

/* ---------- Kartlar (hizmetler / yaklaşım) ---------- */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card{
  background: var(--surface);
  border: 1px solid rgba(107,68,35,0.14);
  border-radius: var(--r-md);
  padding: 32px 28px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card:hover{ border-color: var(--accent-soft); transform: translateY(-4px); box-shadow: 0 22px 40px -22px rgba(43,32,24,0.2); }
.card .icon{
  width: 42px; height:42px;
  color: var(--accent);
  margin-bottom: 20px;
}
.card h3{
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--ink);
}
.card p{
  color: var(--ink-muted);
  font-size: 14.5px;
}

/* ---------- İkili blok (görsel + metin) ---------- */
.split{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items:center;
}
.split img{
  border-radius: var(--r-md);
  border: 1px solid rgba(107,68,35,0.14);
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
  box-shadow: 0 28px 52px -26px rgba(43,32,24,0.2);
}
.split.reverse{ grid-template-columns: 1.1fr 0.9fr; }
.split.reverse .img-col{ order: 2; }

.stat-row{
  display:flex;
  gap: 44px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.stat b{
  display:block;
  font-family: var(--serif);
  font-size: 30px;
  color: var(--accent-deep);
  font-weight: 500;
}
.stat span{
  font-size: 12.5px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Liste (yaklaşım / ilkeler) ---------- */
.check-list{ list-style:none; display:flex; flex-direction:column; gap:16px; }
.check-list li{ display:flex; gap:14px; align-items:flex-start; color: var(--ink-muted); font-size: 15px;}
.check-list svg{ flex-shrink:0; width:18px; height:18px; margin-top:3px; color: var(--sage); }

/* ---------- CTA şerit (koyu kahve — sayfadaki tek koyu blok, kasıtlı kontrast) ---------- */
.cta-strip{
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #4a2e16, #2e1d0f 75%);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip .eyebrow{ color: var(--sage-soft); }
.cta-strip .eyebrow::before{ background: var(--sage-soft); }
.cta-strip h3{
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  max-width: 460px;
  color: #ffffff;
}
.cta-strip p{ color: rgba(255,255,255,0.72); margin-top:10px; font-size:14.5px; max-width:440px;}

/* ---------- İletişim sayfası ---------- */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
}
.contact-card{
  background: var(--surface);
  border:1px solid rgba(107,68,35,0.14);
  border-radius: var(--r-md);
  padding: 30px;
  display:flex;
  gap:18px;
  align-items:flex-start;
  margin-bottom: 18px;
}
.contact-card .icon-wrap{
  width:44px; height:44px;
  border-radius: var(--r-sm);
  background: rgba(107,68,35,0.14);
  color: var(--accent);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.contact-card h4{ font-size:15px; margin-bottom:4px; color: var(--ink); }
.contact-card p, .contact-card a{ color: var(--ink-muted); font-size:14.5px; }
.contact-card a:hover{ color: var(--accent); }

.map-embed{
  border-radius: var(--r-md);
  overflow:hidden;
  border:1px solid var(--line-strong);
  height: 100%;
  min-height: 380px;
}
.map-embed iframe{ width:100%; height:100%; border:0; filter: saturate(0.9); }

/* ---------- Footer ---------- */
footer{
  padding: 52px 0 34px;
  background: linear-gradient(160deg, #3d2612, #2e1d0f 80%);
  color: rgba(255,255,255,0.82);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
footer h5{
  font-size:12.5px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color: var(--sage-soft);
  margin-bottom:16px;
}
footer .brand{ margin-bottom: 12px; color: #ffffff; }
footer .brand small{ color: rgba(255,255,255,0.55); }
footer p{ color: rgba(255,255,255,0.65); font-size:14px; max-width:320px; }
footer ul{ list-style:none; display:flex; flex-direction:column; gap:10px; }
footer ul a{ color: rgba(255,255,255,0.72); font-size:14px; }
footer ul a:hover{ color: var(--sage-soft); }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.14);
  padding-top: 22px;
  display:flex;
  justify-content:space-between;
  color: rgba(255,255,255,0.5);
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- WhatsApp yüzen buton ---------- */
.wa-float{
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 60;
  width: 58px; height:58px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #ffffff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 12px 26px -10px rgba(43,32,24,0.4);
  transition: transform .2s ease;
}
.wa-float:hover{ transform: scale(1.08); background: var(--wa-green-deep); }
.wa-float svg{ width:28px; height:28px; }

/* ---------- Yardımcı sınıflar (inline style yerine) ---------- */
.pb-70{ padding-bottom: 70px; }
.pb-60{ padding-bottom: 60px; }
.pt-0{ padding-top: 0; }
.max-w-520{ max-width: 520px; }
.max-w-640{ max-width: 640px; }
.mt-34{ margin-top: 34px; }
.page-title{
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.18;
  margin: 18px 0 20px;
  font-size: clamp(30px,3.6vw,44px);
  color: var(--ink);
}
.page-title-lg{
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.16;
  margin: 18px 0 20px;
  font-size: clamp(30px,3.8vw,46px);
  max-width: 680px;
  color: var(--ink);
}
.accent-em{
  color: var(--accent-soft);
  font-style: italic;
  font-weight: 400;
}

/* ---------- SSS (Accordion) ---------- */
.faq-list{ display:flex; flex-direction:column; gap:14px; max-width: 760px; }
.faq-item{
  background: var(--surface);
  border: 1px solid rgba(107,68,35,0.14);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-item[open]{ border-color: var(--accent-soft); }
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary .faq-icon{
  flex-shrink:0;
  width: 26px; height:26px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center;
  color: var(--accent);
  transition: transform .25s ease, background .2s ease;
}
.faq-item[open] summary .faq-icon{ transform: rotate(45deg); background: rgba(107,68,35,0.1); }
.faq-item .faq-answer{
  padding: 0 24px 22px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- Responsive ---------- */
@media (max-width: 880px){
  header.site-header{ background: var(--bg); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .hero::before{ display: none; }
  .hero{ background: var(--bg-alt); }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-portrait{ order:-1; max-width: 340px; margin: 0 auto; }
  .grid-3{ grid-template-columns: 1fr; }
  .split, .split.reverse{ grid-template-columns: 1fr; gap: 34px; }
  .split.reverse .img-col{ order:0; }
  .split img{ max-width: 340px; margin: 0 auto; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 26px; }
  .nav-links{
    position: fixed; inset: 64px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    padding: 40px 32px;
    gap: 10px;
    transform: translateX(100%);
    transition: transform .25s ease;
    align-items: flex-start;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-toggle{
    display:flex; align-items:center; justify-content:center;
    width:38px; height:38px;
    border:1px solid rgba(107,68,35,0.25);
    border-radius: var(--r-sm);
    background:none; color:var(--ink); cursor:pointer;
  }
  .nav-cta{ display:none; }
  .cta-strip{ padding: 36px; flex-direction:column; align-items:flex-start; }
}

@media (max-width: 560px){
  .wrap{ padding: 0 20px; }
  .nav{ padding: 16px 20px; }
  section{ padding: 64px 0; }
  .hero{ padding: 56px 0 64px; }
  .hero-portrait .tag{ left: 0; }
}
