/* ============ GENEL ============ */
/* Renkler logonuzdan alındı: koyu yeşil #1d3b2f, altın #b1915e, krem #f6eee6.
   ⚠️ Altın yalnızca çizgi/çerçeve gibi dekoratif yerlerde kullanılır — krem zemin
   üzerinde yazı olarak kontrastı 2.75'te kalıyor ve okunmuyor. Yazı gerekirse
   --gold-deep kullanın. Ayrıntı OKUBENI.md içinde. */
:root {
  --brand: #1d3b2f;       /* marka yeşili: zeminler, ikonlar, butonlar */
  --brand-text: #1d3b2f;  /* açık zemin üzerindeki yazılar */
  --brand-hover: #142a21; /* buton üzerine gelince */
  --brand-light: #e9f0ec; /* açık yeşil zeminler */
  --gold: #b1915e;        /* SADECE dekoratif: çizgi, çerçeve, ayraç */
  --gold-deep: #8a6d3c;   /* altın tonunun yazı için koyulaştırılmış hali */
  --wa: #0e7a45;          /* WhatsApp yeşilinin okunabilir tonu */
  --wa-dark: #0a5f36;
  --ink: #1a2e26;
  --muted: #5a6b63;
  --bg: #ffffff;
  --bg-alt: #faf6f0;      /* krem bölüm zemini */
  --line: #e6e2da;
  --radius: 16px;
  --shadow: 0 8px 30px rgba(26, 46, 38, 0.09);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

img, svg { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 820px; }

.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.eyebrow {
  display: inline-block;
  color: var(--brand-text);
  background: var(--brand-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

h1, h2, h3 { line-height: 1.25; font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); }

/* ============ BUTONLAR ============ */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: inherit;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(29, 59, 47, 0.28);
}
.btn-primary:hover { background: var(--brand-hover); transform: translateY(-2px); }

.btn-ghost {
  border-color: var(--brand);
  color: var(--brand-text);
  background: transparent;
}
.btn-ghost:hover { background: var(--brand-light); }

/* WhatsApp'a giden butonlar — yeşil renk ve ikon bu eylemi diğerlerinden ayırır */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 6px 18px rgba(14, 122, 69, 0.3);
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); }
.btn-wa svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-lg { padding: 15px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ============ ÜST BAR ============ */
.topbar {
  background: var(--ink);
  color: #d8ded6;
  font-size: 0.82rem;
  padding: 7px 0;
}
.topbar-inner {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ MENÜ ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.2rem;
}
.logo em { color: var(--brand); font-style: normal; }
.logo img { width: 62px; height: auto; }
.logo-light img { width: 56px; }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
/* :not(.btn) şart — aksi hâlde bu kural, buton görünümlü menü
   bağlantısının beyaz yazı rengini ezip zeminle aynı renge çeviriyor. */
.nav a:not(.btn) {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
  transition: color 0.15s ease;
}
.nav a:not(.btn):hover { color: var(--brand); }
.nav-cta { padding: 10px 22px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(160deg, #faf6f0 0%, #eef2ec 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 110px;
}

.badge {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brand-text);
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(23, 48, 59, 0.05);
}

.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  margin-bottom: 18px;
}

.highlight {
  color: var(--brand);
  position: relative;
}

.hero-text > p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { display: flex; justify-content: center; }
.hero-svg { width: min(400px, 100%); }

.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

/* ============ KARTLAR ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--brand);
}

.card-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: var(--brand-light);
  border-radius: 14px;
  margin-bottom: 16px;
}

.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { font-size: 0.9rem; color: var(--muted); }

/* ============ HAKKIMIZDA ============ */
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

/* Portre — altın çerçeve marka kimliğinden geliyor */
.about-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.about-text h2 { margin-top: 4px; margin-bottom: 16px; }
.about-text > p { color: var(--muted); margin-bottom: 14px; }

/* Kapanış cümlesi — bölümün özeti olduğu için vurgulanır.
   Seçici, yukarıdaki `.about-text > p` kuralını geçecek özgüllükte olmalı. */
.about-text > p.about-goal {
  background: var(--brand-light);
  border-left: 3px solid var(--brand);
  border-radius: 0 12px 12px 0;
  padding: 15px 18px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 24px;
}

.check-list { list-style: none; margin-bottom: 28px; }
.check-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  font-weight: 600;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}

/* Henüz başlamamış hizmet — kart soluk görünür ve rozet taşır */
.card-soon { position: relative; background: #fbfdfd; }
.card-soon .card-icon { opacity: 0.7; }
.soon-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #fff3d6;
  border: 1px solid #edd49a;
  color: #7a4e00;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ============ SSS ============ */
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq details[open] { border-color: var(--brand); }

.faq summary {
  padding: 18px 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--brand);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "–"; }

.faq details p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

/* ============ İLETİŞİM ============ */
/* Sol sütunda adres listesi + harita, sağda randevu kartı */
.contact-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: start;
}

.contact-info h2 { margin-top: 4px; }
.contact-info > p { color: var(--muted); margin: 10px 0 26px; }

.contact-list { list-style: none; }
.contact-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.contact-list a { color: var(--brand-text); font-weight: 700; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

.ci {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--brand-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ============ RANDEVU KARTI ============ */
.cta-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

.cta-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #e4efe7;
  color: var(--wa);
  margin-bottom: 18px;
}
.cta-icon svg { width: 30px; height: 30px; }

.cta-card h3 { font-size: 1.35rem; }
.cta-card > p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 10px 0 24px;
}
.cta-card .btn { margin-bottom: 12px; }

