/* =====================================================
   MCK ERKEK BAKIM — Ana Stil Dosyası
   Tema: Onyx siyah + antik altın · Koyu lüks
   ===================================================== */

/* ---------- 1. TOKENLAR ---------- */
:root {
    --ink:        #0a0a0c;
    --ink-1:      #0e0e12;
    --ink-2:      #141419;
    --ink-3:      #1b1b21;
    --ink-4:      #24242c;

    --gold:       #c8a25a;
    --gold-lite:  #ebd9a8;
    --gold-deep:  #8c6b2f;
    --gold-soft:  rgba(200,162,90,.14);
    --gold-line:  rgba(200,162,90,.28);

    --text:       #ece9e4;
    --text-2:     #b3aea6;
    --muted:      #857f77;
    --line:       rgba(255,255,255,.08);
    --line-2:     rgba(255,255,255,.14);

    --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-alt:     'Bebas Neue', 'Inter', sans-serif;

    --r-sm: 10px;
    --r:    16px;
    --r-lg: 24px;
    --r-xl: 32px;

    --shadow:    0 24px 60px -20px rgba(0,0,0,.8);
    --shadow-lg: 0 40px 100px -30px rgba(0,0,0,.9);

    --ease:      cubic-bezier(.22,1,.36,1);
    --ease-soft: cubic-bezier(.4,0,.2,1);

    --container: 1240px;
    --pad: 24px;
    --header-h: 76px;
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    background: var(--ink);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
::selection { background: var(--gold); color: #14100a; }

/* Arka plan doku */
body::before {
    content: '';
    position: fixed; inset: 0;
    background:
        radial-gradient(900px 600px at 78% -8%, rgba(200,162,90,.10), transparent 62%),
        radial-gradient(700px 520px at 8% 102%, rgba(200,162,90,.06), transparent 60%);
    pointer-events: none; z-index: 0;
}
body::after {
    content: '';
    position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}
main, .header, .topbar, .footer, .mobile-menu { position: relative; z-index: 1; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }

/* ---------- 3. TİPOGRAFİ ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.14; letter-spacing: -.02em; }
.display   { font-size: clamp(2.6rem, 7.2vw, 5.4rem); line-height: 1.02; }
.h-section { font-size: clamp(2rem, 4.4vw, 3.25rem); }
.h-card    { font-size: clamp(1.15rem, 2vw, 1.4rem); }

.eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--font-body); font-size: .72rem; font-weight: 600;
    letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
    padding: 7px 16px 7px 13px; border: 1px solid var(--gold-line);
    border-radius: 100px; background: var(--gold-soft);
    backdrop-filter: blur(6px);
}
.eyebrow svg { flex: none; }

.lead { font-size: clamp(1rem, 1.5vw, 1.125rem); color: var(--text-2); max-width: 62ch; }
.muted { color: var(--muted); }
.gold  { color: var(--gold); }
.serif-em { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--gold-lite); }

/* Altın gradyan metin */
.grad {
    background: linear-gradient(100deg, var(--gold-lite) 0%, var(--gold) 42%, #f6ecd0 62%, var(--gold-deep) 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: shimmer 7s var(--ease-soft) infinite;
}
@keyframes shimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 62px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .h-section { margin: 18px 0 16px; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line-2), transparent); }

/* ---------- 4. BUTONLAR ---------- */
.btn {
    --btn-bg: transparent;
    position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 28px; border-radius: 100px;
    font-size: .92rem; font-weight: 600; letter-spacing: .01em;
    cursor: pointer; overflow: hidden; isolation: isolate;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), color .3s, border-color .3s, background .3s;
    white-space: nowrap;
}
.btn svg { flex: none; transition: transform .45s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.99); }
.btn:hover svg:last-child { transform: translateX(4px); }
.btn-sm { padding: 11px 20px; font-size: .85rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-lite), var(--gold) 45%, var(--gold-deep));
    color: #17120a; box-shadow: 0 12px 34px -12px rgba(200,162,90,.6);
}
.btn-gold::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(135deg, #fff6e0, var(--gold-lite) 50%, var(--gold));
    opacity: 0; transition: opacity .4s var(--ease-soft);
}
.btn-gold:hover::before { opacity: 1; }
.btn-gold:hover { box-shadow: 0 20px 50px -14px rgba(200,162,90,.72); }

.btn-outline { border: 1px solid var(--gold-line); color: var(--gold-lite); background: rgba(200,162,90,.05); }
.btn-outline:hover { border-color: var(--gold); background: rgba(200,162,90,.13); }

.btn-ghost { border: 1px solid var(--line-2); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold-line); color: var(--gold-lite); background: rgba(255,255,255,.04); }

.btn-dark { background: var(--ink-3); border: 1px solid var(--line); color: var(--text); }
.btn-dark:hover { background: var(--ink-4); border-color: var(--gold-line); }

/* Kayan ışık efekti */
.btn::after {
    content: ''; position: absolute; top: 0; left: -140%; width: 55%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.42), transparent);
    transform: skewX(-22deg); transition: left .75s var(--ease); pointer-events: none;
}
.btn:hover::after { left: 150%; }

