/* ══════════════════════════════════════════════════
   BK Klinik — Core Styles
   Apple-inspired · Pastel Cream & Coffee
   ══════════════════════════════════════════════════ */

:root {
    --cream-0:    #FFFDF9;
    --cream-50:   #FDF8F1;
    --cream-100:  #FAF0E4;
    --cream-200:  #F3E3CC;
    --cream-300:  #EAD0AE;
    --coffee-100: #E2C9A8;
    --coffee-200: #D4B48A;
    --coffee-300: #C49A6C;
    --coffee-400: #A87F50;
    --coffee-500: #8A6438;
    --coffee-600: #6B4D24;
    --coffee-700: #4A3318;
    --text:       #2C1A0E;
    --text-2:     #6B4A30;
    --text-3:     #9C7B5E;
    --border:     #E3D0BB;
    --border-lt:  #EEE0CF;
    --white:      #FFFFFF;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --sp:        120px;
    --container: 1200px;
    --r-sm:   8px;
    --r-md:   16px;
    --r-lg:   24px;
    --r-xl:   36px;
    --r-full: 9999px;

    --sh-xs: 0 1px 4px rgba(44,26,14,.05);
    --sh-sm: 0 2px 12px rgba(44,26,14,.07);
    --sh-md: 0 6px 24px rgba(44,26,14,.10), 0 2px 8px rgba(44,26,14,.06);
    --sh-lg: 0 16px 48px rgba(44,26,14,.12), 0 6px 20px rgba(44,26,14,.07);
    --sh-xl: 0 32px 80px rgba(44,26,14,.16), 0 12px 32px rgba(44,26,14,.09);

    --ease:     cubic-bezier(.4,0,.2,1);
    --ease-out: cubic-bezier(0,.5,.3,1);
    --t:        .28s;
    --t-slow:   .55s;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; }
body {
    font-family: var(--font-sans);
    background: var(--cream-50);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; }

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

/* ── TYPOGRAPHY ──────────────────────────────────── */
.section__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--coffee-400);
    margin-bottom: 14px;
}
.section__label::before {
    content: '';
    display: block;
    width: 24px; height: 1.5px;
    background: var(--coffee-400);
}
.section__title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 600;
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 20px;
}
.section__desc {
    font-size: 1.02rem;
    color: var(--text-2);
    line-height: 1.85;
    max-width: 520px;
}
.section__header { text-align: center; margin-bottom: 68px; }
.section__header .section__label { justify-content: center; }
.section__header .section__label::before { display: none; }
.section__header .section__title { margin-bottom: 16px; }
.section__header .section__desc { margin: 0 auto; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--r-full);
    font-family: var(--font-sans);
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .01em;
    transition: all var(--t) var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
    transform: skewX(-20deg);
    transition: left .5s ease;
    pointer-events: none;
}
.btn:hover::after { left: 125%; }

.btn--primary {
    background: var(--coffee-400);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(168,127,80,.30);
}
.btn--primary:hover { background: var(--coffee-500); transform: translateY(-2px); }

.btn--ghost {
    background: transparent;
    color: var(--coffee-500);
    border: 1.5px solid var(--coffee-300);
}
.btn--ghost:hover { background: var(--cream-200); border-color: var(--coffee-400); transform: translateY(-2px); }

