/* =========================================================================
   NC Ünal İnşaat — Tasarım Sistemi v3 "Bold Editorial"
   Krem zemin · dev tipografi · kalın çizgiler · sert ofset gölgeler
   Mobile-first. Font: Space Grotesk (display) / Manrope (metin)
   ========================================================================= */

/* ---- Tokens ---- */
:root {
    --ink:      #16181d;
    --ink-2:    #23262e;
    --ink-soft: #4c5160;

    --cream:    #f7f4ee;   /* ana zemin  */
    --cream-2:  #efeae0;   /* koyu krem  */
    --card:     #fffdf9;   /* kart zemini*/

    /* Alev paleti (eski adlar korunur — sayfa içi stiller bozulmasın) */
    --gold-600: #d64310;
    --gold-500: #ee5a1c;
    --gold-400: #ff8b3d;
    --gold-100: #fdeadd;
    --flame:    linear-gradient(120deg, #e33d15, #f9862c);

    --brand:    var(--gold-500);
    --brand-ink:var(--ink);
    --text:     var(--ink);
    --text-mut: var(--ink-soft);

    --bd: 2px solid var(--ink);
    --shadow-off:   5px 5px 0 var(--ink);
    --shadow-off-sm:3px 3px 0 var(--ink);
    --shadow-soft:  0 18px 44px rgba(22,24,29,.12);
    --ok: #2f9e6f;

    --radius:   16px;
    --radius-sm:12px;
    --radius-lg:24px;

    --container: 1200px;
    --f-head: 'Space Grotesk', -apple-system, sans-serif;
    --f-body: 'Manrope', -apple-system, 'Segoe UI', sans-serif;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --t: .25s var(--ease);

    /* Eski değişken adları için eşlemeler */
    --line: #d9d3c7;
    --paper: var(--cream);
    --paper-2: var(--cream-2);
    --paper-3: #e6e0d4;
    --ink-950: #101217;
    --ink-900: var(--ink);
    --ink-800: var(--ink-2);
    --ink-700: #2e323d;
    --ink-300: #9aa0af;
    --shadow-sm: var(--shadow-soft);
    --shadow: var(--shadow-soft);
    --shadow-lg: 0 30px 70px rgba(22,24,29,.25);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--f-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.68;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
/* İnce nokta dokusu */
body::before {
    content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background-image: radial-gradient(rgba(22,24,29,.05) 1px, transparent 1px);
    background-size: 26px 26px;
}
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: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--f-head); line-height: 1.06; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }

.container { width: min(100% - 2.2rem, var(--container)); margin-inline: auto; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 999; background: var(--ink); color: #fff; padding: .7rem 1.2rem; }
.skip-link:focus { left: 0; }
::selection { background: rgba(238,90,28,.3); }

.ico { width: 20px; height: 20px; flex: none; }
.ico--lg { width: 28px; height: 28px; }

/* ---- Butonlar: hap biçimli, kalın çizgili, ofset gölgeli ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    font-family: var(--f-head); font-weight: 600; font-size: .95rem;
    padding: .9rem 1.6rem; border-radius: 999px;
    border: var(--bd); transition: var(--t); white-space: nowrap;
    background: var(--card); color: var(--ink);
}
.btn .ico { width: 18px; height: 18px; }
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-off-sm); }
.btn:active { transform: none; box-shadow: none; }
.btn--primary { background: var(--gold-500); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { box-shadow: 3px 3px 0 var(--gold-500); }
.btn--ghost { background: transparent; }
.btn--light { background: #fff; }
.btn--outline-light { background: transparent; border-color: currentColor; }
.btn--sm { padding: .55rem 1.1rem; font-size: .86rem; }

/* =========================================================================
   HEADER — yüzen hap navbar
   ========================================================================= */
.site-header { position: sticky; top: 0; z-index: 100; padding: .7rem 0; transition: var(--t); }
.site-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(var(--cream) 55%, transparent); pointer-events: none; }

.topbar { display: none; } /* masaüstünde gösterilir */

