/* ====================================================================
   Türkiye Definecilik — styles.css
   Koyu zemin · altın detaylar · toprak tonları · premium his
==================================================================== */

:root {
  --bg:            #17130c;
  --bg-2:          #1f1910;
  --bg-3:          #2a2216;
  --surface:       #312819;
  --surface-2:     #3d3122;
  --line:          rgba(212, 175, 74, 0.24);
  --line-soft:     rgba(245, 240, 230, 0.10);

  --gold:          #e0bb4e;
  --gold-2:        #f0d076;
  --gold-deep:     #c49a33;
  --earth:         #a07f4a;

  --text:          #f7f2e7;
  --text-soft:     #d8d0bf;
  --text-mute:     #a59a82;

  --wa:            #25d366;
  --wa-deep:       #128c46;

  --radius:        16px;
  --radius-sm:     11px;
  --maxw:          1180px;
  --shadow:        0 24px 60px -20px rgba(0, 0, 0, 0.7);

  --ff-display:    "Playfair Display", Georgia, serif;
  --ff-serif:      "Cormorant Garamond", Georgia, serif;
  --ff-body:       "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ---------- Lazy görsel geçişi ---------- */
.lazy {
  filter: blur(14px);
  transform: scale(1.03);
  transition: filter .7s ease, transform .7s ease, opacity .7s ease;
}
.lazy.loaded { filter: blur(0); transform: scale(1); }

/* ====================================================================
   ÜST BANT
==================================================================== */
.topbar {
  background: linear-gradient(90deg, #100d09, #1c1610 50%, #100d09);
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
  position: relative;
  z-index: 60;
}
.topbar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.topbar__tag {
  color: var(--text-mute);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
}
.topbar__contacts { display: flex; gap: 18px; align-items: center; }
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-soft);
  font-weight: 400;
  transition: color .25s ease;
}
.topbar__link svg { color: var(--gold); transition: transform .25s ease; }
.topbar__link:hover { color: var(--gold-2); }
.topbar__link:hover svg { transform: scale(1.15); }
.topbar__link--wa:hover svg { color: var(--wa); }

/* ====================================================================
   NAVBAR
==================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 11, 8, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s ease, border-color .3s ease;
}
.nav.scrolled {
  background: rgba(13, 11, 8, 0.94);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 11px;
  color: var(--gold);
  background: radial-gradient(circle at 30% 25%, rgba(212,175,55,.22), rgba(212,175,55,.04));
  border: 1px solid var(--line);
}
.brand__text {
  font-family: var(--ff-display);
  font-size: 1.22rem;
  letter-spacing: .01em;
  color: var(--text);
}
.brand__text strong { color: var(--gold); font-weight: 700; }

.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__item {
  position: relative;
  padding: 9px 15px;
  font-size: .92rem;
  font-weight: 400;
  color: var(--text-soft);
  border-radius: 9px;
  transition: color .25s ease, background .25s ease;
}
.nav__item::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 4px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav__item:hover { color: var(--text); }
.nav__item:hover::after { transform: scaleX(1); }
.nav__item--btn { font: inherit; font-size: .92rem; font-weight: 400; color: var(--text-soft); }

.nav__cta {
  margin-left: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  color: #0d0b08;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  border: 1px solid var(--gold-2);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px var(--gold-deep); filter: brightness(1.06); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
  border-radius: 9px;
  border: 1px solid var(--line);
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====================================================================
   BUTONLAR
==================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: .96rem;
  font-weight: 500;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  will-change: transform;
}
.btn svg { transition: transform .25s ease; }
.btn:hover svg { transform: translateX(2px); }
.btn--full { width: 100%; }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }

.btn--primary {
  color: #08230f;
  background: linear-gradient(135deg, var(--wa), var(--wa-deep));
  box-shadow: 0 12px 26px -12px var(--wa-deep);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -12px var(--wa-deep); filter: brightness(1.05); }

.btn--ghost {
  color: var(--text);
  background: rgba(245, 240, 230, 0.04);
  border: 1px solid var(--line);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--gold); color: var(--gold-2); background: rgba(212,175,55,.07); }

.btn--gold-outline {
  color: var(--gold-2);
  border: 1px solid var(--gold-deep);
  background: rgba(212, 175, 55, 0.05);
}
.btn--gold-outline:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: #0d0b08;
  box-shadow: 0 14px 28px -14px var(--gold-deep);
}

/* ====================================================================
   SECTION ortak
==================================================================== */
.section__eyebrow {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 14px;
}
.section__eyebrow--center { text-align: center; }
.section__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 20px;
}
.section__title--center { text-align: center; }

