/* ==========================================================================
   Beyoğlu Halı & Koltuk Yıkama — Malatya
   Lüks gold + koyu lacivert tema · Mobil öncelikli · Bağımlılıksız
   ========================================================================== */

/* ---------- 1. Tasarım Değişkenleri -------------------------------------- */
:root {
    /* Zemin */
    --bg:        #080b14;
    --bg-1:      #0a0e1a;
    --bg-2:      #0e1424;
    --bg-3:      #131b30;
    --surface:   rgba(255, 255, 255, .035);
    --surface-2: rgba(255, 255, 255, .06);

    /* Altın */
    --gold-1: #8a6d24;
    --gold-2: #c9a14a;
    --gold-3: #f2d27e;
    --gold-4: #fbf2c4;
    --gold-grad: linear-gradient(135deg, #a9772b 0%, #e7c168 30%, #fbf2c4 50%, #d8aa4d 70%, #a9772b 100%);
    --gold-soft: linear-gradient(135deg, rgba(201,161,74,.18), rgba(242,210,126,.06));

    /* Metin */
    --text:   #f4efe3;
    --text-2: #c4c3b8;
    --text-3: #8d8f9c;

    /* Çizgi / kenar */
    --border:      rgba(212, 175, 90, .16);
    --border-soft: rgba(255, 255, 255, .08);

    /* Yardımcı renkler */
    --wa:   #25d366;
    --wa-d: #1ebe5a;

    /* Gölge */
    --shadow:      0 14px 40px -12px rgba(0, 0, 0, .55);
    --shadow-lg:   0 40px 80px -28px rgba(0, 0, 0, .7);
    --shadow-gold: 0 18px 50px -16px rgba(201, 161, 74, .45);

    /* Yarıçap */
    --r-xs: 8px;
    --r-sm: 12px;
    --r:    18px;
    --r-lg: 26px;
    --r-xl: 36px;
    --r-full: 999px;

    /* Tipografi */
    --font-display: 'Playfair Display', Georgia, serif;
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    /* Düzen */
    --container: 1200px;
    --gutter: clamp(18px, 4vw, 40px);
    --header-h: 76px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- 2. Reset / Temel --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 30px); }

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

/* Arka plan dokusu — derin gradyan + altın ışıma */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(1100px 700px at 85% -8%, rgba(201, 161, 74, .14), transparent 60%),
        radial-gradient(900px 600px at 0% 100%, rgba(120, 90, 200, .07), transparent 55%),
        linear-gradient(180deg, var(--bg-1), var(--bg) 40%, var(--bg-1));
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--gold-2); color: #1a1206; }

/* Odak erişilebilirliği */
:focus-visible { outline: 2px solid var(--gold-3); outline-offset: 3px; border-radius: 4px; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 999;
    background: var(--gold-2); color: #16100a; padding: 10px 18px; border-radius: 0 0 10px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* Kaydırma çubuğu */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold-1), var(--gold-2)); border-radius: 10px; border: 2px solid var(--bg-1); }

/* ---------- 3. Tipografi ------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }
p  { color: var(--text-2); }

.text-gold {
    background: var(--gold-grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- 4. Düzen Yardımcıları ---------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(60px, 9vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(46px, 6vw, 80px) 0; }

.section-head { max-width: 760px; margin: 0 auto clamp(34px, 5vw, 60px); text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font); font-weight: 700; font-size: .76rem;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold-3); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-grad); border-radius: 2px; }
.section-head--center .eyebrow::after,
.section-head:not(.section-head--left) .eyebrow::after { content: ""; width: 26px; height: 2px; background: var(--gold-grad); border-radius: 2px; }
.eyebrow--light { color: var(--gold-3); }

.lead { font-size: 1.12rem; color: var(--text-2); }
.muted { color: var(--text-3); }

/* ---------- 5. Butonlar -------------------------------------------------- */
.btn {
    --bg-btn: var(--surface-2);
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 26px; border-radius: var(--r-full); font-weight: 700; font-size: .98rem;
    letter-spacing: .01em; line-height: 1; white-space: nowrap;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s, color .35s, border-color .35s;
    position: relative; overflow: hidden; border: 1px solid transparent;
}
.btn svg { width: 19px; height: 19px; }
.btn:active { transform: scale(.97); }

.btn--gold {
    background: var(--gold-grad); color: #1c1306; box-shadow: var(--shadow-gold);
    background-size: 200% 200%;
}
.btn--gold:hover { transform: translateY(-3px); background-position: 100% 0; box-shadow: 0 24px 60px -14px rgba(201,161,74,.6); }

.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--border); backdrop-filter: blur(8px); }
.btn--ghost:hover { border-color: var(--gold-2); color: var(--gold-3); transform: translateY(-3px); }