.navbar { position: relative; }
.navbar__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    background: var(--card); border: var(--bd); border-radius: 999px;
    padding: .5rem .6rem .5rem 1rem; min-height: 64px;
    box-shadow: var(--shadow-off-sm);
}
.brand__logo { height: 40px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: .1rem; }
.nav-menu > li > a {
    display: block; padding: .55rem .8rem; border-radius: 999px;
    font-family: var(--f-head); font-weight: 600; font-size: .88rem; color: var(--ink);
    transition: var(--t);
}
.nav-menu > li > a:hover { background: var(--cream-2); }
.nav-menu > li > a.is-active { background: var(--ink); color: #fff; }
.nav-cta { margin-left: .3rem; }
.nav-cta .btn { color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; border: var(--bd); border-radius: 999px; background: var(--card); }
.nav-toggle span { width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: var(--t); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================================
   HERO — split + kemer görsel + marquee
   ========================================================================= */
.hero2 { position: relative; overflow: hidden; }
.hero2__grid { display: grid; gap: 2.2rem; padding: clamp(1.6rem, 5vw, 4.2rem) 0 clamp(2.2rem, 5vw, 4rem); align-items: center; }
.sticker {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--gold-100); border: var(--bd); border-radius: 999px;
    font-family: var(--f-head); font-weight: 600; font-size: .8rem;
    padding: .45rem 1rem; box-shadow: var(--shadow-off-sm);
}
.sticker .ico { width: 15px; height: 15px; color: var(--gold-600); }
.hero2 h1 {
    margin-top: 1.4rem;
    font-size: clamp(2.5rem, 8.5vw, 4.8rem);
    font-weight: 700; text-transform: none;
}
.hero2 h1 .outline {
    color: transparent; -webkit-text-stroke: 2px var(--gold-500);
}
.hero2 h1 .mark {
    position: relative; display: inline-block; z-index: 1;
}
.hero2 h1 .mark::after {
    content: ''; position: absolute; left: -2%; right: -2%; bottom: .08em; height: .32em;
    background: var(--gold-400); z-index: -1; transform: skew(-6deg);
}
.hero2__lead { margin-top: 1.3rem; font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--text-mut); max-width: 540px; }
.hero2__actions { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero2__ticks { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; }
.hero2__ticks li { display: flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 600; }
.hero2__ticks .ico { width: 20px; height: 20px; padding: 3px; background: var(--ink); color: var(--gold-400); border-radius: 50%; }

.hero2__media { position: relative; justify-self: center; width: min(100%, 460px); }
.hero2__arch {
    border: var(--bd); border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
    overflow: hidden; aspect-ratio: 4/4.7; box-shadow: var(--shadow-off);
    background: var(--ink);
}
.hero2__arch img { width: 100%; height: 100%; object-fit: cover; }
.hero2__chip {
    position: absolute; background: var(--card); border: var(--bd); border-radius: var(--radius);
    padding: .8rem 1.1rem; box-shadow: var(--shadow-off-sm);
    font-family: var(--f-head); line-height: 1.15;
}
.hero2__chip b { font-size: 1.5rem; color: var(--gold-500); display: block; }
.hero2__chip span { font-size: .78rem; font-weight: 600; color: var(--text-mut); }
.hero2__chip--1 { left: -14px; top: 12%; transform: rotate(-5deg); }
.hero2__chip--2 { right: -10px; bottom: 14%; transform: rotate(4deg); }

/* Genel eylem satırı (eski sayfalarla uyumluluk) */
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Marquee şerit */
.marquee {
    border-top: var(--bd); border-bottom: var(--bd); background: var(--ink); color: var(--cream);
    overflow: hidden; padding: .85rem 0; user-select: none;
}
.marquee__track { display: flex; gap: 2.6rem; width: max-content; animation: marq 26s linear infinite; }
.marquee span { display: flex; align-items: center; gap: 2.6rem; font-family: var(--f-head); font-weight: 600; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.marquee i { color: var(--gold-400); font-style: normal; }
@keyframes marq { to { transform: translateX(-50%); } }

/* =========================================================================
   PAGE HERO (iç sayfalar) — dev tipografi, krem
   ========================================================================= */
.page-hero { padding: clamp(2rem, 6vw, 4rem) 0 clamp(1.6rem, 4vw, 2.6rem); border-bottom: var(--bd); background: var(--cream-2); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; right: -140px; top: -140px; width: 340px; height: 340px; border-radius: 50%; border: 2px dashed rgba(238,90,28,.5); }
.page-hero::after { content: ''; position: absolute; right: 8%; bottom: -60px; width: 130px; height: 130px; border-radius: 50%; background: var(--gold-400); border: var(--bd); opacity: .9; }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.3rem, 7.5vw, 4rem); }
.page-hero p { margin-top: .8rem; max-width: 620px; color: var(--text-mut); font-size: 1.05rem; }
.breadcrumb { display: inline-flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-size: .8rem; font-weight: 600; margin-bottom: 1.2rem; background: var(--card); border: var(--bd); border-radius: 999px; padding: .4rem .9rem; }
.breadcrumb a:hover { color: var(--gold-600); }
.breadcrumb .ico { width: 13px; height: 13px; }
.breadcrumb [aria-current] { color: var(--gold-600); }

