/* ============================================================
   MOB — Mobilya Kurumsal Tema
   Tüm renkler, tipografi ve ölçüler panelden gelen CSS
   değişkenleriyle beslenir. Hiçbir değer burada sabit değildir.
   ============================================================ */

/* ---------- 1. Değişkenler / Sıfırlama ---------- */
:root {
  /* Renkler — panelden override edilir */
  --c-primary: #a96b2e;
  --c-primary-dark: #8a5522;
  --c-primary-light: #c98f4e;
  --c-accent: #1f6f5c;
  --c-ink: #14171a;
  --c-body: #4a5158;
  --c-muted: #858d95;
  --c-line: #e4ded6;
  --c-bg: #ffffff;
  --c-bg-alt: #f8f6f3;
  --c-bg-deep: #14171a;
  --c-white: #ffffff;

  /* Tipografi */
  --f-heading: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --f-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --fs-base: 16px;
  --lh-base: 1.7;

  /* Ölçü */
  --container: 1280px;
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --sp-section: 110px;
  --sp-section-mob: 64px;

  /* Gölge */
  --sh-xs: 0 1px 2px rgba(16, 20, 24, .05);
  --sh-sm: 0 4px 14px rgba(16, 20, 24, .06);
  --sh-md: 0 14px 40px rgba(16, 20, 24, .09);
  --sh-lg: 0 28px 70px rgba(16, 20, 24, .13);
  --sh-primary: 0 14px 34px rgba(169, 107, 46, .28);

  /* Hareket */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: .42s;

  /* Başlık yüksekliği */
  --header-h: 84px;

  --grad-primary: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
  --grad-ink: linear-gradient(160deg, #1b1f24 0%, var(--c-ink) 100%);
}

/* Koyu tema */
[data-theme="dark"] {
  --c-ink: #f2efe9;
  --c-body: #b4b9be;
  --c-muted: #8b9298;
  --c-line: #2a2f35;
  --c-bg: #0e1013;
  --c-bg-alt: #15181c;
  --c-bg-deep: #0a0c0e;
  --sh-xs: 0 1px 2px rgba(0, 0, 0, .4);
  --sh-sm: 0 4px 14px rgba(0, 0, 0, .35);
  --sh-md: 0 14px 40px rgba(0, 0, 0, .45);
  --sh-lg: 0 28px 70px rgba(0, 0, 0, .55);
}

*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

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

body {
  font-family: var(--f-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--c-body);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading);
  color: var(--c-ink);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 4rem); font-weight: 800; letter-spacing: -.035em; }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

a { color: inherit; text-decoration: none; transition: color .22s var(--ease); }
a:hover { color: var(--c-primary); }

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

::selection { background: var(--c-primary); color: #fff; }

:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Kaydırma çubuğu */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--c-bg-alt); }
::-webkit-scrollbar-thumb { background: var(--c-muted); border-radius: 99px; border: 3px solid var(--c-bg-alt); }
::-webkit-scrollbar-thumb:hover { background: var(--c-primary); }

/* ---------- 2. Yardımcılar ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container-wide { max-width: 1600px; }
.container-narrow { max-width: 900px; }

.section { padding-block: var(--sp-section); position: relative; }
.section-sm { padding-block: calc(var(--sp-section) * .62); }
.bg-alt { background: var(--c-bg-alt); }
.bg-deep { background: var(--c-bg-deep); color: #cfd4d9; }
.bg-deep h1, .bg-deep h2, .bg-deep h3, .bg-deep h4 { color: #fff; }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Bölüm başlığı */
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-heading);
  font-size: .76rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--c-primary);
  margin-bottom: 16px;
}
.sec-head .eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--c-primary); border-radius: 2px;
}
.sec-head.center .eyebrow::after {
  content: ""; width: 26px; height: 2px; background: var(--c-primary); border-radius: 2px;
}
.sec-head h2 { margin-bottom: 18px; }
.sec-head p { font-size: 1.05rem; color: var(--c-body); }
.bg-deep .sec-head p { color: #a8b0b8; }

/* ---------- 3. Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  font-family: var(--f-heading);
  font-size: .92rem; font-weight: 700; letter-spacing: .01em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out),
              background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; transition: transform .3s var(--ease-out); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary { background: var(--c-primary); color: #fff; box-shadow: var(--sh-primary); }
.btn-primary:hover { background: var(--c-primary-dark); color: #fff; box-shadow: 0 18px 40px rgba(169, 107, 46, .36); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-dark { background: var(--c-ink); color: var(--c-bg); }
.btn-dark:hover { background: var(--c-primary); color: #fff; }

.btn-outline { border-color: var(--c-line); color: var(--c-ink); background: transparent; }
.btn-outline:hover { border-color: var(--c-primary); color: var(--c-primary); background: color-mix(in srgb, var(--c-primary) 7%, transparent); }

.btn-ghost-light { border-color: rgba(255, 255, 255, .35); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--c-ink); border-color: #fff; }

.btn-white { background: #fff; color: var(--c-ink); }
.btn-white:hover { background: var(--c-primary); color: #fff; }

.btn-sm { padding: 11px 22px; font-size: .84rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Bağlantı oku */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-heading); font-weight: 700; font-size: .9rem;
  color: var(--c-primary);
}
.link-arrow svg { transition: transform .3s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- 4. Üst bar ---------- */
.topbar {
  background: var(--c-bg-deep);
  color: #9aa2aa;
  font-size: .82rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 44px; flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; color: #9aa2aa; }
.topbar-item:hover { color: #fff; }
.topbar-item svg { color: var(--c-primary); }
.topbar-right { display: flex; align-items: center; gap: 16px; margin-left: auto; }

.socials { display: flex; align-items: center; gap: 6px; }
.socials a {
  width: 32px; height: 32px; display: grid; place-items: center;
  border-radius: 50%; color: #9aa2aa;
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease-out);
}
.socials a:hover { background: var(--c-primary); color: #fff; transform: translateY(-2px); }

/* Dil seçici */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  color: #9aa2aa; font-size: .82rem; font-weight: 600;
  padding: 5px 10px; border-radius: var(--radius-pill);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.lang-btn:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 60;
  min-width: 160px; padding: 8px;
  background: var(--c-bg); border: 1px solid var(--c-line);
  border-radius: var(--radius-sm); box-shadow: var(--sh-md);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .26s var(--ease-out);
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 7px;
  font-size: .87rem; color: var(--c-body);
}
.lang-menu a:hover { background: var(--c-bg-alt); color: var(--c-primary); }
.lang-menu a.active { color: var(--c-primary); font-weight: 700; background: color-mix(in srgb, var(--c-primary) 8%, transparent); }

/* ---------- 5. Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: color-mix(in srgb, var(--c-bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow .3s var(--ease), background-color .3s var(--ease), transform .35s var(--ease);
}
.site-header.scrolled { box-shadow: var(--sh-sm); }
.site-header.hide-up { transform: translateY(-100%); }

.header-inner {
  display: flex; align-items: center; gap: 32px;
  min-height: var(--header-h);
}

/* Logo */
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { max-height: 52px; width: auto; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-name {
  font-family: var(--f-heading); font-weight: 800;
  font-size: 1.32rem; color: var(--c-ink); letter-spacing: -.03em;
}
.brand-tag {
  font-size: .66rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-primary); font-weight: 700;
}
.brand-mark {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--grad-primary); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow: var(--sh-primary);
}

/* Ana menü */
.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 15px;
  font-family: var(--f-heading); font-size: .91rem; font-weight: 600;
  color: var(--c-ink); border-radius: var(--radius-sm);
  position: relative;
}
.main-nav > ul > li > a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 6px;
  height: 2px; background: var(--c-primary); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .32s var(--ease-out);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: var(--c-primary); }