/* ---------- 5. PRELOADER ---------- */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    display: grid; place-items: center;
    background: var(--ink);
    transition: opacity .7s var(--ease), visibility .7s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { display: grid; justify-items: center; gap: 18px; color: var(--gold); }
.pre-draw { stroke-dasharray: 200; stroke-dashoffset: 200; animation: draw 1.5s var(--ease) forwards; }
.pre-draw-2 { animation-delay: .18s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.pre-word {
    font-family: var(--font-alt); font-size: 1.5rem; letter-spacing: .55em;
    color: var(--gold-lite); padding-left: .55em;
    opacity: 0; animation: fadeUp .8s var(--ease) .55s forwards;
}
.pre-bar { width: 150px; height: 2px; background: rgba(255,255,255,.1); overflow: hidden; border-radius: 4px; }
.pre-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold-lite)); animation: load 1.6s var(--ease-soft) forwards; }
@keyframes load { to { width: 100%; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---------- 6. SCROLL PROGRESS + CURSOR ---------- */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 999;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-lite), var(--gold));
    box-shadow: 0 0 14px rgba(200,162,90,.7);
}
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) and (min-width: 1025px) {
    .cursor { display: block; position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none; mix-blend-mode: difference; }
    .cursor-dot {
        position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-lite);
        transform: translate(-50%, -50%);
    }
    .cursor-ring {
        position: absolute; width: 34px; height: 34px; border-radius: 50%;
        border: 1px solid rgba(235,217,168,.55); transform: translate(-50%, -50%);
        transition: width .35s var(--ease), height .35s var(--ease), background .35s, border-color .35s;
    }
    .cursor.hot .cursor-ring { width: 62px; height: 62px; background: rgba(235,217,168,.12); border-color: var(--gold-lite); }
    .cursor.hot .cursor-dot { opacity: 0; }
}

/* ---------- 7. TOPBAR ---------- */
.topbar {
    background: #050506; border-bottom: 1px solid var(--line);
    font-size: .78rem; color: var(--muted);
}
.topbar-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 40px; }
.topbar-slogan { display: inline-flex; align-items: center; gap: 8px; letter-spacing: .06em; color: var(--text-2); }
.topbar-slogan svg { color: var(--gold); }
.topbar-links { display: flex; align-items: center; gap: 14px; }
.topbar-links a { display: inline-flex; align-items: center; gap: 7px; transition: color .3s; }
.topbar-links a:hover { color: var(--gold-lite); }
.topbar-sep { width: 1px; height: 13px; background: var(--line-2); }
@media (max-width: 780px) { .topbar-slogan { display: none; } .topbar-in { justify-content: center; } }

/* ---------- 8. HEADER ---------- */
.header {
    position: sticky; top: 0; z-index: 900;
    background: rgba(10,10,12,.72);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    border-bottom: 1px solid transparent;
    transition: background .4s var(--ease-soft), border-color .4s, box-shadow .4s;
}
.header.scrolled { background: rgba(8,8,10,.94); border-bottom-color: var(--line); box-shadow: 0 12px 40px -20px rgba(0,0,0,.9); }
.header.hide { transform: translateY(-100%); }
.header { transition: transform .5s var(--ease), background .4s, border-color .4s; }

.navbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--header-h); }

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { display: grid; place-items: center; transition: transform .6s var(--ease); }
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.06); }
.logo-text {
    display: grid; font-family: var(--font-alt); font-size: 1.55rem; letter-spacing: .12em;
    line-height: 1; color: var(--text);
}
.logo-text small {
    font-family: var(--font-body); font-size: .53rem; font-weight: 600;
    letter-spacing: .32em; color: var(--gold); margin-top: 4px;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
    position: relative; display: block; padding: 10px 15px; border-radius: 100px;
    font-size: .9rem; font-weight: 500; color: var(--text-2);
    transition: color .3s, background .3s;
    overflow: hidden;
}
/* Hover'da metin yukarı kayar, altından altın rengi kopyası gelir.
   Kırpma metin satırında (.nl-clip) olmalı — link'te olursa kopya alt padding'den sızar. */
.nl-clip { display: block; overflow: hidden; }
.nl-txt { position: relative; display: block; transition: transform .45s var(--ease); }
.nl-txt::after {
    content: attr(data-txt); position: absolute; top: 100%; left: 0; width: 100%;
    color: var(--gold-lite);
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,.045); }
.nav-link:hover .nl-txt { transform: translateY(-100%); }
.nav-link.active { color: var(--gold-lite); }
.nav-link.active::before {
    content: ''; position: absolute; left: 15px; right: 15px; bottom: 5px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
@media (max-width: 1080px) { .nav-links { display: none; } }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger { display: none; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 50%; position: relative; transition: border-color .3s, background .3s; }
.hamburger span { position: absolute; left: 13px; width: 18px; height: 1.6px; background: var(--text); border-radius: 2px; transition: transform .45s var(--ease), opacity .3s, width .3s; }
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 21.2px; width: 13px; }
.hamburger span:nth-child(3) { top: 26.4px; }
.hamburger:hover { border-color: var(--gold-line); background: rgba(200,162,90,.08); }
.hamburger:hover span:nth-child(2) { width: 18px; }
.hamburger.open span:nth-child(1) { transform: translateY(5.2px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-5.2px) rotate(-45deg); }
@media (max-width: 1080px) { .hamburger { display: block; } }
@media (max-width: 560px) { .nav-actions .btn span { display: none; } .nav-actions .btn-sm { padding: 11px 13px; } }