/* ====================================================================
   HERO
==================================================================== */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 24s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.13); } }
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20,16,10,.88) 0%, rgba(20,16,10,.6) 42%, rgba(20,16,10,.28) 70%, rgba(20,16,10,.12) 100%),
    linear-gradient(180deg, rgba(20,16,10,.25) 0%, rgba(20,16,10,.2) 55%, rgba(20,16,10,.82) 100%);
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 90px 22px 120px;
  width: 100%;
}
.hero__eyebrow {
  display: inline-block;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(212,175,55,.05);
  margin-bottom: 26px;
}
.hero__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  background: linear-gradient(120deg, #fbf4e2 10%, var(--gold-2) 55%, var(--gold-deep) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 40px rgba(0,0,0,.4);
}
.hero__subtitle {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 500;
  color: var(--text);
  max-width: 660px;
  margin-bottom: 18px;
}
.hero__desc {
  max-width: 620px;
  color: var(--text-soft);
  font-size: 1.02rem;
  margin-bottom: 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.hero__badges li {
  position: relative;
  padding-left: 22px;
  font-size: .88rem;
  color: var(--text-soft);
}
.hero__badges li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,.12);
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 7px;
}
.hero__scroll span {
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot { 0%{opacity:0;transform:translateY(-4px);} 50%{opacity:1;} 100%{opacity:0;transform:translateY(10px);} }

/* ====================================================================
   ÖZET ŞERİT
==================================================================== */
.strip {
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  padding: 70px 22px 80px;
  border-bottom: 1px solid var(--line-soft);
}
.strip__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.strip__card {
  position: relative;
  padding: 30px 24px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.strip__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(212,175,55,.1), transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
}
.strip__card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.strip__card:hover::before { opacity: 1; }
.strip__num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--gold);
  opacity: .55;
  display: block;
  margin-bottom: 14px;
}
.strip__card h3 { font-family: var(--ff-serif); font-size: 1.32rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.strip__card p { font-size: .92rem; color: var(--text-soft); }
.strip__cta { text-align: center; margin-top: 40px; }

/* ====================================================================
   HAKKINDA
==================================================================== */
.about {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 90px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 11 / 9;
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13,11,8,.7));
}
.about__media-tag {
  position: absolute;
  left: 18px; bottom: 16px;
  z-index: 2;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-2);
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(13,11,8,.55);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.about__content p { color: var(--text-soft); margin-bottom: 18px; }
.about__content strong { color: var(--text); font-weight: 500; }
.about__list { margin: 22px 0 30px; display: grid; gap: 12px; }
.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: .98rem;
}
.about__list span {
  flex: none;
  display: grid; place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  font-size: .8rem;
  color: var(--gold-2);
  background: rgba(212,175,55,.1);
  border: 1px solid var(--line);
}