.main-nav > ul > li > a:hover::after,
.main-nav > ul > li.active > a::after { transform: scaleX(1); }
.main-nav .has-sub > a svg { transition: transform .28s var(--ease); }
.main-nav .has-sub:hover > a svg { transform: rotate(180deg); }
.main-nav .badge {
  font-size: .62rem; font-weight: 800; letter-spacing: .04em;
  padding: 2px 7px; border-radius: var(--radius-pill);
  background: var(--c-primary); color: #fff; text-transform: uppercase;
}

/* Açılır menü */
.sub-menu {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 50;
  min-width: 250px; padding: 10px;
  background: var(--c-bg); border: 1px solid var(--c-line);
  border-radius: var(--radius); box-shadow: var(--sh-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .28s var(--ease-out), transform .28s var(--ease-out), visibility .28s;
  max-height: 70vh; overflow-y: auto;
}
.main-nav li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 10px 14px; border-radius: 8px;
  font-size: .89rem; font-weight: 500; color: var(--c-body);
}
.sub-menu a:hover { background: var(--c-bg-alt); color: var(--c-primary); padding-left: 18px; }
.sub-menu .sub-menu {
  top: -10px; left: calc(100% + 6px);
  transform: translateX(12px);
}
.sub-menu li:hover > .sub-menu { transform: translateX(0); }
.sub-menu .has-sub > a svg { transform: rotate(-90deg); }

/* Header aksiyonları */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 50%; color: var(--c-ink);
  border: 1.5px solid var(--c-line);
  transition: all .25s var(--ease);
}
.icon-btn:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); transform: translateY(-2px); }

.menu-toggle { display: none; }

/* Arama */
.search-panel {
  position: fixed; inset: 0; z-index: 1200;
  background: color-mix(in srgb, var(--c-ink) 70%, transparent);
  backdrop-filter: blur(10px);
  display: grid; place-items: start center; padding-top: 18vh;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.search-panel.open { opacity: 1; visibility: visible; }
.search-panel form {
  width: min(680px, 90vw);
  display: flex; align-items: center; gap: 12px;
  background: var(--c-bg); border-radius: var(--radius-lg);
  padding: 8px 8px 8px 26px; box-shadow: var(--sh-lg);
  transform: translateY(-22px); transition: transform .38s var(--ease-out);
}
.search-panel.open form { transform: translateY(0); }
.search-panel input {
  flex: 1; border: 0; outline: 0; background: none;
  font-size: 1.1rem; padding: 16px 0; color: var(--c-ink);
}
.search-panel .btn { border-radius: var(--radius-pill); }
.search-close {
  position: fixed; top: 26px; right: 30px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 255, 255, .12); color: #fff;
  display: grid; place-items: center;
  transition: background-color .25s var(--ease), transform .25s var(--ease-out);
}
.search-close:hover { background: var(--c-primary); transform: rotate(90deg); }

/* ---------- 6. Mobil menü ---------- */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; z-index: 1100;
  width: min(400px, 88vw);
  background: var(--c-bg);
  box-shadow: var(--sh-lg);
  transform: translateX(102%);
  transition: transform .42s var(--ease-out);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--c-line);
  position: sticky; top: 0; background: var(--c-bg); z-index: 2;
}
.mobile-nav-body { padding: 18px 24px 40px; flex: 1; }
.mobile-nav ul li { border-bottom: 1px solid var(--c-line); }
.mobile-nav ul li:last-child { border-bottom: 0; }
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 0; font-family: var(--f-heading);
  font-weight: 600; font-size: 1rem; color: var(--c-ink);
}
.mobile-nav a:hover { color: var(--c-primary); }
.mobile-nav .sub-toggle {
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 50%; color: var(--c-muted);
  transition: all .28s var(--ease);
}
.mobile-nav .sub-toggle svg { transition: transform .3s var(--ease); }
.mobile-nav li.open > .sub-toggle { background: var(--c-primary); color: #fff; }
.mobile-nav li.open > .sub-toggle svg { transform: rotate(180deg); }
.mobile-nav .sub-menu-m {
  max-height: 0; overflow: hidden;
  transition: max-height .36s var(--ease-out);
  padding-left: 16px;
}
.mobile-nav li.open > .sub-menu-m { max-height: 800px; }
.mobile-nav .sub-menu-m a { font-size: .93rem; font-weight: 500; padding: 11px 0; color: var(--c-body); }
.mobile-nav-foot { padding: 22px 24px 30px; border-top: 1px solid var(--c-line); background: var(--c-bg-alt); }
.mobile-nav-foot .btn { margin-bottom: 10px; }
.mobile-nav-contact { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.mobile-nav-contact a { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 500; padding: 0; }
.mobile-nav-contact svg { color: var(--c-primary); }

.nav-overlay {
  position: fixed; inset: 0; z-index: 1050;
  background: rgba(10, 12, 14, .55);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* ---------- 7. Hero slider ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h) - 44px);
  background: var(--c-bg-deep);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide-bg { position: absolute; inset: 0; }
.hero-slide-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 7s linear;
}
.hero-slide.active .hero-slide-bg img { transform: scale(1); }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg,
      rgba(10, 12, 14, calc(var(--ov, .55) * 1.35)) 0%,
      rgba(10, 12, 14, calc(var(--ov, .55) * .85)) 42%,
      rgba(10, 12, 14, calc(var(--ov, .55) * .3)) 100%);
}
.hero-slide.text-center::after {
  background: linear-gradient(180deg,
      rgba(10, 12, 14, calc(var(--ov, .55) * .8)) 0%,
      rgba(10, 12, 14, var(--ov, .55)) 50%,
      rgba(10, 12, 14, calc(var(--ov, .55) * .85)) 100%);
}
.hero-slide.text-right::after {
  background: linear-gradient(260deg,
      rgba(10, 12, 14, calc(var(--ov, .55) * 1.35)) 0%,
      rgba(10, 12, 14, calc(var(--ov, .55) * .85)) 42%,
      rgba(10, 12, 14, calc(var(--ov, .55) * .3)) 100%);
}
.hero-inner {
  position: relative; z-index: 3;
  width: 100%;
  padding-block: 90px 120px;
}
.hero-content { max-width: 720px; }
.hero-slide.text-center .hero-content { margin-inline: auto; text-align: center; }
.hero-slide.text-right .hero-content { margin-left: auto; text-align: right; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 9px 20px 9px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(8px);
  color: #fff; font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--c-primary);
  box-shadow: 0 0 0 0 rgba(169, 107, 46, .6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(169, 107, 46, .6); }
  70% { box-shadow: 0 0 0 11px rgba(169, 107, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(169, 107, 46, 0); }
}
.hero-title {
  color: #fff; font-size: clamp(2.2rem, 5.6vw, 4.35rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.08;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: normal;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  color: #c8ced4; font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 580px; margin-bottom: 38px;
}
.hero-slide.text-center .hero-sub { margin-inline: auto; }
.hero-slide.text-right .hero-sub { margin-left: auto; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-slide.text-center .hero-btns { justify-content: center; }
.hero-slide.text-right .hero-btns { justify-content: flex-end; }

/* Slider kontrolleri */
.hero-nav {
  position: absolute; bottom: 46px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; align-items: center; gap: 22px;
}
.hero-arrows { position: absolute; z-index: 10; right: 40px; bottom: 46px; display: flex; gap: 10px; }
.hero-arrow {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: #fff; display: grid; place-items: center;
  backdrop-filter: blur(8px); background: rgba(255, 255, 255, .06);
  transition: all .3s var(--ease);
}
.hero-arrow:hover { background: var(--c-primary); border-color: var(--c-primary); transform: scale(1.08); }

.hero-dots { display: flex; align-items: center; gap: 11px; }
.hero-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  transition: all .35s var(--ease-out); position: relative;
}
.hero-dot.active { width: 34px; border-radius: 99px; background: var(--c-primary); }
.hero-dot:hover { background: rgba(255, 255, 255, .7); }
.hero-dot.active:hover { background: var(--c-primary); }

.hero-counter {
  color: rgba(255, 255, 255, .65); font-family: var(--f-heading);
  font-size: .82rem; font-weight: 700; letter-spacing: .1em;
  min-width: 62px;
}
.hero-counter b { color: #fff; font-size: 1.05rem; }

.scroll-cue {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 9px;
  color: rgba(255, 255, 255, .6); font-size: .68rem;
  letter-spacing: .24em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue .line {
  width: 1.5px; height: 54px; background: rgba(255, 255, 255, .25);
  position: relative; overflow: hidden; border-radius: 2px;
}
.scroll-cue .line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--c-primary);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.hero-progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(255, 255, 255, .12); z-index: 11;
}
.hero-progress span {
  display: block; height: 100%; width: 0;
  background: var(--grad-primary);
}

/* ---------- 8. Sayfa başlığı (iç sayfalar) ---------- */
.page-hero {
  position: relative;
  padding-block: 88px 78px;
  background: var(--grad-ink);
  overflow: hidden;
  color: #fff;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(169, 107, 46, .22) 0%, transparent 45%),
    radial-gradient(circle at 82% 70%, rgba(169, 107, 46, .14) 0%, transparent 45%);
}
.page-hero.has-image::after {
  content: ""; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .28;
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4.2vw, 3.1rem); margin-bottom: 14px; }
.page-hero p { color: #b6bcc3; max-width: 680px; font-size: 1.03rem; }

.breadcrumb {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  font-size: .84rem; color: #8d959d; margin-bottom: 20px;
}
.breadcrumb a { color: #b6bcc3; }
.breadcrumb a:hover { color: var(--c-primary-light); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--c-primary-light); font-weight: 600; }

/* ---------- 9. Hakkımızda ---------- */
.about-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 76px; align-items: center;
}
.about-media { position: relative; }
.about-media .main-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--sh-lg); position: relative;
}
.about-media .main-img img { width: 100%; aspect-ratio: 4/4.4; object-fit: cover; }
.about-media .float-img {
  position: absolute; right: -34px; bottom: -40px;
  width: 56%; border-radius: var(--radius);
  overflow: hidden; border: 7px solid var(--c-bg);
  box-shadow: var(--sh-md);
}
.about-media .float-img img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.about-badge {
  position: absolute; left: -26px; top: 38px;
  background: var(--grad-primary); color: #fff;
  padding: 22px 26px; border-radius: var(--radius);
  box-shadow: var(--sh-primary); text-align: center; z-index: 3;
}
.about-badge b {
  display: block; font-family: var(--f-heading);
  font-size: 2.5rem; font-weight: 800; line-height: 1; letter-spacing: -.04em;
}
.about-badge span { font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; opacity: .92; }