.btn--whatsapp { background: var(--wa); color: #062b14; box-shadow: 0 16px 44px -14px rgba(37,211,102,.5); }
.btn--whatsapp:hover { background: var(--wa-d); transform: translateY(-3px); }

.btn--outline-gold { background: transparent; color: var(--gold-3); border-color: var(--gold-2); }
.btn--outline-gold:hover { background: var(--gold-soft); transform: translateY(-3px); }

.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--sm { padding: 11px 18px; font-size: .9rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ---------- 6. Üst Bar --------------------------------------------------- */
.topbar { background: var(--bg); border-bottom: 1px solid var(--border-soft); font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 12px; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; color: var(--text-3); transition: color .3s; }
.topbar__item:hover { color: var(--gold-3); }
.topbar .ti { width: 15px; height: 15px; color: var(--gold-2); }
.topbar__call { display: inline-flex; align-items: center; gap: 7px; color: var(--gold-3) !important; font-weight: 700; }
.topbar__call .ti { color: var(--gold-3); }

/* ---------- 7. Header / Nav ---------------------------------------------- */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(8, 11, 20, .72);
    backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid var(--border-soft);
    transition: background .4s, box-shadow .4s, border-color .4s;
}
.header.is-scrolled { background: rgba(8, 11, 20, .92); box-shadow: 0 10px 40px -16px rgba(0,0,0,.6); border-color: var(--border); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__logo { width: auto; height: 56px; filter: drop-shadow(0 4px 14px rgba(201,161,74,.25)); transition: transform .4s var(--ease); }
.brand:hover .brand__logo { transform: scale(1.04) rotate(-1deg); }
.brand__text { display: none; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-family: var(--font-display); font-size: 1.32rem; font-weight: 800; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.brand__text small { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav__close { display: none; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
    position: relative; padding: 10px 13px; font-weight: 600; font-size: .92rem; color: var(--text-2);
    border-radius: var(--r-sm); transition: color .3s; white-space: nowrap;
}
.nav__link::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px;
    background: var(--gold-grad); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--gold-3); }
.nav__cta { display: none; }

.header__actions { display: flex; align-items: center; gap: 12px; }
.header__call { display: none; }
.header__call span { font-variant-numeric: tabular-nums; }

.nav__toggle { display: inline-flex; padding: 9px; border-radius: var(--r-sm); background: var(--surface-2); border: 1px solid var(--border); color: var(--gold-3); }
.nav__toggle svg { width: 24px; height: 24px; }
.nav__backdrop { position: fixed; inset: 0; background: rgba(4,6,12,.6); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; z-index: 110; transition: opacity .4s; }
.nav__backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------- 8. Hero ------------------------------------------------------ */
.hero { position: relative; padding: clamp(48px, 8vw, 96px) 0 clamp(60px, 9vw, 110px); overflow: hidden; }
.hero__glow {
    position: absolute; width: 620px; height: 620px; border-radius: 50%; top: -180px; right: -120px; z-index: 0;
    background: radial-gradient(circle, rgba(201,161,74,.22), transparent 65%); filter: blur(20px); pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 70px); align-items: center; }

.hero__badge {
    display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px 8px 10px; border-radius: var(--r-full);
    background: var(--surface-2); border: 1px solid var(--border); font-size: .82rem; font-weight: 600; color: var(--text-2); margin-bottom: 24px;
}
.hero__badge b { color: var(--gold-3); }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.2s infinite; }
.hero__badge .star-row { display: inline-flex; color: var(--gold-3); }
.hero__badge .star-row svg { width: 14px; height: 14px; fill: currentColor; stroke: none; }

.hero h1 { margin-bottom: 22px; }
.hero h1 .text-gold { display: inline-block; }
.hero__sub { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--text-2); max-width: 560px; margin-bottom: 30px; }
.hero__sub strong { color: var(--text); }