/* ====================================================================
   YASAL FARKINDALIK
==================================================================== */
.legal {
  position: relative;
  padding: 90px 22px;
  background:
    linear-gradient(rgba(23,19,12,.80), rgba(23,19,12,.88)),
    url("images/yasal-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.legal__inner { max-width: 980px; margin: 0 auto; }
.legal__head { margin-bottom: 34px; }
.legal__box {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
  background: linear-gradient(165deg, var(--surface-2), var(--bg-3));
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
}
.legal__media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.legal__media img { width: 100%; height: 100%; object-fit: cover; }
.legal__text { color: var(--text-soft); font-size: 1.02rem; margin-bottom: 16px; }
.legal__text strong { color: var(--gold-2); font-weight: 600; }
.legal__notebar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(212,175,55,.06);
  border: 1px dashed var(--line);
}
.legal__notebar span {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.legal__notebar p { font-size: .92rem; color: var(--text-soft); font-style: italic; }

/* ====================================================================
   İLETİŞİM
==================================================================== */
.contact { padding: 90px 22px; background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.contact__inner { max-width: var(--maxw); margin: 0 auto; }
.contact__head { text-align: center; margin-bottom: 44px; }
.contact__lead { max-width: 600px; margin: 0 auto; color: var(--text-soft); }

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.contact__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 320px;
}
.contact__media img { width: 100%; height: 100%; object-fit: cover; }

.contact__cards { display: grid; grid-template-columns: 1fr; gap: 18px; align-content: center; }
.contact__card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px 18px;
  padding: 24px 26px;
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line-soft);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.contact__card:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow); }
.contact__card-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 15px;
  color: var(--gold);
  background: radial-gradient(circle at 30% 25%, rgba(224,187,78,.24), rgba(224,187,78,.05));
  border: 1px solid var(--line);
}
.contact__card--wa .contact__card-icon { color: var(--wa); background: radial-gradient(circle at 30% 25%, rgba(37,211,102,.2), rgba(37,211,102,.04)); border-color: rgba(37,211,102,.25); }
.contact__card-body h3 { font-family: var(--ff-serif); font-size: 1.3rem; font-weight: 600; margin-bottom: 2px; }
.contact__value { font-size: 1.22rem; font-weight: 500; color: var(--gold-2); letter-spacing: .02em; }
.contact__card .btn { grid-column: 1 / -1; }

/* ====================================================================
   FOOTER
==================================================================== */
.footer {
  background: #08060409;
  background-color: #0a0805;
  border-top: 1px solid var(--line);
  padding: 50px 22px 40px;
}
.footer__inner { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.footer__brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer__brand .brand__text { font-size: 1.15rem; }
.footer__copy { color: var(--text-soft); font-size: .95rem; margin-bottom: 8px; }
.footer__note { color: var(--text-mute); font-size: .82rem; max-width: 540px; margin: 0 auto; }

/* ====================================================================
   HİZMETLER PANELİ (DRAWER)
==================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(6, 5, 3, 0.62);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .35s ease;
}
.drawer-backdrop.show { opacity: 1; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  z-index: 100;
  height: 100%;
  width: min(460px, 100%);
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, var(--bg-3), var(--bg));
  border-left: 1px solid var(--line);
  box-shadow: -30px 0 70px -20px rgba(0,0,0,.8);
  transform: translateX(105%);
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
  visibility: hidden;
}
.drawer.open { transform: translateX(0); visibility: visible; }

.drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 26px 20px;
  border-bottom: 1px solid var(--line-soft);
}
.drawer__eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.drawer__title { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; line-height: 1.2; }
.drawer__close {
  flex: none;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 11px;
  color: var(--text-soft);
  border: 1px solid var(--line);
  transition: color .25s ease, border-color .25s ease, transform .25s ease, background .25s ease;
}
.drawer__close:hover { color: var(--gold); border-color: var(--gold); transform: rotate(90deg); background: rgba(212,175,55,.07); }

.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service {
  border-radius: var(--radius-sm);
  background: rgba(245,240,230,.03);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.drawer.open .service { animation: serviceIn .5s cubic-bezier(.22,1,.36,1) forwards; }
.drawer.open .service:nth-child(1) { animation-delay: .1s; }
.drawer.open .service:nth-child(2) { animation-delay: .18s; }
.drawer.open .service:nth-child(3) { animation-delay: .26s; }
.drawer.open .service:nth-child(4) { animation-delay: .34s; }
@keyframes serviceIn { to { opacity: 1; transform: translateY(0); } }
.service:hover { border-color: var(--line); background: rgba(224,187,78,.06); transform: translateY(-3px); box-shadow: 0 16px 34px -20px #000; }

.service__media {
  position: relative;
  height: 140px;
  overflow: hidden;
}
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service:hover .service__media img { transform: scale(1.07); }
.service__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,19,12,.05) 40%, rgba(23,19,12,.55) 100%);
}

.service__body { display: flex; gap: 15px; padding: 16px 18px 18px; }
.service__icon {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: var(--gold);
  background: radial-gradient(circle at 30% 25%, rgba(224,187,78,.24), rgba(224,187,78,.05));
  border: 1px solid var(--line);
}
.service__content h3 { font-family: var(--ff-serif); font-size: 1.22rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.service__content p { font-size: .9rem; color: var(--text-soft); }

.drawer__note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(212,175,55,.06);
  border: 1px dashed var(--line);
}
.drawer__note span { color: var(--gold); font-size: 1.1rem; }
.drawer__note p { font-size: .85rem; color: var(--text-soft); }

.drawer__footer {
  padding: 20px 26px 26px;
  border-top: 1px solid var(--line-soft);
  background: rgba(8,6,4,.4);
}

/* ====================================================================
   SABİT WHATSAPP BUTONU
==================================================================== */
.float-wa {
  position: fixed;
  right: 20px; bottom: 22px;
  z-index: 80;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--wa), var(--wa-deep));
  box-shadow: 0 12px 28px -8px rgba(18,140,70,.7);
  transition: transform .3s ease, box-shadow .3s ease;
  animation: floatPulse 2.6s ease infinite;
}
.float-wa:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 16px 34px -8px rgba(18,140,70,.8); }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 12px 28px -8px rgba(18,140,70,.7), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 12px 28px -8px rgba(18,140,70,.7), 0 0 0 12px rgba(37,211,102,0); }
}