.about-text h2 { margin-bottom: 20px; }
.about-text > p { margin-bottom: 18px; }
.about-list { margin: 30px 0 34px; display: grid; gap: 15px; }
.about-list li { display: flex; gap: 13px; align-items: flex-start; }
.about-list .tick {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: color-mix(in srgb, var(--c-primary) 13%, transparent);
  color: var(--c-primary); display: grid; place-items: center; margin-top: 1px;
}
.about-list strong { color: var(--c-ink); display: block; font-size: .97rem; }
.about-list p { font-size: .89rem; margin: 2px 0 0; }

/* İstatistikler */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--c-line);
  border: 1px solid var(--c-line); border-radius: var(--radius);
  overflow: hidden; margin-top: 34px;
}
.stat { background: var(--c-bg); padding: 30px 24px; text-align: center; }
.stat b {
  display: block; font-family: var(--f-heading);
  font-size: 2.35rem; font-weight: 800; color: var(--c-primary);
  line-height: 1; letter-spacing: -.04em;
}
.stat span { font-size: .82rem; color: var(--c-muted); margin-top: 8px; display: block; }

/* ---------- 10. Kart ızgaraları ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Kategori kartı */
.cat-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--c-bg-alt); display: block;
  box-shadow: var(--sh-xs);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.cat-card-img { aspect-ratio: 4/4.6; overflow: hidden; position: relative; }
.cat-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.cat-card:hover .cat-card-img img { transform: scale(1.09); }
.cat-card-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(12, 14, 17, .88) 100%);
  transition: opacity .4s var(--ease);
}
.cat-card-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 28px; z-index: 2; color: #fff;
}
.cat-card-body h3 { color: #fff; font-size: 1.28rem; margin-bottom: 8px; }
.cat-card-body p {
  color: rgba(255, 255, 255, .74); font-size: .87rem;
  margin-bottom: 0; max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .45s var(--ease-out), opacity .35s var(--ease), margin .4s var(--ease);
}
.cat-card:hover .cat-card-body p { max-height: 80px; opacity: 1; margin-bottom: 14px; }
.cat-card-count {
  position: absolute; top: 20px; right: 20px; z-index: 3;
  background: rgba(255, 255, 255, .93); color: var(--c-ink);
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: .75rem; font-weight: 700; font-family: var(--f-heading);
  backdrop-filter: blur(6px);
}
.cat-card-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .28);
  display: grid; place-items: center; color: #fff;
  backdrop-filter: blur(6px);
  transition: all .35s var(--ease);
}
.cat-card:hover .cat-card-arrow { background: var(--c-primary); border-color: var(--c-primary); transform: rotate(45deg); }
.cat-card-icon {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  width: 48px; height: 48px; border-radius: 13px;
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .2);
  display: grid; place-items: center; color: #fff;
  backdrop-filter: blur(8px);
  transition: background-color .35s var(--ease);
}
.cat-card:hover .cat-card-icon { background: var(--c-primary); border-color: var(--c-primary); }