.hero__cta { margin-bottom: 34px; }

.hero__features { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero__features li { display: inline-flex; align-items: center; gap: 9px; font-size: .92rem; font-weight: 600; color: var(--text-2); }
.hero__features svg { width: 20px; height: 20px; color: var(--gold-2); flex-shrink: 0; }

/* Hero görsel kartı */
.hero__visual { position: relative; }
.hero__card {
    position: relative; border-radius: var(--r-xl); overflow: hidden;
    border: 1px solid var(--border); box-shadow: var(--shadow-lg);
    background: var(--surface);
}
.hero__card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); pointer-events: none; }
.hero__card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.hero__float {
    position: absolute; display: flex; align-items: center; gap: 12px; padding: 12px 16px;
    background: rgba(14, 20, 36, .82); backdrop-filter: blur(14px);
    border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--shadow);
    animation: floaty 5s ease-in-out infinite;
}
.hero__float .ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--gold-soft); color: var(--gold-3); flex-shrink: 0; }
.hero__float .ic svg { width: 22px; height: 22px; }
.hero__float b { display: block; font-size: 1.04rem; color: var(--text); line-height: 1.1; font-family: var(--font-display); }
.hero__float span { font-size: .76rem; color: var(--text-3); }
.hero__float--1 { top: 18px; left: -14px; }
.hero__float--2 { bottom: 24px; right: -16px; animation-delay: 1.4s; }

/* Hizmet çipleri (hero altı) */
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-chips a {
    display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: var(--r-full);
    background: var(--surface); border: 1px solid var(--border-soft); font-size: .86rem; font-weight: 600; color: var(--text-2);
    transition: all .3s var(--ease);
}
.hero-chips a svg { width: 16px; height: 16px; color: var(--gold-2); }
.hero-chips a:hover { border-color: var(--gold-2); color: var(--gold-3); transform: translateY(-2px); }

/* ---------- 9. Marquee / Güven Şeridi ------------------------------------ */
.marquee { border-block: 1px solid var(--border-soft); background: rgba(255,255,255,.015); overflow: hidden; padding: 18px 0; }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 12px; color: var(--text-3); font-family: var(--font-display); font-size: 1.15rem; white-space: nowrap; }
.marquee__item svg { width: 22px; height: 22px; color: var(--gold-2); }

/* ---------- 10. Hizmet Kartları ------------------------------------------ */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.svc-card {
    position: relative; padding: 30px; border-radius: var(--r-lg); background: var(--surface);
    border: 1px solid var(--border-soft); overflow: hidden;
    transition: transform .45s var(--ease), border-color .45s, box-shadow .45s, background .45s;
}
.svc-card::before {
    content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
    background: linear-gradient(135deg, var(--gold-2), transparent 40%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .45s;
}
.svc-card:hover { transform: translateY(-8px); background: var(--surface-2); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::before { opacity: 1; }
.svc-card__icon {
    display: grid; place-items: center; width: 62px; height: 62px; border-radius: 18px; margin-bottom: 20px;
    background: var(--gold-soft); border: 1px solid var(--border); color: var(--gold-3);
    transition: transform .45s var(--ease);
}
.svc-card:hover .svc-card__icon { transform: rotate(-6deg) scale(1.06); }
.svc-card__icon svg { width: 30px; height: 30px; }
.svc-card h3 { margin-bottom: 10px; }
.svc-card h3 a { transition: color .3s; }
.svc-card:hover h3 a { color: var(--gold-3); }
.svc-card p { font-size: .96rem; margin-bottom: 18px; }
.svc-card__link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .9rem; color: var(--gold-3); }
.svc-card__link svg { width: 17px; height: 17px; transition: transform .3s; }
.svc-card:hover .svc-card__link svg { transform: translateX(4px); }
.svc-card__num { position: absolute; top: 22px; right: 26px; font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: rgba(255,255,255,.05); line-height: 1; }

/* ---------- 11. İstatistikler -------------------------------------------- */
.stats { position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat {
    text-align: center; padding: 30px 18px; border-radius: var(--r-lg);
    background: var(--surface); border: 1px solid var(--border-soft);
    transition: transform .4s var(--ease), border-color .4s;
}
.stat:hover { transform: translateY(-5px); border-color: var(--gold-2); }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.1rem, 5vw, 3.1rem); line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { margin-top: 10px; font-size: .9rem; font-weight: 600; color: var(--text-2); letter-spacing: .02em; }

/* ---------- 12. Süreç (Timeline) ----------------------------------------- */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 18px; position: relative; }
.step {
    position: relative; padding: 26px 26px 26px 84px; border-radius: var(--r-lg);
    background: var(--surface); border: 1px solid var(--border-soft); transition: border-color .4s, transform .4s var(--ease);
}
.step:hover { border-color: var(--gold-2); transform: translateY(-4px); }
.step__no {
    position: absolute; left: 22px; top: 24px; width: 48px; height: 48px; border-radius: 14px;
    display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
    background: var(--gold-grad); color: #1c1306; box-shadow: var(--shadow-gold);
}
.step h3 { font-size: 1.18rem; margin-bottom: 6px; }
.step p { font-size: .93rem; }

