/* ==========================================================================
   Fizyoterapi Teması — ESC Medya
   Tek dosya tasarım sistemi. Harici framework yok (yalnızca Font Awesome).
   Yatay listeler CSS scroll-snap ile çalışır; DOM klonlayan carousel yoktur,
   bu sayede panelin canlı düzenleme rozetleri bölümleri bozmaz.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1) Değişkenler
   -------------------------------------------------------------------------- */
:root {
    /* Marka renkleri — FizyoDali logosundan alindi */
    --brand: #3b6cb4;          /* logo mavisi */
    --brand-dark: #2c5391;
    --brand-light: #e9f0fa;
    --accent: #e35b25;         /* logo turuncusu */
    --accent-dark: #c74a18;
    --accent-light: #fdeee7;

    --ink: #17263f;
    --ink-soft: #5a6a85;
    --line: #e4eaf3;
    --bg: #ffffff;
    --bg-soft: #f5f8fc;
    --star: #f5a623;

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 10px rgba(18, 33, 63, .05);
    --shadow: 0 10px 30px rgba(18, 33, 63, .07);
    --shadow-lg: 0 20px 50px rgba(18, 33, 63, .10);

    --header-h: 84px;
    --gutter: 24px;
    --maxw: 1220px;
}

/* --------------------------------------------------------------------------
   2) Temel
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Yatay kayma emniyeti: body'de hidden verildiğinde tarayıcı taşmayı
   html'e devrediyor; ikisine birden clip gerekiyor. clip'i desteklemeyen
   tarayıcılarda hidden geçerli kalır. */
html {
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 14px;
    color: var(--ink);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.02em;
}

h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(26px, 3.4vw, 40px); }
h3 { font-size: clamp(19px, 2vw, 24px); }
h4 { font-size: 18px; }

p { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-dark); }

img { max-width: 100%; height: auto; display: block; }

/* Panelde görsel girilmemişse kırık resim ikonu görünmesin */
img[src=""], img:not([src]) { display: none; }

ul, ol { margin: 0 0 14px; padding-left: 18px; }
ul.clean { list-style: none; margin: 0; padding: 0; }

/* --------------------------------------------------------------------------
   3) Yerleşim
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--soft { background: var(--bg-soft); }
.section--brand { background: var(--brand); }
.section--ink { background: var(--ink); }

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* İçerik + yan sütun düzenleri.
   Inline style KULLANMAYIN: medya sorgusunu ezer ve mobilde iki kolon kalır. */
.split--content { grid-template-columns: 1.9fr 1fr; align-items: start; }
.split--media   { grid-template-columns: 1fr 1.6fr; align-items: start; }
.split--form    { grid-template-columns: 1.4fr 1fr; align-items: start; }
.split--faq     { grid-template-columns: 1.7fr 1fr; align-items: start; }

/* --------------------------------------------------------------------------
   4) Bölüm başlıkları
   -------------------------------------------------------------------------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.section-head { margin-bottom: 38px; }
.section-head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head--center .eyebrow::before { display: none; }
.section-head p { color: var(--ink-soft); font-size: 16px; }

.on-brand .eyebrow,
.on-ink .eyebrow { color: rgba(255, 255, 255, .8); }
.on-brand h1, .on-brand h2, .on-brand h3, .on-brand p,
.on-ink h1, .on-ink h2, .on-ink h3, .on-ink p { color: #fff; }
.on-brand p, .on-ink p { color: rgba(255, 255, 255, .82); }

/* --------------------------------------------------------------------------
   5) Butonlar
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn i { font-size: 13px; }

.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(59, 111, 212, .28); }
.btn--primary:hover { background: var(--brand-dark); color: #fff; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--brand); color: #fff; }

.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn--outline-white:hover { background: #fff; color: var(--ink); }

.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   6) Üst bar + header
   -------------------------------------------------------------------------- */
