/* =====================================================================
   KADİRLİ ALP VETERİNER KLİNİĞİ — Tasarım Sistemi v2
   Veteriner / hayvan temalı · sıcak · 3D animasyonlu ikonlar
   Ana renk: #E89F0A  ·  Pati izi dokuları · Profesyonel keskin butonlar
   ===================================================================== */

:root {
    --primary: #E89F0A;
    --primary-dark: #c9870a;
    --primary-darker: #a86f05;
    --primary-light: #ffd270;
    --primary-soft: #fff4dd;
    --primary-tint: #fffaf0;
    --grad-primary: linear-gradient(145deg, #ffc24d 0%, #E89F0A 55%, #d18a06 100%);
    --grad-warm: linear-gradient(135deg, #fff7e9 0%, #ffeac4 100%);

    --ink: #20160a;            /* sıcak koyu */
    --ink-soft: #4a3f33;
    --secondary: #1c2530;      /* koyu bölümler */
    --secondary-2: #2a3848;
    --gray: #837a6e;
    --gray-light: #aaa093;

    --bg: #fffdf8;             /* sıcak krem zemin */
    --bg-soft: #fbf6ec;
    --bg-card: #ffffff;
    --border: #f0e9dc;
    --white: #ffffff;
    --green: #25D366;
    --teal: #2bb6a3;

    --radius: 14px;            /* kartlar */
    --radius-lg: 26px;
    --radius-xl: 38px;
    --radius-btn: 12px;        /* butonlar - daha keskin/profesyonel */
    --radius-sm: 8px;

    --shadow-sm: 0 4px 14px rgba(60,42,12,.06);
    --shadow: 0 14px 36px rgba(60,42,12,.10);
    --shadow-lg: 0 28px 60px rgba(60,42,12,.16);
    --shadow-primary: 0 14px 30px rgba(232,159,10,.36);
    /* İkon iç derinliği (dış gölge yok) — sadece iç parlama + iç alt koyuluk */
    --shadow-3d: inset 0 2px 5px rgba(255,255,255,.6), inset 0 -5px 10px rgba(168,111,5,.30);

    --container: 1220px;
    --transition: .35s cubic-bezier(.34,1.56,.64,1);
    --ease: .3s ease;
    --font: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    --font-head: 'Nunito', 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
    font-family: var(--font); color: var(--ink-soft); background: var(--bg);
    line-height: 1.7; font-size: 16px;
    -webkit-tap-highlight-color: transparent;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--ease); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }

/* ---------- Tipografi ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
/* Güvenlik: başlık içindeki boyutsuz ikonlar kocaman çıkmasın */
h2 svg, h3 svg, h4 svg { width: 1.1em; height: 1.1em; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; margin-bottom: .6rem; }
.section-sub { color: var(--gray); font-size: 1.08rem; max-width: 660px; margin: 0 auto; }
.text-primary { color: var(--primary); }

.eyebrow {
    display: inline-flex; align-items: center; gap: .55rem; color: var(--primary-dark);
    font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em;
    margin-bottom: 1rem; background: var(--primary-soft); padding: 7px 16px; border-radius: 100px;
}
.eyebrow svg { width: 16px; height: 16px; }

/* ---------- Pati izi dekoru (arka plan) ---------- */
.paw-deco { position: absolute; color: var(--primary); opacity: .07; pointer-events: none; z-index: 0; }
.paw-deco svg { width: 100%; height: 100%; }
@keyframes paw-float { 0%,100%{ transform: translateY(0) rotate(var(--r,0deg)); } 50%{ transform: translateY(-16px) rotate(var(--r,0deg)); } }

/* ---------- Bölüm yapısı ---------- */
.section { padding: 100px 0; position: relative; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.section-head .eyebrow { justify-content: center; }

/* ---------- 3D Animasyonlu İkon ---------- */
.icon-3d {
    background: var(--grad-primary); color: #fff; border-radius: 20px;
    box-shadow: var(--shadow-3d); display: grid; place-items: center;
    position: relative; transition: var(--transition); will-change: transform; overflow: hidden;
}
/* Üst parlama noktası (derinlik) */
.icon-3d::after {
    content: ''; position: absolute; top: 9%; left: 14%; width: 42%; height: 26%;
    background: rgba(255,255,255,.5); border-radius: 50%; filter: blur(3px); z-index: 1;
}
/* Hareketli ışık efekti (gölge yerine) */
.icon-3d::before {
    content: ''; position: absolute; top: 0; left: -130%; width: 55%; height: 100%; z-index: 2;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
    transform: skewX(-18deg); transition: left .75s cubic-bezier(.4,0,.2,1);
}
.icon-3d:hover::before,
.service-card:hover .icon-3d::before,
.stat-item:hover .icon-3d::before,
.review-card:hover .av.icon-3d::before { left: 170%; }
.icon-3d svg { position: relative; z-index: 1; }
@keyframes icon-bob { 0%,100%{ transform: translateY(0) rotate(-3deg); } 50%{ transform: translateY(-7px) rotate(3deg); } }

/* ---------- Butonlar (keskin / profesyonel) ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
    padding: 15px 30px; border-radius: var(--radius-btn); font-weight: 700; font-size: .98rem;
    transition: var(--ease); cursor: pointer; white-space: nowrap; border: 2px solid transparent;
    position: relative; letter-spacing: .01em;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary {
    background: var(--grad-primary); color: #fff;
    box-shadow: 0 10px 22px rgba(232,159,10,.34), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(232,159,10,.45), inset 0 1px 0 rgba(255,255,255,.4); }
.btn-primary:active { transform: translateY(-1px); }
.btn-dark { background: var(--secondary); color: #fff; box-shadow: 0 10px 22px rgba(28,37,48,.28); }
.btn-dark:hover { background: #121922; transform: translateY(-3px); }
.btn-outline { border-color: var(--border); color: var(--ink); background: #fff; box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary-dark); transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-3px); }
.btn-wa { background: linear-gradient(145deg, #2be36f, #1faf52); color: #fff; box-shadow: 0 10px 22px rgba(37,211,102,.34); }
.btn-wa:hover { transform: translateY(-3px); }
.btn-lg { padding: 17px 38px; font-size: 1.06rem; }
.btn-block { width: 100%; }

/* =====================================================================
   HEADER
   ===================================================================== */
.topbar {
    background: var(--secondary); color: #c3ccd6; font-size: .85rem; padding: 9px 0;
    position: relative; z-index: 30;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: #dde3ea; }
.topbar a:hover { color: var(--primary-light); }
.topbar .tb-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar .tb-item svg { width: 15px; height: 15px; color: var(--primary); }
.topbar .tb-right { display: flex; align-items: center; gap: 1.1rem; }
.topbar .tb-socials { display: flex; gap: .5rem; }
.topbar .tb-socials a { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: var(--ease); }
.topbar .tb-socials a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.topbar .tb-socials svg { width: 14px; height: 14px; }

.header {
    position: sticky; top: 0; z-index: 1000; background: rgba(255,253,248,.85);
    backdrop-filter: saturate(180%) blur(14px); transition: var(--ease);
    border-bottom: 1px solid transparent;
}
.header.scrolled { box-shadow: 0 6px 24px rgba(60,42,12,.10); border-bottom-color: var(--border); background: rgba(255,253,248,.95); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 84px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo .logo-mark {
    width: 48px; height: 48px; border-radius: 15px; background: var(--grad-primary);
    display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-3d); flex-shrink: 0;
    transition: var(--transition);
}
.logo .logo-mark svg { width: 28px; height: 28px; filter: drop-shadow(0 2px 2px rgba(150,95,0,.4)); }
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }
.logo .logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.32rem; color: var(--ink); line-height: 1.05; }
.logo .logo-text b { color: var(--primary); }
.logo .logo-text small { display: block; font-family: var(--font); font-size: .66rem; font-weight: 600; color: var(--gray); letter-spacing: .18em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
    padding: 11px 18px; border-radius: 10px; font-weight: 600; font-size: .98rem; color: var(--ink-soft);
    position: relative;
}
.nav a::after {
    content: ''; position: absolute; left: 18px; right: 18px; bottom: 7px; height: 3px;
    background: var(--primary); border-radius: 3px; transform: scaleX(0); transform-origin: left; transition: transform var(--ease);
}
.nav a:hover { color: var(--primary-dark); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--primary-dark); }

