/* =============================================================
   Nilsu — Ebeveyn Danışmanlığı Web Sitesi (Taslak v0.1)
   Sıcak, neşeli ama dengeli görsel dil — WCAG 2.2 AA kontrast hedefi
   ============================================================= */

:root {
  /* Renk paleti */
  --cream: #FFF9F1;          /* zemin */
  --cream-2: #FDF1E3;        /* alternatif bölüm zemini */
  --white: #FFFFFF;
  --ink: #33303A;            /* ana metin */
  --ink-soft: #5C5766;       /* ikincil metin */
  --teal: #0E7368;           /* birincil marka rengi (beyaz üstünde AA) */
  --teal-dark: #0A5950;
  --teal-tint: #E0F2EF;
  --coral: #C7442E;          /* vurgu (beyaz üstünde AA) */
  --coral-bright: #E85D45;   /* dekoratif */
  --coral-tint: #FCE7E1;
  --sun: #F4B942;            /* dekoratif güneş sarısı */
  --sun-tint: #FDF3D8;
  --lilac-tint: #EEE9F7;
  --lilac: #6B5B95;

  /* Takvim durum renkleri (metin/ikonla birlikte kullanılır) */
  --ok: #1B7F4B;    --ok-bg: #E3F4EA;
  --warn: #8A5A00;  --warn-bg: #FBEFD4;
  --full: #AC3A2A;  --full-bg: #FAE3DE;
  --closed: #6E6A75; --closed-bg: #EFECEA;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 6px 24px rgba(51, 48, 58, 0.08);
  --shadow-lg: 0 12px 40px rgba(51, 48, 58, 0.12);
  --maxw: 1120px;

  --font-head: "Nunito", "Segoe UI", sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

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

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.25; color: var(--ink); }
h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
a { color: var(--teal); }
a:hover { color: var(--teal-dark); }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Üst bar & navigasyon ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 249, 241, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #F0E4D3;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 1.25rem; max-width: var(--maxw); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-bright), var(--sun));
  display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
  flex-shrink: 0;
}
.brand-text { line-height: 1.15; }
.brand-name { font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: 1.05rem; }
.brand-tag { font-size: .78rem; color: var(--ink-soft); }