.topbar {
    background: var(--ink);
    color: rgba(255, 255, 255, .78);
    font-size: 13.5px;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 44px;
    flex-wrap: nowrap;
}

.topbar a { color: rgba(255, 255, 255, .82); }
.topbar a:hover { color: #fff; }

.topbar__list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 0;
}

/* Her bilgi bir ikon rozeti + yazi; dar ekranda yazi dusup ikon kalir */
.topbar__list > li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    padding: 4px 12px 4px 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
}

.topbar__list > li > i,
.topbar__list > li > a > i {
    flex: 0 0 auto;
    width: 26px; height: 26px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: 11px;
}

.topbar__list > li:nth-child(even) > i { background: var(--accent); }

.topbar__text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.topbar__social { display: flex; gap: 8px; }
.topbar__social a {
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .10);
    font-size: 12px;
}
.topbar__social a:hover { background: var(--accent); color: #fff; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

/* Sabit 3 kolon: logo | menu | aksiyonlar — ogeler birbirine giremez.
   Ilk kolon minmax(0,auto): uzun site adi tasma yapmaz, kirpilir. */
.site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 20px;
    min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }

/* Logo kutusu: yüklenen görsel ne olursa olsun aynı optik boyutta durur.
   Yükseklik sabit → küçük kalmaz; genişlik sınırlı → menüyü ezmez. */
.brand__logo {
    height: 52px;              /* header'ın ~%62'si — küçük kalmaz */
    width: auto;
    max-width: 230px;          /* geniş logolarda menüyü ezmez */
    object-fit: contain;       /* hiçbir oranda deforme olmaz */
    object-position: left center;
}

.brand__text {
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.02em;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Logo yuklenmemisse kirik gorsel yerine site adi gosterilir */
.brand__logo[src=""], .brand__logo:not([src]) { display: none; }
.brand__logo[src]:not([src=""]) ~ .brand__text { display: none; }

.main-menu { min-width: 0; justify-self: center; }
.main-menu__list { display: flex; align-items: center; justify-content: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.main-menu__list > li { position: relative; }

.main-menu__list > li > a {
    display: block;
    padding: 11px 13px;
    font-size: 14.5px;
    font-weight: 700;
    white-space: nowrap;
    color: var(--ink);
    border-radius: 999px;
}

.main-menu__list > li > a:hover { background: var(--brand-light); color: var(--brand); }

/* Aktif sayfa — menuden hangi sayfada oldugu net anlasilsin */
.main-menu__list > li.current > a,
.main-menu__list > li.active > a {
    background: var(--brand);
    color: #fff;
}

.main-menu__list > li.dropdown > a::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    margin-left: 7px;
    opacity: .6;
}

.main-menu__list ul {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 232px;
    list-style: none;
    margin: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s ease;
}

.main-menu__list li:hover > ul { opacity: 1; visibility: visible; transform: translateY(0); }

.main-menu__list ul a {
    display: block;
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
}

.main-menu__list ul a:hover { background: var(--brand-light); color: var(--brand); }

.header__actions { display: flex; align-items: center; gap: 12px; justify-self: end; }
.header__actions .btn { white-space: nowrap; }

.nav-toggle {
    display: none;
    width: 46px; height: 46px;
    align-items: center; justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    font-size: 18px;
    cursor: pointer;
}

/* Mobil menü paneli */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
}
.mobile-nav.is-open { display: block; }
.mobile-nav__backdrop { position: absolute; inset: 0; background: rgba(18, 33, 63, .5); }
.mobile-nav__panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 86vw);
    background: #fff;
    padding: 24px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}