/* ---------- 13. Neden Biz / Özellikler ----------------------------------- */
.why { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.why__media { position: relative; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.why__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.why__media .badge-exp {
    position: absolute; left: 20px; bottom: 20px; padding: 16px 22px; border-radius: var(--r);
    background: rgba(14,20,36,.85); backdrop-filter: blur(12px); border: 1px solid var(--border);
}
.why__media .badge-exp b { font-family: var(--font-display); font-size: 2rem; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.why__media .badge-exp span { display: block; font-size: .82rem; color: var(--text-2); margin-top: 4px; }

.feature-list { display: grid; gap: 16px; }
.feature {
    display: flex; gap: 16px; padding: 18px 20px; border-radius: var(--r); background: var(--surface);
    border: 1px solid var(--border-soft); transition: border-color .35s, transform .35s var(--ease), background .35s;
}
.feature:hover { border-color: var(--gold-2); background: var(--surface-2); transform: translateX(5px); }
.feature__ic { flex-shrink: 0; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--gold-soft); border: 1px solid var(--border); color: var(--gold-3); }
.feature__ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 4px; font-family: var(--font); font-weight: 700; }
.feature p { font-size: .9rem; margin: 0; }

/* Liste tikleri */
.check-list { display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-2); font-size: .98rem; }
.check-list li svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--gold-3); margin-top: 1px; }
.check-list--2 { grid-template-columns: 1fr; }

/* ---------- 14. Galeri --------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.gal {
    position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border-soft);
    aspect-ratio: 4/3; background: var(--bg-2);
}
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gal:hover img { transform: scale(1.08); }
.gal__overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 16px;
    background: linear-gradient(transparent 40%, rgba(8,11,20,.85)); opacity: 0; transition: opacity .4s;
}
.gal:hover .gal__overlay { opacity: 1; }
.gal__overlay b { font-family: var(--font-display); font-size: 1.05rem; }
.gal__overlay span { font-size: .8rem; color: var(--gold-3); }
.gal__tag { position: absolute; top: 12px; left: 12px; padding: 5px 12px; border-radius: var(--r-full); background: var(--gold-grad); color: #1c1306; font-size: .72rem; font-weight: 700; }

/* CSS tabanlı görsel (foto yoksa zarif desen) */
.ph {
    width: 100%; height: 100%; display: grid; place-items: center; color: rgba(242,210,126,.5);
    background:
        radial-gradient(circle at 30% 30%, rgba(201,161,74,.14), transparent 50%),
        repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 12px, transparent 12px 24px),
        var(--bg-3);
}
.ph svg { width: 56px; height: 56px; }

/* ---------- 15. Yorumlar ------------------------------------------------- */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.review {
    padding: 28px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--border-soft);
    position: relative; transition: transform .4s var(--ease), border-color .4s;
}
.review:hover { transform: translateY(-5px); border-color: var(--gold-2); }
.review__quote { font-family: var(--font-display); font-size: 3.5rem; line-height: .5; color: rgba(201,161,74,.22); height: 26px; }
.review p { font-size: .98rem; color: var(--text-2); margin-bottom: 20px; font-style: italic; }
.review__who { display: flex; align-items: center; gap: 14px; }
.review__av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: #1c1306; background: var(--gold-grad); flex-shrink: 0; }
.review__who b { display: block; font-size: .98rem; color: var(--text); }
.review__who span { font-size: .82rem; color: var(--text-3); }

