/* =============================================================
   Op. Dr. Sadik Sozdinler - Site Temasi
   Palet: tatli gul pembesi + blush + sicak erik
   ============================================================= */

:root {
    --primary: #D4688E;
    --primary-dark: #B14D73;
    --primary-soft: #F9E4EC;
    --bg: #FDF4F7;
    --card: #FFFFFF;
    --text: #3E2A33;
    --text-soft: #7A6470;
    --gold: #D9B26A;
    --whatsapp: #25D366;
    --whatsapp-dark: #1DA851;
    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 8px 30px rgba(180, 100, 135, 0.12);
    --shadow-lg: 0 16px 50px rgba(180, 100, 135, 0.18);
    --font-head: 'DM Serif Display', Georgia, serif;
    --font-body: 'Figtree', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: var(--primary-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary); }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 400; line-height: 1.3; color: var(--text); letter-spacing: .3px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 860px; }
.center-text { text-align: center; }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 26px; border-radius: 999px;
    font-weight: 600; font-size: 15px; font-family: var(--font-body);
    border: 2px solid transparent; cursor: pointer; transition: all .25s;
    line-height: 1.4;
}
.btn-lg { padding: 15px 34px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 20px rgba(212, 104, 142, .35); }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.btn-outline { border-color: var(--primary); color: var(--primary-dark); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.7); color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(4px); }
.btn-outline-light:hover { background: #fff; color: var(--primary-dark); }
.btn-light { background: #fff; color: var(--primary-dark); box-shadow: 0 10px 30px rgba(70, 25, 45, .28); }
.btn-light:hover { background: #FFEFF6; color: var(--primary-dark); transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); color: #fff; }

/* ---------- Topbar ---------- */
.topbar { background: var(--text); color: #EFD9E2; font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding-top: 7px; padding-bottom: 7px; gap: 16px; }
.topbar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; color: #EFD9E2; }
.topbar-item:hover { color: #fff; }
.topbar-label { opacity: .6; }
.topbar-social { display: flex; align-items: center; gap: 8px; }
.topbar-social a {
    width: 26px; height: 26px; border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    display: inline-flex; align-items: center; justify-content: center;
    color: #EFD9E2; transition: all .2s;
}
.topbar-social a:hover { background: rgba(255, 255, 255, .12); color: #fff; }

/* ---------- Header ---------- */
.site-header {
    background: rgba(255, 255, 255, .92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 20px rgba(180, 100, 135, .08);
    border-bottom: 1px solid rgba(212, 104, 142, .08);
    transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 8px 32px rgba(180, 100, 135, .18);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 10px; padding-bottom: 10px; }
.brand { flex-shrink: 0; }
.brand-logo { height: 136px; width: auto; display: block; margin: -30px 0; transition: height .35s ease, margin .35s ease; }
.site-header.scrolled .brand-logo { height: 96px; margin: -18px 0; }
.brand-text { font-family: var(--font-head); font-size: 20px; font-weight: 400; color: var(--text); white-space: nowrap; }
.nav-list > li > a { white-space: nowrap; }

.nav-list { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-list > li { position: relative; }
.nav-list > li > a {
    position: relative;
    display: inline-flex; align-items: center; gap: 5px;
    padding: 10px 8px; font-weight: 500; font-size: 14px; color: var(--text);
    border-radius: 8px;
    transition: color .2s ease;
}
.nav-list > li > a::after {
    content: ''; position: absolute; left: 8px; right: 8px; bottom: 3px; height: 2px;
    border-radius: 2px; background: linear-gradient(90deg, var(--primary), #E8A7BF);
    transform: scaleX(0); transform-origin: left; transition: transform .28s cubic-bezier(.22, .9, .3, 1);
}
.nav-list > li > a:hover { color: var(--primary-dark); }
.nav-list > li > a:hover::after,
.nav-list > li.has-dropdown:hover > a::after { transform: scaleX(1); }

.dropdown, .subdropdown {
    position: absolute; top: 100%; left: 0; min-width: 280px;
    background: #fff; border-radius: var(--radius-sm);
    box-shadow: 0 18px 50px rgba(150, 70, 105, .18);
    border: 1px solid #F6DEE8; border-top: 3px solid var(--primary);
    list-style: none; padding: 10px;
    opacity: 0; visibility: hidden; transform: translateY(14px) scale(.98);
    transition: all .28s cubic-bezier(.22, .9, .3, 1); z-index: 50;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(4px) scale(1); }
.dropdown li { position: relative; }
.dropdown a {
    display: flex; justify-content: space-between; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 8px; font-size: 14.5px; font-weight: 500; color: var(--text);
}
.dropdown a:hover { background: var(--primary-soft); color: var(--primary-dark); }
.subdropdown { top: -10px; left: 100%; }
.has-subdropdown:hover > .subdropdown,
.has-subdropdown:focus-within > .subdropdown { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
    font-weight: 700; font-size: 13px; letter-spacing: .5px;
    padding: 8px 13px; border: 2px solid var(--primary-soft); border-radius: 999px; color: var(--primary-dark);
}
.lang-switch:hover { background: var(--primary-soft); }
.btn-whatsapp { padding: 10px 18px; font-size: 14px; }
.header-actions .btn-appointment {
    padding: 10px 20px; font-size: 14px; white-space: nowrap;
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, #B14D73 100%);
}
.header-actions .btn-appointment::after {
    content: ''; position: absolute; top: 0; left: -80%; width: 45%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .5), transparent);
    transform: skewX(-20deg);
    animation: btn-shine 4.5s ease-in-out infinite;
}
@keyframes btn-shine {
    0%, 65% { left: -80%; }
    100% { left: 140%; }
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ---------- Hero ---------- */
.hero {
    position: relative; min-height: 600px;
    display: flex; align-items: center; overflow: hidden;
    background: linear-gradient(120deg, #E8A7BF, var(--primary));
    background-size: cover; background-position: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(62, 42, 51, .72) 0%, rgba(177, 77, 115, .45) 55%, rgba(212, 104, 142, .15) 100%);
}
.hero-plain {
    background: linear-gradient(115deg, #A64069 0%, #C95E86 40%, #E8A7BF 75%, #C95E86 100%);
    background-size: 220% 220%;
    animation: hero-gradient-shift 16s ease-in-out infinite;
}
.hero-plain .hero-overlay { background: radial-gradient(ellipse at 70% 20%, rgba(255, 255, 255, .16), transparent 55%); }
@keyframes hero-gradient-shift {
    0%, 100% { background-position: 0% 40%; }
    50% { background-position: 100% 60%; }
}

.hero-decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero:not(.hero-plain) .hero-decor { display: none; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); will-change: transform; }
.hero-blob-1 { width: 460px; height: 460px; background: rgba(255, 176, 210, .5); top: -140px; right: 4%; animation: blob-drift 10s ease-in-out infinite; }
.hero-blob-2 { width: 340px; height: 340px; background: rgba(255, 224, 238, .38); bottom: -130px; left: -80px; animation: blob-drift 13s ease-in-out infinite reverse; }
.hero-blob-3 { width: 220px; height: 220px; background: rgba(255, 255, 255, .22); top: 32%; left: 40%; animation: blob-drift 16s ease-in-out infinite; }
@keyframes blob-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -34px) scale(1.08); }
}
.hero-spark { position: absolute; color: rgba(255, 255, 255, .8); animation: spark-twinkle 4s ease-in-out infinite; }
.hero-spark-1 { width: 22px; height: 22px; top: 18%; left: 6%; }
.hero-spark-2 { width: 14px; height: 14px; top: 64%; left: 44%; animation-delay: 1.2s; }
.hero-spark-3 { width: 18px; height: 18px; top: 26%; left: 52%; animation-delay: 2.1s; }
.hero-spark-4 { width: 12px; height: 12px; top: 74%; left: 12%; animation-delay: 3s; }
@keyframes spark-twinkle {
    0%, 100% { opacity: 0; transform: scale(.4) rotate(0deg); }
    50% { opacity: .9; transform: scale(1) rotate(40deg); }
}
.hero-ring-decor {
    position: absolute; width: 260px; height: 260px; left: -90px; top: 12%;
    border: 2px dashed rgba(255, 255, 255, .22); border-radius: 50%;
    animation: ring-spin 40s linear infinite;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 3; pointer-events: none; }
.hero-wave svg { display: block; width: 100%; height: clamp(40px, 7vw, 100px); }

.hero-content { position: relative; z-index: 2; color: #fff; max-width: 1200px; padding-top: 80px; padding-bottom: 80px; }
.hero-content.has-photo {
    display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
}
.hero-photo { display: flex; justify-content: center; }
.hero-photo-wrap { position: relative; display: inline-block; }
.hero-photo img {
    display: block; max-height: 440px; width: auto;
    border-radius: 220px 220px 26px 26px;
    box-shadow: 0 30px 70px rgba(70, 25, 45, .4);
}
.hero-photo-ring {
    position: absolute; inset: -14px;
    border: 2px dashed rgba(255, 255, 255, .5);
    border-radius: 234px 234px 36px 36px;
    animation: ring-breathe 5s ease-in-out infinite;
}
@keyframes ring-breathe {
    0%, 100% { transform: scale(1); opacity: .85; }
    50% { transform: scale(1.025); opacity: .4; }
}

.hero-badge {
    position: absolute; display: flex; align-items: center; gap: 10px;
    background: rgba(255, 255, 255, .94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-radius: 16px; padding: 10px 16px;
    box-shadow: 0 14px 36px rgba(70, 25, 45, .28);
    color: var(--text);
    animation: badge-float 6s ease-in-out infinite;
}
@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-badge-rating { top: 6%; left: -76px; flex-direction: column; gap: 2px; padding: 13px 20px; text-align: center; }
.hero-badge-rating .hero-badge-stars { color: #E8A317; font-size: 12px; letter-spacing: 1.5px; }
.hero-badge-rating strong { font-family: var(--font-head); font-size: 24px; line-height: 1.05; }
.hero-badge-rating strong small { font-size: 13px; color: var(--text-soft); }
.hero-badge-rating .hero-badge-sub { font-size: 11.5px; color: var(--text-soft); }
.hero-badge-wa { bottom: 7%; right: -56px; animation-delay: 3s; }
.hero-badge-wa:hover { color: var(--text); }
.hero-badge-wa .hero-badge-icon {
    width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
    background: var(--whatsapp); color: #fff;
    display: flex; align-items: center; justify-content: center;
}
.hero-badge-wa .hero-badge-text strong { display: block; font-size: 13.5px; }
.hero-badge-wa .hero-badge-text small { font-size: 11.5px; color: var(--text-soft); }

.hero-eyebrow { font-size: 15px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; color: #F6D5E1; margin-bottom: 14px; }
.hero h1 { font-size: clamp(38px, 6vw, 64px); color: #fff; margin-bottom: 26px; max-width: 700px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 28px; color: #FBE3ED; font-size: 14px; }
.hero-trust-stars { color: #FFC94D; letter-spacing: 2px; font-size: 15px; }

.hero-anim { opacity: 0; transform: translateY(28px); animation: hero-up .8s cubic-bezier(.22, .9, .3, 1) forwards; }
.hero-anim-2 { animation-delay: .15s; }
.hero-anim-3 { animation-delay: .3s; }
.hero-anim-4 { animation-delay: .5s; }
@keyframes hero-up { to { opacity: 1; transform: none; } }

/* ---------- Istatistik bandi ---------- */
.hero-stats { margin-top: -46px; position: relative; z-index: 6; }
.hero-stats-inner {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid #F6DEE8; border-radius: 24px;
    box-shadow: var(--shadow-lg);
    padding: 30px 10px;
}
.stat-item {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    text-align: center; padding: 6px 14px;
    border-right: 1px solid #F3D9E3;
}
.stat-item:last-child { border-right: 0; }
.stat-icon {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--primary-soft); color: var(--primary-dark);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 6px;
}
.stat-num { font-family: var(--font-head); font-size: 34px; line-height: 1.1; color: var(--text); }
.stat-label { font-size: 13.5px; color: var(--text-soft); }

/* ---------- Bilgi kutulari ---------- */
.info-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: -60px; position: relative; z-index: 5;
}
.contact-page-cards { margin-top: 0; }
.info-card {
    background: var(--card); border-radius: var(--radius); padding: 30px;
    box-shadow: var(--shadow); text-align: center;
    border-top: 3px solid var(--primary-soft); transition: transform .25s;
}
.info-card:hover { transform: translateY(-4px); }
.info-card-icon {
    width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%;
    background: var(--primary-soft); color: var(--primary-dark);
    display: flex; align-items: center; justify-content: center;
}
.info-card h3 { font-size: 19px; margin-bottom: 8px; }
.info-card p { font-size: 14.5px; color: var(--text-soft); }

/* ---------- Bolumler ---------- */
.section { padding: 80px 0; }
.section-eyebrow {
    font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
    font-weight: 700; color: var(--primary); margin-bottom: 10px;
}
.section-eyebrow.center, .section-title.center { text-align: center; }
.section-title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 24px; }

/* ---------- Hakkinda ---------- */
.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.about-text .btn { margin-top: 22px; }
.about-page-grid { display: grid; grid-template-columns: 1fr 320px; gap: 50px; align-items: start; }

.video-wrap {
    position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
    aspect-ratio: 16/10; background: var(--text);
}
.video-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 76px; height: 76px; border-radius: 50%; border: 0; cursor: pointer;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 12px rgba(212, 104, 142, .3); transition: all .25s;
}
.video-play:hover { background: var(--primary-dark); box-shadow: 0 0 0 18px rgba(212, 104, 142, .2); }

/* ---------- Hizmet kartlari ---------- */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 30px 0 40px; }
.filter-tab {
    padding: 9px 20px; border-radius: 999px; border: 2px solid var(--primary-soft);
    background: #fff; color: var(--text-soft); font-weight: 600; font-size: 14px;
    cursor: pointer; font-family: var(--font-body); transition: all .2s;
}
.filter-tab:hover { border-color: var(--primary); color: var(--primary-dark); }
.filter-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.services-grid-item.hidden { display: none; }

.service-card {
    display: flex; flex-direction: column; height: 100%;
    background: var(--card); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; color: var(--text);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); color: var(--text); }
.service-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--primary-soft); }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--primary-soft), #F3CBDA); }
.service-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-card-body h3 { font-size: 20px; }
.service-card-body p { font-size: 14.5px; color: var(--text-soft); flex: 1; }
.service-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-weight: 600; font-size: 14px; color: var(--primary-dark);
}
.service-card:hover .service-card-link { color: var(--primary); gap: 10px; }
.service-card-link svg { transition: transform .2s; }

/* ---------- SSS ---------- */
.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.faq-intro p { color: var(--text-soft); margin-bottom: 20px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg); border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--primary-soft); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 14px;
    padding: 18px 22px; background: none; border: 0; cursor: pointer; text-align: left;
    font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--text);
}
.faq-question svg { flex-shrink: 0; color: var(--primary); transition: transform .3s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 22px 20px; font-size: 15px; color: var(--text-soft); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 30px; }
.blog-card {
    background: var(--card); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); color: var(--text); transition: transform .25s;
    display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); color: var(--text); }