.btn--whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 18px rgba(37,211,102,.22);
}
.btn--whatsapp:hover { background: #1EBE57; transform: translateY(-2px); }

.btn--call {
    background: var(--coffee-500);
    color: var(--white);
}
.btn--call:hover { background: var(--coffee-600); transform: translateY(-2px); }

/* ══ HEADER ══════════════════════════════════════ */
#header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    padding: 18px 0;
    transition: padding var(--t) var(--ease), background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
#header.scrolled {
    padding: 12px 0;
    background: rgba(253,248,241,.93);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    box-shadow: 0 1px 0 var(--border-lt), 0 4px 24px rgba(44,26,14,.06);
}
@media (max-width: 768px) {
    #header.scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(253,248,241,.98);
    }
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}
.nav__logo {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: .02em;
    flex-shrink: 0;
    z-index: 1003;
    order: 1;
    margin-right: auto;
    background: linear-gradient(90deg, var(--text) 0%, var(--text) 40%, var(--coffee-300) 50%, var(--text) 60%, var(--text) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoShimmer 6s linear infinite 3s;
}
.nav__logo-bk {
    background: linear-gradient(90deg, var(--coffee-400) 0%, var(--coffee-400) 30%, var(--coffee-200) 50%, var(--coffee-400) 70%, var(--coffee-400) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoShimmer 6s linear infinite 3s;
    display: inline;
}
@keyframes logoShimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
    margin: 0;
    min-width: 0;
    order: 2;
}
.nav__menu-cta {
    display: none;
}
.nav__link {
    padding: 7px 15px;
    font-size: .87rem;
    font-weight: 400;
    color: var(--text-2);
    border-radius: var(--r-sm);
    transition: all var(--t) var(--ease);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px; height: 1.5px;
    background: var(--coffee-400);
    border-radius: 2px;
    transition: transform var(--t) var(--ease);
}
.nav__link:hover  { color: var(--text); }
.nav__link:hover::after,
.nav__link.active::after { transform: translateX(-50%) scaleX(1); }
.nav__link.active { color: var(--text); font-weight: 500; }

.nav__cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: var(--coffee-400);
    color: var(--white);
    border-radius: var(--r-full);
    font-size: .85rem;
    font-weight: 500;
    transition: all var(--t) var(--ease);
    box-shadow: 0 2px 14px rgba(168,127,80,.25);
    flex-shrink: 0;
    order: 3;
    margin-left: auto;
}
.nav__cta:hover { background: var(--coffee-500); transform: translateY(-1px); }

.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    margin: 0 -6px 0 0;
    z-index: 1003;
    position: relative;
    order: 4;
    -webkit-tap-highlight-color: transparent;
}
.nav__hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--t) var(--ease);
    transform-origin: center;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ HERO ════════════════════════════════════════ */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 110px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, var(--cream-50) 0%, var(--cream-100) 45%, var(--cream-200) 100%);
}
.hero__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
}
.hero__glow--1 {
    width: 700px; height: 700px;
    top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(196,154,108,.18) 0%, transparent 65%);
}
.hero__glow--2 {
    width: 500px; height: 500px;
    bottom: -150px; left: -80px;
    background: radial-gradient(circle, rgba(168,127,80,.12) 0%, transparent 65%);
}
.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--coffee-400);
    margin-bottom: 22px;
}
.hero__eyebrow-line {
    display: block;
    width: 30px; height: 1.5px;
    background: var(--coffee-400);
}
.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 6.5vw, 5.5rem);
    font-weight: 600;
    line-height: 1.04;
    color: var(--text);
    margin-bottom: 26px;
}
.hero__title em { font-style: italic; color: var(--coffee-400); }
.hero__desc {
    font-size: 1.06rem;
    line-height: 1.85;
    color: var(--text-2);
    margin-bottom: 40px;
    max-width: 460px;
}
.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}
.hero__stats {
    display: flex;
    align-items: center;
    padding: 20px 28px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--r-lg);
    border: 1px solid var(--border-lt);
    width: fit-content;
    box-shadow: var(--sh-sm);
}
.hero__stat { text-align: center; padding: 0 24px; }
.hero__stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--coffee-500);
    line-height: 1;
    margin-bottom: 4px;
}
.hero__stat span { font-size: .72rem; color: var(--text-3); letter-spacing: .04em; }
.hero__stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__image-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-xl);
    background: var(--cream-200);
    transition: transform .6s var(--ease);
}
.parallax-wrap { overflow: hidden; border-radius: inherit; }
.parallax-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    /* Fotoğraf üstten kırpılsın, kişi boydan görünsün diye alt tarafa hizala */
    object-position: center bottom;
    display: block;
    transform: scale(1.08) translateY(0);
    will-change: transform;
    /* Görsel yüklenene kadar alan korunsun */
    background: var(--cream-200);
}
.hero__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(44,26,14,.18));
    pointer-events: none;
}
.hero__badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-radius: var(--r-md);
    box-shadow: var(--sh-md);
    border: 1px solid var(--border-lt);
}
.hero__badge--tl { top: 52px; left: -28px; }
.hero__badge--br { bottom: 72px; right: -28px; }
.hero__badge-icon {
    width: 36px; height: 36px;
    background: var(--cream-200);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero__badge-icon i { font-size: 1rem; color: var(--coffee-400); }
.hero__badge strong { display: block; font-size: .8rem; font-weight: 600; color: var(--text); }
.hero__badge span   { display: block; font-size: .7rem; color: var(--text-3); }
.hero__decor { position: absolute; pointer-events: none; }
.hero__decor--circle {
    width: 120px; height: 120px;
    border: 2px solid rgba(196,154,108,.25);
    border-radius: 50%;
    bottom: 20px; left: -50px;
}
.hero__decor--dots {
    top: 20px; right: -30px;
    width: 80px; height: 80px;
    background-image: radial-gradient(circle, rgba(196,154,108,.5) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
}
.hero__scroll {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-3);
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.hero__scroll-line {
    width: 1.5px; height: 44px;
    background: linear-gradient(to bottom, var(--border), transparent);
    animation: scrollDrop 2s var(--ease) infinite;
}
@keyframes scrollDrop {
    0%   { transform: scaleY(0); transform-origin: top; opacity:1; }
    49%  { transform: scaleY(1); transform-origin: top; opacity:1; }
    50%  { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity:.3; }
}

/* ══ ABOUT ═══════════════════════════════════════ */
.about {
    padding: var(--sp) 0;
    background: var(--cream-0);
    position: relative;
}
.about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.about__media { position: relative; }
.about__img-wrap {
    position: relative;
    border-radius: var(--r-xl);
    /* Badgeler dışarı taşsın ama fotoğrafın köşeleri yuvarlak kalsın */
    overflow: visible;
    box-shadow: var(--sh-lg);
}
.about__img-wrap img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: var(--r-xl);
    transition: transform var(--t-slow) var(--ease);
}
.about__img-wrap:hover img { transform: scale(1.03); }
.about__img-wrap--full img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: unset;
    object-position: center top;
}
.about__img-wrap--full:hover img { transform: none; }