.header-actions { display: flex; align-items: center; gap: 14px; }

/* Bayraklı dil değiştirici */
.lang-switch { display: flex; gap: 4px; }
.lang-switch a {
    display: flex; align-items: center; gap: 6px; padding: 7px 11px; border-radius: 10px;
    font-size: .82rem; font-weight: 700; color: var(--gray); border: 1.5px solid var(--border); background: #fff;
    transition: var(--ease);
}
.lang-switch a .flag { width: 20px; height: 14px; border-radius: 3px; object-fit: cover; box-shadow: 0 1px 3px rgba(0,0,0,.18); }
.lang-switch a.active { color: var(--ink); border-color: var(--primary); background: var(--primary-soft); }
.lang-switch a:hover { border-color: var(--primary); }

/* Mobil menü içi ekstra (dil + randevu) — masaüstünde gizli */
.nav-extra { display: none; }
.nav-lang { display: flex; gap: 8px; margin-bottom: 14px; }
.nav-lang a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px; border-radius: 12px; border: 1.5px solid var(--border); font-weight: 700; font-size: .9rem; color: var(--ink-soft); }
.nav-lang a img { border-radius: 3px; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.nav-lang a.active { border-color: var(--primary); background: var(--primary-soft); color: var(--ink); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; border-radius: 10px; }
.menu-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: var(--ease); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; padding: 48px 0 110px; overflow: hidden; background: var(--grad-warm); }
.hero::before {
    content: ''; position: absolute; top: -160px; right: -120px; width: 620px; height: 620px;
    background: radial-gradient(circle, rgba(232,159,10,.20), transparent 68%); border-radius: 50%; z-index: 0;
}
.hero::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 70px;
    background: var(--bg); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath d='M0 70 V30 Q360 0 720 30 T1440 30 V70Z'/%3E%3C/svg%3E") bottom/100% 100% no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath d='M0 70 V30 Q360 0 720 30 T1440 30 V70Z'/%3E%3C/svg%3E") bottom/100% 100% no-repeat;
    z-index: 2;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: .55rem; background: #fff; color: var(--primary-dark);
    padding: 9px 18px; border-radius: 100px; font-weight: 700; font-size: .86rem; margin-bottom: 1.6rem;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.hero-badge svg { width: 18px; height: 18px; }
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(37,211,102,.2); animation: blink 1.6s infinite; }
@keyframes blink { 50% { opacity: .4; } }
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); font-weight: 800; margin-bottom: 1.3rem; color: var(--ink); }
.hero h1 .hl { color: var(--primary); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 6px; height: 12px; z-index: -1;
    background: var(--primary-light); opacity: .5; border-radius: 4px;
}
.hero p { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 2.2rem; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.4rem; }
.hero-trust { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-trust .ht { display: flex; flex-direction: column; }
.hero-trust .ht b { font-family: var(--font-head); font-size: 1.8rem; color: var(--primary-dark); font-weight: 800; line-height: 1; }
.hero-trust .ht span { font-size: .86rem; color: var(--gray); margin-top: 3px; }

.hero-visual { position: relative; }
.hero-visual .hero-blob {
    position: absolute; inset: -8% -6%; background: var(--grad-primary); border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
    z-index: 0; animation: blob 9s ease-in-out infinite; opacity: .9;
}
@keyframes blob { 0%,100%{ border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; } 50%{ border-radius: 58% 42% 44% 56% / 44% 56% 44% 56%; } }
.hero-visual .hero-img {
    position: relative; z-index: 1; border-radius: 40% 40% 38% 38%/8% 8% 6% 6%; box-shadow: var(--shadow-lg);
    width: 100%; aspect-ratio: 4/4.1; object-fit: cover; background: #fff;
    border: 8px solid #fff;
}
.hero-float {
    position: absolute; z-index: 2; background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
    border-radius: 18px; box-shadow: var(--shadow-lg); padding: 14px 18px; display: flex; align-items: center; gap: 12px;
    border: 1px solid rgba(255,255,255,.7);
}
.hero-float .icon { width: 46px; height: 46px; border-radius: 13px; }
.hero-float .icon svg { width: 24px; height: 24px; }
.hero-float b { font-size: .96rem; display: block; color: var(--ink); font-family: var(--font-head); }
.hero-float span { font-size: .8rem; color: var(--gray); }
.hero-float.f1 { top: 30px; left: -28px; animation: paw-float 4s ease-in-out infinite; }
.hero-float.f2 { bottom: 60px; right: -22px; animation: paw-float 4s ease-in-out infinite 1.6s; }
.hero-paw { position: absolute; color: var(--primary); opacity: .9; z-index: 2; }
.hero-paw svg { width: 100%; height: 100%; }
.hero-paw.p1 { width: 36px; height: 36px; top: 12%; right: 8%; --r: 20deg; animation: paw-float 5s ease-in-out infinite; }
.hero-paw.p2 { width: 26px; height: 26px; bottom: 14%; left: -4%; opacity: .5; --r: -15deg; animation: paw-float 6s ease-in-out infinite 1s; }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: 30px 30px 30px 80px; box-shadow: var(--shadow); aspect-ratio: 1/1; object-fit: cover; width: 100%; border: 7px solid #fff; }
.about-media .exp-badge {
    position: absolute; bottom: -24px; right: -14px; background: var(--grad-primary); color: #fff;
    border-radius: 22px; padding: 20px 24px; box-shadow: var(--shadow-3d); text-align: center;
}
.about-media .exp-badge b { font-family: var(--font-head); font-size: 2.1rem; display: block; line-height: 1; font-weight: 800; }
.about-media .exp-badge span { font-size: .82rem; }
.about-media .about-paw { position: absolute; top: -22px; left: -22px; width: 60px; height: 60px; color: var(--primary); opacity: .15; }
.about-list { display: grid; gap: 16px; margin: 1.8rem 0 2.2rem; }
.about-list li { display: flex; gap: 14px; align-items: center; font-weight: 600; color: var(--ink); }
.about-list .ci { flex-shrink: 0; width: 38px; height: 38px; border-radius: 11px; }
.about-list .ci svg { width: 19px; height: 19px; }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px;
    padding: 36px 30px; transition: var(--ease); position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--grad-primary);
    transform: scaleX(0); transform-origin: left; transition: transform var(--ease);
}
.service-card::after {
    content: ''; position: absolute; right: -30px; bottom: -30px; width: 120px; height: 120px;
    background: var(--primary-soft); border-radius: 50%; opacity: 0; transition: var(--ease); z-index: 0;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: .6; }