.stars { display: inline-flex; gap: 3px; margin-bottom: 14px; }
.stars span { color: rgba(255,255,255,.15); }
.stars span.on { color: var(--gold-3); }
.stars .star-ico { width: 18px; height: 18px; fill: currentColor; stroke: none; }

/* ---------- 16. SSS / Akordeon ------------------------------------------- */
.faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq-item { border: 1px solid var(--border-soft); border-radius: var(--r); background: var(--surface); overflow: hidden; transition: border-color .4s, background .4s; }
.faq-item.is-open { border-color: var(--gold-2); background: var(--surface-2); }
.faq-q {
    display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%;
    padding: 22px 24px; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--text);
}
.faq-q__ic { flex-shrink: 0; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--gold-soft); border: 1px solid var(--border); color: var(--gold-3); transition: transform .4s var(--ease); }
.faq-q__ic svg { width: 20px; height: 20px; }
.faq-item.is-open .faq-q__ic { transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a__inner { padding: 0 24px 24px; color: var(--text-2); font-size: .98rem; }

/* ---------- 17. CTA Bandı ------------------------------------------------ */
.cta-band { position: relative; padding: clamp(50px, 7vw, 90px) 0; overflow: hidden; background: linear-gradient(120deg, var(--bg-2), var(--bg-3)); border-block: 1px solid var(--border); }
.cta-band::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; top: -250px; left: -100px; background: radial-gradient(circle, rgba(201,161,74,.22), transparent 65%); }
.cta-band::after { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; bottom: -260px; right: -90px; background: radial-gradient(circle, rgba(201,161,74,.16), transparent 65%); }
.cta-band__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; text-align: center; }
.cta-band h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
.cta-band p { margin-top: 14px; color: var(--text-2); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- 18. Footer --------------------------------------------------- */
.footer { background: var(--bg-1); border-top: 1px solid var(--border); padding-top: clamp(50px, 7vw, 80px); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 38px; padding-bottom: 46px; }
.footer__brand img { height: 76px; width: auto; }
.footer__about { font-size: .92rem; color: var(--text-3); margin-top: 16px; max-width: 380px; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border-soft); color: var(--text-2); transition: all .35s var(--ease); }
.footer__social a:hover { color: var(--gold-3); border-color: var(--gold-2); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__title { font-family: var(--font); font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-3); margin-bottom: 20px; }
.footer__links li, .footer__contact li { margin-bottom: 12px; }
.footer__links a { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; color: var(--text-2); transition: color .3s, transform .3s; }
.footer__links a:hover { color: var(--gold-3); transform: translateX(4px); }
.fl-ico { width: 14px; height: 14px; color: var(--gold-2); flex-shrink: 0; }
.footer__contact a, .footer__contact span { display: inline-flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--text-2); transition: color .3s; }
.footer__contact a:hover { color: var(--gold-3); }
.fc-ico { width: 18px; height: 18px; color: var(--gold-2); flex-shrink: 0; }
.footer__bottom { border-top: 1px solid var(--border-soft); padding: 22px 0; }
.footer__bottom-inner { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; font-size: .84rem; color: var(--text-3); }
.footer__bottom strong { color: var(--text-2); font-weight: 600; }

/* ---------- 19. Mobil Bar / Yüzen / Yukarı ------------------------------- */
.mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: grid; grid-template-columns: repeat(3, 1fr);
    background: rgba(10, 14, 26, .94); backdrop-filter: blur(16px); border-top: 1px solid var(--border);
    padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar__item { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 11px 6px 9px; font-size: .72rem; font-weight: 700; color: var(--text-2); position: relative; }
.mobile-bar__item svg { width: 22px; height: 22px; }
.mobile-bar__item + .mobile-bar__item::before { content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 1px; background: var(--border-soft); }
.mobile-bar__call { color: var(--gold-3); }
.mobile-bar__wa { color: var(--wa); }
.mobile-bar__loc { color: var(--text-2); }

.float-wa {
    position: fixed; right: 22px; bottom: 26px; z-index: 90; display: grid; place-items: center;
    width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; box-shadow: 0 14px 36px -8px rgba(37,211,102,.6);
    transition: transform .35s var(--ease);
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 30px; height: 30px; }
.float-wa__pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: ring 2.4s ease-out infinite; }