.about__img-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(26,14,6,.45));
    pointer-events: none;
    z-index: 1;
}

/* ── Edu badges — fotoğrafın üstünde konumlanır ── */
.about__edu {
    position: absolute;
    /* Fotoğrafın alt kenarıyla aynı çizgide, kartların yarısı fotoğraf üzerinde yarısı dışında */
    bottom: -20px;
    right: -40px;
    left: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 20px;
    align-items: flex-start;
    z-index: 2;
    pointer-events: none;
}

.about__edu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    background: rgba(255, 253, 249, 0.82);
    backdrop-filter: blur(16px) saturate(1.5);
    -webkit-backdrop-filter: blur(16px) saturate(1.5);
    border-radius: var(--r-md);
    box-shadow: 0 4px 20px rgba(44,26,14,.18), 0 1px 4px rgba(44,26,14,.10);
    border: 1px solid rgba(255,255,255,.7);
    pointer-events: auto;
    width: fit-content;
    min-width: 200px;
    max-width: 260px;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.about__edu-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 28px rgba(44,26,14,.22);
}

/* Stagger konumlandırma — sağ tarafa doğru dikey dizilim */
.about__edu-item--1,
.about__edu-item--2,
.about__edu-item--3 {
    align-self: flex-end;
    margin: 0;
}