/* ====================================================================
   HAKKIMIZDA — İSTATİSTİK ROZETLERİ
==================================================================== */
.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 4px 0 30px;
}
.stat {
  padding: 16px 14px;
  border-radius: var(--radius-sm);
  background: rgba(224,187,78,.05);
  border: 1px solid var(--line-soft);
  text-align: center;
}
.stat__num { display: block; font-family: var(--ff-display); font-size: 1.7rem; font-weight: 700; color: var(--gold-2); line-height: 1; }
.stat__label { display: block; margin-top: 7px; font-size: .76rem; color: var(--text-soft); letter-spacing: .03em; }

/* Hakkımızda — profil portresi: yüzü öne çıkar */
.about__media--portrait img { object-position: center 22%; }

/* ====================================================================
   TANITIM / GÜVEN ŞERİDİ (SHOWCASE)
==================================================================== */
.showcase { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.showcase__inner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.showcase__inner img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16 / 9; }
.showcase__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 0 clamp(26px, 6%, 72px);
  max-width: 640px;
  background: linear-gradient(90deg, rgba(15,12,8,.92) 0%, rgba(15,12,8,.68) 44%, rgba(15,12,8,.18) 78%, transparent 100%);
}
.showcase__eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: .74rem; font-weight: 500; color: var(--gold); }
.showcase__title { font-family: var(--ff-display); font-size: clamp(1.5rem, 3.2vw, 2.3rem); color: var(--text); line-height: 1.16; }
.showcase__text { color: var(--text-soft); font-size: 1rem; max-width: 460px; }

/* ====================================================================
   HİZMETLERİMİZ — DETAYLI / GRAFİKLİ
==================================================================== */
.services { padding: 92px 22px; background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.services__head { max-width: 740px; margin: 0 auto 48px; text-align: center; }
.services__lead { color: var(--text-soft); max-width: 620px; margin: 0 auto; }

.services__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(165deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line-soft);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.svc-card:hover { transform: translateY(-7px); border-color: var(--line); box-shadow: var(--shadow); }
.svc-card__media { position: relative; height: 220px; overflow: hidden; }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.svc-card:hover .svc-card__media img { transform: scale(1.06); }
.svc-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(20,16,10,.72)); }
.svc-card__badge {
  position: absolute; left: 22px; bottom: -22px; z-index: 2;
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 13px; color: #1a140a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  border: 2px solid var(--bg-3);
  box-shadow: 0 8px 18px -8px #000;
}
.svc-card__body { padding: 36px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-card__body h3 { font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.svc-card__body > p { color: var(--text-soft); margin-bottom: 18px; }
.svc-card__list { display: grid; gap: 9px; margin-bottom: 24px; }
.svc-card__list li { position: relative; padding-left: 22px; font-size: .92rem; color: var(--text); }
.svc-card__list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(224,187,78,.14); }
.svc-card__link { margin-top: auto; align-self: flex-start; font-weight: 500; color: var(--gold-2); transition: color .25s ease, transform .25s ease; }
.svc-card__link:hover { color: var(--gold); transform: translateX(3px); }
.services__cta { text-align: center; margin-top: 46px; }

/* SÜRECİMİZ */
.process { max-width: var(--maxw); margin: 72px auto 0; }
.process__title { font-family: var(--ff-display); font-size: clamp(1.4rem, 2.6vw, 1.9rem); text-align: center; margin-bottom: 36px; color: var(--text); }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  position: relative;
  padding: 30px 22px 24px;
  border-radius: var(--radius);
  background: rgba(245,240,230,.03);
  border: 1px solid var(--line-soft);
}
.step__num {
  display: grid; place-items: center;
  width: 44px; height: 44px; margin-bottom: 16px;
  border-radius: 12px;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem;
  color: #1a140a; background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
}
.step h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.step p { font-size: .9rem; color: var(--text-soft); }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 52px; right: -18px; width: 18px; height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), transparent);
}