.to-top {
    position: fixed; right: 22px; bottom: 94px; z-index: 89; width: 46px; height: 46px; border-radius: 50%;
    display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--border); color: var(--gold-3);
    backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .4s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 22px; height: 22px; transform: rotate(180deg); }
.to-top:hover { border-color: var(--gold-2); transform: translateY(-3px); }

/* ---------- 20. İç Sayfa Başlığı / Breadcrumb ---------------------------- */
.page-hero { position: relative; padding: clamp(46px, 7vw, 84px) 0 clamp(34px, 5vw, 54px); text-align: center; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%; top: -260px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(201,161,74,.16), transparent 65%); }
.page-hero__inner { position: relative; z-index: 2; max-width: 800px; margin-inline: auto; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.08rem; max-width: 640px; margin-inline: auto; }

.breadcrumb { border-bottom: 1px solid var(--border-soft); background: rgba(255,255,255,.012); padding: 14px 0; font-size: .86rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--text-3); }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after { content: "›"; color: var(--gold-2); margin-left: 4px; }
.breadcrumb a { color: var(--text-2); transition: color .3s; }
.breadcrumb a:hover { color: var(--gold-3); }
.breadcrumb li[aria-current] { color: var(--gold-3); font-weight: 600; }

/* ---------- 21. İçerik / Prose / Form ------------------------------------ */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(34px, 5vw, 60px); align-items: start; }
.prose h2 { margin: 34px 0 16px; }
.prose h3 { margin: 26px 0 12px; }
.prose p { margin-bottom: 16px; }
.prose ul { display: grid; gap: 12px; margin: 18px 0; }
.prose ul li { display: flex; gap: 12px; color: var(--text-2); }
.prose ul li::before { content: ""; flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; background: var(--gold-soft); border: 1px solid var(--border); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f2d27e' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 14px; }

.card {
    padding: 30px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--border-soft);
}
.card--gold { background: var(--gold-soft); border-color: var(--border); }

.info-card { position: sticky; top: calc(var(--header-h) + 20px); }

.price-note { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: var(--r-full); background: var(--gold-soft); border: 1px solid var(--border); font-size: .86rem; font-weight: 600; color: var(--gold-3); }

/* Form */
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--text-2); }
.field label .req { color: var(--gold-3); }
.field input, .field textarea, .field select {
    width: 100%; padding: 14px 16px; border-radius: var(--r-sm); background: var(--bg-2);
    border: 1px solid var(--border-soft); color: var(--text); transition: border-color .3s, box-shadow .3s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold-2); box-shadow: 0 0 0 3px rgba(201,161,74,.16); }
.field--row { display: grid; grid-template-columns: 1fr; gap: 16px; }
.form__note { font-size: .82rem; color: var(--text-3); }
.form-alert { padding: 14px 18px; border-radius: var(--r-sm); font-size: .92rem; font-weight: 600; display: flex; gap: 10px; align-items: center; }
.form-alert svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-alert--ok { background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.4); color: #6ee7a0; }
.form-alert--err { background: rgba(229,72,77,.12); border: 1px solid rgba(229,72,77,.4); color: #ff9ba0; }

/* İletişim kutucukları */
.contact-tiles { display: grid; gap: 14px; }
.contact-tile { display: flex; gap: 16px; align-items: center; padding: 20px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--border-soft); transition: border-color .35s, transform .35s var(--ease); }
.contact-tile:hover { border-color: var(--gold-2); transform: translateY(-3px); }
.contact-tile__ic { flex-shrink: 0; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--gold-soft); border: 1px solid var(--border); color: var(--gold-3); }
.contact-tile__ic svg { width: 26px; height: 26px; }
.contact-tile small { display: block; font-size: .8rem; color: var(--text-3); margin-bottom: 2px; }
.contact-tile b { font-size: 1.04rem; color: var(--text); }

/* Harita */
.map-wrap { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); line-height: 0; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; filter: grayscale(.3) invert(.92) hue-rotate(180deg) contrast(.92); }