.cta-notes {
  list-style: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.cta-notes li {
  position: relative;
  padding-left: 26px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 9px;
}
.cta-notes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--wa);
  font-weight: 800;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: #c2cbc2;
  font-size: 0.92rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding: 56px 24px 40px;
}

.footer h4 { color: #fff; margin-bottom: 14px; font-size: 1rem; }
.footer a {
  display: block;
  color: #c2cbc2;
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.15s ease;
}
.footer a:hover { color: #fff; }

.logo-light { color: #fff; margin-bottom: 12px; }
.footer-desc { max-width: 260px; }
.footer-addr { display: block; margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  text-align: center;
  font-size: 0.82rem;
}

/* ============ SABİT WHATSAPP BUTONU ============ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(14, 122, 69, 0.4);
  z-index: 90;
  transition: transform 0.15s ease, background 0.15s ease;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08); background: var(--wa-dark); }

/* ============ HARİTA ============ */
.map-box {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--brand-light);
}

/* Harita, ziyaretçi izin verene kadar yüklenmez (KVKK dostu) */
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 240px;
  padding: 28px 22px;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(29, 59, 47, 0.05) 14px 28px),
    var(--brand-light);
}
.map-placeholder p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 340px;
}
.map-placeholder a {
  color: var(--brand-text);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.map-placeholder a:hover { text-decoration: underline; }
.map-box iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

/* ============ FOOTER EKLERİ ============ */
.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.socials a {
  width: 38px;
  height: 38px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.15s ease;
}
.socials a:hover { background: var(--gold); }
.socials svg { width: 18px; height: 18px; fill: #fff; }

.footer-legal {
  max-width: 760px;
  margin: 0 auto 10px;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #93a096;
}
.footer-bottom a { display: inline; color: #c2cbc2; text-decoration: underline; }

/* ============ BLOG LİSTESİ ============ */
.yazi-kartlari {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.yazi-kart {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.yazi-kart:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--brand);
}
.yazi-kart-baglanti { text-decoration: none; color: inherit; display: block; }

.yazi-kart-gorsel {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--brand-light);
}
/* Kapak fotoğrafı olmayan yazılarda logo gösterilir */
.yazi-kart-bos {
  display: flex;
  align-items: center;
  justify-content: center;
}
.yazi-kart-bos img { width: 90px; height: auto; opacity: 0.5; }

.yazi-kart-govde { padding: 22px 22px 26px; }
.yazi-kart-tarih {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.yazi-kart h3 { font-size: 1.08rem; margin-bottom: 8px; }
.yazi-kart p { font-size: 0.9rem; color: var(--muted); margin-bottom: 14px; }
.yazi-kart-devam { font-size: 0.88rem; font-weight: 700; color: var(--brand-text); }

.bos-liste {
  text-align: center;
  color: var(--muted);
  padding: 40px 0 60px;
}

/* ============ TEK YAZI SAYFASI ============ */
.yazi-sayfa { padding: 56px 0 80px; }

.geri-baglanti {
  display: inline-block;
  color: var(--brand-text);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 22px;
}
.geri-baglanti:hover { text-decoration: underline; }

.yazi-sayfa h1 {
  font-size: clamp(1.7rem, 3.8vw, 2.5rem);
  margin-bottom: 12px;
}

.yazi-meta {
  color: var(--muted);
  font-size: 0.9rem;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 30px;
}

.yazi-kapak {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

/* Yazı metni — okunabilirlik için biraz daha büyük ve ferah */
.yazi-govde { font-size: 1.04rem; line-height: 1.8; }
.yazi-govde > * + * { margin-top: 18px; }
.yazi-govde h2 { font-size: 1.4rem; margin-top: 38px; }
.yazi-govde h3 { font-size: 1.15rem; margin-top: 30px; }
.yazi-govde ul, .yazi-govde ol { margin-left: 24px; }
.yazi-govde li + li { margin-top: 7px; }
.yazi-govde a { color: var(--brand-text); font-weight: 600; }
.yazi-govde img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 26px 0;
}
.yazi-govde blockquote {
  border-left: 3px solid var(--gold);
  background: var(--bg-alt);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  font-style: italic;
}
.yazi-govde code {
  background: var(--brand-light);
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 0.92em;
}

/* Yazı sonundaki randevu çağrısı */
.yazi-cta {
  margin-top: 52px;
  padding: 32px;
  background: var(--brand-light);
  border-radius: 20px;
  text-align: center;
}
.yazi-cta h2 { font-size: 1.3rem; margin-bottom: 8px; }
.yazi-cta > p { color: var(--muted); margin-bottom: 22px; }
.yazi-cta-butonlar {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.yazi-uyari {
  margin-top: 30px;
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

/* ============ KLAVYE ODAĞI ============ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============ ANİMASYON ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* Hareket azaltma tercihi olan ziyaretçiler için animasyonları kapat */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============ MOBİL ============ */
@media (max-width: 900px) {
  .cards, .yazi-kartlari { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 90px; }
  .hero-visual { order: -1; }
  .hero-svg { width: min(280px, 80%); }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  /* Tek sütuna inince kartın yapışkan kalması gereksiz */
  .cta-card { position: static; }

  .menu-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav.open { max-height: 480px; }
  .nav a { padding: 14px 24px; border-top: 1px solid var(--line); }
  .nav-cta { margin: 14px 24px; text-align: center; }
}

@media (max-width: 560px) {
  .cards, .yazi-kartlari { grid-template-columns: 1fr; }
  .yazi-cta { padding: 24px 18px; }
  .yazi-cta-butonlar .btn { width: 100%; }
  .section { padding: 64px 0; }
  .hero-inner { padding-bottom: 80px; }
  .topbar-mail { display: none; }
  .cta-card { padding: 24px 18px; }
  .hero-actions .btn { width: 100%; }
}