/* ====================================================================
   BLOG
==================================================================== */
.blog { padding: 92px 22px; background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.blog__inner { max-width: var(--maxw); margin: 0 auto; }
.blog__head { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.blog__lead { color: var(--text-soft); max-width: 660px; margin: 0 auto; }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(165deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line-soft);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.blog-card__media { position: relative; display: block; height: 200px; overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .blog-card__media img { transform: scale(1.06); }
.blog-card__cat {
  position: absolute; top: 14px; left: 14px;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  color: #1a140a; background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
}
.blog-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { display: flex; gap: 8px; font-size: .78rem; color: var(--text-mute); margin-bottom: 12px; }
.blog-card__body h3 { font-family: var(--ff-serif); font-size: 1.3rem; font-weight: 600; line-height: 1.3; margin-bottom: 10px; }
.blog-card__body h3 a { color: var(--text); transition: color .25s ease; }
.blog-card__body h3 a:hover { color: var(--gold-2); }
.blog-card__body > p { font-size: .92rem; color: var(--text-soft); margin-bottom: 18px; }
.blog-card__link { margin-top: auto; align-self: flex-start; font-weight: 500; color: var(--gold-2); transition: color .25s ease, transform .25s ease; }
.blog-card__link:hover { color: var(--gold); transform: translateX(3px); }

/* ====================================================================
   MAKALE / PROSE (blog sayfaları)
==================================================================== */
.article { max-width: 820px; margin: 0 auto; padding: 40px 22px 24px; }
.breadcrumb { font-size: .85rem; color: var(--text-mute); margin-bottom: 26px; }
.breadcrumb a { color: var(--gold-2); }
.breadcrumb a:hover { color: var(--gold); }
.article__cat { display: inline-block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.article__title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.14; margin-bottom: 16px; color: var(--text); }
.article__meta { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: .86rem; color: var(--text-mute); padding-bottom: 22px; border-bottom: 1px solid var(--line-soft); }
.article__cover { margin: 28px 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.article__cover img { width: 100%; height: auto; display: block; }
.article__lead { font-family: var(--ff-serif); font-size: 1.32rem; color: var(--text); line-height: 1.5; margin: 0 0 6px; }

.article__toc {
  margin: 26px 0 30px; padding: 20px 24px;
  border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--line-soft);
}
.article__toc h2 { font-family: var(--ff-serif); font-size: 1.12rem; color: var(--gold-2); margin: 0 0 12px; }
.article__toc ol { margin: 0; padding-left: 20px; color: var(--text-soft); }
.article__toc li { margin-bottom: 7px; }
.article__toc a { color: var(--text-soft); text-decoration: none; }
.article__toc a:hover { color: var(--gold-2); }

.prose { font-size: 1.05rem; color: var(--text-soft); }
.prose h2 { font-family: var(--ff-display); font-size: clamp(1.4rem, 3vw, 1.95rem); color: var(--text); margin: 40px 0 14px; scroll-margin-top: 90px; }
.prose h3 { font-family: var(--ff-serif); font-size: 1.4rem; color: var(--gold-2); margin: 28px 0 10px; }
.prose p { margin-bottom: 16px; }
.prose strong { color: var(--text); font-weight: 600; }
.prose ul, .prose ol { margin: 0 0 18px 0; padding-left: 24px; }
.prose li { margin-bottom: 9px; }
.prose ul li::marker { color: var(--gold); }
.prose blockquote {
  margin: 26px 0; padding: 18px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(224,187,78,.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--text);
}
.prose a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold); }
.prose .note {
  margin: 26px 0; padding: 18px 22px; border-radius: var(--radius-sm);
  background: rgba(224,187,78,.06); border: 1px dashed var(--line);
  font-size: .96rem; color: var(--text-soft);
}
.prose .note strong { color: var(--gold-2); }

.article-cta {
  margin: 44px 0 10px; padding: 34px 28px; text-align: center;
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--surface-2), var(--bg-3));
  border: 1px solid var(--line); border-top: 3px solid var(--gold);
}
.article-cta h3 { font-family: var(--ff-display); font-size: 1.45rem; margin-bottom: 10px; color: var(--text); }
.article-cta p { color: var(--text-soft); margin-bottom: 22px; max-width: 520px; margin-left: auto; margin-right: auto; }