/* =========================================================================
   SECTIONS
   ========================================================================= */
.section { padding: clamp(3.2rem, 8vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.2rem, 5vw, 3.6rem) 0; }
.section--paper { background: var(--cream-2); border-top: var(--bd); border-bottom: var(--bd); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

.sec-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--f-head); font-weight: 700; font-size: .78rem;
    letter-spacing: .14em; text-transform: uppercase; color: var(--gold-600);
    border: 2px solid var(--gold-500); border-radius: 999px; padding: .3rem .9rem;
    margin-bottom: 1.1rem; background: var(--gold-100);
}
.eyebrow::before { display: none; }
.sec-title { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 700; }
.sec-sub { margin-top: .9rem; color: var(--text-mut); font-size: 1.06rem; }
.section--ink .sec-sub { color: rgba(247,244,238,.7); }
.section--ink .eyebrow { background: transparent; color: var(--gold-400); border-color: var(--gold-400); }

/* =========================================================================
   GRID + KARTLAR — kalın çizgi, ofset gölge
   ========================================================================= */
.grid { display: grid; gap: clamp(1.1rem, 3vw, 1.8rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.svc-card {
    background: var(--card); border: var(--bd); border-radius: var(--radius-lg);
    padding: 1.8rem; transition: var(--t); position: relative; counter-increment: cardnum;
}
.svc-card:hover { transform: translate(-4px, -4px); box-shadow: var(--shadow-off); }
.svc-card__icon {
    display: grid; place-items: center; width: 58px; height: 58px;
    border-radius: 16px; border: var(--bd); background: var(--gold-100);
    color: var(--ink); margin-bottom: 1.3rem; transition: var(--t);
}
.svc-card__icon .ico { width: 28px; height: 28px; }
.svc-card:hover .svc-card__icon { background: var(--gold-500); color: #fff; transform: rotate(-6deg); }
.svc-card h2, .svc-card h3 { font-size: 1.2rem; margin-bottom: .55rem; }
.svc-card p { color: var(--text-mut); font-size: .95rem; }
.svc-card__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.1rem; font-family: var(--f-head); font-weight: 600; font-size: .9rem; color: var(--gold-600); border-bottom: 2px solid var(--gold-500); padding-bottom: 2px; }
.svc-card__link .ico { width: 15px; height: 15px; transition: transform var(--t); }
.svc-card:hover .svc-card__link .ico { transform: translateX(4px); }

/* Proje kartı */
.proj-card { position: relative; border: var(--bd); border-radius: var(--radius-lg); overflow: hidden; background: var(--ink); aspect-ratio: 4/3.2; transition: var(--t); }
.proj-card:hover { transform: translate(-4px, -4px); box-shadow: var(--shadow-off); }
.proj-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.proj-card:hover img { transform: scale(1.06); }
.proj-card__body { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem; background: linear-gradient(to top, rgba(16,18,23,.92), rgba(16,18,23,.2) 55%, transparent); color: #fff; }
.proj-card__tag { align-self: flex-start; background: var(--gold-500); color: #fff; border: 2px solid #fff2; font-family: var(--f-head); font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; margin-bottom: .6rem; }
.proj-card h2, .proj-card h3 { color: #fff; font-size: 1.2rem; }
.proj-card__meta { margin-top: .3rem; font-size: .86rem; color: rgba(255,255,255,.78); display: flex; align-items: center; gap: .4rem; }
.proj-card__meta .ico { width: 14px; height: 14px; color: var(--gold-400); }

/* Özellik listesi */
.feat-list { display: grid; gap: .95rem; }
.feat-list li { display: flex; gap: .8rem; align-items: flex-start; }
.feat-list .ico { width: 26px; height: 26px; flex: none; color: #fff; background: var(--ink); border: 2px solid var(--gold-500); border-radius: 50%; padding: 4px; }
.feat-list b { display: block; font-family: var(--f-head); }
.feat-list span { color: var(--text-mut); font-size: .94rem; }

/* Sayaçlar — koyu bölümde bordürlü kutular */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.stat { text-align: center; padding: 1.6rem 1rem; border: 2px solid rgba(247,244,238,.25); border-radius: var(--radius-lg); background: rgba(247,244,238,.04); transition: var(--t); }
.stat:hover { border-color: var(--gold-500); transform: translateY(-4px); background: rgba(238,90,28,.08); }
.stat__icon { display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto .9rem; border-radius: 50%; border: 2px solid var(--gold-500); color: var(--gold-400); }
.stat b { font-family: var(--f-head); font-size: clamp(2rem, 4.5vw, 2.9rem); font-weight: 700; display: block; line-height: 1.1; color: var(--gold-400); }
.stat span { color: rgba(247,244,238,.75); font-size: .92rem; }

/* Medya bloğu */
.media { display: grid; grid-template-columns: 1fr; gap: clamp(1.8rem, 5vw, 3.6rem); align-items: center; }
.media__img { position: relative; border: var(--bd); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-off); aspect-ratio: 5/4.2; background: var(--ink); }
.media__img img { width: 100%; height: 100%; object-fit: cover; }
.media__badge { position: absolute; z-index: 3; left: 1.1rem; bottom: 1.1rem; background: var(--card); border: var(--bd); border-radius: var(--radius); padding: .85rem 1.15rem; display: flex; align-items: center; gap: .8rem; transform: rotate(-2deg); }
.media__badge b { font-family: var(--f-head); font-size: 1.7rem; line-height: 1; color: var(--gold-500); }
.media__badge span { font-size: .78rem; font-weight: 600; color: var(--text-mut); }
.prose p { margin-bottom: 1rem; color: var(--text-mut); }
.prose p:first-of-type { font-size: 1.08rem; color: var(--text); }

/* Ürün / haber kartları */
.prod-card { background: var(--card); border: var(--bd); border-radius: var(--radius-lg); overflow: hidden; transition: var(--t); }
.prod-card:hover { transform: translate(-4px, -4px); box-shadow: var(--shadow-off); }
.prod-card__img { aspect-ratio: 4/3; overflow: hidden; border-bottom: var(--bd); background: var(--cream-2); }
.prod-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.prod-card:hover .prod-card__img img { transform: scale(1.05); }
.prod-card__body { padding: 1.25rem; }
.prod-card__body h2, .prod-card__body h3 { font-size: 1.08rem; }
.prod-card__body p { color: var(--text-mut); font-size: .9rem; margin-top: .4rem; }

.news-card { background: var(--card); border: var(--bd); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: var(--t); }
.news-card:hover { transform: translate(-4px, -4px); box-shadow: var(--shadow-off); }
.news-card__img { aspect-ratio: 16/9; overflow: hidden; display: block; border-bottom: var(--bd); background: var(--cream-2); }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.news-card:hover .news-card__img img { transform: scale(1.05); }
.news-card__body { padding: 1.3rem; flex: 1; display: flex; flex-direction: column; }
.news-card__date { display: inline-block; align-self: flex-start; font-family: var(--f-head); font-size: .74rem; font-weight: 700; color: var(--ink); background: var(--gold-100); border: 2px solid var(--gold-500); border-radius: 999px; padding: .2rem .7rem; }
.news-card h2, .news-card h3 { font-size: 1.1rem; margin: .7rem 0 .55rem; }
.news-card p { color: var(--text-mut); font-size: .92rem; flex: 1; }

/* Galeri */
.gallery { columns: 3; column-gap: 1rem; }
.gallery a { display: block; margin-bottom: 1rem; border: var(--bd); border-radius: var(--radius); overflow: hidden; break-inside: avoid; position: relative; transition: var(--t); }
.gallery a:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-off-sm); }
.gallery img { width: 100%; }

/* CTA bandı — turuncu, kalın çizgili */
.cta-band { background: var(--gold-500); color: #fff; border: var(--bd); border-radius: var(--radius-lg); padding: clamp(1.8rem, 5vw, 3.2rem); position: relative; overflow: hidden; box-shadow: var(--shadow-off); }
.cta-band::before { content: ''; position: absolute; right: -50px; top: -50px; width: 190px; height: 190px; border-radius: 50%; border: 2px dashed rgba(255,255,255,.5); }
.cta-band__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 4vw, 2.2rem); }
.cta-band p { color: rgba(255,255,255,.85); margin-top: .4rem; }
.cta-band .btn--primary { background: var(--ink); border-color: var(--ink); }
.cta-band .btn--primary:hover { box-shadow: 3px 3px 0 rgba(255,255,255,.9); }
.cta-band .btn--outline-light { border: 2px solid #fff; color: #fff; }
.cta-band .btn--outline-light:hover { background: #fff; color: var(--ink); box-shadow: 3px 3px 0 var(--ink); }
.cta-band .btn--ghost { border-color: #fff; color: #fff; }

/* İletişim */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.8rem, 5vw, 3rem); align-items: start; }
.contact-info { display: grid; gap: 1rem; }
.contact-info__item { display: flex; gap: 1rem; padding: 1.15rem 1.25rem; background: var(--card); border: var(--bd); border-radius: var(--radius); align-items: flex-start; transition: var(--t); }
.contact-info__item:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-off-sm); }
.contact-info__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; border: var(--bd); background: var(--gold-100); color: var(--ink); flex: none; }
.contact-info__item b { font-family: var(--f-head); display: block; margin-bottom: .15rem; }
.contact-info__item a, .contact-info__item span { color: var(--text-mut); }
.contact-info__item a:hover { color: var(--gold-600); }