.mobile-nav__close {
    position: absolute; top: 18px; right: 18px;
    width: 38px; height: 38px;
    border: none; border-radius: 50%;
    background: var(--bg-soft); color: var(--ink);
    font-size: 16px; cursor: pointer;
}
.mobile-nav__panel ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav__panel > ul { margin-top: 48px; }
.mobile-nav__panel a {
    display: block;
    padding: 12px 14px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    border-radius: var(--radius-sm);
}
.mobile-nav__panel ul ul a { padding-left: 28px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.mobile-nav__panel li.current > a,
.mobile-nav__panel li.active > a { background: var(--brand); color: #fff; border-bottom-color: transparent; }

/* --------------------------------------------------------------------------
   7) Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; background: var(--bg-soft); }

.hero__slides { position: relative; }

.hero__slide {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    overflow: hidden;
}

.hero__slide + .hero__slide { display: none; }

.hero__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(233, 240, 252, .97) 0%, rgba(233, 240, 252, .88) 38%, rgba(233, 240, 252, .25) 62%, rgba(233, 240, 252, 0) 100%);
}

.hero__content { position: relative; z-index: 2; max-width: 620px; padding: 72px 0; }
.hero__title { margin-bottom: 18px; }
.hero__title span { color: var(--brand); display: block; }
.hero__text { font-size: 17px; max-width: 520px; margin-bottom: 28px; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}
.hero__badge i { color: var(--brand); }

/* --------------------------------------------------------------------------
   8) Tanıtım bloğu + fiyat rozeti
   -------------------------------------------------------------------------- */
.promo__media { position: relative; }

.promo__img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.promo__img img { width: 100%; height: 460px; object-fit: cover; }

/* Deneyim / basari rozeti (fiyat degil) */
.stat-badge {
    position: absolute;
    right: -18px;
    bottom: 42px;
    min-width: 172px;
    padding: 22px 26px;
    background: var(--accent);
    border: 6px solid #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}
.stat-badge__value { font-size: 40px; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.03em; }
.stat-badge__label { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255, 255, 255, .92); margin-top: 6px; }

.checklist { list-style: none; margin: 22px 0 28px; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--ink); }
.checklist li i {
    flex: 0 0 auto;
    width: 22px; height: 22px;
    margin-top: 3px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 10px;
}

/* --------------------------------------------------------------------------
   9) Kayan yazı şeridi (marquee)
   -------------------------------------------------------------------------- */
.marquee {
    padding: 26px 0;
    overflow: hidden;
    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.marquee__track {
    display: flex;
    width: max-content;
    gap: 48px;
    animation: marquee-scroll 28s linear infinite;
}

.marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 48px;
    font-size: clamp(28px, 4.6vw, 58px);
    font-weight: 800;
    letter-spacing: -.03em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(59, 111, 212, .32);
    white-space: nowrap;
}

.marquee__item::after {
    content: "+";
    color: var(--brand);
    -webkit-text-stroke: 0;
    font-size: .6em;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee__track { animation: none; }
}

/* --------------------------------------------------------------------------
   10) Özellik kartları
   -------------------------------------------------------------------------- */
.feature-card {
    position: relative;
    padding: 34px 30px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    height: 100%;
}

.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }

.feature-card__icon {
    width: 54px; height: 54px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    border-radius: var(--radius);
    background: var(--brand-light);
    color: var(--brand);
    font-size: 22px;
}

.feature-card h3 { font-size: 19px; margin-bottom: 10px; }
.feature-card p { font-size: 15px; }

.feature-card__no {
    position: absolute;
    top: 24px; right: 28px;
    font-size: 34px;
    font-weight: 800;
    color: var(--accent);
    opacity: .16;
    letter-spacing: -.04em;
}