.related { max-width: 820px; margin: 0 auto; padding: 14px 22px 72px; }
.related h2 { font-family: var(--ff-display); font-size: 1.5rem; margin-bottom: 20px; color: var(--text); }
.related__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.related__grid a {
  display: block; padding: 18px 20px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--line-soft); color: var(--text);
  transition: border-color .25s ease, transform .25s ease, color .25s ease;
}
.related__grid a:hover { border-color: var(--line); transform: translateY(-3px); color: var(--gold-2); }
.related__grid a span { display: block; font-size: .72rem; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }

/* Makale sayfası için sade alt-navigasyon */
.subnav { display: flex; align-items: center; gap: 8px; }
.subnav .back { color: var(--text-soft); font-size: .92rem; transition: color .25s ease; }
.subnav .back:hover { color: var(--gold-2); }

/* ====================================================================
   REVEAL ANIMASYONU (scroll)
==================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ====================================================================
   RESPONSIVE
==================================================================== */
@media (max-width: 980px) {
  .strip__inner { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 36px; }
  .about__media { aspect-ratio: 16 / 10; }
  .legal__box { grid-template-columns: 1fr; gap: 26px; }
  .legal__media { aspect-ratio: 16 / 9; max-height: 240px; }
  .contact__layout { grid-template-columns: 1fr; }
  .contact__media { min-height: 240px; max-height: 340px; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .blog__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .topbar__tag { display: none; }
  .topbar__inner { justify-content: center; }
  .topbar__contacts { gap: 16px; }

  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(320px, 86%);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 92px 24px 30px;
    background: linear-gradient(165deg, var(--bg-3), var(--bg));
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 60px -15px rgba(0,0,0,.8);
    transform: translateX(105%);
    transition: transform .4s cubic-bezier(.22,1,.36,1);
    z-index: 45;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__item { padding: 14px 16px; font-size: 1.05rem; border-radius: 11px; }
  .nav__item::after { display: none; }
  .nav__item:hover { background: rgba(212,175,55,.07); }
  .nav__item--btn { text-align: left; }
  .nav__cta { margin: 14px 0 0; text-align: center; }
}

@media (max-width: 700px) {
  .services__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .related__grid { grid-template-columns: 1fr; }
  .showcase__inner img { aspect-ratio: 4 / 3; }
  .showcase__overlay {
    justify-content: flex-end;
    max-width: none;
    padding: 0 24px 28px;
    background: linear-gradient(0deg, rgba(15,12,8,.94) 0%, rgba(15,12,8,.55) 48%, transparent 82%);
  }
}

@media (max-width: 560px) {
  .strip__inner { grid-template-columns: 1fr; }
  .contact__cards { grid-template-columns: 1fr; }
  .hero__inner { padding: 70px 20px 100px; }
  .legal { background-attachment: scroll; }
  .legal__box { padding: 40px 24px 30px; }
  .drawer { width: 100%; }
  .float-wa { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .btn { padding: 13px 22px; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .svc-card__media { height: 200px; }
}

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