.about__edu-icon {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--coffee-200), var(--coffee-300));
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(168,127,80,.25);
}
.about__edu-icon i { font-size: .85rem; color: var(--white); }
.about__edu-item strong { display: block; font-size: .77rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.about__edu-item span  { display: block; font-size: .68rem; color: var(--text-3); margin-top: 1px; }
.about__body { padding-top: 8px; }
.about__text { font-size: 1rem; line-height: 1.85; color: var(--text-2); margin-bottom: 18px; }
.about__text strong { color: var(--text); font-weight: 600; }
.about__services { display: flex; flex-direction: column; gap: 10px; margin: 28px 0 36px; }
.about__service-item {
    display: flex; align-items: center; gap: 10px;
    font-size: .92rem; color: var(--text-2);
}
.about__service-item i { font-size: .85rem; color: var(--coffee-400); flex-shrink: 0; }

/* ══ QUOTE ═══════════════════════════════════════ */
.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream-200) 0%, var(--coffee-100) 100%);
    position: relative;
    overflow: hidden;
}
.quote-section::before {
    content: '"';
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-serif);
    font-size: 28rem;
    color: rgba(168,127,80,.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.quote-card { max-width: 780px; margin: 0 auto; text-align: center; padding: 0 20px; position: relative; }
.quote-card__icon { font-size: 2rem; color: var(--coffee-300); margin-bottom: 24px; opacity: .7; display: block; }
.quote-card__text {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 28px;
}
.quote-card__author { font-size: .82rem; font-style: normal; color: var(--coffee-500); letter-spacing: .1em; text-transform: uppercase; }

/* ══ SERVICES ════════════════════════════════════ */
.services { padding: var(--sp) 0; background: var(--cream-50); }
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.service-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-xs);
    border: 1px solid var(--border-lt);
    transition: all var(--t) var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
}
.service-card:hover { box-shadow: var(--sh-lg); transform: translateY(-7px); border-color: var(--coffee-100); }
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    border-radius: inherit;
    background: radial-gradient(600px circle at var(--mx,50%) var(--my,50%), rgba(196,154,108,.12) 0%, transparent 60%);
    transition: opacity .4s ease;
    pointer-events: none;
    z-index: 1;
}
.service-card:hover::after { opacity: 1; }
.service-card__img {
    position: relative;
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
}
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.service-card:hover .service-card__img img { transform: scale(1.07); }
.service-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.18) 50%, transparent 60%);
    background-size: 200% 100%;
    background-position: -100% 0;
    transition: background-position .55s ease;
    pointer-events: none;
}
.service-card:hover .service-card__img::after { background-position: 100% 0; }
.service-card__body {
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}
.service-card__icon {
    position: absolute;
    top: -20px; right: 22px;
    width: 40px; height: 40px;
    background: var(--coffee-300);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(196,154,108,.3);
}
.service-card__icon i { font-size: .9rem; color: var(--white); }
.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.3;
    margin-top: 4px;
}
.service-card p { font-size: .875rem; line-height: 1.75; color: var(--text-2); margin-bottom: 18px; flex: 1; }
.service-card__link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .82rem; font-weight: 500; color: var(--coffee-400);
    transition: all var(--t) var(--ease); margin-top: auto;
}
.service-card__link:hover { color: var(--coffee-600); gap: 10px; }

/* ══ WHY US ══════════════════════════════════════ */
.why { padding: var(--sp) 0; background: linear-gradient(180deg, var(--cream-100) 0%, var(--cream-50) 100%); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border-lt);
    transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s, border-color .3s;
    text-align: center;
    will-change: transform;
}
.why-card:hover { box-shadow: var(--sh-md); transform: translateY(-10px) scale(1.01); border-color: var(--coffee-200); }
.why-card__icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--coffee-300), var(--coffee-400));
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 6px 18px rgba(196,154,108,.25);
    transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s;
}
.why-card:hover .why-card__icon { transform: scale(1.12) rotate(-4deg); box-shadow: 0 10px 32px rgba(196,154,108,.38); }
.why-card__icon i { font-size: 1.35rem; color: var(--white); }
.why-card h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.why-card p  { font-size: .875rem; line-height: 1.78; color: var(--text-2); }