.service-card > * { position: relative; z-index: 1; }
.service-icon { width: 70px; height: 70px; margin-bottom: 22px; }
.service-icon svg { width: 34px; height: 34px; }
.service-card:hover .service-icon { animation: icon-bob 1.2s ease-in-out infinite; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 11px; }
.service-card p { color: var(--gray); font-size: .97rem; margin-bottom: 18px; }
.service-link { color: var(--primary-dark); font-weight: 700; font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; }
.service-link svg { width: 17px; height: 17px; transition: var(--ease); }
.service-card:hover .service-link svg { transform: translateX(5px); }

/* =====================================================================
   STATS
   ===================================================================== */
.stats { background: var(--secondary); color: #fff; position: relative; overflow: hidden; }
.stats::before { content: ''; position: absolute; top: -120px; left: -90px; width: 440px; height: 440px; background: radial-gradient(circle, rgba(232,159,10,.22), transparent 70%); }
.stats::after { content: ''; position: absolute; bottom: -140px; right: -90px; width: 440px; height: 440px; background: radial-gradient(circle, rgba(43,182,163,.14), transparent 70%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 24px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 22px; transition: var(--ease); }
.stat-item:hover { background: rgba(255,255,255,.07); transform: translateY(-6px); }
.stat-icon { width: 62px; height: 62px; margin: 0 auto 16px; }
.stat-icon svg { width: 30px; height: 30px; }
.stat-item:hover .stat-icon { animation: icon-bob 1.2s ease-in-out infinite; }
.stat-item .num { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-item .lbl { color: #aab4c0; font-size: .98rem; margin-top: 8px; }

/* =====================================================================
   APPOINTMENT
   ===================================================================== */
.appointment { background: var(--grad-warm); position: relative; overflow: hidden; }
.appt-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.appt-info h2 { font-size: clamp(1.9rem,4vw,2.7rem); margin-bottom: 1.1rem; }
.appt-info p { color: var(--ink-soft); margin-bottom: 2rem; }
.appt-features { display: grid; gap: 16px; }
.appt-features li { display: flex; gap: 14px; align-items: center; font-weight: 600; color: var(--ink); }
.appt-features .ci { width: 44px; height: 44px; border-radius: 13px; }
.appt-features svg { width: 21px; height: 21px; }
.appt-form { background: #fff; border-radius: 28px; padding: 40px; box-shadow: var(--shadow-lg); position: relative; }
.appt-form::before { content: ''; position: absolute; top: -16px; left: 40px; width: 60px; height: 60px; background: var(--grad-primary); border-radius: 16px; box-shadow: var(--shadow-3d); opacity: 0; }
.appt-form h3 { font-size: 1.5rem; margin-bottom: 6px; }
.appt-form .form-note { color: var(--gray); font-size: .9rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 700; font-size: .86rem; margin-bottom: 8px; color: var(--ink); }
.form-control {
    width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 12px;
    font-family: inherit; font-size: .96rem; transition: var(--ease); background: var(--bg-soft); color: var(--ink);
}
.form-control:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px var(--primary-soft); }
textarea.form-control { resize: vertical; min-height: 92px; }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-item { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 1/1; cursor: pointer; background: var(--primary-soft); box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--ease); }
.gallery-item:hover img { transform: scale(1.09); }
.gallery-item .ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(32,22,10,.55), transparent 60%); opacity: 0; display: grid; place-items: center; transition: var(--ease); color: #fff; }
.gallery-item:hover .ov { opacity: 1; }
.gallery-item .ov svg { width: 36px; height: 36px; }

/* =====================================================================
   REVIEWS
   ===================================================================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 32px; box-shadow: var(--shadow-sm); position: relative; transition: var(--ease); }
.review-card::before { content: '“'; position: absolute; top: 6px; right: 26px; font-family: Georgia, serif; font-size: 5rem; color: var(--primary-soft); line-height: 1; }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review-stars { display: flex; gap: 3px; color: var(--primary); margin-bottom: 16px; }
.review-stars svg { width: 19px; height: 19px; }
.review-card p { color: var(--ink-soft); margin-bottom: 20px; position: relative; z-index: 1; }
.review-author { display: flex; align-items: center; gap: 13px; }
.review-author .av { width: 50px; height: 50px; border-radius: 14px; background: var(--grad-primary); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-head); box-shadow: var(--shadow-3d); }
.review-author b { display: block; font-size: 1rem; color: var(--ink); }
.review-author span { font-size: .82rem; color: var(--gray); }

/* =====================================================================
   BLOG
   ===================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    background: #fff; border: 1px solid var(--border); border-radius: 22px; overflow: hidden;
    transition: var(--ease); display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--primary-soft); position: relative; display: block; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: .5s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.08); }
/* Kategori etiketi görselin üstünde */
.blog-thumb .blog-cat {
    position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(255,255,255,.95);
    color: var(--primary-dark); padding: 6px 13px; border-radius: 9px; font-weight: 700; font-size: .76rem;
    box-shadow: var(--shadow-sm); backdrop-filter: blur(4px);
}
.blog-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; gap: 16px; align-items: center; font-size: .82rem; color: var(--gray); margin-bottom: 12px; }
.blog-meta span { display: inline-flex; align-items: center; gap: 6px; }
.blog-meta svg { width: 15px; height: 15px; color: var(--primary); }
.blog-body h3 { font-size: 1.22rem; margin-bottom: 11px; line-height: 1.38; }
.blog-body h3 a:hover { color: var(--primary-dark); }
.blog-body p { color: var(--gray); font-size: .95rem; margin-bottom: 18px; flex: 1; }
.blog-body .blog-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 16px; }
.blog-body .blog-foot .service-link { font-size: .88rem; }