/* Bölge etiketleri */
.area-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.area-tags span { padding: 8px 15px; border-radius: var(--r-full); background: var(--surface); border: 1px solid var(--border-soft); font-size: .84rem; font-weight: 600; color: var(--text-2); transition: all .3s; }
.area-tags span:hover { border-color: var(--gold-2); color: var(--gold-3); }

/* 404 */
.notfound { text-align: center; padding: clamp(60px,12vw,140px) 0; }
.notfound__code { font-family: var(--font-display); font-weight: 900; font-size: clamp(6rem, 22vw, 13rem); line-height: .9; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- 22. Animasyonlar --------------------------------------------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 9px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes ring { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ---------- 23. Responsive ----------------------------------------------- */
@media (min-width: 560px) {
    .stats-grid { gap: 20px; }
    .gallery-grid { gap: 18px; }
    .field--row { grid-template-columns: 1fr 1fr; }
    .check-list--2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
    .brand__text { display: flex; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .cta-band__inner { grid-template-columns: 1.4fr auto; text-align: left; }
    .cta-band__actions { justify-content: flex-start; }
    .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
    .why { grid-template-columns: 1fr 1fr; }
    .split--sidebar { grid-template-columns: 1.7fr 1fr; }
    .split--half { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 992px) {
    .header__call { display: inline-flex; }
    .nav__toggle { display: none; }
    .nav__cta { display: none; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: repeat(5, 1fr); }
    .process-grid::before { content: ""; position: absolute; top: 46px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, transparent, var(--border), transparent); z-index: 0; }
    .step { padding: 70px 22px 24px; text-align: center; }
    .step__no { left: 50%; transform: translateX(-50%); top: 22px; }
    .step:hover .step__no { transform: translateX(-50%) scale(1.08); }
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
    .footer__grid { grid-template-columns: 2fr 1.1fr 1.1fr 1.3fr; }
    .float-wa { bottom: 30px; }
    .to-top { bottom: 98px; }
}

@media (min-width: 1100px) {
    .hero__inner { grid-template-columns: 1.05fr .95fr; }
}

/* Mobil navigasyon (slide-in) */
@media (max-width: 991px) {
    /* ÖNEMLİ: backdrop-filter ataları, içteki position:fixed menü için
       containing block oluşturur ve tam ekran kaplamasını engeller.
       Mobilde header'ın filtresini kaldırıp arka planı opaklaştırıyoruz. */
    .header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(8, 11, 20, .96); }
    .header.is-scrolled { background: rgba(8, 11, 20, .98); }

    .nav {
        position: fixed; top: 0; right: 0; bottom: 0; z-index: 120;
        width: min(86vw, 360px); flex-direction: column; align-items: stretch; gap: 0;
        background: var(--bg-1); border-left: 1px solid var(--border);
        padding: 26px 24px calc(28px + env(safe-area-inset-bottom));
        transform: translateX(105%); transition: transform .45s var(--ease); box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .nav.is-open { transform: translateX(0); }
    .nav__close { display: grid; place-items: center; align-self: flex-end; width: 44px; height: 44px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border); color: var(--gold-3); margin-bottom: 16px; }
    .nav__close svg { width: 24px; height: 24px; }
    .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
    .nav__link { padding: 15px 16px; font-size: 1.06rem; border-radius: var(--r-sm); border: 1px solid transparent; }
    .nav__link::after { display: none; }
    .nav__link:hover, .nav__link.is-active { background: var(--surface); border-color: var(--border-soft); color: var(--gold-3); }
    .nav__cta { display: inline-flex; margin-top: 18px; }
    .float-wa { display: none; }    /* mobil barda zaten WhatsApp var */
    .to-top { bottom: 88px; right: 16px; }
}

/* Mobil bar yalnız küçük ekranda; gövdeye alt boşluk */
@media (max-width: 767px) {
    body { padding-bottom: 64px; }
}
@media (min-width: 768px) {
    .mobile-bar { display: none; }
}

/* Çok küçük ekran ince ayarları */
@media (max-width: 380px) {
    .hero__float--1 { left: 0; }
    .hero__float--2 { right: 0; }
    .btn { padding: 13px 20px; }
}

/* ---------- 24. Hareket azaltma ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Yazdırma */
@media print {
    .topbar, .header, .mobile-bar, .float-wa, .to-top, .cta-band { display: none; }
    body::before, body::after { display: none; }
    body { background: #fff; color: #000; }
}