/* ---------- 11. Özellik kutuları ---------- */
.feature-card {
  background: var(--c-bg); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 36px 30px;
  position: relative; overflow: hidden;
  transition: transform .42s var(--ease-out), box-shadow .42s var(--ease-out), border-color .3s var(--ease);
}
.feature-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.feature-card:hover { transform: translateY(-7px); box-shadow: var(--sh-md); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 60px; height: 60px; border-radius: 17px;
  background: color-mix(in srgb, var(--c-primary) 11%, transparent);
  color: var(--c-primary); display: grid; place-items: center;
  margin-bottom: 22px;
  transition: background-color .35s var(--ease), color .35s var(--ease), transform .45s var(--ease-out);
}
.feature-card:hover .feature-icon { background: var(--grad-primary); color: #fff; transform: rotate(-6deg) scale(1.06); }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 11px; }
.feature-card p { font-size: .9rem; margin: 0; }
.feature-num {
  position: absolute; right: 24px; top: 20px;
  font-family: var(--f-heading); font-size: 3.4rem; font-weight: 800;
  color: var(--c-line); line-height: 1; letter-spacing: -.05em;
  opacity: .7; transition: color .35s var(--ease);
}
.feature-card:hover .feature-num { color: color-mix(in srgb, var(--c-primary) 22%, transparent); }

/* ---------- 12. Hizmet kartı ---------- */
.service-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; min-height: 340px;
  display: flex; align-items: flex-end;
  background: var(--c-bg-deep);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.service-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .5;
  transition: opacity .5s var(--ease), transform .8s var(--ease-out);
}
.service-card:hover img { opacity: .62; transform: scale(1.07); }
.service-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 14, .25) 0%, rgba(10, 12, 14, .93) 82%);
}
.service-body { position: relative; z-index: 2; padding: 32px 30px; color: #fff; width: 100%; }
.service-body .icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--grad-primary); color: #fff;
  display: grid; place-items: center; margin-bottom: 18px;
}
.service-body h3 { color: #fff; font-size: 1.18rem; margin-bottom: 9px; }
.service-body p { color: rgba(255, 255, 255, .72); font-size: .88rem; margin-bottom: 16px; }
.service-body .link-arrow { color: var(--c-primary-light); }

/* ---------- 13. Proje kartı ---------- */
.proj-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  display: block; aspect-ratio: 4/3.4;
  background: var(--c-bg-alt);
}
.proj-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .85s var(--ease-out); }
.proj-card:hover img { transform: scale(1.08); }
.proj-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 12, 14, .9) 100%);
}
.proj-body { position: absolute; inset: auto 0 0 0; padding: 28px; z-index: 2; color: #fff; }
.proj-meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--c-primary-light); margin-bottom: 10px;
}
.proj-body h3 { color: #fff; font-size: 1.18rem; margin-bottom: 6px; }
.proj-body p { color: rgba(255, 255, 255, .7); font-size: .85rem; margin: 0; }
.proj-card.wide { grid-column: span 2; aspect-ratio: 8/3.6; }

/* ---------- 14. Referans logoları ---------- */
.logo-marquee { overflow: hidden; position: relative; padding-block: 12px; }
.logo-marquee::before, .logo-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 130px; z-index: 3; pointer-events: none;
}
.logo-marquee::before { left: 0; background: linear-gradient(90deg, var(--c-bg) 0%, transparent 100%); }
.logo-marquee::after { right: 0; background: linear-gradient(270deg, var(--c-bg) 0%, transparent 100%); }
.bg-alt .logo-marquee::before { background: linear-gradient(90deg, var(--c-bg-alt) 0%, transparent 100%); }
.bg-alt .logo-marquee::after { background: linear-gradient(270deg, var(--c-bg-alt) 0%, transparent 100%); }
.logo-track { display: flex; gap: 26px; width: max-content; animation: marquee 42s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.logo-item {
  flex-shrink: 0;
  width: 190px; height: 96px;
  display: grid; place-items: center; padding: 20px;
  background: var(--c-bg); border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease), border-color .3s var(--ease);
}
.logo-item:hover { transform: translateY(-5px); box-shadow: var(--sh-sm); border-color: var(--c-primary); }
.logo-item img {
  max-width: 100%; max-height: 52px; object-fit: contain;
  filter: grayscale(1); opacity: .62;
  transition: filter .35s var(--ease), opacity .35s var(--ease);
}
.logo-item:hover img { filter: grayscale(0); opacity: 1; }
.logo-text {
  font-family: var(--f-heading); font-weight: 800; font-size: 1.02rem;
  color: var(--c-muted); text-align: center; letter-spacing: -.02em;
  transition: color .35s var(--ease);
}
.logo-item:hover .logo-text { color: var(--c-primary); }

/* ---------- 15. Müşteri yorumları ---------- */
.testi-wrap { position: relative; }
.testi-viewport { overflow: hidden; }
.testi-track { display: flex; transition: transform .6s var(--ease-out); }
.testi-slide { flex: 0 0 100%; padding-inline: 12px; }
.testi-card {
  background: var(--c-bg); border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); padding: 48px 46px;
  position: relative; max-width: 880px; margin-inline: auto;
  box-shadow: var(--sh-sm);
}
.testi-card .quote-mark {
  position: absolute; top: 26px; right: 34px;
  color: color-mix(in srgb, var(--c-primary) 15%, transparent);
}
.testi-stars { display: flex; gap: 3px; color: #e0a33a; margin-bottom: 20px; }
.testi-text {
  font-family: var(--f-heading); font-size: clamp(1.05rem, 2vw, 1.36rem);
  line-height: 1.62; color: var(--c-ink); font-weight: 500;
  letter-spacing: -.015em; margin-bottom: 30px;
}
.testi-person { display: flex; align-items: center; gap: 15px; }
.testi-avatar {
  width: 54px; height: 54px; border-radius: 50%; overflow: hidden;
  background: var(--grad-primary); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
  font-family: var(--f-heading); font-weight: 800; font-size: 1.15rem;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-person strong { display: block; color: var(--c-ink); font-family: var(--f-heading); font-size: .99rem; }
.testi-person span { font-size: .84rem; color: var(--c-muted); }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 38px; }
.testi-ctrl {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--c-line); color: var(--c-ink);
  display: grid; place-items: center;
  transition: all .28s var(--ease);
}
.testi-ctrl:hover { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }

/* ---------- 16. SSS ---------- */
.faq-list { max-width: 880px; margin-inline: auto; display: grid; gap: 14px; }
.faq-group-title {
  font-family: var(--f-heading); font-size: .78rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; color: var(--c-primary);
  margin: 32px 0 4px;
}
.faq-group-title:first-child { margin-top: 0; }
.faq-item {
  background: var(--c-bg); border: 1px solid var(--c-line);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-item.open { border-color: var(--c-primary); box-shadow: var(--sh-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 22px 26px; text-align: left;
  font-family: var(--f-heading); font-size: 1.02rem; font-weight: 700;
  color: var(--c-ink);
  transition: color .25s var(--ease);
}
.faq-q:hover { color: var(--c-primary); }
.faq-sign {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--c-bg-alt); color: var(--c-ink);
  display: grid; place-items: center;
  transition: all .35s var(--ease);
}
.faq-item.open .faq-sign { background: var(--c-primary); color: #fff; transform: rotate(180deg); }
.faq-sign .v { display: none; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .42s var(--ease-out);
}
.faq-a-inner { padding: 0 26px 26px; color: var(--c-body); font-size: .94rem; }
.faq-a-inner p { margin-bottom: 12px; }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ---------- 17. CTA / Teklif ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--grad-ink);
  color: #fff; padding: 68px 60px;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(169, 107, 46, .3) 0%, transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(169, 107, 46, .2) 0%, transparent 42%);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: center; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: #b3bac1; margin-bottom: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

/* ---------- 18. Formlar ---------- */
.form-card {
  background: var(--c-bg); border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); padding: 42px;
  box-shadow: var(--sh-sm);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--f-heading); font-size: .84rem; font-weight: 700;
  color: var(--c-ink);
}
.field label .req { color: var(--c-primary); margin-left: 3px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 17px;
  background: var(--c-bg-alt);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--c-ink); font-size: .94rem;
  transition: border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
  font-family: var(--f-body);
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23858d95' 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: 44px; cursor: pointer;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-primary); background: var(--c-bg);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--c-primary) 12%, transparent);
}
.field input::placeholder, .field textarea::placeholder { color: var(--c-muted); }
.field.error input, .field.error select, .field.error textarea { border-color: #c0392b; }
.field-error { font-size: .78rem; color: #c0392b; display: none; }
.field.error .field-error { display: block; }

.check-row { display: flex; gap: 11px; align-items: flex-start; grid-column: 1 / -1; }
.check-row input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--c-primary); flex-shrink: 0; cursor: pointer; }
.check-row label { font-size: .86rem; font-weight: 500; color: var(--c-body); cursor: pointer; }
.check-row a { color: var(--c-primary); text-decoration: underline; }