/* ---------- 9. MOBİL MENÜ ---------- */
.mobile-menu {
    position: fixed; inset: 0; z-index: 890;
    background: linear-gradient(165deg, #0b0b0e 0%, #121016 60%, #0a0a0c 100%);
    padding: calc(var(--header-h) + 60px) var(--pad) 32px;
    opacity: 0; visibility: hidden; transform: translateY(-14px);
    transition: opacity .45s var(--ease), visibility .45s, transform .55s var(--ease);
    overflow-y: auto;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mm-inner { max-width: 560px; margin-inline: auto; display: flex; flex-direction: column; gap: 34px; min-height: 100%; }
.mm-links { display: grid; gap: 4px; }
.mm-links li { opacity: 0; transform: translateX(-22px); }
.mobile-menu.open .mm-links li { animation: mmIn .6s var(--ease) forwards; animation-delay: var(--d); }
@keyframes mmIn { to { opacity: 1; transform: none; } }
.mm-links a {
    display: flex; align-items: baseline; gap: 16px;
    font-family: var(--font-display); font-size: clamp(1.7rem, 8vw, 2.5rem);
    padding: 12px 4px; border-bottom: 1px solid var(--line);
    transition: color .3s, padding-left .4s var(--ease);
}
.mm-links a em {
    font-family: var(--font-alt); font-style: normal; font-size: .85rem;
    letter-spacing: .18em; color: var(--gold); opacity: .7;
}
.mm-links a:hover, .mm-links a.active { color: var(--gold-lite); padding-left: 14px; }
.mm-foot { margin-top: auto; display: grid; gap: 12px; }
.mm-social { display: flex; justify-content: center; gap: 12px; margin-top: 12px; }
.mm-social a {
    width: 44px; height: 44px; display: grid; place-items: center;
    border: 1px solid var(--line-2); border-radius: 50%; color: var(--text-2);
    transition: all .35s var(--ease);
}
.mm-social a:hover { color: var(--gold-lite); border-color: var(--gold-line); background: var(--gold-soft); transform: translateY(-3px); }

/* ---------- 10. HERO ---------- */
.hero {
    position: relative; min-height: calc(100svh - var(--header-h) - 40px);
    display: flex; align-items: center; padding: clamp(56px, 8vw, 100px) 0 clamp(60px, 8vw, 110px);
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-orb {
    position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55;
    will-change: transform;
}
.hero-orb.o1 { width: 46vw; height: 46vw; top: -14%; right: -8%; background: radial-gradient(circle, rgba(200,162,90,.42), transparent 68%); animation: float1 16s ease-in-out infinite; }
.hero-orb.o2 { width: 34vw; height: 34vw; bottom: -12%; left: -6%; background: radial-gradient(circle, rgba(140,107,47,.34), transparent 66%); animation: float2 20s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px, 40px) scale(1.1); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(50px, -30px) scale(1.08); } }
.hero-grid-lines {
    position: absolute; inset: 0;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 78%);
    opacity: .55;
}

.hero-inner { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(36px, 5vw, 70px); align-items: center; width: 100%; }
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; } }

.hero-title { margin: 24px 0 22px; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: block; transform: translateY(110%); animation: lineUp 1.1s var(--ease) forwards; }
.hero-title .line:nth-child(1) > span { animation-delay: .15s; }
.hero-title .line:nth-child(2) > span { animation-delay: .28s; }
.hero-title .line:nth-child(3) > span { animation-delay: .41s; }
@keyframes lineUp { to { transform: none; } }

.hero-desc { margin-bottom: 34px; opacity: 0; animation: fadeUp .9s var(--ease) .62s forwards; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; opacity: 0; animation: fadeUp .9s var(--ease) .74s forwards; }
.hero-eyebrow { opacity: 0; animation: fadeUp .8s var(--ease) .1s forwards; }

.hero-meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px; margin-top: 40px;
    padding-top: 28px; border-top: 1px solid var(--line);
    opacity: 0; animation: fadeUp .9s var(--ease) .9s forwards;
}
.hero-meta-item { display: flex; align-items: center; gap: 11px; }
.hero-meta-item strong { font-family: var(--font-alt); font-size: 1.7rem; letter-spacing: .04em; color: var(--gold-lite); line-height: 1; }
.hero-meta-item span { font-size: .78rem; color: var(--muted); line-height: 1.3; max-width: 110px; }
.hero-stars { display: flex; gap: 3px; color: var(--gold); }