/* ══ CONTACT ══════════════════════════════════════ */
.contact {
    padding: var(--sp) 0;
    background: var(--cream-100);
    position: relative;
}
.contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.contact__container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact__lead { font-size: 1.02rem; line-height: 1.85; color: var(--text-2); margin-bottom: 36px; }
.contact__details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact__detail { display: flex; gap: 16px; align-items: flex-start; }
.contact__detail-icon {
    width: 40px; height: 40px;
    background: var(--cream-200);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform .4s cubic-bezier(.22,1,.36,1), background .3s;
}
.contact__detail:hover .contact__detail-icon { transform: scale(1.15) rotate(8deg); background: var(--coffee-200); }
.contact__detail-icon i { font-size: .9rem; color: var(--coffee-400); }
.contact__detail strong {
    display: block; font-size: .72rem; font-weight: 600;
    color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px;
}
.contact__detail p { font-size: .92rem; color: var(--text-2); line-height: 1.65; }
.contact__detail a { color: var(--coffee-400); transition: color var(--t); }
.contact__detail a:hover { color: var(--coffee-600); }
.contact__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.contact__social { display: flex; gap: 10px; }
.social-link {
    width: 40px; height: 40px;
    background: var(--cream-200);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--coffee-500);
    font-size: 1rem;
    transition: all var(--t) var(--ease);
    border: 1px solid var(--border-lt);
}
.social-link:hover { background: var(--coffee-400); color: var(--white); border-color: var(--coffee-400); transform: translateY(-2px); }

.contact__map-col { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 90px; }
.contact__map-frame {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 360px;
    box-shadow: var(--sh-md);
    border: 1px solid var(--border-lt);
}
.contact__map-frame iframe { width: 100%; height: 100%; border: none; filter: sepia(15%) saturate(90%) brightness(1.04); pointer-events: none; }
.contact__map-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* Görünmez tıklama alanı */
    background: transparent;
}
.contact__map-pill {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 22px;
    background: var(--white);
    border-radius: var(--r-md);
    border: 1px solid var(--border-lt);
    box-shadow: var(--sh-sm);
}
.contact__map-pill-logo {
    width: 44px; height: 44px;
    background: var(--coffee-400);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700; font-size: 1rem; color: var(--white);
    flex-shrink: 0;
}
.contact__map-pill-text strong { display: block; font-size: .9rem; font-weight: 600; color: var(--text); }
.contact__map-pill-text span   { display: block; font-size: .75rem; color: var(--text-3); }
.contact__map-pill-link {
    margin-left: auto;
    display: flex; align-items: center; gap: 6px;
    font-size: .82rem; font-weight: 500; color: var(--coffee-400);
    white-space: nowrap;
    transition: all var(--t) var(--ease);
}
.contact__map-pill-link:hover { color: var(--coffee-600); gap: 8px; }

/* ══ FOOTER ══════════════════════════════════════ */
.footer { background: var(--text); }
.footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-top: 64px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
    font-family: var(--font-serif);
    font-size: 1.6rem; font-weight: 700;
    color: var(--white);
    display: inline-block; margin-bottom: 14px;
}
.footer__logo span { color: var(--coffee-300); }
.footer__brand p { font-size: .875rem; line-height: 1.75; color: rgba(255,255,255,.55); margin-bottom: 22px; max-width: 280px; }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    transition: all var(--t) var(--ease);
}
.footer__socials a:hover { background: var(--coffee-400); color: var(--white); transform: translateY(-2px); }
.footer__col h4 { font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a,
.footer__col ul li span { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--t); }
.footer__col ul li a:hover { color: var(--white); }
.footer__contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.footer__contact-list i { font-size: .85rem; color: var(--coffee-300); flex-shrink: 0; margin-top: 3px; }
.footer__contact-list a { color: rgba(255,255,255,.6); transition: color var(--t); }
.footer__contact-list a:hover { color: var(--white); }
.footer__bottom { padding: 22px 0; }
.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.footer__bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer__credit {
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.footer__credit span {
    font-weight: 600;
    color: #ffffff;
}
.footer__credit:hover {
    color: #ffffff;
}

/* ══ WHATSAPP FLOAT ══════════════════════════════ */
.wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 4px 22px rgba(37,211,102,.42);
    transition: all var(--t) var(--ease);
    animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); animation: none; }
.wa-float__tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: var(--text);
    color: var(--white);
    font-size: .78rem; font-weight: 500;
    padding: 7px 14px;
    border-radius: var(--r-sm);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateX(6px);
    transition: all var(--t) var(--ease);
}
.wa-float__tooltip::after {
    content: '';
    position: absolute;
    left: 100%; top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--text);
}
.wa-float:hover .wa-float__tooltip { opacity: 1; transform: translateX(0); }
@keyframes waPulse {
    0%,100% { box-shadow: 0 4px 22px rgba(37,211,102,.42); }
    50%      { box-shadow: 0 4px 30px rgba(37,211,102,.6), 0 0 0 10px rgba(37,211,102,.08); }
}