/* Serit icinde her ikinci kart turuncu ikonla vurgulanir */
.feature-card:nth-child(even) .feature-card__icon,
.icon-item:nth-child(even) .icon-item__icon { background: var(--accent-light); color: var(--accent); }
.icon-item:nth-child(even):hover .icon-item__icon { background: var(--accent); color: #fff; }

/* Ortalı ikon listesi (Neden ...?) */
.icon-item { text-align: center; padding: 18px 12px; }

/* Şerit içindeyken kart görünümü alsın */
.hscroll__track > .icon-item {
    padding: 32px 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease;
}
.hscroll__track > .icon-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.icon-item__icon {
    width: 74px; height: 74px;
    margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 28px;
    transition: background-color .22s ease, color .22s ease, transform .22s ease;
}
.icon-item:hover .icon-item__icon { background: var(--brand); color: #fff; transform: translateY(-4px); }
.icon-item h3 { font-size: 18px; }
.icon-item p { font-size: 14.5px; }

/* --------------------------------------------------------------------------
   11) Yatay kaydırmalı şerit (hizmetler, doktorlar)
   Sayfayı aşağı uzatmaz; parmak/fare ile yana kayar.
   -------------------------------------------------------------------------- */
.hscroll { position: relative; }

.hscroll__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.hscroll__head .section-head { margin-bottom: 0; }

.hscroll__nav { display: flex; gap: 10px; flex: 0 0 auto; }

.hscroll__btn {
    width: 46px; height: 46px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    font-size: 15px;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.hscroll__btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.hscroll__btn[disabled] { opacity: .35; cursor: default; }
.hscroll__btn[disabled]:hover { background: #fff; color: var(--ink); border-color: var(--line); }

.on-brand .hscroll__btn,
.on-ink .hscroll__btn { background: transparent; border-color: rgba(255, 255, 255, .4); color: #fff; }
.on-brand .hscroll__btn:hover,
.on-ink .hscroll__btn:hover { background: #fff; color: var(--ink); }

.hscroll__track {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    /* Dokunmatikte yatay kaydirmaya izin ver, dikey sayfa kaydirmasi da calissin */
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding: 6px 4px 18px;
    margin: -6px -4px -18px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hscroll__track::-webkit-scrollbar { display: none; }

/* Fare ile sürüklenebileceği belli olsun */
@media (hover: hover) and (pointer: fine) {
    .hscroll__track { cursor: grab; }
    .hscroll__track:active { cursor: grabbing; }
}

.hscroll__track > * {
    flex: 0 0 auto;
    width: calc((100% - 52px) / 3);
    scroll-snap-align: start;
}

.hscroll--2 .hscroll__track > * { width: calc((100% - 26px) / 2); }
.hscroll--4 .hscroll__track > * { width: calc((100% - 78px) / 4); }

.hscroll__hint {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 13px;
    color: var(--ink-soft);
}

.on-brand .hscroll__hint,
.on-ink .hscroll__hint { color: rgba(255, 255, 255, .85); }

/* Serit icindeki kartlar esit yukseklikte olsun */
.hscroll__track > .feature-card,
.hscroll__track > .icon-item,
.hscroll__track > .review-card,
.hscroll__track > .post-card,
.hscroll__track > .doctor-card { align-self: stretch; }

/* --------------------------------------------------------------------------
   12) Hizmet kartı
   -------------------------------------------------------------------------- */
.service-card {
    position: relative;
    display: block;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--ink);
    box-shadow: var(--shadow);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.service-card:hover img { transform: scale(1.07); }

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 33, 63, .92) 0%, rgba(18, 33, 63, .55) 42%, rgba(18, 33, 63, .05) 100%);
}

.service-card__body {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 26px 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.service-card__cat {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 6px;
    display: block;
}

.service-card__title { color: #fff; font-size: 21px; margin: 0; }

.service-card__go {
    flex: 0 0 auto;
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .45);
    color: #fff;
    font-size: 13px;
    transition: background-color .2s ease, color .2s ease;
}

.service-card:hover .service-card__go { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Liste görünümü (hizmetler sayfası) */
.service-tile {
    display: block;
    padding: 30px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: transform .22s ease, box-shadow .22s ease;
}
.service-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-tile__img {
    height: 190px;
    margin: -30px -28px 22px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    background: var(--bg-soft);
}
.service-tile__img img { width: 100%; height: 100%; object-fit: cover; }
.service-tile h3 { font-size: 20px; }
.service-tile p { font-size: 15px; color: var(--ink-soft); }
.service-tile__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-weight: 700; font-size: 14.5px; }

/* --------------------------------------------------------------------------
   13) Doktor kartı
   -------------------------------------------------------------------------- */
.doctor-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: transform .22s ease, box-shadow .22s ease;
}

.doctor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.doctor-card__img { height: 300px; background: var(--brand-light); overflow: hidden; }
.doctor-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.doctor-card__body { padding: 24px; }
.doctor-card__role {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 6px;
    display: block;
}
.doctor-card__name { font-size: 20px; margin-bottom: 8px; }
.doctor-card__text { font-size: 14.5px; }

.doctor-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
/* "/ seans" eki CSS ile eklenir; boş fiyat alanında koşullu blok
   tamamen kalksın diye HTML'de token dışında metin bırakılmaz. */
.doctor-card__price { font-size: 15px; font-weight: 800; color: var(--ink); }
.doctor-card__price::after { content: " / seans"; font-size: 12px; font-weight: 600; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   14) CTA bandı
   -------------------------------------------------------------------------- */
.cta-band {
    position: relative;
    padding: 52px 56px;
    border-radius: var(--radius-xl);
    background: var(--ink);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 33, 63, .94) 0%, rgba(18, 33, 63, .78) 100%);
}

.cta-band > * { position: relative; z-index: 2; }

.cta-band__icon {
    width: 84px; height: 84px;
    flex: 0 0 auto;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .10);
    color: #fff;
    font-size: 34px;
}

.cta-band__body { flex: 1 1 320px; }
.cta-band__body h2 { color: #fff; font-size: clamp(22px, 2.6vw, 32px); margin-bottom: 8px; }
.cta-band__body p { color: rgba(255, 255, 255, .8); margin: 0; }

/* --------------------------------------------------------------------------
   15) Yorumlar (Google)
   -------------------------------------------------------------------------- */
.review-card {
    padding: 30px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stars { color: var(--star); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }

.review-card__text { font-size: 15px; color: var(--ink-soft); flex: 1 1 auto; }

.review-card__foot {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.review-card__avatar {
    width: 44px; height: 44px;
    flex: 0 0 auto;
    border-radius: 50%;
    overflow: hidden;
    background: var(--brand-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--brand);
    font-weight: 800;
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }

.review-card__name { font-size: 15px; font-weight: 800; color: var(--ink); line-height: 1.3; }
.review-card__date { font-size: 13px; color: var(--ink-soft); }
.review-card__g { margin-left: auto; font-size: 20px; color: #4285f4; }

.review-score {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
    text-align: center;
}
.review-score__value { font-size: 20px; font-weight: 800; color: var(--ink); }

/* --------------------------------------------------------------------------
   16) Blog kartı
   -------------------------------------------------------------------------- */
.post-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card__img { height: 210px; background: var(--bg-soft); overflow: hidden; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-card__img img { transform: scale(1.06); }
.post-card__body { padding: 26px 24px; display: flex; flex-direction: column; flex: 1 1 auto; }
.post-card__meta { display: flex; gap: 16px; font-size: 13px; color: var(--ink-soft); margin-bottom: 10px; }
.post-card__meta i { color: var(--brand); margin-right: 6px; }
.post-card__title { font-size: 19px; margin-bottom: 10px; }
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--brand); }
.post-card__text { font-size: 14.5px; flex: 1 1 auto; }
.post-card__more { margin-top: 16px; font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 8px; }

/* --------------------------------------------------------------------------
   17) Sayfa başlığı (iç sayfalar)
   -------------------------------------------------------------------------- */
.page-hero {
    position: relative;
    padding: 76px 0;
    background: var(--brand-light);
    background-size: cover;
    background-position: center;
    text-align: center;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: rgba(234, 241, 253, .82); }
.page-hero > * { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 10px; }
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink-soft);
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span.sep { opacity: .5; }

/* --------------------------------------------------------------------------
   18) İçerik / detay
   -------------------------------------------------------------------------- */
.detail__img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 28px; }
.detail__img img { width: 100%; max-height: 460px; object-fit: cover; }
.detail__body { font-size: 16px; }
.detail__body h2 { font-size: 26px; margin-top: 28px; }
.detail__body h3 { font-size: 21px; margin-top: 22px; }
.detail__body ul { padding-left: 20px; }
.detail__body li { margin-bottom: 8px; }

.sidebar { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 22px; }

.side-box {
    padding: 26px 24px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}
.side-box h3 { font-size: 18px; margin-bottom: 16px; }
.side-list { list-style: none; margin: 0; padding: 0; }
.side-list li + li { border-top: 1px solid var(--line); }
.side-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 2px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
}
.side-list a:hover { color: var(--brand); }
.side-list i { font-size: 11px; opacity: .5; }

.side-cta {
    padding: 32px 26px;
    background: var(--ink);
    border-radius: var(--radius-lg);
    text-align: center;
    color: #fff;
}
.side-cta h3 { color: #fff; font-size: 19px; }
.side-cta__icon {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--brand);
    font-size: 24px;
}
.side-cta__phone { font-size: 20px; font-weight: 800; color: #fff; display: block; margin-top: 6px; }
.side-cta__price { color: rgba(255, 255, 255, .8); font-size: 15px; }
.side-cta__price::before { content: "Seans ücreti: "; }

/* --------------------------------------------------------------------------
   19) SSS akordeon
   -------------------------------------------------------------------------- */
.accordion { display: grid; gap: 14px; }

.accordion__item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.accordion__head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 16.5px;
    font-weight: 700;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
}

.accordion__head i { flex: 0 0 auto; color: var(--brand); transition: transform .22s ease; font-size: 14px; }
.accordion__item.is-open .accordion__head { color: var(--brand); }
.accordion__item.is-open .accordion__head i { transform: rotate(45deg); }

.accordion__body { display: none; padding: 0 24px 22px; font-size: 15px; }
.accordion__item.is-open .accordion__body { display: block; }

/* --------------------------------------------------------------------------
   20) Formlar
   -------------------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color .18s ease, background-color .18s ease;
}

.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--brand); background: #fff; }
.field input::placeholder, .field textarea::placeholder { color: #9aa7bb; }

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 16px; }
.contact-list .icon {
    width: 50px; height: 50px;
    flex: 0 0 auto;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 18px;
}
.contact-list h4 { font-size: 15px; margin-bottom: 2px; }
.contact-list p, .contact-list a { font-size: 15px; color: var(--ink-soft); margin: 0; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; line-height: 0; box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* --------------------------------------------------------------------------
   21) Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding-top: 68px; }

.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 52px;
}

.footer__brand .brand { margin-bottom: 18px; }
.footer__brand .brand__logo { height: 58px; max-width: 250px; }
.footer__about { font-size: 15px; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
}
.footer__social a:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

.footer__title { font-size: 17px; margin-bottom: 20px; }
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__list a { color: var(--ink-soft); font-size: 15px; }
.footer__list a:hover { color: var(--brand); }
.footer__list li i { color: var(--brand); width: 18px; margin-right: 8px; }

.footer__hours { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 14.5px; }
.footer__hours li { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 9px; border-bottom: 1px dashed var(--line); }
.footer__hours span:last-child { font-weight: 700; color: var(--ink); }

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    font-size: 14px;
}

/* Sabit alt aksiyon çubuğu (mobil) */
.quick-bar { display: none; }

/* --------------------------------------------------------------------------
   22) WhatsApp balonu
   -------------------------------------------------------------------------- */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 10px 26px rgba(37, 211, 102, .4);
}
.wa-float:hover { color: #fff; transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   23) Duyarlı davranış
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
    .main-menu__list > li > a { padding: 11px 11px; font-size: 14px; }
    .site-header__inner { column-gap: 14px; }
    .hscroll__track > * { width: calc((100% - 26px) / 2); }
    .hscroll--2 .hscroll__track > * { width: calc((100% - 26px) / 2); }
    .hscroll--4 .hscroll__track > * { width: calc((100% - 52px) / 3); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .topbar__list:first-child > li:nth-child(2) .topbar__text { display: none; }
}

@media (max-width: 991px) {
    /* Menü bu genişliğin altında hamburger'a geçer — öğeler asla çakışmaz.
       Telefon header'dan kalktığı için tam menü tablette de sığıyor. */
    .main-menu { display: none; }
    .nav-toggle { display: inline-flex; }
    .section { padding: 60px 0; }
    .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .topbar__list .topbar__text { display: none; }
    .topbar__list > li { padding: 4px; }
    .split,
    .split--content,
    .split--media,
    .split--form,
    .split--faq { grid-template-columns: 1fr; gap: 40px; }
    .hero__slide { min-height: 520px; }
    .hero__slide::after { background: linear-gradient(100deg, rgba(233, 240, 252, .97) 0%, rgba(233, 240, 252, .82) 68%, rgba(233, 240, 252, .5) 100%); }
    .promo__img img { height: 380px; }
    .sidebar { position: static; }
    .cta-band { padding: 40px 32px; }
}

@media (max-width: 767px) {
    :root { --gutter: 18px; --header-h: 68px; }
    .section { padding: 52px 0; }

    /* Header'da yalnizca logo + menu dugmesi kalir.
       "Randevu Al" zaten alttaki sabit cubukta — tekrar etmesin ve tasmasin. */
    .header__actions > .btn { display: none; }
    .brand__logo { height: 40px; max-width: 165px; }
    .brand__text { font-size: 17px; max-width: 190px; }
    .site-header__inner { column-gap: 10px; }
    .page-hero { padding: 52px 0; }
    .page-hero h1 { font-size: clamp(26px, 7vw, 34px); }
    .breadcrumb { font-size: 13.5px; }
    .topbar__list { gap: 14px; font-size: 12.5px; }
    .topbar__inner { justify-content: center; }
    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    /* Mobilde kart genişliği %80 — yandaki kartın ucu görünür, kaydırılacağı anlaşılır */
    .hscroll__track > *,
    .hscroll--2 .hscroll__track > *,
    .hscroll--4 .hscroll__track > * { width: 80%; }
    .hscroll__track { gap: 16px; scroll-snap-type: x proximity; }
    .hscroll__head { flex-direction: column; align-items: flex-start; gap: 4px; }
    .hscroll__nav { display: flex; align-self: flex-end; margin-top: -34px; }
    .hscroll__btn { width: 40px; height: 40px; font-size: 13px; }
    .hscroll__hint { display: flex; }
    .stat-badge { right: 12px; bottom: 12px; min-width: 140px; padding: 16px 20px; }
    .stat-badge__value { font-size: 30px; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-band { padding: 32px 24px; }
    .cta-band__icon { width: 64px; height: 64px; font-size: 26px; }
    .hero__content { padding: 52px 0; }
    .wa-float { bottom: 78px; }

    /* Mobilde sabit ara-yaz çubuğu */
    .quick-bar {
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 65;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: 0 -6px 20px rgba(18, 33, 63, .08);
    }
    .quick-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding: 14px 10px;
        font-size: 14.5px;
        font-weight: 700;
        color: var(--ink);
    }
    .quick-bar a + a { border-left: 1px solid var(--line); color: #fff; background: var(--brand); }
    body { padding-bottom: 56px; }
}

/* --------------------------------------------------------------------------
   24) Aşağı inerken beliren içerik (scroll reveal)

   Gizleme yalnızca <html class="js"> varken uygulanır — JS çalışmazsa
   veya panel düzenleme modunda içerik her hâlükârda görünür kalır.
   -------------------------------------------------------------------------- */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.22, .61, .36, 1),
                transform .7s cubic-bezier(.22, .61, .36, 1);
    will-change: opacity, transform;
}