/* Hero görsel kolonu */
.hero-visual { position: relative; opacity: 0; animation: fadeUp 1.1s var(--ease) .5s forwards; }
.hero-card {
    position: relative; aspect-ratio: 4/5; border-radius: var(--r-xl); overflow: hidden;
    border: 1px solid var(--line-2); box-shadow: var(--shadow-lg);
    background: linear-gradient(155deg, #1c1a18, #0d0d10 55%, #16130e);
}
.hero-card::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 70% 22%, rgba(200,162,90,.3), transparent 52%),
        repeating-linear-gradient(45deg, rgba(255,255,255,.022) 0 2px, transparent 2px 9px);
}
.hero-card-mark {
    position: absolute; inset: 0; display: grid; place-items: center; color: rgba(200,162,90,.2);
}
.hero-card-mark svg { width: 62%; height: auto; animation: spinSlow 40s linear infinite; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.hero-card-tag {
    position: absolute; left: 22px; bottom: 22px; right: 22px;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 16px 20px; border-radius: var(--r);
    background: rgba(10,10,12,.72); backdrop-filter: blur(14px);
    border: 1px solid var(--line-2);
}
.hero-card-tag b { font-family: var(--font-display); font-size: 1.05rem; display: block; }
.hero-card-tag small { color: var(--muted); font-size: .78rem; }

/* Hero slider */
.hero-slider {
    position: relative; aspect-ratio: 1 / 1; border-radius: var(--r-xl); overflow: hidden;
    border: 1px solid var(--line-2); box-shadow: var(--shadow-lg);
    background: linear-gradient(155deg, #1c1a18, #0d0d10 55%, #16130e);
    touch-action: pan-y;
}
.hs-slide {
    position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: scale(1.055);
    transition: opacity .9s var(--ease), transform 1.3s var(--ease), visibility .9s;
}
.hs-slide.active { opacity: 1; visibility: visible; transform: none; }
.hs-video, .hs-img { width: 100%; height: 100%; object-fit: cover; background: #0d0d10; }

.hs-slide[data-type="art"]::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 70% 22%, rgba(200,162,90,.3), transparent 52%),
        repeating-linear-gradient(45deg, rgba(255,255,255,.022) 0 2px, transparent 2px 9px);
}
.hs-art { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(200,162,90,.22); }
.hs-art svg { width: 62%; height: auto; animation: spinSlow 44s linear infinite; }

/* Alt bilgi paneli */
.hs-caption {
    position: absolute; left: 18px; right: 18px; bottom: 68px;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 15px 18px; border-radius: var(--r);
    background: rgba(8,8,10,.74); backdrop-filter: blur(14px);
    border: 1px solid var(--line-2);
}
.hs-tag {
    display: block; font-size: .64rem; font-weight: 600; letter-spacing: .18em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.hs-caption b { font-family: var(--font-display); font-size: 1.05rem; display: block; line-height: 1.25; }
.hs-caption small { color: var(--muted); font-size: .78rem; }

/* Üst ilerleme çizgisi */
.hs-progress {
    position: absolute; top: 0; left: 0; height: 3px; width: 0; z-index: 4;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-lite));
    box-shadow: 0 0 12px rgba(200,162,90,.6); border-radius: 0 3px 3px 0;
}