/* ══ RESPONSIVE — 1100px ════════════════════════ */
@media (max-width: 1100px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .why__grid      { grid-template-columns: repeat(2, 1fr); }
}

/* ══ RESPONSIVE — 900px ═════════════════════════ */
@media (max-width: 900px) {
    :root { --sp: 80px; }
    .hero__container, .about__container, .contact__container { grid-template-columns: 1fr; gap: 52px; }
    .hero__visual { order: -1; }
    .parallax-img { height: 420px; }
    .hero__badge { display: none; }
    .hero__decor { display: none; }
    .hero__stats { flex-wrap: wrap; }
    .about__edu {
        bottom: -16px;
        right: -26px;
        left: auto;
        top: auto;
        transform: none;
        padding: 10px 10px;
        gap: 8px;
        align-items: flex-start;
    }
    .about__edu-item { min-width: 150px; max-width: 200px; }
    .about__edu-item--1,
    .about__edu-item--2,
    .about__edu-item--3 {
        margin: 0;
    }
    .about__body { padding-top: 0; }
    .footer__main { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer__brand { grid-column: 1 / -1; }
}

/* ══ RESPONSIVE — 768px ═════════════════════════ */
@media (max-width: 768px) {
    .nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .nav__cta { display: none; }
    .nav__logo {
        margin-right: 0;
    }
    /* Mobilde hamburgeri devre dışı bırak, menü her zaman görünür olsun */
    .nav__hamburger {
        display: none;
    }
    .nav__menu {
        position: static;
        width: 100%;
        background: transparent;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 4px;
        padding: 4px 0 0;
    }
    /* JS hazır olsa bile mobilde menüyü gizleme, her zaman göster */
    body.js-ready .nav__menu,
    body.js-ready .nav__menu.open,
    .nav__menu.nav__menu--portal {
        transform: none !important;
        pointer-events: auto !important;
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        top: auto; left: auto; right: auto; bottom: auto;
        min-height: auto;
        overflow: visible;
    }
    .nav__menu-cta {
        display: block;
        width: 100%;
        margin-top: 8px;
        text-align: center;
    }
    .nav__menu-cta .btn {
        width: 100%;
        justify-content: center;
    }
    .nav__link {
        font-size: .95rem;
        padding: 10px 14px;
        min-height: 36px;
    }
    .hero {
        padding: 96px 0 60px;
    }
    .hero__desc {
        font-size: .98rem;
    }
    .section__header {
        margin-bottom: 52px;
    }
    .services, .why, .contact, .about, .quote-section {
        padding: 72px 0;
    }
    .services__grid { grid-template-columns: 1fr; }
    .why__grid      { grid-template-columns: 1fr; }
    .contact__map-col { position: static; }
    .contact__map-frame { height: 280px; }
    .footer__main { grid-template-columns: 1fr; }
    .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ══ RESPONSIVE — 480px ═════════════════════════ */
@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero {
        padding: 88px 0 52px;
    }
    .hero__title { font-size: 2.4rem; }
    .hero__desc {
        font-size: .95rem;
    }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__stats {
        padding: 16px 20px;
    }
    .hero__stat {
        padding: 0 12px;
    }
    .section__title {
        font-size: 2rem;
    }
    .section__desc {
        font-size: .95rem;
    }
    .quote-section {
        padding: 56px 0;
    }
    .why-card {
        padding: 28px 22px;
    }
    .footer__main {
        padding-top: 48px;
        padding-bottom: 40px;
    }
    .contact__btns { flex-direction: column; }
    .contact__btns .btn { justify-content: center; }
    .about__edu { padding: 12px 10px; gap: 7px; }
    .about__edu-item { min-width: 160px; }
    .about__edu-item--1,
    .about__edu-item--2 { margin-left: 6px; }
    .about__edu-item--3 { margin-right: 6px; }
    .footer__main { gap: 28px; }
    .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.4rem; }
    .wa-float__tooltip { display: none; }
}