.alert {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px 20px; border-radius: var(--radius-sm);
  font-size: .9rem; margin-bottom: 24px;
}
.alert svg { flex-shrink: 0; margin-top: 2px; }
.alert-success { background: #e8f5ee; color: #1a6b47; border: 1px solid #b9e0cc; }
.alert-error { background: #fdecea; color: #a3281b; border: 1px solid #f5c6c1; }
.alert-info { background: #eaf1fb; color: #1e4f8f; border: 1px solid #c3d8f2; }
[data-theme="dark"] .alert-success { background: rgba(31, 138, 91, .14); color: #6fd6a4; border-color: rgba(31, 138, 91, .3); }
[data-theme="dark"] .alert-error { background: rgba(192, 57, 43, .14); color: #f2918a; border-color: rgba(192, 57, 43, .3); }
[data-theme="dark"] .alert-info { background: rgba(46, 108, 190, .14); color: #8fbaf0; border-color: rgba(46, 108, 190, .3); }

/* ---------- 19. İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 56px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex; gap: 17px; align-items: flex-start;
  padding: 24px; background: var(--c-bg);
  border: 1px solid var(--c-line); border-radius: var(--radius);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease), border-color .3s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--sh-sm); border-color: var(--c-primary); }
.contact-card .ci {
  width: 48px; height: 48px; border-radius: 13px; flex-shrink: 0;
  background: color-mix(in srgb, var(--c-primary) 11%, transparent);
  color: var(--c-primary); display: grid; place-items: center;
}
.contact-card h4 { font-size: .99rem; margin-bottom: 5px; }
.contact-card p, .contact-card a { font-size: .9rem; color: var(--c-body); margin: 0; word-break: break-word; }
.contact-card a:hover { color: var(--c-primary); }

.map-embed {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--c-line); line-height: 0;
  box-shadow: var(--sh-sm);
  background: var(--c-bg-alt);
}
.map-embed iframe { width: 100%; height: 440px; border: 0; display: block; filter: grayscale(.28); transition: filter .4s var(--ease); }
.map-embed:hover iframe { filter: grayscale(0); }

/* ---------- 20. Sekmeler / filtre ---------- */
.filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 42px;
}
.filter-tabs { display: flex; gap: 9px; flex-wrap: wrap; }
.filter-tab {
  padding: 11px 22px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--c-line); background: var(--c-bg);
  font-family: var(--f-heading); font-size: .87rem; font-weight: 600;
  color: var(--c-body);
  transition: all .28s var(--ease);
}
.filter-tab:hover { border-color: var(--c-primary); color: var(--c-primary); transform: translateY(-2px); }
.filter-tab.active { background: var(--c-primary); border-color: var(--c-primary); color: #fff; box-shadow: var(--sh-primary); }

.toolbar-right { display: flex; align-items: center; gap: 14px; }
.count-label { font-size: .87rem; color: var(--c-muted); }
.count-label b { color: var(--c-ink); }


/* ---------- 21. Sayfalama ---------- */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 7px; margin-top: 60px; flex-wrap: wrap;
}
.pagination a, .pagination span {
  min-width: 44px; height: 44px; padding-inline: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--c-line);
  font-family: var(--f-heading); font-weight: 700; font-size: .9rem;
  color: var(--c-body);
  transition: all .26s var(--ease);
}
.pagination a:hover { border-color: var(--c-primary); color: var(--c-primary); transform: translateY(-2px); }
.pagination .active { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }
.pagination .dots { border: 0; color: var(--c-muted); }

/* ---------- 22. Ürün detay ---------- */
.product-detail { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: start; }
.gallery-main {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--c-bg-alt); border: 1px solid var(--c-line);
  aspect-ratio: 1/1; position: relative; cursor: zoom-in;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.gallery-main:hover img { transform: scale(1.04); }
.gallery-thumbs {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px; margin-top: 14px;
}
.gallery-thumb {
  aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden;
  border: 2px solid transparent; background: var(--c-bg-alt);
  transition: border-color .25s var(--ease), transform .3s var(--ease-out);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover { transform: translateY(-3px); }
.gallery-thumb.active { border-color: var(--c-primary); }

.pd-cat {
  font-size: .76rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--c-primary); margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 8px;
}
.pd-cat a { color: inherit; }
.pd-title { font-size: clamp(1.55rem, 3vw, 2.2rem); margin-bottom: 16px; }
.pd-price-row {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 22px 0; margin-bottom: 22px; border-block: 1px solid var(--c-line);
}
.pd-price { font-family: var(--f-heading); font-size: 1.85rem; font-weight: 800; color: var(--c-ink); letter-spacing: -.03em; }
.pd-desc { font-size: 1rem; margin-bottom: 26px; }
.pd-desc p { margin-bottom: 13px; }

.spec-table { margin-bottom: 28px; }
.spec-table tr { border-bottom: 1px solid var(--c-line); }
.spec-table tr:last-child { border-bottom: 0; }
.spec-table th, .spec-table td { padding: 13px 0; text-align: left; font-size: .92rem; vertical-align: top; }
.spec-table th {
  width: 42%; color: var(--c-muted); font-weight: 600;
  font-family: var(--f-heading); font-size: .85rem;
}
.spec-table td { color: var(--c-ink); font-weight: 600; }

.feature-list { display: grid; gap: 12px; margin-bottom: 28px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .93rem; }
.feature-list .tick {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: color-mix(in srgb, var(--c-primary) 13%, transparent);
  color: var(--c-primary); display: grid; place-items: center;
}

/* Üretim bilgisi şeridi (fiyat satırı yerine) */
.pd-meta-item { display: flex; align-items: center; gap: 12px; color: var(--c-primary); }
.pd-meta-item > svg { flex-shrink: 0; }
.pd-meta-item span { display: flex; flex-direction: column; }
.pd-meta-item b {
  font-family: var(--f-heading); font-size: .95rem; font-weight: 700;
  color: var(--c-ink); line-height: 1.3;
}
.pd-meta-item small { font-size: .78rem; color: var(--c-muted); }

.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.pd-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: .85rem; color: var(--c-muted); padding-top: 22px; border-top: 1px solid var(--c-line); }
.pd-meta span { display: inline-flex; align-items: center; gap: 7px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8, 9, 11, .94);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .32s var(--ease), visibility .32s;
  padding: 40px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute; top: 26px; right: 30px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 255, 255, .1); color: #fff;
  display: grid; place-items: center;
  transition: background-color .25s var(--ease), transform .25s var(--ease-out);
}
.lightbox-close:hover { background: var(--c-primary); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255, 255, 255, .1); color: #fff;
  display: grid; place-items: center;
  transition: background-color .25s var(--ease);
}
.lightbox-nav:hover { background: var(--c-primary); }
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }

/* ---------- 23. Galeri ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid .g-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 1/1; cursor: zoom-in; background: var(--c-bg-alt);
}
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.gallery-grid .g-item:hover img { transform: scale(1.09); }
.gallery-grid .g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 12, 14, .7) 100%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.gallery-grid .g-item:hover::after { opacity: 1; }
.gallery-grid .g-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px;
  color: #fff; font-size: .86rem; font-weight: 600; z-index: 2;
  transform: translateY(10px); opacity: 0;
  transition: all .35s var(--ease-out);
}
.gallery-grid .g-item:hover .g-cap { transform: translateY(0); opacity: 1; }
.gallery-grid .g-item.tall { grid-row: span 2; aspect-ratio: 1/2.06; }

/* ---------- 24. Ekip ---------- */
/* Ekip ızgarası — kaç üye olursa olsun grup ortalanır, aralıklar eşit kalır */
.team-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.team-grid .team-card { flex: 1 1 240px; max-width: 300px; }
.team-card { text-align: center; }
.team-photo {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1.2;
  background: var(--c-bg-alt); margin-bottom: 20px; position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-socials {
  position: absolute; bottom: 16px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
  opacity: 0; transform: translateY(14px);
  transition: all .38s var(--ease-out);
}
.team-card:hover .team-socials { opacity: 1; transform: translateY(0); }
.team-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, .95); color: var(--c-ink);
  display: grid; place-items: center;
  transition: all .25s var(--ease);
}
.team-socials a:hover { background: var(--c-primary); color: #fff; }
.team-card h3 { font-size: 1.08rem; margin-bottom: 5px; }
.team-card .role { font-size: .86rem; color: var(--c-primary); font-weight: 600; font-family: var(--f-heading); }

/* ---------- 25. Zengin metin (sayfa içeriği) ---------- */
.rich-text { font-size: 1.02rem; line-height: 1.8; }
.rich-text > * + * { margin-top: 20px; }
.rich-text h2 { font-size: 1.7rem; margin-top: 44px; }
.rich-text h3 { font-size: 1.32rem; margin-top: 36px; }
.rich-text h4 { font-size: 1.12rem; margin-top: 28px; }
.rich-text ul, .rich-text ol { padding-left: 24px; display: grid; gap: 9px; }
.rich-text ul li { list-style: none; position: relative; padding-left: 22px; }
.rich-text ul li::before {
  content: ""; position: absolute; left: 0; top: .65em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--c-primary);
}
.rich-text ol { list-style: decimal; }
.rich-text ol li { padding-left: 5px; }
.rich-text ol li::marker { color: var(--c-primary); font-weight: 700; }
.rich-text blockquote {
  border-left: 4px solid var(--c-primary);
  padding: 6px 0 6px 26px; margin-block: 30px;
  font-family: var(--f-heading); font-size: 1.16rem;
  font-style: italic; color: var(--c-ink); font-weight: 500;
}
.rich-text img { border-radius: var(--radius); margin-block: 28px; }
.rich-text a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }
.rich-text table { border: 1px solid var(--c-line); border-radius: var(--radius-sm); overflow: hidden; }
.rich-text th, .rich-text td { padding: 13px 17px; border-bottom: 1px solid var(--c-line); text-align: left; font-size: .93rem; }
.rich-text th { background: var(--c-bg-alt); font-family: var(--f-heading); font-weight: 700; color: var(--c-ink); }
.rich-text iframe { width: 100%; aspect-ratio: 16/9; height: auto; border-radius: var(--radius); border: 0; }

/* ---------- 26. Yan panel / sidebar ---------- */
.sidebar { display: grid; gap: 24px; position: sticky; top: calc(var(--header-h) + 24px); }
.side-card {
  background: var(--c-bg); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 28px;
}
.side-card h3 { font-size: 1.05rem; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--c-line); }
.side-list { display: grid; gap: 4px; }
.side-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 14px; border-radius: var(--radius-sm);
  font-size: .91rem; font-weight: 500; color: var(--c-body);
  transition: all .25s var(--ease);
}
.side-list a:hover, .side-list a.active { background: var(--c-bg-alt); color: var(--c-primary); padding-left: 18px; }
.side-list .n {
  font-size: .76rem; background: var(--c-bg-alt); color: var(--c-muted);
  padding: 2px 9px; border-radius: var(--radius-pill); font-weight: 700;
}
.side-list a:hover .n, .side-list a.active .n { background: var(--c-primary); color: #fff; }

.content-layout { display: grid; grid-template-columns: 1fr 330px; gap: 52px; align-items: start; }

/* ---------- 27. Footer ---------- */
.site-footer { background: var(--c-bg-deep); color: #98a0a8; padding-top: 82px; position: relative; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 107, 46, .5), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 52px; padding-bottom: 62px;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand p { font-size: .91rem; margin: 22px 0 24px; max-width: 340px; line-height: 1.75; }
.footer-title {
  color: #fff; font-family: var(--f-heading); font-size: .96rem;
  font-weight: 700; margin-bottom: 24px; position: relative; padding-bottom: 14px;
}
.footer-title::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 30px; height: 2px; background: var(--c-primary); border-radius: 2px;
}
.footer-links { display: grid; gap: 12px; }
.footer-links a {
  font-size: .9rem; color: #98a0a8; display: inline-flex; align-items: center; gap: 9px;
  transition: all .25s var(--ease);
}
.footer-links a::before {
  content: ""; width: 0; height: 1.5px; background: var(--c-primary);
  transition: width .28s var(--ease-out);
}
.footer-links a:hover { color: #fff; }
.footer-links a:hover::before { width: 14px; }

.footer-contact { display: grid; gap: 16px; }
.footer-contact li { display: flex; gap: 13px; align-items: flex-start; font-size: .9rem; }
.footer-contact svg { color: var(--c-primary); flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: #98a0a8; }
.footer-contact a:hover { color: #fff; }

.newsletter { margin-top: 24px; }
.newsletter form {
  display: flex; gap: 8px; background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius-pill);
  padding: 5px 5px 5px 20px;
  transition: border-color .25s var(--ease);
}
.newsletter form:focus-within { border-color: var(--c-primary); }
.newsletter input {
  flex: 1; background: none; border: 0; outline: 0;
  color: #fff; font-size: .89rem; min-width: 0;
}
.newsletter input::placeholder { color: #6d757d; }
.newsletter button {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--c-primary); color: #fff;
  display: grid; place-items: center;
  transition: background-color .25s var(--ease), transform .25s var(--ease-out);
}
.newsletter button:hover { background: var(--c-primary-dark); transform: scale(1.06); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-block: 26px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; font-size: .85rem;
}
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }

/* Yukarı çık */
.to-top {
  position: fixed; right: 28px; bottom: 28px; z-index: 800;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--c-primary); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--sh-primary);
  opacity: 0; visibility: hidden; transform: translateY(18px);
  transition: all .35s var(--ease-out);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--c-primary-dark); transform: translateY(-4px); }

/* WhatsApp / hızlı iletişim */
.float-contact { position: fixed; left: 28px; bottom: 28px; z-index: 800; display: flex; flex-direction: column; gap: 10px; }
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--sh-md);
  transition: transform .3s var(--ease-out), background-color .25s var(--ease);
  position: relative;
}
.float-btn:hover { transform: translateY(-4px) scale(1.06); color: #fff; }
.float-btn.wa { background: #25d366; }
.float-btn.tel { background: var(--c-primary); }
.float-btn::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid currentColor; opacity: .5;
  animation: ring 2.4s var(--ease) infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* Çerez bildirimi */
.cookie-bar {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 140%);
  z-index: 1500; width: min(920px, calc(100vw - 40px));
  background: var(--c-bg); border: 1px solid var(--c-line);
  border-radius: var(--radius); box-shadow: var(--sh-lg);
  padding: 22px 26px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  transition: transform .55s var(--ease-out);
}
.cookie-bar.show { transform: translate(-50%, 0); }
.cookie-bar p { flex: 1; font-size: .89rem; margin: 0; min-width: 240px; }
.cookie-bar a { color: var(--c-primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }

/* Scroll ilerleme çubuğu */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--grad-primary); z-index: 2000;
  transition: width .1s linear;
}

/* ---------- 28. Ortak bileşenler ---------- */
.empty-state { text-align: center; padding: 80px 24px; color: var(--c-muted); }
.empty-state svg { margin: 0 auto 20px; color: var(--c-line); }
.empty-state h3 { color: var(--c-ink); margin-bottom: 10px; }
.empty-state p { max-width: 420px; margin-inline: auto; }