/* Kontroller */
.hs-controls {
    position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 4;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.hs-arrow {
    width: 38px; height: 38px; flex: none; border-radius: 50%;
    background: rgba(8,8,10,.7); backdrop-filter: blur(10px);
    border: 1px solid var(--line-2); color: var(--text-2);
    display: grid; place-items: center; transition: all .35s var(--ease);
}
.hs-arrow:hover { color: var(--gold-lite); border-color: var(--gold); background: rgba(200,162,90,.16); }
#hsPrev svg { transform: rotate(180deg); }
.hs-dots { display: flex; align-items: center; gap: 8px; }
.hs-dot {
    width: 9px; height: 9px; border-radius: 50%; padding: 0;
    background: rgba(255,255,255,.26); transition: all .4s var(--ease);
}
.hs-dot:hover { background: rgba(235,217,168,.6); }
.hs-dot.active { width: 26px; border-radius: 100px; background: linear-gradient(90deg, var(--gold-lite), var(--gold)); }

.hero-badge {
    position: absolute; padding: 13px 18px; border-radius: 100px;
    background: rgba(15,15,18,.86); backdrop-filter: blur(14px);
    border: 1px solid var(--gold-line); box-shadow: var(--shadow);
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .8rem; font-weight: 600; color: var(--gold-lite); white-space: nowrap;
}
.hero-badge.b1 { top: 8%; left: -28px; animation: bob 5s ease-in-out infinite; }
.hero-badge.b2 { bottom: 26%; right: -22px; animation: bob 6.5s ease-in-out .8s infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@media (max-width: 560px) { .hero-badge.b1 { left: 8px; } .hero-badge.b2 { right: 8px; } }

/* Aşağı kaydır işareti */
.scroll-hint {
    position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
    display: grid; justify-items: center; gap: 8px; color: var(--muted); font-size: .68rem;
    letter-spacing: .24em; text-transform: uppercase;
}
.scroll-hint i { display: block; width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-hint i::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--gold-lite); animation: hintRun 2s var(--ease-soft) infinite; }
@keyframes hintRun { 0% { transform: translateY(-100%); } 100% { transform: translateY(260%); } }
@media (max-width: 980px) { .scroll-hint { display: none; } }

/* ---------- 11. MARQUEE ---------- */
.marquee {
    border-block: 1px solid var(--line); background: #08080a;
    padding: 18px 0; overflow: hidden; display: flex; gap: 0;
}
.marquee-track { display: flex; align-items: center; gap: 44px; flex: none; animation: scrollX 34s linear infinite; padding-right: 44px; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollX { to { transform: translateX(-100%); } }
.marquee-item {
    display: inline-flex; align-items: center; gap: 14px;
    font-family: var(--font-display); font-size: clamp(1.05rem, 2vw, 1.5rem);
    color: var(--text-2); white-space: nowrap; font-style: italic;
}
.marquee-item i { color: var(--gold); font-style: normal; display: grid; place-items: center; }

/* ---------- 12. HİZMET KARTLARI ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.service-card {
    position: relative; padding: 32px 28px 28px; border-radius: var(--r-lg);
    background: linear-gradient(160deg, var(--ink-2), var(--ink-1) 70%);
    border: 1px solid var(--line); overflow: hidden; isolation: isolate;
    transition: transform .6s var(--ease), border-color .5s, box-shadow .6s;
    transform-style: preserve-3d;
}
.service-card::before {
    content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0;
    background: radial-gradient(520px circle at var(--mx,50%) var(--my,0%), rgba(200,162,90,.16), transparent 45%);
    transition: opacity .5s;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--gold-line); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }
.service-num {
    position: absolute; top: 18px; right: 24px;
    font-family: var(--font-alt); font-size: 3.4rem; line-height: 1;
    color: rgba(255,255,255,.045); transition: color .5s;
}
.service-card:hover .service-num { color: rgba(200,162,90,.16); }
.service-ico {
    width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px;
    background: linear-gradient(150deg, rgba(200,162,90,.2), rgba(200,162,90,.05));
    border: 1px solid var(--gold-line); color: var(--gold-lite); margin-bottom: 22px;
    transition: transform .6s var(--ease), background .5s;
}
.service-card:hover .service-ico { transform: rotate(-7deg) scale(1.08); background: linear-gradient(150deg, rgba(200,162,90,.34), rgba(200,162,90,.1)); }
.service-tag {
    display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .16em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--text-2); font-size: .93rem; }
.service-list { display: grid; gap: 8px; margin-top: 18px; }
.service-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .87rem; color: var(--text-2); }
.service-list svg { color: var(--gold); flex: none; margin-top: 4px; }
.service-foot {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line);
}
.service-price { font-family: var(--font-alt); font-size: 1.6rem; color: var(--gold-lite); letter-spacing: .03em; }
.service-price small { font-family: var(--font-body); font-size: .68rem; color: var(--muted); letter-spacing: 0; display: block; }
.service-time { display: inline-flex; align-items: center; gap: 7px; font-size: .8rem; color: var(--muted); }

/* ---------- 13. ÖZELLİK KARTLARI ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.feature-card {
    position: relative; padding: 30px 26px; border-radius: var(--r-lg);
    background: rgba(255,255,255,.022); border: 1px solid var(--line);
    transition: transform .5s var(--ease), background .4s, border-color .4s;
    overflow: hidden;
}
.feature-card::after {
    content: ''; position: absolute; left: 0; top: 0; width: 2px; height: 0;
    background: linear-gradient(var(--gold-lite), var(--gold-deep)); transition: height .55s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.045); border-color: var(--gold-line); }
.feature-card:hover::after { height: 100%; }
.feature-ico { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: var(--gold-soft); color: var(--gold-lite); margin-bottom: 18px; transition: transform .5s var(--ease); }
.feature-card:hover .feature-ico { transform: scale(1.1) rotate(6deg); }
.feature-card h3 { font-size: 1.12rem; margin-bottom: 9px; }
.feature-card p { font-size: .9rem; color: var(--text-2); }

/* ---------- 14. İSTATİSTİK ---------- */
.stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1px; background: var(--line); border: 1px solid var(--line);
    border-radius: var(--r-lg); overflow: hidden;
}
.stat { padding: 36px 24px; text-align: center; background: var(--ink-1); transition: background .45s; }
.stat:hover { background: var(--ink-2); }
.stat-val { font-family: var(--font-alt); font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; color: var(--gold-lite); letter-spacing: .02em; }
.stat-label { font-size: .8rem; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-top: 10px; }

/* ---------- 15. ŞUBELER ---------- */
.branch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px; }
.branch-card {
    position: relative; display: flex; flex-direction: column; gap: 12px;
    padding: 26px 24px; border-radius: var(--r); border: 1px solid var(--line);
    background: linear-gradient(160deg, var(--ink-2), var(--ink-1));
    transition: transform .5s var(--ease), border-color .4s, box-shadow .5s;
}
.branch-card:hover { transform: translateY(-5px); border-color: var(--gold-line); box-shadow: var(--shadow); }
.branch-city { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.branch-card h3 { font-size: 1.22rem; }
.branch-card p { font-size: .88rem; color: var(--text-2); display: flex; align-items: flex-start; gap: 9px; }
.branch-card p svg { color: var(--gold); flex: none; margin-top: 3px; }
.branch-flag {
    position: absolute; top: 18px; right: 18px; font-size: .64rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px;
    background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold-lite);
}
.branch-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 8px; }