.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* Yandan gelen varyant — iki kolonlu bölümlerde.
   Dar ekranda yatay kaydırma yaratmasın diye aşağıda dikeye çevriliyor. */
.js [data-reveal="left"]  { transform: translateX(-34px); }
.js [data-reveal="right"] { transform: translateX(34px); }
.js [data-reveal="zoom"]  { transform: scale(.94); }

@media (max-width: 991px) {
    .js [data-reveal="left"],
    .js [data-reveal="right"] { transform: translateY(26px); }
}
.js [data-reveal="left"].is-visible,
.js [data-reveal="right"].is-visible,
.js [data-reveal="zoom"].is-visible { transform: none; }

/* Kart dizilerinde kademeli gecikme */
.js [data-reveal-group] > * {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s cubic-bezier(.22, .61, .36, 1),
                transform .6s cubic-bezier(.22, .61, .36, 1);
}
.js [data-reveal-group].is-visible > * { opacity: 1; transform: none; }
.js [data-reveal-group].is-visible > *:nth-child(1) { transition-delay: .00s; }
.js [data-reveal-group].is-visible > *:nth-child(2) { transition-delay: .08s; }
.js [data-reveal-group].is-visible > *:nth-child(3) { transition-delay: .16s; }
.js [data-reveal-group].is-visible > *:nth-child(4) { transition-delay: .24s; }
.js [data-reveal-group].is-visible > *:nth-child(5) { transition-delay: .32s; }
.js [data-reveal-group].is-visible > *:nth-child(6) { transition-delay: .40s; }
.js [data-reveal-group].is-visible > *:nth-child(n+7) { transition-delay: .46s; }