.skeleton {
  background: linear-gradient(90deg, var(--c-bg-alt) 25%, var(--c-line) 50%, var(--c-bg-alt) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { to { background-position: -200% 0; } }

.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-size: .78rem; font-weight: 600; font-family: var(--f-heading);
  padding: 6px 13px; border-radius: var(--radius-pill);
  background: var(--c-bg-alt); color: var(--c-body);
  border: 1px solid var(--c-line);
}

/* Özel imleç (panelden açılır) */
body.custom-cursor { cursor: none; }
body.custom-cursor a, body.custom-cursor button,
body.custom-cursor input, body.custom-cursor textarea, body.custom-cursor select { cursor: none; }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; opacity: 0;
  transition: opacity .25s var(--ease);
}
.cursor-dot {
  width: 6px; height: 6px; background: var(--c-primary);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--c-primary);
  transform: translate(-50%, -50%);
  transition: width .28s var(--ease-out), height .28s var(--ease-out),
              background-color .28s var(--ease), opacity .25s var(--ease),
              border-color .28s var(--ease);
}
.cursor-ring.hovering {
  width: 60px; height: 60px;
  background: color-mix(in srgb, var(--c-primary) 15%, transparent);
  border-color: var(--c-primary);
}
.cursor-ring.text-hover { width: 4px; height: 34px; border-radius: 2px; background: var(--c-primary); }
body.custom-cursor.mouse-active .cursor-dot,
body.custom-cursor.mouse-active .cursor-ring { opacity: 1; }

/* ---------- 29. Animasyonlar ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-42px); }
[data-reveal="right"] { transform: translateX(42px); }
[data-reveal="zoom"] { transform: scale(.93); }
[data-reveal="fade"] { transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- 30. Dokunmatik Cihazlar & Duyarlı (responsive) ---------- */