/* ---------- 16. YORUMLAR ---------- */
.tst-viewport { overflow: hidden; margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad); }
.tst-track { display: flex; gap: 18px; transition: transform .8s var(--ease); will-change: transform; }
.tst-card {
    flex: 0 0 calc(33.333% - 12px); padding: 32px 28px; border-radius: var(--r-lg);
    background: linear-gradient(160deg, var(--ink-2), var(--ink-1)); border: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 16px;
}
@media (max-width: 980px) { .tst-card { flex-basis: calc(50% - 9px); } }
@media (max-width: 640px)  { .tst-card { flex-basis: 100%; } }
.tst-quote { color: var(--gold); opacity: .55; }
.tst-card p { color: var(--text-2); font-size: .95rem; flex: 1; font-family: var(--font-display); font-style: italic; font-size: 1.05rem; line-height: 1.6; color: var(--text); }
.tst-who { display: flex; align-items: center; gap: 13px; padding-top: 16px; border-top: 1px solid var(--line); }
.tst-av {
    width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
    background: linear-gradient(140deg, var(--gold), var(--gold-deep)); color: #17120a;
    font-weight: 700; font-size: .95rem; flex: none;
}
.tst-who b { display: block; font-size: .92rem; }
.tst-who span { font-size: .78rem; color: var(--muted); }
.tst-nav { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.tst-nav button {
    width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2);
    display: grid; place-items: center; color: var(--text-2); transition: all .35s var(--ease);
}
.tst-nav button:hover { border-color: var(--gold); color: var(--gold-lite); background: var(--gold-soft); transform: translateY(-2px); }
.tst-nav button:first-child svg { transform: rotate(180deg); }

/* ---------- 17. SSS ---------- */
.faq { display: grid; gap: 12px; max-width: 880px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r); background: rgba(255,255,255,.022); overflow: hidden; transition: border-color .4s, background .4s; }
.faq-item.open { border-color: var(--gold-line); background: rgba(200,162,90,.045); }
.faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
    padding: 22px 24px; text-align: left; font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.15rem); font-weight: 600; transition: color .3s;
}
.faq-q:hover { color: var(--gold-lite); }
.faq-ico { flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--gold-line); display: grid; place-items: center; color: var(--gold); transition: transform .5s var(--ease), background .4s; }
.faq-item.open .faq-ico { transform: rotate(135deg); background: var(--gold-soft); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 24px 24px; color: var(--text-2); font-size: .95rem; max-width: 72ch; }

/* ---------- 18. FRANCHISE ---------- */
.fr-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; counter-reset: st; }
.fr-step {
    position: relative; padding: 30px 26px; border-radius: var(--r-lg);
    background: linear-gradient(160deg, var(--ink-2), var(--ink-1)); border: 1px solid var(--line);
    transition: transform .5s var(--ease), border-color .4s;
}
.fr-step:hover { transform: translateY(-6px); border-color: var(--gold-line); }
.fr-step-no {
    font-family: var(--font-alt); font-size: 2.6rem; line-height: 1; color: transparent;
    -webkit-text-stroke: 1px var(--gold-line); margin-bottom: 14px; letter-spacing: .05em;
    transition: -webkit-text-stroke-color .4s, color .4s;
}
.fr-step:hover .fr-step-no { color: var(--gold-soft); -webkit-text-stroke-color: var(--gold); }
.fr-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.fr-step p { font-size: .9rem; color: var(--text-2); }