/* Hero içeriği sayfa açılışında yumuşak girer */
.js .hero__content > * {
    opacity: 0;
    transform: translateY(22px);
    animation: hero-in .8s cubic-bezier(.22, .61, .36, 1) forwards;
}
.js .hero__content > *:nth-child(1) { animation-delay: .10s; }
.js .hero__content > *:nth-child(2) { animation-delay: .20s; }
.js .hero__content > *:nth-child(3) { animation-delay: .30s; }
.js .hero__content > *:nth-child(4) { animation-delay: .40s; }

@keyframes hero-in { to { opacity: 1; transform: none; } }

/* Sayaç/başlıklarda hafif alt çizgi büyümesi */
.section-head--center h2 { position: relative; display: inline-block; }
.section-head--center h2::after {
    content: "";
    position: absolute;
    left: 50%; bottom: -12px;
    width: 0; height: 3px;
    background: var(--accent);
    border-radius: 3px;
    transform: translateX(-50%);
    transition: width .7s ease .25s;
}
.js .section-head--center.is-visible h2::after,
.section-head--center h2::after { width: 54px; }
.js .section-head--center[data-reveal]:not(.is-visible) h2::after { width: 0; }

/* Hareketi azalt tercihi — tüm efektler kapanır */
@media (prefers-reduced-motion: reduce) {
    .js [data-reveal],
    .js [data-reveal-group] > *,
    .js .hero__content > * {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
    html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   25) Panel canlı düzenleme uyumu
   -------------------------------------------------------------------------- */
[data-esc-edit] { position: relative; }

/* Düzenleme modunda hiçbir içerik gizli kalmasın */
body.esc-duzenleme [data-reveal],
body.esc-duzenleme [data-reveal-group] > * {
    opacity: 1 !important;
    transform: none !important;
}