/* Öne çıkan büyük yazı (ana sayfa) */
.blog-featured { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; background: #fff; border: 1px solid var(--border); border-radius: 24px; overflow: hidden; transition: var(--ease); margin-bottom: 28px; }
.blog-featured:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.blog-featured .blog-thumb { aspect-ratio: auto; height: 100%; min-height: 320px; }
.blog-featured .blog-body { padding: 38px 40px; justify-content: center; }
.blog-featured .blog-body h3 { font-size: 1.7rem; }
.blog-featured .feat-tag { display: inline-flex; align-items: center; gap: 6px; color: var(--primary-dark); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.blog-featured .feat-tag svg { width: 15px; height: 15px; }
.blog-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-wrap { max-width: 840px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 18px; overflow: hidden; transition: var(--ease); background: #fff; }
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-q { width: 100%; text-align: left; padding: 22px 26px; font-weight: 700; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--ink); font-family: var(--font-head); }
.faq-q .fic { flex-shrink: 0; width: 32px; height: 32px; border-radius: 10px; background: var(--primary-soft); color: var(--primary-dark); display: grid; place-items: center; transition: var(--ease); }
.faq-item.active .fic { background: var(--grad-primary); color: #fff; transform: rotate(135deg); box-shadow: var(--shadow-3d); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--gray); }

/* =====================================================================
   MAP
   ===================================================================== */
.map-section { padding: 0; position: relative; }
.map-wrap { position: relative; }
.map-wrap iframe { width: 100%; height: 500px; display: block; border: 0; }
.map-card {
    position: absolute; top: 50%; left: 6%; transform: translateY(-50%);
    background: #fff; border-radius: 26px; padding: 34px; box-shadow: var(--shadow-lg); max-width: 380px; z-index: 1;
}
.map-card h3 { font-size: 1.5rem; margin-bottom: 18px; }
.map-card .mc-item { display: flex; gap: 14px; margin-bottom: 18px; }
.map-card .mc-item .ci { flex-shrink: 0; width: 44px; height: 44px; border-radius: 13px; }
.map-card .mc-item .ci svg { width: 19px; height: 19px; }
.map-card .mc-item b { display: block; font-size: .92rem; color: var(--ink); }
.map-card .mc-item span { font-size: .9rem; color: var(--gray); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--secondary); color: #b3bcc7; padding: 0; position: relative; overflow: hidden; }
.footer::before {
    content: ''; position: absolute; inset: 0; opacity: .04; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 24 24' fill='%23E89F0A'%3E%3Ccircle cx='11' cy='4' r='2'/%3E%3Ccircle cx='18' cy='8' r='2'/%3E%3Ccircle cx='20' cy='16' r='2'/%3E%3Cpath d='M9 10a5 5 0 0 1 5 5v3.5a3.5 3.5 0 0 1-6.84 1.045Q6.52 17.48 4.46 16.84A3.5 3.5 0 0 1 5.5 10Z'/%3E%3C/svg%3E");
    background-size: 130px;
}
.footer-top { position: relative; z-index: 1; padding: 72px 0 0; }
.footer-cta {
    background: var(--grad-primary); border-radius: 28px; padding: 38px 44px; margin-bottom: 60px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.footer-cta::after { content: ''; position: absolute; right: -40px; top: -40px; width: 180px; height: 180px; background: rgba(255,255,255,.12); border-radius: 50%; }
.footer-cta h3 { color: #fff; font-size: 1.7rem; margin-bottom: 4px; }
.footer-cta p { color: rgba(255,255,255,.9); font-size: .98rem; }
.footer-cta .fc-text { position: relative; z-index: 1; }
.footer-cta .fc-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; padding-bottom: 54px; position: relative; z-index: 1; }
.footer h4 { color: #fff; font-size: 1.08rem; margin-bottom: 22px; }
.footer-about p { font-size: .95rem; margin-bottom: 22px; line-height: 1.75; }
.footer-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer-logo .logo-mark { width: 44px; height: 44px; border-radius: 13px; background: var(--grad-primary); display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-3d); }
.footer-logo .logo-mark svg { width: 25px; height: 25px; }
.footer-logo .ft { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: #fff; }
.footer-logo .ft b { color: var(--primary); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: .95rem; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); opacity: 0; transition: var(--ease); }
.footer-links a:hover { color: var(--primary-light); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: .95rem; align-items: flex-start; }
.footer-contact .ci { flex-shrink: 0; width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: var(--primary); }
.footer-contact .ci svg { width: 17px; height: 17px; }
.footer-socials { display: flex; gap: 11px; margin-top: 8px; }
.footer-socials a { width: 44px; height: 44px; border-radius: 13px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #fff; transition: var(--ease); }
.footer-socials a:hover { background: var(--grad-primary); transform: translateY(-4px); box-shadow: var(--shadow-3d); }
.footer-socials svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; font-size: .88rem; position: relative; z-index: 1; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; align-items: center; }
.footer-bottom a:hover { color: var(--primary-light); }
.footer-credit { display: inline-flex; align-items: center; gap: 7px; }
.footer-credit a { color: var(--primary); font-weight: 700; }
.footer-credit a:hover { color: var(--primary-light); }

/* =====================================================================
   FLOATING ACTION BUTTONS
   ===================================================================== */
.fab-stack { position: fixed; bottom: 24px; right: 24px; z-index: 900; display: flex; flex-direction: column; gap: 13px; }
.fab { width: 58px; height: 58px; border-radius: 17px; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-lg); transition: var(--transition); position: relative; }
.fab svg { width: 27px; height: 27px; }
.fab:hover { transform: translateY(-4px) scale(1.06); }
.fab-wa { background: linear-gradient(145deg, #2be36f, #1faf52); }
.fab-call { background: var(--grad-primary); }
.fab-pulse::before { content: ''; position: absolute; inset: 0; border-radius: 17px; background: inherit; animation: pulse 2s infinite; z-index: -1; }
@keyframes pulse { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.7);opacity:0} }

/* =====================================================================
   MOBİL ALT MENÜ — Native app tab bar (yalnızca telefonda görünür)
   ===================================================================== */
.mobile-tabbar { display: none; }
.mobile-tabbar .tab {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
    font-size: .65rem; font-weight: 700; color: var(--gray); padding: 8px 2px;
    background: none; border: none; cursor: pointer; -webkit-tap-highlight-color: transparent;
    transition: color .2s;
}
.mobile-tabbar .tab svg { width: 23px; height: 23px; }
.mobile-tabbar .tab.active { color: var(--primary-dark); }
.mobile-tabbar .tab:active { transform: scale(.92); }
.mobile-tabbar .tab-center { position: relative; }
.mobile-tabbar .tab-center .cbtn {
    width: 58px; height: 58px; border-radius: 19px; background: var(--grad-primary); color: #fff;
    display: grid; place-items: center; margin-top: -26px; margin-bottom: 1px;
    box-shadow: 0 8px 20px rgba(232,159,10,.5); border: 4px solid var(--bg);
}
.mobile-tabbar .tab-center .cbtn svg { width: 27px; height: 27px; }
.mobile-tabbar .tab-center span { color: var(--primary-dark); }

/* =====================================================================
   PAGE HERO (iç sayfalar)
   ===================================================================== */
.page-hero { background: var(--secondary); color: #fff; padding: 70px 0 90px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; right: -70px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(232,159,10,.24), transparent 70%); }
.page-hero::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; background: var(--bg);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0 60 V25 Q360 0 720 25 T1440 25 V60Z'/%3E%3C/svg%3E") bottom/100% 100% no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0 60 V25 Q360 0 720 25 T1440 25 V60Z'/%3E%3C/svg%3E") bottom/100% 100% no-repeat;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .paw-deco { color: #fff; opacity: .06; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 12px; font-weight: 800; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: #aab4c0; font-size: .92rem; }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb .sep { opacity: .5; display: inline-flex; }
.breadcrumb .sep svg { width: 14px; height: 14px; }

/* Prose */
.prose { font-size: 1.06rem; color: var(--ink-soft); line-height: 1.85; }
.prose p { margin-bottom: 1.3rem; }
.prose h2, .prose h3 { color: var(--ink); margin: 2rem 0 1rem; }
.prose img { border-radius: 18px; margin: 1.6rem 0; }
.prose ul, .prose ol { margin: 0 0 1.3rem 1.4rem; }
.prose ul li, .prose ol li { margin-bottom: .6rem; }
.prose a { color: var(--primary-dark); font-weight: 600; }
.prose blockquote { border-left: 4px solid var(--primary); background: var(--primary-tint); padding: 16px 22px; border-radius: 0 14px 14px 0; margin: 1.4rem 0; font-style: italic; }

/* Yardımcılar */
.text-center { text-align: center; }
.mt-1{margin-top:1rem} .mt-2{margin-top:2.4rem} .mb-2{margin-bottom:2rem}
.alert { padding: 15px 20px; border-radius: 14px; margin-bottom: 18px; font-weight: 600; font-size: .94rem; }
.alert-success { background: #e7f7ed; color: #157347; border: 1px solid #b6e8c7; }
.alert-error { background: #fdeaea; color: #c0392b; border: 1px solid #f5c2c2; }
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s cubic-bezier(.34,1.4,.64,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(20,14,6,.93); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox .lb-img { max-width: 90vw; max-height: 86vh; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox button { position: absolute; background: rgba(255,255,255,.12); color: #fff; border-radius: 13px; width: 52px; height: 52px; font-size: 1.6rem; line-height: 1; display: grid; place-items: center; transition: var(--ease); }
.lightbox button:hover { background: var(--primary); }
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px){ .lightbox .lb-prev{left:10px} .lightbox .lb-next{right:10px} .lightbox button{width:44px;height:44px} }

/* ---------- Galeri filtre ---------- */
.gallery-filter { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.gallery-filter button { padding: 11px 24px; border-radius: 12px; font-weight: 700; font-size: .9rem; color: var(--ink-soft); background: #fff; border: 1.5px solid var(--border); transition: var(--ease); }
.gallery-filter button.active, .gallery-filter button:hover { background: var(--grad-primary); color: #fff; border-color: transparent; box-shadow: var(--shadow-primary); }
.gallery-video { position: relative; }
.gallery-video .pbtn { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(32,22,10,.4); color: #fff; }
.gallery-video .pbtn svg { width: 46px; height: 46px; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 992px) {
    .hero .container, .about-grid, .appt-grid, .stats-grid { grid-template-columns: 1fr; }
    .hero { padding: 50px 0 90px; }
    .hero-visual { order: -1; max-width: 440px; margin: 0 auto; }
    .services-grid, .reviews-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .map-card { position: static; transform: none; max-width: none; margin: 0; border-radius: 0; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    /* Header'da backdrop-filter, içindeki fixed menüyü viewport yerine header'a
       bağlar (üst üste binme sebebi). Mobilde kapat. */
    .header { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(255,253,248,.98); }
    .nav {
        position: fixed; top: 0; right: 0; width: 84%; max-width: 350px; height: 100%;
        background: #fff; flex-direction: column; align-items: stretch; padding: 90px 22px 24px;
        box-shadow: var(--shadow-lg); gap: 4px; z-index: 1001; overflow-y: auto;
        transform: translateX(105%); transition: transform .35s ease; will-change: transform;
        overscroll-behavior: contain;
    }
    .nav.open { transform: translateX(0); }
    .nav a { padding: 15px 16px; font-size: 1.06rem; border-radius: 12px; }
    .nav a::after { display: none; }
    .nav a:hover, .nav a.active { background: var(--primary-soft); }
    .menu-toggle { display: flex; z-index: 1002; }
    .topbar .tb-left .tb-item.hide-sm { display: none; }
    /* Header sadeleştir: dil + CTA menü içine taşındı */
    .header-actions .lang-switch, .header-actions > .btn-primary { display: none; }
    .nav-extra { display: block; margin-top: 14px; padding-top: 18px; border-top: 1px solid var(--border); }
    .header .container { height: 70px; }
    .hero h1 { font-size: 2.3rem; }
    /* Tek, sade hero: önce metin, sonra sade görsel (iki hero görünümü engellenir) */
    .hero-content { order: 0; }
    .hero-visual { order: 1; max-width: 340px; margin-top: 6px; }
    .hero-float, .hero-paw { display: none; }
    .hero-visual .hero-img { border-width: 5px; border-radius: 22px; aspect-ratio: 4/3.1; }
    .hero-visual .hero-blob { inset: -5% -4%; border-radius: 28px; }
    .services-grid, .reviews-grid, .blog-grid, .footer-grid { grid-template-columns: 1fr; }
    .stats-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .appt-form { padding: 28px; }
    /* iOS odaklanınca yakınlaştırmasın */
    .form-control, input, select, textarea { font-size: 16px !important; }
    .hero-float.f1 { left: 0; } .hero-float.f2 { right: 0; }
    .footer-cta { padding: 30px; text-align: center; flex-direction: column; }
    /* Şeffaf örtü: koyu gölge yok ama menü dışına tıklayınca kapanır */
    .nav-overlay { position: fixed; inset: 0; background: transparent; z-index: 1000; visibility: hidden; }
    .nav-overlay.open { visibility: visible; }
    .header-actions .lang-switch a span { display: none; }

    /* App tab bar görünür + içerik onun arkasına gitmesin */
    .mobile-tabbar {
        display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 960;
        background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
        border-top: 1px solid var(--border); box-shadow: 0 -8px 24px rgba(60,42,12,.10);
        justify-content: space-around; align-items: flex-end;
        padding: 6px 2px calc(6px + env(safe-area-inset-bottom, 0px));
    }
    body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
    /* WhatsApp butonu tab barın üstünde; arama tab barda olduğu için call fab gizli */
    .fab-stack { right: 16px; bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
    .fab-call { display: none; }
    /* Çerez bildirimi: tab bar gibi görünmesin diye yüzen kompakt kart */
    #cookieBar {
        left: 12px !important; right: 12px !important;
        bottom: calc(80px + env(safe-area-inset-bottom, 0px)) !important;
        border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.25);
    }
}

@media (max-width: 480px) {
    .stats-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
    .hero-actions .btn, .appt-form .btn { width: 100%; }
    .footer-bottom .container { justify-content: center; text-align: center; }
}