.fr-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.fr-fact { background: var(--ink-1); padding: 28px 22px; text-align: center; }
.fr-fact b { display: block; font-family: var(--font-display); font-size: 1.35rem; color: var(--gold-lite); margin-bottom: 6px; }
.fr-fact span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* Şerit CTA */
.band {
    position: relative; border-radius: var(--r-xl); overflow: hidden;
    padding: clamp(40px, 6vw, 72px) clamp(26px, 5vw, 60px);
    background: linear-gradient(140deg, #17130c, #0c0c0f 55%, #1a1509);
    border: 1px solid var(--gold-line);
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
}
.band::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(700px circle at 88% 10%, rgba(200,162,90,.24), transparent 55%);
}
.band > * { position: relative; }
.band h2 { max-width: 20ch; margin-bottom: 12px; }
.band p { color: var(--text-2); max-width: 52ch; }
.band-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- 19. SPLIT (metin + görsel) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split.rev .split-visual { order: -1; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split.rev .split-visual { order: 0; } }
.split-visual {
    position: relative; aspect-ratio: 5/4; border-radius: var(--r-xl); overflow: hidden;
    border: 1px solid var(--line-2); background: linear-gradient(150deg, #1b1814, #0c0c0f 60%, #17130c);
    box-shadow: var(--shadow);
}
.split-visual::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 25%, rgba(200,162,90,.24), transparent 55%),
                repeating-linear-gradient(-45deg, rgba(255,255,255,.02) 0 2px, transparent 2px 10px);
}
.split-visual .mark { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(200,162,90,.18); }
.split-visual .mark svg { width: 46%; }
.check-list { display: grid; gap: 13px; margin-top: 26px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-2); }
.check-list svg { flex: none; margin-top: 4px; color: var(--gold); }
.check-list b { color: var(--text); font-weight: 600; }

/* ---------- 20. FORMLAR ---------- */
.form-wrap {
    padding: clamp(28px, 4vw, 46px); border-radius: var(--r-xl);
    background: linear-gradient(160deg, var(--ink-2), var(--ink-1)); border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { position: relative; display: grid; gap: 8px; }
.field label { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.field label span { color: var(--gold); }
.field input, .field select, .field textarea {
    width: 100%; padding: 14px 16px; border-radius: var(--r-sm);
    background: rgba(255,255,255,.035); border: 1px solid var(--line-2);
    color: var(--text); font-size: .95rem; outline: none;
    transition: border-color .35s, background .35s, box-shadow .35s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--gold); background: rgba(200,162,90,.06);
    box-shadow: 0 0 0 4px rgba(200,162,90,.1);
}
.field input::placeholder, .field textarea::placeholder { color: #5f5a53; }
.field select { appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c8a25a' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px;
}
.field select option { background: var(--ink-2); color: var(--text); }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-consent { display: flex; align-items: flex-start; gap: 11px; font-size: .84rem; color: var(--muted); }
.form-consent input { width: 18px; height: 18px; accent-color: var(--gold); margin-top: 2px; flex: none; }

.alert { display: flex; align-items: flex-start; gap: 12px; padding: 16px 20px; border-radius: var(--r-sm); margin-bottom: 24px; font-size: .92rem; }
.alert svg { flex: none; margin-top: 2px; }
.alert-ok  { background: rgba(66,180,120,.1); border: 1px solid rgba(66,180,120,.35); color: #a5e6c4; }
.alert-err { background: rgba(220,90,90,.1); border: 1px solid rgba(220,90,90,.35); color: #f0b4b4; }

/* İletişim kartları */
.contact-cards { display: grid; gap: 14px; }
.contact-card {
    display: flex; align-items: center; gap: 16px; padding: 20px 22px;
    border-radius: var(--r); border: 1px solid var(--line); background: rgba(255,255,255,.022);
    transition: transform .45s var(--ease), border-color .4s, background .4s;
}
.contact-card:hover { transform: translateX(6px); border-color: var(--gold-line); background: rgba(200,162,90,.05); }
.contact-card .ci {
    width: 48px; height: 48px; flex: none; border-radius: 14px; display: grid; place-items: center;
    background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold-lite);
}
.contact-card small { display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.contact-card b { font-size: 1rem; font-weight: 600; }

/* ---------- 20b. FİLTRE ÇİPLERİ ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
    padding: 11px 22px; border-radius: 100px; font-size: .88rem; font-weight: 500;
    border: 1px solid var(--line-2); color: var(--text-2); background: rgba(255,255,255,.022);
    transition: all .35s var(--ease);
}
.chip:hover { color: var(--gold-lite); border-color: var(--gold-line); transform: translateY(-2px); }
.chip.active {
    background: linear-gradient(135deg, var(--gold-lite), var(--gold) 55%, var(--gold-deep));
    border-color: transparent; color: #17120a; font-weight: 600;
    box-shadow: 0 10px 26px -12px rgba(200,162,90,.65);
}

/* ---------- 20c. ŞEHİR BAŞLIĞI & SAAT KUTUSU ---------- */
.city-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.city-head h2 { font-size: 1.5rem; white-space: nowrap; }
.city-count {
    font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
    padding: 5px 12px; border: 1px solid var(--gold-line); border-radius: 100px; background: var(--gold-soft);
    white-space: nowrap;
}
.city-rule { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line-2), transparent); }

.hours-box {
    display: grid; gap: 12px; padding: 24px 26px; border-radius: var(--r);
    border: 1px solid var(--line); background: rgba(255,255,255,.022);
}
.hours-box div { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: .92rem; }
.hours-box div + div { padding-top: 12px; border-top: 1px solid var(--line); }
.hours-box span { color: var(--muted); }
.hours-box b { color: var(--gold-lite); font-weight: 600; }

/* ---------- 21. SAYFA BAŞLIĞI ---------- */
.page-hero { position: relative; padding: clamp(60px, 8vw, 110px) 0 clamp(44px, 6vw, 76px); overflow: hidden; }
.page-hero::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(760px 420px at 72% 0%, rgba(200,162,90,.16), transparent 62%);
}
.page-hero .display { font-size: clamp(2.3rem, 6vw, 4.2rem); margin: 20px 0 18px; }
.crumbs { display: flex; align-items: center; gap: 9px; font-size: .8rem; color: var(--muted); margin-top: 26px; }
.crumbs a:hover { color: var(--gold-lite); }
.crumbs span { opacity: .5; }

/* ---------- 22. FOOTER ---------- */
.footer { background: #070709; border-top: 1px solid var(--line); padding-top: clamp(56px, 7vw, 90px); overflow: hidden; }
.footer-glow { position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 900px; height: 320px; background: radial-gradient(ellipse, rgba(200,162,90,.14), transparent 68%); pointer-events: none; }

.footer-cta {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px;
    padding: clamp(32px, 5vw, 54px); border-radius: var(--r-xl);
    background: linear-gradient(140deg, #16120b, #0b0b0e 60%, #171208);
    border: 1px solid var(--gold-line); position: relative; overflow: hidden;
    margin-bottom: clamp(48px, 6vw, 76px);
}
.footer-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px circle at 85% 15%, rgba(200,162,90,.2), transparent 55%); }
.footer-cta > * { position: relative; }
.footer-cta-title { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin: 16px 0 12px; }
.footer-cta p { color: var(--text-2); max-width: 46ch; }
.footer-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px 28px; padding-bottom: 46px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-family: var(--font-body); font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col ul a { font-size: .91rem; color: var(--text-2); transition: color .3s, padding-left .35s var(--ease); display: inline-block; }
.footer-col ul a:hover { color: var(--gold-lite); padding-left: 6px; }
.logo-footer { margin-bottom: 18px; }
.footer-about { font-size: .9rem; color: var(--muted); max-width: 38ch; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
    width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
    border: 1px solid var(--line-2); color: var(--text-2); transition: all .35s var(--ease);
}
.footer-social a:hover { color: var(--gold-lite); border-color: var(--gold); background: var(--gold-soft); transform: translateY(-4px) rotate(6deg); }
.footer-contact li { display: flex; align-items: center; gap: 11px; font-size: .9rem; color: var(--text-2); }
.footer-contact svg { color: var(--gold); flex: none; }
.footer-hours { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); display: grid; gap: 8px; font-size: .83rem; }
.footer-hours div { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); }
.footer-hours b { color: var(--text-2); font-weight: 500; }