/* Dokunmatik ekranlar (imleç ve hover optimizasyonu) */
@media (hover: none) and (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
  body.custom-cursor, body.custom-cursor * { cursor: auto !important; }

  /* Dokunmatik ekranlarda gizlenen bilgileri okunabilir yap */
  .cat-card-body p {
    max-height: 52px;
    opacity: .92;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .cat-card-arrow { background: var(--c-primary); border-color: var(--c-primary); }
  .team-socials { opacity: 1; transform: translateY(0); }
  .gallery-grid .g-item::after { opacity: .75; }
  .gallery-grid .g-cap { opacity: 1; transform: translateY(0); }
  .logo-item img { filter: grayscale(0); opacity: .88; }
}

@media (max-width: 1200px) {
  .main-nav > ul > li > a { padding-inline: 11px; font-size: .87rem; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1.3fr; gap: 40px; }
  .footer-grid > *:nth-child(3) { grid-column: 1; }
  .about-grid { gap: 52px; }
}

@media (max-width: 1024px) {
  :root { --sp-section: 72px; --header-h: 72px; }
  .main-nav { display: none; }
  .menu-toggle { display: grid; }
  .header-actions .btn-primary { display: none; }
  @media (min-width: 440px) {
    .header-actions .btn-primary {
      display: inline-flex !important;
      padding: 9px 16px;
      font-size: .82rem;
    }
  }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-media { max-width: 520px; margin-inline: auto; }
  .about-badge { left: 14px; top: 14px; padding: 18px 22px; }
  .about-media .float-img { right: 0; bottom: -20px; width: 50%; border-width: 5px; }
  .content-layout { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { position: static; }
  .product-detail { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .cta-actions { justify-content: center; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .proj-card.wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-grid > *:nth-child(3) { grid-column: auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .scroll-cue { display: none; }
}

@media (max-width: 768px) {
  :root {
    --sp-section: 54px;
    --header-h: 66px;
    --radius-lg: 16px;
  }

  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  .container {
    padding-inline: max(16px, env(safe-area-inset-left, 16px));
    padding-right: max(16px, env(safe-area-inset-right, 16px));
  }

  /* Metinlerin ekrandan taşmasını ve yatay kaydırmayı engelle */
  h1, h2, h3, h4, h5, h6, p, .hero-title, .brand-name, .contact-card p, .spec-table td, .spec-table th {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* iOS Safari otomatik yakınlaştırma (auto-zoom) engellemesi: Tüm form elemanları en az 16px */
  input, select, textarea,
  .field input, .field select, .field textarea,
  .newsletter input, .search-panel input {
    font-size: 16px !important;
  }

  /* Üst bar: Tüm bilgiler (telefon, e-posta, adres, slogan, sosyal medya, dil seçici) eksiksiz korunur ve mobilde düzenli hizalanır */
  .topbar {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-block: 8px;
  }
  .topbar .container {
    min-height: auto;
    padding-inline: max(16px, env(safe-area-inset-left, 16px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
  .topbar-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 16px;
    width: 100%;
  }
  .topbar-left .topbar-item {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: #b4bcc4;
    line-height: 1.35;
  }
  .topbar-left .topbar-item span {
    white-space: normal;
  }
  .topbar-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 16px;
    width: 100%;
    margin-left: 0;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }
  .topbar-right .topbar-item {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: #b4bcc4;
  }
  .topbar-right .socials {
    display: flex !important;
    align-items: center;
    gap: 6px;
  }
  .topbar-right .socials a {
    width: 28px;
    height: 28px;
  }
  .topbar-right .lang-switch {
    display: block !important;
  }

  /* Header */
  .site-header {
    padding-inline: env(safe-area-inset-left) env(safe-area-inset-right);
  }
  .header-inner {
    min-height: var(--header-h);
    gap: 12px;
  }
  .brand { gap: 10px; }
  .brand img { max-height: 44px; }
  .brand-name { font-size: 1.18rem; }
  .brand-tag {
    display: block !important;
    font-size: .62rem;
    letter-spacing: .14em;
  }
  .header-actions { gap: 8px; }
  .header-actions .icon-btn { width: 40px; height: 40px; }
  .menu-toggle { width: 42px; height: 42px; }

  /* Bölüm başlıkları */
  .sec-head { margin-bottom: 32px; }
  .sec-head .eyebrow { font-size: .72rem; margin-bottom: 12px; gap: 7px; }
  .sec-head h2 { margin-bottom: 12px; }
  .sec-head p { font-size: .94rem; }

  /* Hero alanı */
  .hero { min-height: 75svh; }
  .hero-inner { padding-block: 54px 80px; }
  .hero-eyebrow {
    font-size: .72rem;
    padding: 7px 16px 7px 10px;
    margin-bottom: 18px;
  }
  .hero-title {
    font-size: clamp(1.75rem, 7.2vw, 2.6rem);
    line-height: 1.12;
    margin-bottom: 16px;
    letter-spacing: -.03em;
  }
  .hero-sub {
    font-size: .95rem;
    line-height: 1.55;
    margin-bottom: 26px;
    max-width: 100%;
  }
  .hero-arrows {
    display: flex !important;
    right: 14px;
    bottom: 18px;
    gap: 8px;
    z-index: 10;
  }
  .hero-arrow {
    width: 40px;
    height: 40px;
  }
  .hero-arrow svg { width: 18px; height: 18px; }
  .hero-nav {
    bottom: 24px;
    left: 18px;
    transform: none;
    gap: 12px;
  }
  .hero-dot { width: 8px; height: 8px; }
  .hero-dot.active { width: 26px; }
  .hero-counter {
    display: inline-block !important;
    font-size: .78rem;
    min-width: 50px;
  }

  /* Izgaralar */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 18px; }
  .proj-card.wide { grid-column: span 1; aspect-ratio: 4/3.2; }

  /* Kartlar & Bileşenler */
  .feature-card { padding: 26px 22px; border-radius: var(--radius); }
  .feature-icon { width: 52px; height: 52px; margin-bottom: 18px; }
  .feature-num { font-size: 2.6rem; right: 18px; top: 16px; opacity: .5; }

  .service-card { min-height: 290px; }
  .service-body { padding: 24px 20px; }
  .service-body .icon { width: 44px; height: 44px; margin-bottom: 14px; }

  .cat-card-img { aspect-ratio: 4/4.2; }
  .cat-card-body { padding: 22px 20px; }
  .cat-card-body h3 { font-size: 1.18rem; }
  .cat-card-arrow { width: 38px; height: 38px; }
  .cat-card-icon { width: 42px; height: 42px; top: 14px; left: 14px; }
  .cat-card-count { top: 14px; right: 14px; padding: 5px 12px; font-size: .72rem; }

  .testi-card { padding: 28px 22px; border-radius: var(--radius); }
  .testi-card .quote-mark { top: 18px; right: 20px; width: 34px; height: 34px; }
  .testi-text { font-size: 1.02rem; line-height: 1.58; margin-bottom: 22px; }
  .testi-person { gap: 12px; }
  .testi-avatar { width: 46px; height: 46px; font-size: 1rem; }
  .testi-controls { margin-top: 26px; gap: 10px; }

  .cta-band { padding: 40px 24px; border-radius: var(--radius); }
  .form-card { padding: 26px 20px; border-radius: var(--radius); }
  .form-grid { grid-template-columns: 1fr; gap: 16px; }

  .faq-q { padding: 18px 20px; font-size: .98rem; gap: 14px; }
  .faq-sign { width: 30px; height: 30px; }
  .faq-a-inner { padding: 0 20px 20px; font-size: .91rem; }

  .contact-card { padding: 20px 18px; gap: 14px; }
  .contact-card .ci { width: 42px; height: 42px; border-radius: 11px; }
  .map-embed iframe { height: 300px; }

  /* Hakkımızda medya düzeni */
  .about-media { max-width: 100%; }
  .about-media .float-img {
    position: static;
    width: 100%;
    margin-top: 14px;
    border-width: 0;
    box-shadow: var(--sh-sm);
  }
  .about-media .float-img img { aspect-ratio: 16/9; }
  .about-badge {
    left: 14px; top: 14px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
  }
  .about-badge b { font-size: 1.85rem; }
  .about-badge span { font-size: .68rem; }

  /* Galeri & Resimler */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-grid .g-item.tall { grid-row: span 1; aspect-ratio: 1/1; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); gap: 8px; }

  /* Filtre sekmeleri: mobilde yatay kaydırılabilir modern şerit */
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-bottom: 28px;
  }
  .filter-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-tab {
    flex-shrink: 0;
    padding: 9px 18px;
    font-size: .83rem;
    white-space: nowrap;
  }

  /* Tablolar (Taşmayı önleme ve yatay kaydırma) */
  .spec-table, .rich-text table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .spec-table th { width: 44%; font-size: .82rem; }
  .spec-table td { font-size: .88rem; }

  /* Lightbox */
  .lightbox { padding: 20px 14px; }
  .lightbox img { max-width: 96vw; max-height: 80vh; }
  .lightbox-nav { width: 42px; height: 42px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 14px; right: 14px; width: 42px; height: 42px; }

  /* Sabit İletişim & Yukarı Çık Butonları (ÇAKIŞMA GİDERİLDİ) */
  .float-contact {
    right: 16px;
    left: auto;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    gap: 10px;
    z-index: 850;
  }
  .float-btn {
    width: 48px;
    height: 48px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .24);
  }
  .float-btn svg { width: 22px; height: 22px; }

  /* Yukarı çık butonu sol altta, böylece WhatsApp ile asla üst üste binmez */
  .to-top {
    left: 16px;
    right: auto;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    width: 44px;
    height: 44px;
    z-index: 840;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 42px; }
  .footer-brand p { margin: 16px 0 20px; }
  .footer-title { margin-bottom: 18px; padding-bottom: 10px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 14px; padding-block: 20px; }
  .footer-bottom-links { justify-content: center; gap: 16px; }

  /* Arama paneli */
  .search-panel { padding-top: 80px; }
  .search-panel form { width: calc(100vw - 32px); padding: 6px 6px 6px 16px; }
  .search-close { top: 16px; right: 16px; width: 42px; height: 42px; }

  .section { padding-block: var(--sp-section); }
}

@media (max-width: 480px) {
  :root {
    --sp-section: 46px;
    --header-h: 62px;
  }

  .container {
    padding-inline: max(14px, env(safe-area-inset-left, 14px));
    padding-right: max(14px, env(safe-area-inset-right, 14px));
  }

  /* Header & Logo */
  .brand { gap: 8px; }
  .brand img { max-height: 38px; }
  .brand-name { font-size: 1.08rem; }
  .brand-tag { display: block !important; font-size: .58rem; letter-spacing: .12em; }
  .brand-mark { width: 38px; height: 38px; }
  .header-actions { gap: 6px; }
  .header-actions .icon-btn { width: 36px; height: 36px; }
  .menu-toggle { width: 40px; height: 40px; }

  /* Üst bar 480px ve altı: Tüm bilgiler okunaklı kalır */
  .topbar-left .topbar-item { font-size: .74rem; }
  .topbar-right .topbar-item { font-size: .74rem; }
  .topbar-right .socials { display: flex !important; gap: 4px; }
  .topbar-right .socials a { width: 26px; height: 26px; }

  /* Hero */
  .hero-inner { padding-block: 42px 70px; }
  .hero-title { font-size: clamp(1.58rem, 7.8vw, 2.15rem); margin-bottom: 14px; }
  .hero-sub { font-size: .9rem; margin-bottom: 22px; }
  .hero-btns { flex-direction: column; width: 100%; gap: 10px; }
  .hero-btns .btn { width: 100%; justify-content: center; padding: 13px 22px; font-size: .9rem; }

  /* İstatistikler */
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 18px 14px; }
  .stat b { font-size: 1.9rem; }

  /* CTA */
  .cta-band { padding: 32px 18px; }
  .cta-actions { flex-direction: column; width: 100%; gap: 10px; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Ürün detay */
  .pd-actions { flex-direction: column; width: 100%; gap: 10px; }
  .pd-actions .btn { width: 100%; justify-content: center; }
  .pd-price-row { padding: 14px 0; }
  .pd-price { font-size: 1.55rem; }

  /* Sayfalama */
  .pagination { gap: 5px; margin-top: 36px; }
  .pagination a, .pagination span { min-width: 36px; height: 36px; font-size: .82rem; padding-inline: 9px; }

  /* Çerez çubuğu */
  .cookie-bar {
    padding: 16px;
    width: calc(100vw - 20px);
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    border-radius: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cookie-bar p { font-size: .84rem; line-height: 1.5; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { width: 100%; justify-content: center; min-height: 42px; }

  /* Hızlı teklif modalı */
  .quote-modal { padding: 12px 8px; }
  .quote-modal-box { padding: 24px 16px; border-radius: 14px; }
  .quote-modal-box .sec-head h2 { font-size: 1.3rem; }

  /* Arama paneli */
  .search-panel form { width: calc(100vw - 20px); padding: 5px 5px 5px 14px; }
  .search-close { top: 12px; right: 12px; width: 38px; height: 38px; }

  /* Bülten */
  .newsletter form { padding: 4px 4px 4px 14px; }
  .newsletter button { width: 38px; height: 38px; }

  /* Mobil çekmece menü */
  .mobile-nav { width: min(320px, 86vw); }
  .mobile-nav-head { padding: 16px 18px; }
  .mobile-nav-body { padding: 14px 18px 30px; }
  .mobile-nav-foot { padding: 18px 18px 24px; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 1.48rem; }
  .brand-name { font-size: 1rem; }
  .brand-mark { width: 34px; height: 34px; }
  .container { padding-inline: 12px; }
  .btn-lg { padding: 12px 20px; font-size: .88rem; }
  .btn { padding: 11px 16px; font-size: .85rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Yazdırma */
@media print {
  .site-header, .topbar, .site-footer, .to-top, .float-contact,
  .scroll-progress, .hero-nav, .hero-arrows, .cookie-bar { display: none !important; }
  body { color: #000; }
  .section { padding-block: 24px; }
}