.form { background: var(--card); border: var(--bd); border-radius: var(--radius-lg); padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow-off); }
.form__row { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-family: var(--f-head); font-weight: 600; font-size: .87rem; margin-bottom: .35rem; }
.field input, .field textarea, .field select { width: 100%; padding: .8rem 1rem; border: var(--bd); border-radius: var(--radius-sm); font: inherit; color: var(--text); background: var(--cream); transition: var(--t); }
.field input:focus, .field textarea:focus { outline: none; background: #fff; box-shadow: 3px 3px 0 var(--gold-500); }
.field textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: .8rem; color: var(--text-mut); margin-top: .5rem; }
.map-embed { border: var(--bd); border-radius: var(--radius-lg); overflow: hidden; line-height: 0; box-shadow: var(--shadow-off); }
.map-embed iframe { width: 100%; height: 360px; border: 0; }

.alert { padding: .95rem 1.15rem; border-radius: var(--radius-sm); margin-bottom: 1.1rem; font-size: .93rem; display: flex; align-items: center; gap: .6rem; border: var(--bd); }
.alert--ok { background: #e2f4ea; }
.alert--ok .ico { color: var(--ok); }
.alert--err { background: #fce8e6; }

/* =========================================================================
   FOOTER — koyu, dev başlıklı
   ========================================================================= */
.site-footer { background: var(--ink); color: rgba(247,244,238,.72); border-top: var(--bd); margin-top: 0; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding: clamp(2.6rem, 6vw, 4.2rem) 0 2rem; }
.footer__logo { height: 48px; width: auto; margin-bottom: 1.1rem; background: var(--cream); padding: 8px 12px; border-radius: 12px; }
.footer__about { font-size: .93rem; line-height: 1.7; max-width: 340px; }
.footer__title { color: #fff; font-size: 1rem; margin-bottom: 1rem; display: inline-block; border-bottom: 3px solid var(--gold-500); padding-bottom: .35rem; }
.footer__links li, .footer__contact li { margin-bottom: .6rem; }
.footer__links a { font-size: .93rem; transition: var(--t); }
.footer__links a:hover { color: var(--gold-400); padding-left: 5px; }
.footer__contact li { display: flex; gap: .7rem; align-items: flex-start; font-size: .93rem; }
.footer__contact .ico { width: 18px; height: 18px; color: var(--gold-400); flex: none; margin-top: 2px; }
.footer__contact a:hover { color: var(--gold-400); }
.footer__social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.footer__social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 2px solid rgba(247,244,238,.35); transition: var(--t); }
.footer__social a:hover { background: var(--gold-500); border-color: var(--gold-500); transform: translateY(-3px); }
.footer__tags { border-top: 1px solid rgba(247,244,238,.15); padding: 1.6rem 0; }
.footer__tags-title { color: rgba(247,244,238,.55); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .9rem; }
.footer__tags-list { display: flex; flex-wrap: wrap; gap: .45rem; }
.footer__tags-list a { font-size: .78rem; font-weight: 600; color: rgba(247,244,238,.65); border: 1.5px solid rgba(247,244,238,.25); border-radius: 999px; padding: .28rem .75rem; transition: var(--t); }
.footer__tags-list a:hover { color: #fff; border-color: var(--gold-500); background: rgba(238,90,28,.15); }

.footer__bottom { border-top: 1px solid rgba(247,244,238,.15); }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: .8rem; flex-wrap: wrap; padding: 1.2rem 0; font-size: .84rem; }
.footer__credit { font-family: var(--f-head); font-weight: 600; color: var(--gold-400); }

/* =========================================================================
   YÜZEN ÖĞELER
   ========================================================================= */
.wa-float { position: fixed; right: 16px; bottom: 16px; z-index: 90; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; border: var(--bd); box-shadow: var(--shadow-off-sm); transition: var(--t); }
.wa-float:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-off); }
.wa-float__pulse { display: none; }
.to-top { position: fixed; right: 16px; bottom: 84px; z-index: 89; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--card); color: var(--ink); border: var(--bd); opacity: 0; transform: translateY(10px); transition: var(--t); }
.to-top.show { opacity: 1; transform: none; }
.to-top:hover { background: var(--gold-500); color: #fff; }

/* =========================================================================
   ÜNAL ASİSTAN
   ========================================================================= */
.bot-launch {
    position: fixed; left: 16px; bottom: 16px; z-index: 95;
    display: inline-flex; align-items: center; gap: .55rem;
    background: linear-gradient(120deg, #e33d15, #f9862c, #e33d15);
    background-size: 200% 100%;
    color: #fff; border: var(--bd);
    padding: .8rem 1.2rem; border-radius: 999px;
    font-family: var(--f-head); font-weight: 700; font-size: .9rem;
    box-shadow: var(--shadow-off-sm);
    transition: var(--t);
    animation: botGradient 4s linear infinite, botPulse 2.4s infinite, botWiggle 7s infinite;
}
@keyframes botGradient { to { background-position: 200% 0; } }
@keyframes botPulse {
    0%   { box-shadow: 3px 3px 0 var(--ink), 0 0 0 0 rgba(238,90,28,.55); }
    70%  { box-shadow: 3px 3px 0 var(--ink), 0 0 0 16px rgba(238,90,28,0); }
    100% { box-shadow: 3px 3px 0 var(--ink), 0 0 0 0 rgba(238,90,28,0); }
}
@keyframes botWiggle {
    0%, 88%, 100% { transform: none; }
    91% { transform: rotate(-3deg) scale(1.04); }
    94% { transform: rotate(2.5deg) scale(1.04); }
    97% { transform: rotate(-1.5deg); }
}
.bot-launch:hover { transform: translate(-2px,-2px) !important; animation-play-state: paused, running, paused; }
.bot-launch .ico { width: 21px; height: 21px; color: #fff; }
.bot-launch__ai {
    display: inline-grid; place-items: center;
    background: #fff; color: var(--gold-600);
    font-size: .62rem; font-weight: 800; letter-spacing: .05em;
    padding: .14rem .4rem; border-radius: 6px;
    animation: aiBlink 2.4s infinite;
}
@keyframes aiBlink { 50% { background: var(--ink); color: var(--gold-400); } }
.bot-launch__dot { width: 9px; height: 9px; border-radius: 50%; background: #7dff9b; border: 1.5px solid rgba(0,0,0,.25); animation: dotblink 1.6s infinite; }
@keyframes dotblink { 50% { opacity: .3; transform: scale(.8); } }

/* Dikkat çekici karşılama balonu */
.bot-teaser {
    position: fixed; left: 16px; bottom: 84px; z-index: 94;
    max-width: min(290px, calc(100vw - 32px));
    background: var(--card); border: 2.5px solid var(--gold-500); border-radius: var(--radius-lg);
    border-bottom-left-radius: 6px;
    padding: .95rem 2.2rem .95rem 1.05rem;
    font-size: .92rem; font-weight: 600; line-height: 1.5;
    box-shadow: 5px 5px 0 var(--gold-500), 0 14px 34px rgba(238,90,28,.25);
    cursor: pointer;
    opacity: 0; transform: translateY(12px) scale(.95); visibility: hidden;
    transition: all .35s var(--ease);
}
.bot-teaser.show {
    opacity: 1; transform: none; visibility: visible;
    animation: teaserWobble .55s .35s var(--ease), teaserFloat 2.8s 1.4s ease-in-out infinite;
}
@keyframes teaserWobble { 30% { transform: rotate(-2.5deg) scale(1.03); } 65% { transform: rotate(1.8deg); } }
@keyframes teaserFloat { 50% { transform: translateY(-6px); } }
.bot-teaser b { background: var(--flame); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bot-teaser__tag {
    display: inline-flex; align-items: center; gap: .3rem;
    background: var(--ink); color: var(--gold-400);
    font-family: var(--f-head); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    padding: .18rem .55rem; border-radius: 999px; margin-bottom: .4rem;
}
.bot-teaser__tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #2ecc71; animation: dotblink 1.6s infinite; }
.bot-teaser__close {
    position: absolute; right: 7px; top: 7px;
    width: 24px; height: 24px; display: grid; place-items: center;
    border-radius: 50%; background: var(--cream-2); color: var(--ink-soft);
    font-size: 13px; line-height: 1; transition: var(--t);
}
.bot-teaser__close:hover { background: var(--ink); color: #fff; }

.bot-panel {
    position: fixed; left: 12px; bottom: 12px; z-index: 96;
    width: min(400px, calc(100vw - 24px)); height: min(590px, calc(100dvh - 40px));
    background: var(--cream); border: var(--bd); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-off); display: flex; flex-direction: column; overflow: hidden;
    transform: translateY(16px) scale(.97); opacity: 0; visibility: hidden; transition: all .3s var(--ease);
}
.bot-panel.open { transform: none; opacity: 1; visibility: visible; }
.bot-head { background: var(--ink); color: #fff; padding: .95rem 1.1rem; display: flex; align-items: center; gap: .8rem; border-bottom: var(--bd); }
.bot-head__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-500); border: 2px solid #fff; display: grid; place-items: center; flex: none; }
.bot-head__avatar .ico { width: 22px; height: 22px; color: #fff; }
.bot-head b { font-family: var(--f-head); font-size: 1rem; display: block; }
.bot-head small { color: rgba(255,255,255,.65); font-size: .77rem; display: flex; align-items: center; gap: .35rem; }
.bot-head small::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #2ecc71; }
.bot-close { margin-left: auto; color: rgba(255,255,255,.75); padding: .4rem; border-radius: 8px; transition: var(--t); line-height: 0; }
.bot-close:hover { background: rgba(255,255,255,.12); color: #fff; }

.bot-body { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .6rem; scroll-behavior: smooth; }
.bot-msg { max-width: 86%; padding: .72rem .95rem; border-radius: var(--radius); border: var(--bd); font-size: .91rem; line-height: 1.55; animation: botIn .3s var(--ease); white-space: pre-line; }
@keyframes botIn { from { opacity: 0; transform: translateY(8px); } }
.bot-msg--bot { align-self: flex-start; background: var(--card); border-bottom-left-radius: 4px; }
.bot-msg--user { align-self: flex-end; background: var(--gold-500); color: #fff; border-bottom-right-radius: 4px; }
.bot-msg a { color: var(--gold-600); font-weight: 700; text-decoration: underline; }
.bot-msg--user a { color: #fff; }

.bot-typing { align-self: flex-start; display: inline-flex; gap: 5px; background: var(--card); border: var(--bd); padding: .8rem .95rem; border-radius: var(--radius); border-bottom-left-radius: 4px; }
.bot-typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-300); animation: blink 1.2s infinite; }
.bot-typing i:nth-child(2) { animation-delay: .18s; }
.bot-typing i:nth-child(3) { animation-delay: .36s; }
@keyframes blink { 0%, 70%, 100% { opacity: .3; } 35% { opacity: 1; transform: translateY(-3px); } }

.bot-quick { display: flex; flex-wrap: wrap; gap: .45rem; align-self: flex-start; animation: botIn .3s var(--ease); }
.bot-quick button { background: var(--card); border: 2px solid var(--gold-500); color: var(--gold-600); font-family: var(--f-head); font-weight: 600; font-size: .82rem; padding: .48rem .9rem; border-radius: 999px; transition: var(--t); }
.bot-quick button:hover { background: var(--gold-500); color: #fff; }

.bot-foot { padding: .75rem; background: var(--card); border-top: var(--bd); display: flex; gap: .5rem; }
.bot-foot input { flex: 1; border: var(--bd); border-radius: 999px; padding: .68rem 1rem; font: inherit; font-size: .9rem; background: var(--cream); transition: var(--t); }
.bot-foot input:focus { outline: none; background: #fff; box-shadow: 2px 2px 0 var(--gold-500); }
.bot-foot button { width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--gold-500); border: var(--bd); color: #fff; display: grid; place-items: center; transition: var(--t); }
.bot-foot button:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-off-sm); }
.bot-foot .ico { width: 19px; height: 19px; }

.bot-promo { background: var(--ink); color: #fff; border: var(--bd); border-radius: var(--radius-lg); padding: 1.3rem; display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; box-shadow: var(--shadow-off); }
.bot-promo__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--gold-500); border: 2px solid #fff3; display: grid; place-items: center; flex: none; }
.bot-promo__icon .ico { width: 26px; height: 26px; color: #fff; }
.bot-promo b { font-family: var(--f-head); display: block; margin-bottom: .2rem; }
.bot-promo p { color: rgba(255,255,255,.72); font-size: .88rem; margin: 0; }
.bot-promo .btn { border-color: #fff; }

/* =========================================================================
   ANİMASYON + ERİŞİLEBİLİRLİK
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .07s; }
[data-delay="2"] { transition-delay: .14s; }
[data-delay="3"] { transition-delay: .21s; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
    .marquee__track { animation: none; }
}

/* =========================================================================
   RESPONSIVE — mobile-first genişletmeler
   ========================================================================= */

/* ---- Tablet (≥640px) ---- */
@media (min-width: 640px) {
    .grid--2 { grid-template-columns: repeat(2, 1fr); }
    .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .form__row { grid-template-columns: 1fr 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .bot-promo { flex-direction: row; align-items: center; }
    .bot-promo .btn { margin-left: auto; }
}

/* ---- Desktop (≥980px) ---- */
@media (min-width: 980px) {
    .grid--3 { grid-template-columns: repeat(3, 1fr); }
    .grid--4 { grid-template-columns: repeat(4, 1fr); }
    .hero2__grid { grid-template-columns: 1.15fr 1fr; }
    .media { grid-template-columns: 1.05fr 1fr; }
    .media--rev .media__text { order: 2; }
    .contact-grid { grid-template-columns: 1fr 1.2fr; }
    .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; }

    .topbar { display: block; background: var(--ink); color: var(--cream); font-size: .8rem; border-bottom: var(--bd); margin: -0.7rem 0 .7rem; }
    .site-header { padding-top: 0; }
    .topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .45rem 0; }
    .topbar__contact { display: flex; gap: 1.3rem; flex-wrap: wrap; }
    .topbar__contact a, .topbar__addr { display: inline-flex; align-items: center; gap: .4rem; color: rgba(247,244,238,.75); transition: var(--t); }
    .topbar__contact a:hover { color: var(--gold-400); }
    .topbar__contact .ico { width: 14px; height: 14px; color: var(--gold-400); }
    .topbar__social { display: flex; gap: .5rem; }
    .topbar__social a { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid rgba(247,244,238,.4); transition: var(--t); }
    .topbar__social a:hover { background: var(--gold-500); border-color: var(--gold-500); }
    .topbar__social .ico { width: 14px; height: 14px; }
}

/* ---- Mobil menü (≤979px) ---- */
@media (max-width: 979px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; inset: 0; z-index: 98;
        background: var(--cream); flex-direction: column; align-items: stretch; justify-content: center;
        gap: .3rem; padding: 4.5rem 1.6rem 2rem;
        transform: translateY(-100%); transition: transform .4s var(--ease);
        overflow-y: auto;
    }
    .nav-menu.open { transform: none; }
    .nav-menu > li > a {
        font-size: 1.35rem; padding: .8rem 1rem; border-radius: var(--radius);
        border: var(--bd); background: var(--card); text-align: center; margin-bottom: .35rem;
    }
    .nav-menu > li > a.is-active { background: var(--ink); color: #fff; }
    .nav-cta { margin: .6rem 0 0; }
    .nav-cta .btn { width: 100%; font-size: 1.1rem; padding: 1rem; }
    body.nav-open { overflow: hidden; }
    body.nav-open .nav-toggle { position: relative; z-index: 99; }
    .nav-backdrop { display: none; }
    .hero2__chip--1 { left: 4px; }
    .hero2__chip--2 { right: 4px; }
}

/* ---- Dar mobil (≤620px) ---- */
@media (max-width: 620px) {
    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
    .stat { padding: 1.2rem .7rem; }
    .gallery { columns: 1; }
    .footer__grid { grid-template-columns: 1fr; }
    .cta-band__inner { flex-direction: column; align-items: flex-start; }
    .cta-band .btn { width: 100%; }
    .hero2 h1 { font-size: clamp(2.2rem, 11vw, 3rem); }
    .hero2__actions .btn { flex: 1 1 100%; }
    .hero2__media { width: min(100%, 340px); }
    .hero2__chip b { font-size: 1.2rem; }
    .marquee span { font-size: .82rem; }
    .bot-launch { padding: .7rem .95rem; font-size: .82rem; gap: .45rem; }
    .bot-launch .ico { width: 18px; height: 18px; }
    .bot-panel { left: 8px; right: 8px; width: auto; bottom: 8px; height: min(560px, calc(100dvh - 24px)); }
    .map-embed iframe { height: 280px; }
    .media__badge { padding: .65rem .9rem; }
    .media__badge b { font-size: 1.35rem; }
    .page-hero::after { display: none; }
}