.footer-bottom {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
    padding: 24px 0 30px; border-top: 1px solid var(--line); font-size: .84rem; color: var(--muted);
}
.footer-credit span { color: var(--gold); }

/* ---------- 23. SABİT AKSİYONLAR ---------- */
.float-wa {
    position: fixed; right: 20px; bottom: 20px; z-index: 880;
    display: inline-flex; align-items: center; gap: 0; overflow: hidden;
    height: 56px; padding: 0 16px; border-radius: 100px;
    background: linear-gradient(135deg, #25d366, #128c7e); color: #fff;
    box-shadow: 0 14px 34px -10px rgba(37,211,102,.6);
    transition: gap .45s var(--ease), transform .45s var(--ease), box-shadow .45s;
    animation: waPulse 3.2s ease-in-out infinite;
}
.float-wa:hover { gap: 10px; transform: translateY(-4px); box-shadow: 0 20px 44px -12px rgba(37,211,102,.75); animation-play-state: paused; }
.float-wa-label { max-width: 0; overflow: hidden; white-space: nowrap; font-weight: 600; font-size: .92rem; transition: max-width .45s var(--ease); }
.float-wa:hover .float-wa-label { max-width: 130px; }
@keyframes waPulse { 0%,100% { box-shadow: 0 14px 34px -10px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.45); } 55% { box-shadow: 0 14px 34px -10px rgba(37,211,102,.6), 0 0 0 16px rgba(37,211,102,0); } }

.to-top {
    position: fixed; right: 22px; bottom: 88px; z-index: 880;
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(20,20,25,.86); backdrop-filter: blur(10px);
    border: 1px solid var(--gold-line); color: var(--gold-lite);
    display: grid; place-items: center;
    opacity: 0; visibility: hidden; transform: translateY(14px);
    transition: all .45s var(--ease);
}
.to-top svg { transform: rotate(180deg); }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold); color: #17120a; transform: translateY(-4px); }

/* ---------- 24. REVEAL ANİMASYONLARI ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .04s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .20s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .28s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .36s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .44s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .52s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .60s; }

/* ---------- 25. ERİŞİLEBİLİRLİK ---------- */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important; animation-iteration-count: 1 !important;
        transition-duration: .01ms !important; scroll-behavior: auto !important;
    }
    .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
    .hero-title .line > span { transform: none !important; }
    .hero-desc, .hero-actions, .hero-meta, .hero-visual, .hero-eyebrow, .pre-word { opacity: 1 !important; }
    .cursor { display: none !important; }
}