.main-nav ul { list-style: none; display: flex; gap: .25rem; align-items: center; flex-wrap: wrap; }
.main-nav a {
  display: block; padding: .5rem .8rem; border-radius: 999px;
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem;
}
.main-nav a:hover { background: var(--teal-tint); color: var(--teal-dark); }
.main-nav a[aria-current="page"] { background: var(--ink); color: #fff; }

.nav-toggle {
  display: none; background: none; border: 2px solid var(--ink); border-radius: 12px;
  padding: .45rem .7rem; font-family: var(--font-head); font-weight: 800; font-size: .95rem; color: var(--ink); cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: .4rem; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid #F0E4D3; box-shadow: var(--shadow-lg); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; padding: .75rem 1.25rem 1.25rem; gap: .35rem; }
  .main-nav a { padding: .8rem 1rem; border-radius: 12px; }
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 999px; text-decoration: none;
  border: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 6px 18px rgba(199, 68, 46, .3); }
.btn-primary:hover { background: #B03A26; color: #fff; }
.btn-secondary { background: var(--white); color: var(--teal-dark); border: 2px solid var(--teal); }
.btn-secondary:hover { background: var(--teal-tint); color: var(--teal-dark); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid #D9CFC0; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-sm { padding: .55rem 1.1rem; font-size: .9rem; min-height: 40px; }

/* ---------- Bölümler ---------- */
.section { padding: 4rem 0; }
.section-alt { background: var(--cream-2); }
.section-head { max-width: 680px; margin: 0 auto 2.5rem; text-align: center; }
.section-head .eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: .85rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--coral);
  background: var(--coral-tint); padding: .3rem .9rem; border-radius: 999px; margin-bottom: .9rem;
}
.section-head p { color: var(--ink-soft); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 4.5rem 0 5rem; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.hero h1 .accent { color: var(--coral); }
.hero p.lead { font-size: 1.2rem; color: var(--ink-soft); margin: 1.2rem 0 1.8rem; }
.hero-ctas { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-note { margin-top: 1.1rem; font-size: .9rem; color: var(--ink-soft); }
.hero-art { position: relative; }
.blob {
  border-radius: 38% 62% 55% 45% / 45% 40% 60% 55%;
  background: linear-gradient(140deg, var(--teal-tint), var(--sun-tint));
  aspect-ratio: 1; display: grid; place-items: center; box-shadow: var(--shadow);
}
.blob .art-emoji { font-size: clamp(4rem, 10vw, 7rem); }
.blob figcaption { position: absolute; bottom: -0.5rem; left: 50%; transform: translateX(-50%); white-space: nowrap; background: #fff; border-radius: 999px; padding: .4rem 1rem; font-size: .8rem; color: var(--ink-soft); box-shadow: var(--shadow); }
.confetti { position: absolute; border-radius: 50%; opacity: .55; }

@media (max-width: 800px) {
  .hero { padding: 3rem 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 320px; margin: 0 auto; }
}

/* ---------- Kart ızgaraları ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.6rem; position: relative;
  border-top: 5px solid transparent;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .97rem; margin-bottom: .9rem; }
.card .who { font-size: .88rem; color: var(--ink); background: var(--cream-2); border-radius: 10px; padding: .5rem .8rem; margin-bottom: 1rem; }
.card .who strong { font-family: var(--font-head); }
.card-actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: auto; }
.card.flex { display: flex; flex-direction: column; }

.card.tone-teal  { border-top-color: var(--teal); }
.card.tone-coral { border-top-color: var(--coral-bright); }
.card.tone-sun   { border-top-color: var(--sun); }
.card.tone-lilac { border-top-color: var(--lilac); }

.card-icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.7rem; margin-bottom: 1rem;
}
.tone-teal  .card-icon { background: var(--teal-tint); }
.tone-coral .card-icon { background: var(--coral-tint); }
.tone-sun   .card-icon { background: var(--sun-tint); }
.tone-lilac .card-icon { background: var(--lilac-tint); }

/* İhtiyaç kartları (ana sayfa yönlendirme) */
.need-card {
  display: flex; align-items: center; gap: 1rem; text-decoration: none;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.15rem 1.3rem; color: var(--ink); font-weight: 600; line-height: 1.45;
  border: 2px solid transparent; transition: border-color .15s ease, transform .15s ease;
}
.need-card:hover { border-color: var(--teal); transform: translateY(-2px); color: var(--ink); }
.need-card .need-emoji { font-size: 1.6rem; flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--cream-2); }
.need-card .arrow { margin-left: auto; color: var(--teal); font-weight: 800; flex-shrink: 0; }

/* ---------- Süreç adımları ---------- */
.steps { counter-reset: step; display: grid; gap: 1.4rem; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem; }
.step .num {
  counter-increment: step;
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--teal); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  margin-bottom: 1rem;
}
.step .num::before { content: counter(step); }
.step h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .93rem; margin: 0; }

.steps-v { counter-reset: step; display: grid; gap: 1rem; }
.step-v { display: flex; gap: 1.2rem; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.4rem 1.6rem; }
.step-v .num { counter-increment: step; flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--coral); color: #fff; font-family: var(--font-head); font-weight: 800; }
.step-v .num::before { content: counter(step); }
.step-v h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.step-v p { color: var(--ink-soft); margin: 0; font-size: .97rem; }

/* ---------- Yorumlar ---------- */
.quote-row { display: grid; gap: 1.4rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .quote-row { grid-template-columns: 1fr; } }
.quote { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem; }
.quote .stars { color: var(--sun); font-size: 1.05rem; letter-spacing: .1em; margin-bottom: .6rem; }
.quote blockquote { font-style: italic; color: var(--ink); margin-bottom: .8rem; }
.quote cite { font-style: normal; font-size: .88rem; color: var(--ink-soft); font-weight: 700; }

/* ---------- Bilgi kutuları ---------- */
.note {
  border-radius: var(--radius); padding: 1.2rem 1.4rem; margin: 1.5rem 0;
  display: flex; gap: .9rem; align-items: flex-start; font-size: .96rem;
}
.note .note-icon { flex-shrink: 0; font-size: 1.3rem; }
.note-info { background: var(--teal-tint); border-left: 5px solid var(--teal); }
.note-warn { background: var(--sun-tint); border-left: 5px solid #C9922A; }
.note-danger { background: var(--full-bg); border-left: 5px solid var(--full); }
.note p { margin: 0; }

.placeholder-flag {
  display: inline-block; background: var(--lilac-tint); color: var(--lilac);
  font-size: .78rem; font-weight: 700; padding: .15rem .6rem; border-radius: 999px; vertical-align: middle;
}

/* ---------- CTA bandı ---------- */
.cta-band { background: linear-gradient(120deg, var(--teal), var(--teal-dark)); color: #fff; border-radius: var(--radius-lg); padding: 3rem 2rem; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: .6rem; }
.cta-band p { color: #D5EDE9; max-width: 560px; margin: 0 auto 1.6rem; }
.cta-band .btn-primary { background: var(--sun); color: #4A3608; box-shadow: none; }
.cta-band .btn-primary:hover { background: #F6C766; color: #4A3608; }

/* ---------- Randevu takvimi ---------- */
.booking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 900px) { .booking-layout { grid-template-columns: 1fr; } }

.panel { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem; }
.panel h3 { margin-bottom: 1rem; }

.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-header .cal-title { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; }
.cal-nav-btn { background: var(--cream-2); border: none; border-radius: 12px; width: 42px; height: 42px; font-size: 1.2rem; cursor: pointer; color: var(--ink); }
.cal-nav-btn:hover:not(:disabled) { background: var(--teal-tint); }
.cal-nav-btn:disabled { opacity: .35; cursor: not-allowed; }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .35rem; }
.cal-dow { text-align: center; font-size: .78rem; font-weight: 800; color: var(--ink-soft); padding: .3rem 0; font-family: var(--font-head); }
.cal-day {
  aspect-ratio: 1; border-radius: 12px; border: 2px solid transparent; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .1rem;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem; background: var(--white); color: var(--ink);
  padding: .2rem;
}
.cal-day .day-state { font-size: .6rem; font-weight: 800; letter-spacing: .02em; }
.cal-day.is-empty { visibility: hidden; }
.cal-day.state-ok { background: var(--ok-bg); color: var(--ok); }
.cal-day.state-ok:hover { border-color: var(--ok); }
.cal-day.state-warn { background: var(--warn-bg); color: var(--warn); }
.cal-day.state-warn:hover { border-color: var(--warn); }
.cal-day.state-full { background: var(--full-bg); color: var(--full); cursor: not-allowed; }
.cal-day.state-closed { background: var(--closed-bg); color: var(--closed); cursor: not-allowed; }
.cal-day.state-past { background: transparent; color: #B9B4BE; cursor: not-allowed; }
.cal-day.is-selected { border-color: var(--ink); background: var(--ink); color: #fff; }
.cal-day.is-selected .day-state { color: #fff; }

.legend { display: flex; flex-wrap: wrap; gap: .7rem 1.2rem; margin-top: 1.1rem; font-size: .82rem; }
.legend .lg { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; }
.legend .dot { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.legend .dot-ok { background: var(--ok-bg); border: 2px solid var(--ok); }
.legend .dot-warn { background: var(--warn-bg); border: 2px solid var(--warn); }
.legend .dot-full { background: var(--full-bg); border: 2px solid var(--full); }
.legend .dot-closed { background: var(--closed-bg); border: 2px solid var(--closed); }
.legend .dot-sel { background: var(--ink); border: 2px solid var(--ink); }

.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin-top: .8rem; }
@media (max-width: 480px) { .slot-grid { grid-template-columns: repeat(2, 1fr); } }
.slot {
  border-radius: 12px; border: 2px solid var(--ok); background: var(--ok-bg); color: var(--ok);
  font-family: var(--font-head); font-weight: 800; font-size: .98rem; padding: .8rem .4rem; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: .1rem; min-height: 56px;
}
.slot .slot-state { font-size: .64rem; font-weight: 800; }
.slot.slot-full { border-color: #E5C4BD; background: var(--full-bg); color: var(--full); cursor: not-allowed; text-decoration: line-through; }
.slot.is-selected { background: var(--ink); border-color: var(--ink); color: #fff; }

/* Randevu akış adım göstergesi */
.flow-steps { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; list-style: none; padding-left: 0; }
.flow-step {
  font-size: .8rem; font-weight: 700; font-family: var(--font-head);
  background: var(--white); border: 2px solid #E8DCC9; color: var(--ink-soft);
  border-radius: 999px; padding: .35rem .85rem;
}
.flow-step.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.flow-step.done { background: var(--teal-tint); border-color: var(--teal); color: var(--teal-dark); }

/* ---------- Formlar ---------- */
.form-grid { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-family: var(--font-head); font-weight: 800; font-size: .92rem; margin-bottom: .35rem; }
.field .req { color: var(--coral); }
.field input[type="text"], .field input[type="tel"], .field input[type="email"], .field input[type="number"],
.field select, .field textarea {
  width: 100%; padding: .8rem 1rem; border-radius: 12px; border: 2px solid #E3D8C6;
  font-family: var(--font-body); font-size: 1rem; background: #fff; color: var(--ink); min-height: 48px;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); outline: none; box-shadow: 0 0 0 3px var(--teal-tint); }
.field .hint { font-size: .82rem; color: var(--ink-soft); margin-top: .3rem; }
.field .error-msg { display: none; font-size: .85rem; color: var(--full); font-weight: 700; margin-top: .3rem; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--full); }
.field.has-error .error-msg { display: block; }

.check { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; }
.check input[type="checkbox"] { width: 22px; height: 22px; margin-top: .15rem; accent-color: var(--teal); flex-shrink: 0; }

.radio-cards { display: flex; gap: .7rem; flex-wrap: wrap; }
.radio-card { position: relative; }
.radio-card input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-card span {
  display: inline-block; padding: .6rem 1.2rem; border-radius: 999px; border: 2px solid #E3D8C6;
  font-weight: 700; font-size: .92rem; background: #fff;
}
.radio-card input:checked + span { background: var(--teal); border-color: var(--teal); color: #fff; }
.radio-card input:focus-visible + span { outline: 3px solid var(--coral); outline-offset: 2px; }

/* Özet ve başarı */
.summary-list { list-style: none; margin: 1rem 0; }
.summary-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px dashed #E8DCC9; font-size: .95rem; }
.summary-list li span:first-child { color: var(--ink-soft); font-weight: 700; }
.success-box { text-align: center; padding: 2rem 1rem; }
.success-box .big { font-size: 3.2rem; margin-bottom: 1rem; }

/* ---------- Hizmet detayları ---------- */
.service-detail { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 2.2rem; margin-bottom: 2rem; scroll-margin-top: 100px; }
.service-detail .svc-head { display: flex; gap: 1.2rem; align-items: center; margin-bottom: 1.2rem; }
.service-detail .svc-emoji { font-size: 2rem; width: 64px; height: 64px; flex-shrink: 0; border-radius: 18px; display: grid; place-items: center; background: var(--cream-2); }
.service-detail h2 { font-size: 1.5rem; }
.svc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.2rem 0; }
@media (max-width: 700px) { .svc-cols { grid-template-columns: 1fr; } }
.svc-box { background: var(--cream); border-radius: var(--radius); padding: 1.2rem 1.4rem; }
.svc-box h3 { font-size: 1rem; margin-bottom: .5rem; color: var(--teal-dark); }
.svc-box ul { padding-left: 1.2rem; color: var(--ink-soft); font-size: .95rem; }
.svc-box ul li { margin-bottom: .35rem; }

/* ---------- Test kartları ---------- */
.test-group { margin-bottom: 3rem; }
.test-group > h2 { display: flex; align-items: center; gap: .7rem; margin-bottom: .4rem; }
.test-group > p.group-desc { color: var(--ink-soft); margin-bottom: 1.4rem; max-width: 720px; }
.test-card { display: flex; flex-direction: column; }
.test-card .meta { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .9rem; }
.test-card .meta span { font-size: .78rem; font-weight: 700; background: var(--cream-2); border-radius: 999px; padding: .25rem .7rem; color: var(--ink-soft); }
.test-card .no-diag { font-size: .8rem; color: var(--ink-soft); border-top: 1px dashed #E8DCC9; padding-top: .7rem; margin: .9rem 0; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px dashed #E8DCC9; }
.contact-item:last-child { border-bottom: none; }
.contact-item .ci-icon { font-size: 1.4rem; width: 48px; height: 48px; flex-shrink: 0; border-radius: 14px; display: grid; place-items: center; background: var(--teal-tint); }
.contact-item h3 { font-size: 1rem; margin-bottom: .15rem; }
.contact-item a { font-weight: 700; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--closed-bg); }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }
.hours-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours-table td { padding: .5rem 0; border-bottom: 1px dashed #E8DCC9; }
.hours-table td:last-child { text-align: right; font-weight: 700; }
.hours-table .closed-day td:last-child { color: var(--full); }

/* ---------- Sayfa başlığı bandı ---------- */
.page-hero { background: linear-gradient(120deg, var(--cream-2), var(--sun-tint)); padding: 3.2rem 0 2.8rem; }
.page-hero h1 { margin-bottom: .6rem; }
.page-hero p { color: var(--ink-soft); max-width: 720px; margin: 0; font-size: 1.1rem; }
.breadcrumb { font-size: .85rem; margin-bottom: 1rem; color: var(--ink-soft); }
.breadcrumb a { color: var(--teal-dark); }

/* ---------- Footer ---------- */
.site-footer { background: #2E2B35; color: #CFC9D6; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem; padding: 3rem 0 2rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: .8rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: #CFC9D6; text-decoration: none; font-size: .95rem; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid #45414F; padding: 1.2rem 0; font-size: .85rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-crisis { background: #3A2F32; padding: 1rem 0; font-size: .88rem; }
.footer-crisis .container { display: flex; gap: .7rem; align-items: flex-start; }

/* ---------- Yardımcılar ---------- */
.center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Marka görselleri ve fotoğraflar (v0.3) ---------- */
.brand-mark-img { height: 46px; width: auto; display: block; }
.blob-img {
  width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center;
  border-radius: 38% 62% 55% 45% / 45% 40% 60% 55%;
  box-shadow: var(--shadow-lg); display: block;
}
.hero-art figure { position: relative; margin: 0; }
.photo-rounded { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.footer-logo { width: 150px; height: auto; margin-bottom: .9rem; }
.office-gallery img { aspect-ratio: 4/3; }


/* WhatsApp sabit butonu */
.wa-float{position:fixed;right:1.1rem;bottom:1.1rem;z-index:80;display:flex;align-items:center;gap:.5rem;
  background:#25D366;color:#fff;text-decoration:none;font-weight:800;border-radius:999px;
  padding:.7rem 1.1rem;box-shadow:0 6px 18px rgba(0,0,0,.22);transition:transform .15s}
.wa-float:hover{transform:scale(1.05)}
.wa-float svg{width:22px;height:22px;flex:none}
.wa-float span{font-size:.95rem}
@media (max-width:560px){ .wa-float span{display:none} .wa-float{padding:.8rem} }


/* Danışan yorumları — kaydırılabilir şerit */
.quote-scroller { display: flex; gap: 1.2rem; overflow-x: auto; padding: .4rem .2rem 1rem .2rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.quote-scroller .quote { flex: 0 0 320px; scroll-snap-align: start; }
.quote-scroller::-webkit-scrollbar { height: 8px; }
.quote-scroller::-webkit-scrollbar-thumb { background: var(--line, #e5ddd0); border-radius: 99px; }
@media (max-width: 560px) { .quote-scroller .quote { flex-basis: 85%; } }