.blog-card > img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.blog-card-body { padding: 22px; }
.blog-card-body time { font-size: 13px; color: var(--primary); font-weight: 600; }
.blog-card-body h3 { font-size: 19px; margin: 8px 0; }
.blog-card-body p { font-size: 14.5px; color: var(--text-soft); }

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 44px; }
.page-link {
    width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: #fff; box-shadow: var(--shadow); font-weight: 600;
}
.page-link.active { background: var(--primary); color: #fff; }

/* ---------- Iletisim ---------- */
.contact-section { background: linear-gradient(180deg, var(--bg), var(--primary-soft)); }

/* ---------- Trimester modulu ---------- */
.trimester-section {
    position: relative; overflow: hidden;
    background: linear-gradient(165deg, #FDF3F7 0%, #FBE7F0 55%, #F7DCE8 100%);
}
.trimester-decor span { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.trimester-decor span:first-child { width: 420px; height: 420px; background: rgba(212, 104, 142, .14); top: -160px; right: -100px; }
.trimester-decor span:last-child { width: 380px; height: 380px; background: rgba(255, 255, 255, .75); bottom: -150px; left: -130px; }
.trimester-section .container { position: relative; z-index: 2; }
.trimester-lead { max-width: 620px; margin: 0 auto 48px; color: var(--text-soft); text-align: center; }

.trimester-flow { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.trimester-flow::before {
    content: ''; position: absolute; top: 52px; left: 14%; right: 14%; height: 3px;
    background: linear-gradient(90deg, #F0BBD1, var(--primary), #B14D73);
    border-radius: 3px; opacity: .35;
}
.tri-card {
    position: relative;
    background: rgba(255, 255, 255, .85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, .9); border-radius: 22px;
    padding: 30px 26px 28px;
    box-shadow: 0 16px 40px rgba(190, 100, 135, .12);
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.tri-card:hover { transform: translateY(-8px); box-shadow: 0 24px 54px rgba(190, 100, 135, .22); }
.tri-card.tri-active {
    transform: translateY(-8px); background: #fff;
    border-color: var(--primary);
    box-shadow: 0 24px 54px rgba(190, 100, 135, .28);
}
.tri-card.tri-active::after {
    content: '✓'; position: absolute; top: 14px; right: 14px;
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--primary); color: #fff; font-size: 14px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.tri-card-top { display: flex; align-items: center; margin-bottom: 18px; }
.tri-step {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #B14D73); color: #fff;
    font-family: var(--font-head); font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 18px rgba(177, 77, 115, .35);
}
.tri-icon {
    width: 46px; height: 46px; border-radius: 14px; margin-left: auto;
    background: var(--primary-soft); color: var(--primary-dark);
    display: flex; align-items: center; justify-content: center;
}
.tri-card h3 { font-size: 21px; margin-bottom: 10px; }
.tri-card p { font-size: 14.5px; color: var(--text-soft); }

/* Gebelik haftasi hesaplayici */
.tri-calc {
    display: grid; grid-template-columns: 1fr 1.1fr;
    margin-top: 46px; background: #fff; border-radius: 26px; overflow: hidden;
    box-shadow: 0 24px 60px rgba(190, 100, 135, .18);
}
.tri-calc-form { padding: 42px 40px; }
.tri-calc-form h3 { font-size: 26px; margin-bottom: 10px; }
.tri-calc-form > p { color: var(--text-soft); font-size: 14.5px; margin-bottom: 24px; }
.tri-calc-form label { display: block; font-weight: 600; font-size: 13.5px; margin-bottom: 8px; color: var(--text); }
.tri-calc-row { display: flex; gap: 12px; flex-wrap: wrap; }
.tri-calc-row input[type="date"] {
    flex: 1; min-width: 170px; padding: 12px 16px;
    border: 2px solid #F0D3DF; border-radius: 12px;
    font: inherit; color: var(--text); background: #FDF7FA;
    transition: border-color .2s;
}
.tri-calc-row input[type="date"]:focus { outline: none; border-color: var(--primary); background: #fff; }
.tri-calc-error { color: #C0392B; font-size: 13.5px; margin-top: 12px; }
.tri-calc-note { font-size: 12.5px; color: var(--text-soft); margin-top: 20px; opacity: .85; }

.tri-calc-result {
    position: relative; overflow: hidden;
    background: linear-gradient(150deg, var(--primary) 0%, #B14D73 100%);
    color: #fff; padding: 42px 40px;
    display: flex; flex-direction: column; justify-content: center;
}
.tri-result-watermark {
    position: absolute; right: -34px; bottom: -34px;
    width: 190px; height: 190px; color: #fff; opacity: .1;
    pointer-events: none;
}
.tri-result-body { position: relative; z-index: 2; }
.tri-result-empty {
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    text-align: center; color: rgba(255, 255, 255, .92); font-size: 15px;
}
.tri-result-empty[hidden] { display: none; }
.tri-result-empty svg { opacity: .85; }
.tri-result-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 26px; }
.tri-stat {
    background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 16px; padding: 16px 10px 15px; text-align: center;
}
.tri-stat-icon {
    width: 38px; height: 38px; margin: 0 auto 10px; border-radius: 50%;
    background: rgba(255, 255, 255, .18); border: 1px solid rgba(255, 255, 255, .32);
    color: #fff; display: flex; align-items: center; justify-content: center;
}
.tri-stat-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; opacity: .85; margin-bottom: 7px; }
.tri-stat strong { display: block; font-family: var(--font-head); font-size: 20px; line-height: 1.15; }
.tri-stat small { display: block; font-size: 12px; opacity: .85; margin-top: 4px; }
.tri-progress-head { display: flex; justify-content: space-between; font-size: 12.5px; margin-bottom: 10px; opacity: .95; }
.tri-progress-track { position: relative; height: 12px; border-radius: 999px; background: rgba(255, 255, 255, .25); }
.tri-progress-fill {
    position: absolute; left: 0; top: 0; bottom: 0; width: 0; max-width: 100%; border-radius: 999px;
    background: linear-gradient(90deg, #FFE3F0, #fff);
    transition: width .9s cubic-bezier(.22, .9, .3, 1);
}
.tri-progress-dot {
    position: absolute; left: 0; top: 50%; transform: translate(-50%, -50%);
    width: 28px; height: 28px; border-radius: 50%;
    background: #fff; color: var(--primary-dark);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(70, 25, 45, .35);
    transition: left .9s cubic-bezier(.22, .9, .3, 1);
    z-index: 2;
}
.tri-progress-dot[hidden] { display: none; }
.tri-progress-marks { display: flex; justify-content: space-between; font-size: 11.5px; margin-top: 8px; }
.tri-progress-marks span { opacity: .7; }
.tri-progress-marks span.active { opacity: 1; font-weight: 700; }

/* ---------- Cerez bandi ---------- */
.cookie-banner {
    position: fixed; left: 20px; bottom: 20px; z-index: 300;
    max-width: 420px; padding: 22px 24px;
    background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-lg);
    border: 1px solid #F3D7E2;
}
.cookie-banner p { font-size: 14px; color: var(--text-soft); margin-bottom: 14px; }
.cookie-banner a { color: var(--primary-dark); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .btn { padding: 9px 20px; font-size: 14px; }
@media (max-width: 768px) {
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-legal-link { color: rgba(255,255,255,.55); font-size: 13px; }
.footer-legal-link:hover { color: #fff; }
.form-note a { color: var(--primary-dark); text-decoration: underline; }

/* ---------- Hasta yorumlari ---------- */
.testimonials-section { background: linear-gradient(180deg, #FBEDF3, var(--bg)); }
.testimonial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 10px; }
.testimonial-card {
    position: relative; display: flex; flex-direction: column;
    background: var(--card); border-radius: var(--radius); padding: 28px 24px;
    box-shadow: var(--shadow); transition: transform .25s;
}
.testimonial-card:hover { transform: translateY(-5px); }
.testimonial-quote { position: absolute; top: 20px; right: 20px; color: var(--primary-soft); }
.testimonial-stars { color: #E8A317; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card blockquote { flex: 1; font-size: 14.5px; color: var(--text-soft); font-style: italic; margin-bottom: 18px; }
.testimonial-card figcaption { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), #E8A7BF); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 20px;
}
.testimonial-card figcaption strong { display: block; font-size: 15px; }
.testimonial-card figcaption small { color: var(--primary-dark); font-size: 12.5px; }

.rating-strip-title { text-align: center; font-size: 20px; margin: 46px 0 20px; color: var(--text); }
.rating-strip { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; }
.rating-card {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    min-width: 210px; padding: 22px 26px; text-align: center;
    background: var(--card); border: 1px solid #F3D7E2; border-radius: var(--radius);
    box-shadow: var(--shadow); color: var(--text);
    transition: transform .25s, border-color .25s;
}
.rating-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.rating-name { font-size: 15.5px; }
.rating-score { font-family: var(--font-head); font-size: 34px; line-height: 1.1; color: var(--primary-dark); }
.rating-score small { font-size: 16px; color: var(--text-soft); }
.rating-stars { color: #E8A317; font-size: 15px; letter-spacing: 2px; }
.rating-count { font-size: 12.5px; color: var(--text-soft); }
.rating-link { margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--primary); }

/* ---------- Randevu bandi ---------- */
.appointment-section {
    background: linear-gradient(115deg, #B14D73 0%, #D4688E 60%, #E8A7BF 100%);
    background-size: 180% 180%;
    animation: hero-gradient-shift 16s ease infinite;
    position: relative; overflow: hidden;
}
.appointment-decor span {
    position: absolute; border-radius: 50%; pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, .16), transparent 70%);
    animation: blob-drift 14s ease-in-out infinite;
}
.appointment-decor span:first-child { width: 380px; height: 380px; top: -140px; right: -90px; }
.appointment-decor span:last-child { width: 300px; height: 300px; bottom: -120px; left: -80px; animation-delay: -7s; }
.appointment-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; position: relative; }
.appointment-section .section-eyebrow { color: #F6D5E1; }
.appointment-section .section-title { color: #fff; }
.appointment-lead { color: rgba(255, 255, 255, .85); margin-bottom: 26px; }
.appointment-info { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.ap-item {
    display: flex; align-items: center; gap: 14px; padding: 12px 16px;
    border-radius: 14px; background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18); backdrop-filter: blur(4px);
    transition: background .25s, transform .25s, border-color .25s;
}
a.ap-item:hover { background: rgba(255, 255, 255, .2); border-color: rgba(255, 255, 255, .4); transform: translateX(6px); }
.ap-icon {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .16); color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
}
.ap-body { display: flex; flex-direction: column; gap: 1px; font-size: 15px; color: #fff; font-weight: 600; }
.ap-body strong { color: #F6D5E1; font-size: 11.5px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; }
span.ap-item .ap-body { font-weight: 400; color: rgba(255, 255, 255, .92); font-size: 14px; }
.appointment-form-card {
    background: var(--card); border-radius: var(--radius); padding: 34px;
    box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.appointment-form-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, var(--primary), #E8A7BF, var(--primary));
    background-size: 200% 100%; animation: hero-gradient-shift 6s linear infinite;
}
.af-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.af-head h3 { font-size: 22px; margin: 0; }
.af-head small { display: block; font-size: 13px; color: var(--text-soft); margin-top: 2px; }
.af-icon {
    flex-shrink: 0; width: 52px; height: 52px; border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #FBE9F1, #F6D5E1); color: var(--primary);
    position: relative;
}
.af-icon::after {
    content: ""; position: absolute; inset: -4px; border-radius: 18px;
    border: 2px solid var(--primary); opacity: 0;
    animation: af-ping 2.6s ease-out infinite;
}
@keyframes af-ping {
    0% { transform: scale(.85); opacity: .5; }
    70%, 100% { transform: scale(1.12); opacity: 0; }
}
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.input-icon { position: relative; display: block; }
.input-icon > svg {
    position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
    color: #CE93AC; pointer-events: none; transition: color .2s, transform .2s;
}
.input-icon-area > svg { top: 17px; transform: none; }
.input-icon:focus-within > svg { color: var(--primary); }
.input-icon:focus-within:not(.input-icon-area) > svg { transform: translateY(-50%) scale(1.12); }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 14px 18px; border-radius: var(--radius-sm);
    border: 2px solid #F0D7E1; background: #FDF8FA; font-family: var(--font-body); font-size: 15px;
    color: var(--text); resize: vertical;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.input-icon input, .input-icon textarea { padding-left: 45px; }
.contact-form input:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--primary); background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 104, 142, .13);
}
.btn-send { justify-content: center; gap: 10px; position: relative; overflow: hidden; }
.btn-send::after {
    content: ""; position: absolute; top: 0; left: -80%; width: 45%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent);
    animation: btn-shine 3.2s ease-in-out infinite;
}
.btn-send svg { transition: transform .3s; }
.btn-send:hover svg { transform: translateX(5px) translateY(-3px) rotate(8deg); }
.form-note { font-size: 12.5px; color: var(--text-soft); }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; }
.form-alert { padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 500; font-size: 14.5px; }
.form-alert-success { background: #E3F6E8; color: #1E7B3C; border: 1px solid #B5E3C4; }
.form-alert-error { background: #FBE3E7; color: #B3364F; border: 1px solid #F2BCC8; }

.contact-info {
    background: var(--card); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow);
}
.contact-info h3 { margin-bottom: 20px; font-size: 22px; }
.contact-info ul { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.contact-info li { display: flex; flex-direction: column; gap: 2px; font-size: 15px; color: var(--text-soft); }
.contact-info strong { color: var(--primary-dark); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 100%; min-height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

/* ---------- Sayfa hero + breadcrumb ---------- */
.page-hero {
    background: linear-gradient(115deg, var(--text) 0%, #6E3A52 60%, var(--primary) 100%);
    padding: 70px 0 60px; color: #fff;
}
.page-hero h1 { color: #fff; font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 10px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 14px; color: #E8C3D2; }
.breadcrumbs a { color: #F6D5E1; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .current { color: #fff; }

/* ---------- Hizmet detay ---------- */
.service-layout { display: grid; grid-template-columns: 1fr 320px; gap: 50px; align-items: start; }
.service-cover { border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 30px; width: 100%; }
.post-meta { color: var(--text-soft); font-size: 14px; margin-bottom: 18px; }

.rich-text { font-size: 16.5px; color: #55414B; }
.rich-text h2, .rich-text h3, .rich-text h4 { margin: 28px 0 14px; color: var(--text); }
.rich-text h2 { font-size: 28px; } .rich-text h3 { font-size: 23px; } .rich-text h4 { font-size: 19px; }
.rich-text p { margin-bottom: 16px; }
.rich-text ul, .rich-text ol { margin: 0 0 16px 22px; }
.rich-text li { margin-bottom: 8px; }
.rich-text img { border-radius: var(--radius-sm); margin: 20px 0; }
.rich-text strong { color: var(--text); }
.rich-text a { text-decoration: underline; }
.category-desc { margin-bottom: 36px; max-width: 860px; }

.service-cta {
    margin-top: 44px; padding: 30px; border-radius: var(--radius);
    background: linear-gradient(115deg, var(--primary-soft), #FBEFF4);
    display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
    border: 1px solid #F0CFDD;
}
.service-cta h3 { font-size: 21px; margin-bottom: 4px; }
.service-cta p { color: var(--text-soft); font-size: 14.5px; }
.service-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cert-cta-section { padding-top: 0; }

/* ---------- Sertifikalar ---------- */
.cert-content h2 {
    display: flex; align-items: center; gap: 12px;
    font-size: 26px; margin: 38px 0 18px;
}
.cert-content h2::before {
    content: ''; flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px;
    background: var(--primary-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B14D73' stroke-width='2'%3E%3Ccircle cx='12' cy='9' r='6'/%3E%3Cpath d='m9 14-1.5 7L12 18.5 16.5 21 15 14'/%3E%3C/svg%3E") center/18px no-repeat;
}
.cert-content h2:first-child { margin-top: 0; }
.cert-content ul { list-style: none; margin: 0 0 10px; display: grid; gap: 12px; }
.cert-content ul li {
    background: var(--card); border: 1px solid #F3D9E3; border-radius: 14px;
    padding: 15px 18px 15px 48px; position: relative;
    box-shadow: 0 4px 16px rgba(190, 100, 135, .07);
    color: var(--text); font-size: 15px;
}
.cert-content ul li::before {
    content: ''; position: absolute; left: 16px; top: 19px; width: 18px; height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4688E' stroke-width='2.4'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---------- Video galerisi ---------- */
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.videos-grid .video-wrap { aspect-ratio: 16/9; }

/* ---------- Ana sayfa video modulu ---------- */
.video-module {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #3E2A33 0%, #6E3A52 55%, #8E4666 100%);
}
.video-module-decor span { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.video-module-decor span:first-child { width: 420px; height: 420px; background: rgba(232, 167, 191, .25); top: -160px; left: -120px; }
.video-module-decor span:last-child { width: 380px; height: 380px; background: rgba(212, 104, 142, .3); bottom: -160px; right: -110px; }
.video-module .container { position: relative; z-index: 2; }
.video-module .section-eyebrow { color: #F0B7CE; }
.video-module .section-title { color: #fff; }
.video-module-lead { max-width: 640px; margin: 0 auto 40px; color: rgba(255, 255, 255, .85); text-align: center; }
.video-module-frame {
    max-width: 940px; margin: 0 auto;
    border-radius: 26px; overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}
.video-module-frame .video-wrap {
    aspect-ratio: 16/9; border-radius: 0; box-shadow: none;
}
.video-module-frame video {
    display: block; width: 100%; aspect-ratio: 16/9; background: #000;
}

.service-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.sidebar-box { background: var(--card); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.sidebar-box h4 { font-size: 18px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid var(--primary-soft); }
.sidebar-links { list-style: none; display: flex; flex-direction: column; }
.sidebar-links a {
    display: block; padding: 9px 0; font-size: 14.5px; font-weight: 500; color: var(--text-soft);
    border-bottom: 1px dashed #F0D7E1;
}
.sidebar-links li:last-child a { border-bottom: 0; }
.sidebar-links a:hover { color: var(--primary-dark); padding-left: 4px; }
.sidebar-contact { text-align: center; background: linear-gradient(160deg, var(--primary-soft), #fff); }
.sidebar-contact p { font-size: 19px; font-weight: 700; color: var(--primary-dark); margin-bottom: 14px; }

.sidebar-doctor { text-align: center; }
.sidebar-doctor-photo {
    width: 130px; height: 130px; object-fit: cover; object-position: top;
    border-radius: 50%; margin: 0 auto 14px;
    border: 4px solid var(--primary-soft);
}
.sidebar-doctor h4 { border-bottom: 0; padding-bottom: 0; margin-bottom: 4px; }
.sidebar-doctor-tagline { font-size: 13.5px; color: var(--text-soft); margin-bottom: 16px; }

.sidebar-form .form-row { grid-template-columns: 1fr; }
.sidebar-form .contact-form input, .sidebar-form .contact-form textarea { padding: 11px 14px; font-size: 14px; }
.sidebar-form .input-icon input, .sidebar-form .input-icon textarea { padding-left: 40px; }
.sidebar-form .input-icon > svg { left: 13px; width: 15px; height: 15px; }
.sidebar-form .btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: 15px; }
.sidebar-form .form-note { font-size: 11.5px; }

.service-faqs { margin-top: 40px; }
.service-faqs h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 20px; }

/* ---------- Galeri ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); display: block; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .35s; }
.gallery-item:hover img { transform: scale(1.05); }

.lightbox {
    position: fixed; inset: 0; z-index: 300; background: rgba(40, 20, 30, .92);
    display: flex; align-items: center; justify-content: center; padding: 30px;
}
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius-sm); width: auto; }
.lightbox-close {
    position: absolute; top: 18px; right: 26px; background: none; border: 0;
    color: #fff; font-size: 44px; cursor: pointer; line-height: 1;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--text); color: #D9C3CE; }
.footer-grid {
    display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px;
    padding-top: 64px; padding-bottom: 48px;
}
.footer-brand { color: #fff; font-size: 22px; margin-bottom: 10px; }
.footer-logo { height: 84px; width: auto; margin-bottom: 16px; display: block; }
.footer-about p { font-size: 14.5px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center; color: #F6D5E1;
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-col h4 { color: #fff; font-size: 17px; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #D9C3CE; font-size: 14.5px; }
.footer-col a:hover { color: #fff; }
.footer-contact li { font-size: 14.5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: 13.5px; }

/* ---------- Sabit iletisim butonlari ---------- */
.float-stack {
    position: fixed; bottom: 24px; right: 24px; z-index: 200;
    display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
    width: 54px; height: 54px; border-radius: 50%; color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: transform .25s;
}
.float-btn:hover { transform: scale(1.1); color: #fff; }
.float-whatsapp {
    background: var(--whatsapp);
    box-shadow: 0 8px 26px rgba(37, 211, 102, .45);
    animation: wa-pulse 2.4s infinite;
}
.float-instagram {
    background: radial-gradient(circle at 30% 110%, #FDB749 0%, #E33F5F 50%, #B435B8 100%);
    box-shadow: 0 8px 26px rgba(227, 63, 95, .4);
}
.float-call {
    background: var(--primary);
    box-shadow: 0 8px 26px rgba(212, 104, 142, .5);
}
@keyframes wa-pulse {
    0% { box-shadow: 0 8px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
    70% { box-shadow: 0 8px 26px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 8px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- 404 ---------- */
.error-page { padding: 120px 0; }
.error-code { font-family: var(--font-head); font-size: 110px; font-weight: 400; color: var(--primary-soft); line-height: 1; }
.error-page h1 { margin-bottom: 12px; }
.error-page p { color: var(--text-soft); margin-bottom: 26px; }

.empty-note { text-align: center; color: var(--text-soft); padding: 60px 0; }

/* ---------- Reveal animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-anim { opacity: 1; transform: none; animation: none; }
    .hero-blob, .hero-badge, .hero-photo-ring, .hero-spark, .hero-ring-decor, .hero-plain,
    .appointment-section, .appointment-decor span, .appointment-form-card::before,
    .af-icon::after, .btn-send::after,
    .header-actions .btn-appointment::after { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1300px) {
    .brand-logo { height: 112px; margin: -22px 0; }
}

@media (max-width: 1024px) {
    .services-grid, .blog-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .videos-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .faq-grid, .contact-grid, .appointment-grid { grid-template-columns: 1fr; gap: 40px; }
    .trimester-flow { grid-template-columns: 1fr; }
    .trimester-flow::before { display: none; }
    .tri-calc { grid-template-columns: 1fr; }
    .hero-stats-inner { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
    .stat-item:nth-child(2n) { border-right: 0; }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .service-layout, .about-page-grid { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .nav-toggle { display: flex; }
    .nav-list > li > a::after { display: none; }
    .main-nav {
        position: fixed; top: 0; right: 0; width: min(340px, 88vw); height: 100vh;
        background: #fff; z-index: 150; padding: 80px 24px 40px;
        box-shadow: -10px 0 40px rgba(0,0,0,.15);
        transform: translateX(110%); transition: transform .35s ease;
        overflow-y: auto;
    }
    .main-nav.open { transform: none; }
    .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
    .nav-list > li > a { padding: 13px 10px; font-size: 16px; justify-content: space-between; color: var(--text); }
    .nav-list > li > a:hover { color: var(--primary-dark); background: var(--primary-soft); }
    .dropdown, .subdropdown {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; min-width: 0; display: none; padding: 0 0 0 14px;
    }
    .has-dropdown.open > .dropdown { display: block; }
    .has-subdropdown.open > .subdropdown { display: block; }
    body.nav-open::after {
        content: ''; position: fixed; inset: 0; background: rgba(40,20,30,.5); z-index: 120;
    }
    .nav-open .nav-toggle { position: relative; z-index: 160; }
    .nav-open .nav-toggle span { background: var(--text); }
    .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

@media (max-width: 768px) {
    .topbar-inner { justify-content: center; }
    .topbar-left { justify-content: center; gap: 14px; }
    .topbar-item-email, .topbar-social, .topbar-label { display: none; }
    .brand-logo { height: 108px; margin: -24px 0; }
    .header-actions .btn-appointment { display: none; }
    .hero { min-height: 480px; }
    .hero-content.has-photo { grid-template-columns: 1fr; gap: 34px; }
    .hero-photo img { max-height: 300px; border-radius: 150px 150px 20px 20px; }
    .hero-photo-ring { inset: -10px; border-radius: 160px 160px 28px 28px; }
    .hero-badge-rating { left: -8px; top: -14px; padding: 10px 14px; }
    .hero-badge-rating strong { font-size: 20px; }
    .hero-badge-wa { right: -8px; bottom: -14px; padding: 8px 13px; }
    .hero-badge-wa .hero-badge-icon { width: 32px; height: 32px; }
    .hero-blob-1 { width: 300px; height: 300px; }
    .hero-trust { font-size: 13px; }
    .tri-calc-form, .tri-calc-result { padding: 30px 24px; }
    .hero-stats { margin-top: -30px; }
    .hero-stats-inner { padding: 22px 4px; }
    .stat-num { font-size: 26px; }
    .stat-icon { width: 38px; height: 38px; }
    .stat-label { font-size: 12px; }
    .info-cards { grid-template-columns: 1fr; margin-top: -40px; }
    .section { padding: 56px 0; }
    .services-grid, .blog-grid, .videos-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .service-cta { flex-direction: column; text-align: center; }
    .float-stack { bottom: 16px; right: 14px; gap: 10px; }
    .float-btn { width: 48px; height: 48px; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .rating-card { min-width: 160px; flex: 1; padding: 18px 14px; }
}

@media (max-width: 560px) {
    .tri-result-stats { grid-template-columns: 1fr; gap: 10px; }
    .tri-stat { padding: 13px 12px; }
    .tri-calc-row { flex-direction: column; }
    .tri-calc-row .btn { justify-content: center; }
}
