/* ============================================================
   KURTBEYOĞLU Hukuk BÜROSU — style.css
   Palet: Lacivert (vurgu) · Gold · Beyaz · Krem · Açık gri-mavi
   Lacivert yalnızca hero, footer ve küçük vurgularda kullanılır.
   ============================================================ */

/* ---------- 1. TOKENLAR ---------- */
:root {
  --navy: #0b1d38;
  --navy-2: #11294c;
  --navy-3: #1b3a67;
  --navy-soft: #2a4f86;

  --gold: #c29a46;
  --gold-2: #e7ce92;
  --gold-3: #8f6f26;
  --gold-4: #f6efdf;
  --gold-glow: rgba(194, 154, 70, 0.26);

  --white: #ffffff;
  --cream: #fbf8f2;
  --cream-2: #f4ede0;
  --slate: #f2f5f9;
  --slate-2: #e7edf5;

  --txt: #14243e;
  --txt-2: #5a6b84;
  --txt-3: #8494aa;
  --txt-light: #f4f7fb;
  --txt-mute: rgba(244, 247, 251, 0.68);

  --line: rgba(20, 36, 62, 0.1);
  --line-2: rgba(20, 36, 62, 0.06);
  --line-gold: rgba(194, 154, 70, 0.28);

  --f-disp: "Bodoni Moda", Georgia, "Times New Roman", serif;
  --f-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --s--1: clamp(0.76rem, 0.74rem + 0.1vw, 0.82rem);
  --s-0: clamp(0.94rem, 0.91rem + 0.18vw, 1.02rem);
  --s-1: clamp(1.05rem, 1rem + 0.28vw, 1.16rem);
  --s-2: clamp(1.32rem, 1.18rem + 0.58vw, 1.7rem);
  --s-3: clamp(1.8rem, 1.45rem + 1.45vw, 2.8rem);
  --s-4: clamp(2.35rem, 1.65rem + 3.1vw, 4.7rem);

  --r: 10px;
  --r-l: 18px;
  --r-xl: 26px;
  --shell: clamp(1.15rem, 4vw, 2.5rem);
  --sec-y: clamp(3.8rem, 7.5vw, 7rem);
  --hh: 76px;
  --ease: cubic-bezier(0.22, 0.68, 0.28, 1);
  --eo: cubic-bezier(0.16, 1, 0.3, 1);

  --sh-1:
    0 1px 3px rgba(20, 36, 62, 0.04), 0 8px 24px -16px rgba(20, 36, 62, 0.22);
  --sh-2: 0 16px 44px -24px rgba(20, 36, 62, 0.34);
  --sh-3: 0 28px 70px -36px rgba(20, 36, 62, 0.44);
}

/* ---------- 2. TEMEL ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hh) + 18px);
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--txt);
  font-family: var(--f-body);
  font-size: var(--s-0);
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
address {
  font-style: normal;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
}
::selection {
  background: var(--gold);
  color: var(--navy);
}

.container-xl {
  padding-inline: var(--shell);
  max-width: 1300px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 3000;
  background: var(--gold);
  color: var(--navy);
  padding: 0.7rem 1.2rem;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- 3. ORTAK ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: var(--s--1);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.05rem;
  display: flex;
  justify-content: center;
}
.eyebrow--dark {
  color: var(--gold-3);
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px var(--gold-glow);
  animation: pulse 2.8s var(--ease) infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px var(--gold-glow);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(194, 154, 70, 0);
  }
}

.sec-head {
  max-width: 740px;
  margin: 0 auto clamp(2.2rem, 4.5vw, 3.6rem);
  text-align: center;
}
.sec-head--start {
  margin-inline: 0;
  text-align: left;
}
.sec-title {
  font-family: var(--f-disp);
  font-size: var(--s-3);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 0 0 0.95rem;
  color: var(--navy);
}
.sec-title em {
  font-style: italic;
  color: var(--gold-3);
}
.sec-title--left {
  text-align: left;
}
.sec-lead {
  font-size: var(--s-1);
  color: var(--txt-2);
  margin: 0;
}
.sec-lead--left {
  text-align: left;
}
.sec-head--light .sec-title {
  color: var(--white);
}
.sec-head--light .sec-title em {
  color: var(--gold-2);
}
.sec-head--light .sec-lead {
  color: var(--txt-mute);
}
.sec-foot {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.section {
  padding-block: var(--sec-y);
  position: relative;
}
.section--tight {
  padding-top: 0;
}
.section--white {
  background: var(--white);
}
.section--cream {
  background: var(--cream);
}
.section--slate {
  background: var(--slate);
}
.section--navy {
  background: var(--navy);
  color: var(--txt-light);
}

/* Butonlar */
.btn-gold,
.btn-navy,
.btn-ghost,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: var(--s-0);
  line-height: 1;
  padding: 1rem 1.65rem;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 52px;
  position: relative;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.btn-gold {
  background: linear-gradient(
    135deg,
    var(--gold-2),
    var(--gold) 48%,
    var(--gold-3)
  );
  color: var(--navy);
  box-shadow: 0 12px 28px -14px rgba(194, 154, 70, 0.9);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -16px rgba(194, 154, 70, 1);
  color: var(--navy);
}
.btn-gold--sm {
  padding: 0.62rem 1.05rem;
  min-height: 44px;
  font-size: 0.85rem;
}
.btn-gold--full {
  width: 100%;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-3);
  color: var(--gold-2);
  transform: translateY(-2px);
}
.btn-navy--sm {
  padding: 0.62rem 1.05rem;
  min-height: 44px;
  font-size: 0.85rem;
}

.btn-ghost {
  background: transparent;
  color: var(--txt-light);
  border-color: rgba(244, 247, 251, 0.24);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  transform: translateY(-2px);
}

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

/* ---------- 4. ÜST ŞERİT / HEADER ---------- */
.read-progress {
  position: fixed;
  inset-inline: 0;
  top: 0;
  height: 2px;
  z-index: 1090;
  pointer-events: none;
}
.read-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-3), var(--gold-2));
}

.topline {
  background: var(--navy);
  color: var(--txt-mute);
  font-size: 0.78rem;
  padding-block: 0.6rem;
  position: relative;
  z-index: 1040;
}
.topline__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topline i {
  color: var(--gold);
  margin-right: 0.35rem;
}
.topline a:hover {
  color: var(--gold-2);
}
.topline__sep {
  opacity: 0.3;
  margin-inline: 0.6rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(11, 29, 56, 0.92);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid rgba(194, 154, 70, 0.18);
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.site-header.is-stuck {
  background: rgba(11, 29, 56, 0.985);
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.85);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--hh);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}
.brand__mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(
    140deg,
    var(--gold-2),
    var(--gold) 48%,
    var(--gold-3)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 6px 18px -8px rgba(194, 154, 70, 0.7);
}
.brand__mark span {
  font-family: var(--f-disp);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__text strong {
  font-family: var(--f-disp);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--white);
}
.brand__text em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 0.57rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.05rem;
}
.nav-link-x {
  display: block;
  position: relative;
  padding: 0.55rem 0.72rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--txt-mute);
  transition: color 0.3s var(--ease);
}
.nav-link-x::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--eo);
}
.nav-link-x:hover,
.nav-link-x.is-active {
  color: var(--white);
}
.nav-link-x:hover::after,
.nav-link-x.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.burger {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(194, 154, 70, 0.32);
  background: transparent;
  border-radius: var(--r);
  display: grid;
  place-content: center;
  gap: 5px;
  padding: 0;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-2);
  transition: width 0.35s var(--ease);
}
.burger span:nth-child(2) {
  width: 13px;
}
.burger:hover span:nth-child(2) {
  width: 20px;
}

/* ---------- 5. MOBİL SIDEBAR ---------- */
.sidebar {
  width: min(90vw, 400px);
  border-left: 0;
  color: var(--txt-light);
  background:
    radial-gradient(
      120% 45% at 100% 0%,
      rgba(194, 154, 70, 0.22),
      transparent 62%
    ),
    linear-gradient(180deg, var(--navy-2), var(--navy) 55%);
}
.sidebar__top {
  position: relative;
  padding: 1.1rem var(--shell) 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sidebar__title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
}
.sidebar__title span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.sidebar__title strong {
  font-family: var(--f-disp);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--white);
}
.sidebar__title em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 0.54rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.sidebar__close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(194, 154, 70, 0.32);
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.sidebar__close:hover {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(90deg);
}

.sidebar__chips {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.05rem;
}
.sidebar__chip {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.65rem 0.3rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--txt-mute);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.sidebar__chip i {
  font-size: 1.05rem;
  color: var(--gold-2);
}
.sidebar__chip:hover {
  background: rgba(194, 154, 70, 0.16);
  color: var(--white);
  border-color: var(--line-gold);
}
.sidebar__chip--wa i {
  color: #4bd07a;
}

.sidebar__body {
  height: calc(100% - 154px);
  overflow-y: auto;
  padding: 1.1rem var(--shell) calc(1.5rem + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6rem;
}
.sidebar__nav li {
  opacity: 0;
  transform: translateX(30px);
}
.offcanvas.show .sidebar__nav li {
  animation: slideIn 0.5s var(--eo) forwards;
  animation-delay: calc(var(--i) * 50ms + 70ms);
}
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0.85rem;
  margin-bottom: 0.3rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--txt-light);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.sidebar__num {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--gold-3);
}
.sidebar__lbl {
  flex: 1;
}
.sidebar__nav a i {
  color: var(--gold);
  font-size: 1.15rem;
  opacity: 0.5;
  transition: 0.3s var(--ease);
}
.sidebar__nav a:hover,
.sidebar__nav a.is-active {
  background: rgba(194, 154, 70, 0.14);
  border-color: var(--line-gold);
  color: var(--white);
  transform: translateX(3px);
}
.sidebar__nav a:hover i,
.sidebar__nav a.is-active i {
  opacity: 1;
}
.sidebar__nav a.is-active .sidebar__num {
  color: var(--gold-2);
}

.sidebar__foot {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.sidebar__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}
.sidebar__cardh {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.sidebar__card dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
.sidebar__card dl > div {
  display: flex;
  justify-content: space-between;
  font-size: 0.79rem;
}
.sidebar__card dt {
  color: var(--txt-mute);
  font-weight: 400;
}
.sidebar__card dd {
  margin: 0;
  color: var(--white);
  font-weight: 600;
}
.sidebar__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--gold-2),
    var(--gold) 50%,
    var(--gold-3)
  );
  color: var(--navy);
  font-weight: 700;
}
.sidebar__addr {
  display: flex;
  gap: 0.5rem;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--txt-mute);
}
.sidebar__addr i {
  color: var(--gold);
  margin-top: 0.15rem;
}
.sidebar__social {
  display: flex;
  gap: 0.45rem;
}
.sidebar__social a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.04);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}
.sidebar__social a:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ---------- 6. HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--txt-light);
  padding-top: clamp(2.8rem, 6.5vw, 5rem);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.hero__glow--a {
  width: 52vw;
  height: 52vw;
  max-width: 640px;
  max-height: 640px;
  top: -18%;
  left: -10%;
  background: radial-gradient(
    circle,
    rgba(194, 154, 70, 0.34),
    transparent 68%
  );
  animation: float 18s ease-in-out infinite alternate;
}
.hero__glow--b {
  width: 46vw;
  height: 46vw;
  max-width: 560px;
  max-height: 560px;
  bottom: -22%;
  right: -8%;
  background: radial-gradient(circle, rgba(42, 79, 134, 0.9), transparent 68%);
  animation: float 22s ease-in-out infinite alternate-reverse;
}
@keyframes float {
  to {
    transform: translate3d(40px, -30px, 0) scale(1.08);
  }
}
.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(194, 154, 70, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194, 154, 70, 0.18) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 35%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(
    70% 60% at 50% 35%,
    #000,
    transparent 78%
  );
}
.hero__in {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(2.8rem, 5.5vw, 4.2rem);
}

.hero__title {
  font-family: var(--f-disp);
  font-size: var(--s-4);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.028em;
  margin: 0 0 1.3rem;
  color: var(--white);
}
.hero__title em {
  font-style: italic;
  color: var(--gold-2);
}
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.hero__title .line > span {
  display: block;
  transform: translateY(105%);
  animation: lineUp 0.95s var(--eo) forwards;
}
.hero__title .line:nth-child(1) > span {
  animation-delay: 0.1s;
}
.hero__title .line:nth-child(2) > span {
  animation-delay: 0.22s;
}
.hero__title .line:nth-child(3) > span {
  animation-delay: 0.34s;
}
@keyframes lineUp {
  to {
    transform: translateY(0);
  }
}

.hero__lead {
  font-size: var(--s-1);
  color: var(--txt-mute);
  max-width: 54ch;
  margin: 0 0 1.9rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.4rem;
}
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem 2.5rem;
  margin: 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(194, 154, 70, 0.22);
}
.fact dt {
  font-family: var(--f-mono);
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
  font-weight: 400;
}
.fact dd {
  margin: 0;
  font-family: var(--f-disp);
  font-size: clamp(1.45rem, 3.4vw, 1.95rem);
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}

.showcase {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(194, 154, 70, 0.3);
  box-shadow: var(--sh-3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.showcase__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.3rem;
  border-bottom: 1px solid rgba(194, 154, 70, 0.2);
}
.showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--f-mono);
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.showcase__nav {
  display: flex;
  gap: 0.4rem;
}
.showcase__arrow {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(194, 154, 70, 0.3);
  background: transparent;
  color: var(--gold-2);
  display: grid;
  place-items: center;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}
.showcase__arrow:hover {
  background: var(--gold);
  color: var(--navy);
}
.showcase__stage {
  position: relative;
  min-height: 270px;
  padding: 1.85rem 1.5rem 1.35rem;
}
.sc-slide {
  position: absolute;
  inset: 1.85rem 1.5rem 1.35rem;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 0.55s var(--eo),
    transform 0.55s var(--eo);
}
.sc-slide.is-on {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
  inset: auto;
}
.sc-slide i {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.05rem;
  border-radius: 14px;
  font-size: 1.5rem;
  color: var(--gold-2);
  background: rgba(194, 154, 70, 0.15);
  border: 1px solid rgba(194, 154, 70, 0.3);
}
.sc-slide h2 {
  font-family: var(--f-disp);
  font-size: clamp(1.45rem, 2.9vw, 1.9rem);
  font-weight: 500;
  margin: 0 0 0.55rem;
  color: var(--white);
}
.sc-slide p {
  font-size: 0.94rem;
  color: var(--txt-mute);
  margin: 0;
  max-width: 46ch;
}
.showcase__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.5rem 1.2rem;
}
.showcase__dots {
  display: flex;
  gap: 0.45rem;
}
.showcase__dots button {
  width: 26px;
  height: 4px;
  border-radius: 2px;
  border: 0;
  padding: 0;
  background: rgba(244, 247, 251, 0.22);
  transition:
    background 0.3s var(--ease),
    width 0.3s var(--ease);
}
.showcase__dots button.is-on {
  background: var(--gold);
  width: 38px;
}
.showcase__code {
  font-family: var(--f-mono);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.showcase__bar {
  display: block;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
}
.showcase__bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-3), var(--gold-2));
}

.ticker {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(194, 154, 70, 0.2);
  border-bottom: 1px solid rgba(194, 154, 70, 0.2);
  background: rgba(194, 154, 70, 0.05);
  overflow: hidden;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 0.9rem;
  width: max-content;
  animation: marquee 40s linear infinite;
  font-family: var(--f-mono);
  font-size: 0.71rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--txt-mute);
  white-space: nowrap;
}
.ticker__track i {
  color: var(--gold);
  font-size: 0.45rem;
  font-style: normal;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- 7. TANITIM (resimli alan) ---------- */
.intro__media {
  position: relative;
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-3);
}
.intro__media img {
  width: 100%;
  height: auto;
  display: block;
}
.intro__frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(231, 206, 146, 0.42);
  border-radius: calc(var(--r-xl) - 8px);
  pointer-events: none;
}
.intro__stat {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--sh-2);
}
.intro__statno {
  font-family: var(--f-disp);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-3);
}
.intro__statlbl {
  font-size: 0.74rem;
  line-height: 1.35;
  color: var(--txt-2);
  font-weight: 600;
}
.intro__list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1.6rem 0 1.8rem;
}
.intro__list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.intro__list i {
  flex: 0 0 24px;
  font-size: 1.2rem;
  color: var(--gold-3);
  margin-top: 0.1rem;
}
.intro__list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}
.intro__list span {
  font-size: 0.86rem;
  color: var(--txt-2);
}
.intro__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ---------- 8. GÜVEN ŞERİDİ ---------- */
.trust {
  background: var(--white);
  padding-block: clamp(2.2rem, 4.5vw, 3.4rem);
  border-block: 1px solid var(--line-2);
}
.trust__item {
  text-align: center;
  padding: 0.8rem 0.4rem;
}
.trust__item i {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 0.85rem;
  border-radius: 16px;
  font-size: 1.35rem;
  color: var(--gold-3);
  background: linear-gradient(140deg, var(--gold-4), rgba(194, 154, 70, 0.1));
  border: 1px solid var(--line-gold);
  transition: transform 0.4s var(--eo);
}
.trust__item:hover i {
  transform: translateY(-4px) rotate(-4deg);
}
.trust__item h2 {
  font-family: var(--f-body);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.28rem;
}
.trust__item p {
  font-size: 0.84rem;
  color: var(--txt-2);
  margin: 0;
}

/* ---------- 9. HİZMET KARTLARI ---------- */
.scard {
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 1.8rem 1.5rem 1.6rem;
  box-shadow: var(--sh-1);
  color: inherit;
  transition:
    transform 0.5s var(--eo),
    box-shadow 0.5s var(--eo),
    border-color 0.5s var(--eo);
}
.scard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, var(--navy-2), var(--navy));
  opacity: 0;
  transition: opacity 0.5s var(--eo);
}
.scard > * {
  position: relative;
  z-index: 1;
}
.scard:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-3);
  border-color: var(--line-gold);
}
.scard:hover::before {
  opacity: 1;
}
.scard__no {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  z-index: 1;
  font-family: var(--f-disp);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(20, 36, 62, 0.07);
  transition: color 0.5s var(--eo);
}
.scard:hover .scard__no {
  color: rgba(231, 206, 146, 0.3);
}
.scard__ico {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.1rem;
  border-radius: 15px;
  font-size: 1.35rem;
  color: var(--gold-3);
  background: linear-gradient(140deg, var(--gold-4), rgba(194, 154, 70, 0.08));
  border: 1px solid var(--line-gold);
  transition:
    background 0.5s var(--eo),
    color 0.5s var(--eo),
    transform 0.5s var(--eo);
}
.scard:hover .scard__ico {
  background: linear-gradient(140deg, var(--gold-2), var(--gold-3));
  color: var(--navy);
  transform: translateY(-3px);
}
.scard__title {
  font-family: var(--f-disp);
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.5rem;
  color: var(--navy);
  transition: color 0.5s var(--eo);
}
.scard__text {
  font-size: 0.88rem;
  line-height: 1.68;
  color: var(--txt-2);
  margin: 0 0 1rem;
  transition: color 0.5s var(--eo);
}
.scard__list {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  margin-bottom: 1.2rem;
}
.scard__list li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.82rem;
  color: var(--txt-2);
  transition: color 0.5s var(--eo);
}
.scard__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.scard__code {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.59rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-3);
  border: 1px solid rgba(143, 111, 38, 0.32);
  border-radius: 5px;
  padding: 0.24rem 0.55rem;
  transition:
    color 0.5s var(--eo),
    border-color 0.5s var(--eo);
}
.scard__more {
  display: block;
  margin-top: 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-3);
  transition: color 0.5s var(--eo);
}
.scard__more i {
  transition: transform 0.35s var(--eo);
  display: inline-block;
}
.scard:hover .scard__title {
  color: var(--white);
}
.scard:hover .scard__text,
.scard:hover .scard__list li {
  color: var(--txt-mute);
}
.scard:hover .scard__code {
  color: var(--gold-2);
  border-color: rgba(231, 206, 146, 0.45);
}
.scard:hover .scard__more {
  color: var(--gold-2);
}
.scard:hover .scard__more i {
  transform: translateX(5px);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
}
.filters--sm {
  justify-content: flex-start;
  margin-bottom: 0;
}
.filter {
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--txt-2);
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 42px;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.filter:hover {
  border-color: var(--gold);
  color: var(--gold-3);
  transform: translateY(-2px);
}
.filter.is-on {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.filters__empty {
  text-align: center;
  color: var(--txt-2);
  margin: 2rem 0 0;
}


/* ---------- 11. KADROMUZ ---------- */
.member {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--sh-1);
  transition:
    transform 0.5s var(--eo),
    box-shadow 0.5s var(--eo),
    border-color 0.5s var(--eo);
}
.member:hover {
  transform: translateY(-8px);
  border-color: var(--line-gold);
  box-shadow: var(--sh-3);
}
.member__photo {
  display: block;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy-3), var(--navy));
}
.member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition:
    transform 0.7s var(--eo),
    filter 0.5s var(--ease);
  filter: grayscale(0.28);
}
.member:hover .member__photo img {
  transform: scale(1.06);
  filter: grayscale(0);
}
.member__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 29, 56, 0.5), transparent 52%);
}
.member__photo.is-fallback::before {
  content: attr(data-ini);
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  font-family: var(--f-disp);
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: 0.06em;
}
.member__body {
  display: block;
  padding: 1.05rem 1.2rem 1.25rem;
}
.member__name {
  display: block;
  font-family: var(--f-disp);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--navy);
}
.member__role {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-top: 0.25rem;
}
.member__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--txt-3);
  transition:
    color 0.35s var(--ease),
    gap 0.35s var(--ease);
}
.member:hover .member__more {
  color: var(--gold-3);
  gap: 0.65rem;
}

.ekip-modal .modal-content {
  border: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 40px 100px -40px rgba(11, 29, 56, 0.75);
}
.ekip-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(11, 29, 56, 0.72);
  color: var(--white);
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.ekip-modal__close:hover {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(90deg);
}
.ekip-modal__media {
  position: relative;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(160deg, var(--navy-3), var(--navy));
}
.ekip-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.ekip-modal__ini {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  font-family: var(--f-disp);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold-2);
}
.ekip-modal__media.is-fallback .ekip-modal__ini {
  display: grid;
}
.ekip-modal__media.is-fallback img {
  display: none;
}
.ekip-modal__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.8rem;
  border-radius: 9px;
  background: rgba(11, 29, 56, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(194, 154, 70, 0.35);
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--gold-2);
}
.ekip-modal__body {
  padding: clamp(1.4rem, 3.5vw, 2.3rem);
}
.ekip-modal__role {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin: 0 0 0.35rem;
}
.ekip-modal__name {
  font-family: var(--f-disp);
  font-size: clamp(1.55rem, 3.4vw, 2.05rem);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 1rem;
}
.ekip-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.ekip-modal__tags span {
  font-size: 0.73rem;
  font-weight: 600;
  padding: 0.32rem 0.7rem;
  border-radius: 7px;
  background: var(--gold-4);
  color: var(--gold-3);
  border: 1px solid var(--line-gold);
}
.ekip-modal__bio p {
  font-size: 0.89rem;
  line-height: 1.75;
  color: var(--txt-2);
  margin: 0 0 0.85rem;
}
.ekip-modal__h {
  font-family: var(--f-mono);
  font-size: 0.61rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin: 1.35rem 0 0.55rem;
  font-weight: 500;
}
.ekip-modal__edu li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  color: var(--txt-2);
  margin-bottom: 0.28rem;
}
.ekip-modal__edu li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.ekip-modal__dil {
  font-size: 0.86rem;
  color: var(--txt-2);
  margin: 0;
}
.ekip-modal__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

/* ---------- 12. TIMELINE / DEĞERLER / YILLAR ---------- */
.timeline {
  position: relative;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 26px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.35;
}
.tl {
  position: relative;
}
.tl__dot {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.15rem;
  border-radius: 16px;
  font-family: var(--f-mono);
  font-size: 0.84rem;
  color: var(--navy);
  background: linear-gradient(
    140deg,
    var(--gold-2),
    var(--gold) 50%,
    var(--gold-3)
  );
  box-shadow: 0 10px 24px -12px rgba(194, 154, 70, 0.9);
}
.tl__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 1.35rem 1.25rem;
  height: calc(100% - 66px);
  box-shadow: var(--sh-1);
  transition:
    transform 0.45s var(--eo),
    box-shadow 0.45s var(--eo);
}
.tl:hover .tl__card {
  transform: translateY(-6px);
  box-shadow: var(--sh-2);
}
.tl__card h3 {
  font-family: var(--f-disp);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.45rem;
}
.tl__card p {
  font-size: 0.86rem;
  line-height: 1.68;
  color: var(--txt-2);
  margin: 0;
}

.value {
  position: relative;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--sh-1);
  transition:
    transform 0.45s var(--eo),
    box-shadow 0.45s var(--eo);
}
.value:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-2);
}
.value__no {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  font-family: var(--f-disp);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(20, 36, 62, 0.07);
}
.value i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 15px;
  font-size: 1.3rem;
  color: var(--gold-3);
  background: var(--gold-4);
  border: 1px solid var(--line-gold);
}
.value h3 {
  font-family: var(--f-disp);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.45rem;
}
.value p {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--txt-2);
  margin: 0;
}

.years {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 900px;
  margin-inline: auto;
}
.years li {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--sh-1);
  transition:
    transform 0.4s var(--eo),
    border-color 0.4s var(--ease);
}
.years li:hover {
  transform: translateX(6px);
  border-color: var(--line-gold);
}
.years li > span {
  flex: 0 0 74px;
  font-family: var(--f-mono);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold-3);
  padding-top: 0.15rem;
}
.years h3 {
  font-family: var(--f-disp);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.3rem;
}
.years p {
  font-size: 0.86rem;
  color: var(--txt-2);
  margin: 0;
}

.story__p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--txt-2);
  margin: 0 0 1rem;
}
.story__figures {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.4rem;
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.story__figures strong {
  display: block;
  font-family: var(--f-disp);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-3);
}
.story__figures span {
  font-size: 0.8rem;
  color: var(--txt-2);
}

/* ---------- 13. GÖRÜŞLER ---------- */
.quotes {
  position: relative;
}
.quotes__viewport {
  overflow: hidden;
  padding-block: 0.5rem;
}
.quotes__track {
  display: flex;
  transition: transform 0.6s var(--eo);
}
.quote {
  flex: 0 0 100%;
  margin: 0;
  padding: 0 0.55rem;
}
.quote__inner {
  position: relative;
  height: 100%;
  padding: 2.1rem 1.9rem 1.7rem;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, var(--white), var(--cream));
  box-shadow: var(--sh-1);
  transition:
    transform 0.45s var(--eo),
    box-shadow 0.45s var(--eo),
    border-color 0.4s var(--ease);
}
.quote:hover .quote__inner {
  transform: translateY(-5px);
  box-shadow: var(--sh-2);
  border-color: var(--line-gold);
}
.quote__mark {
  position: absolute;
  top: 0.4rem;
  right: 1.4rem;
  font-family: var(--f-disp);
  font-size: 4.5rem;
  line-height: 1;
  color: #cab383cf;
}
.quote__stars {
  display: flex;
  gap: 0.18rem;
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 0.9rem;
}
.quote blockquote {
  margin: 0;
}
.quote blockquote p {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.005em;
  color: var(--txt);
  margin: 0 0 1.5rem;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-2);
}
.quote__who {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.quote__who strong {
  font-size: 0.9rem;
  color: #e8f3ff;
  font-weight: 600;
}
.quote__who small {
  font-size: 0.74rem;
  color: var(--txt-3);
}
.quote__av {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-3);
  background: var(--gold-4);
  border: 1px solid var(--line-gold);
}
.quote__ok {
  color: #3aa86b;
  font-size: 1rem;
}
.quotes__ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.7rem;
}
.quotes__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--gold-3);
  display: grid;
  place-items: center;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.quotes__arrow:hover {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.06);
  border-color: var(--gold);
}
.quotes__dots {
  display: flex;
  gap: 0.4rem;
}
.quotes__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(20, 36, 62, 0.16);
  transition:
    background 0.3s var(--ease),
    width 0.3s var(--ease),
    border-radius 0.3s var(--ease);
}
.quotes__dots button.is-on {
  background: var(--gold);
  width: 26px;
  border-radius: 5px;
}

/* ---------- 14. S.S.S. ---------- */
.faq-side {
  position: sticky;
  top: calc(var(--hh) + 2rem);
}
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.qa {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-1);
  overflow: hidden;
  transition:
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.qa[open] {
  border-color: var(--line-gold);
  box-shadow: var(--sh-2);
}
.qa summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: var(--s-1);
  color: var(--navy);
  transition: color 0.3s var(--ease);
}
.qa summary::-webkit-details-marker {
  display: none;
}
.qa summary:hover {
  color: var(--gold-3);
}
.qa summary span {
  flex: 1;
}
.qa summary i {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-4);
  color: var(--gold-3);
  font-size: 0.75rem;
  transition:
    transform 0.4s var(--eo),
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}
.qa[open] summary i {
  transform: rotate(135deg);
  background: var(--gold);
  color: var(--navy);
}
.qa__body p {
  margin: 0;
  padding: 0 1.25rem 1.3rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--txt-2);
}
.qa[open] .qa__body {
  animation: openQa 0.45s var(--eo);
}
@keyframes openQa {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- 15. FORM ---------- */
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.3rem, 3.5vw, 2.1rem);
  box-shadow: var(--sh-1);
}
.form__h {
  font-family: var(--f-disp);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 1.2rem;
}
.lbl {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.61rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--txt-2);
  margin-bottom: 0.42rem;
}
.inp {
  width: 100%;
  background: var(--slate);
  border: 1px solid transparent;
  border-radius: var(--r);
  color: var(--txt);
  font-family: var(--f-body);
  font-size: 0.95rem;
  padding: 0.88rem 1rem;
  min-height: 52px;
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  appearance: none;
}
.inp--sm {
  min-height: 44px;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}
select.inp {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230B1D38' stroke-width='1.7' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}
.inp::placeholder {
  color: var(--txt-3);
}
.inp:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(194, 154, 70, 0.15);
}
.inp.is-bad {
  border-color: #c0392b;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.1);
}
textarea.inp {
  resize: vertical;
  min-height: 120px;
}

.chk {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.81rem;
  color: var(--txt-2);
  cursor: pointer;
  margin-top: 0.3rem;
}
.chk input {
  appearance: none;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
  border: 1.5px solid rgba(20, 36, 62, 0.22);
  border-radius: 6px;
  background: var(--white);
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: 0.25s var(--ease);
}
.chk input::after {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg) scale(0);
  transition: transform 0.25s var(--ease);
}
.chk input:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.chk input:checked::after {
  transform: rotate(-45deg) scale(1);
}
.chk a {
  color: var(--gold-3);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form__note {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--txt-3);
  text-align: center;
}
.form__note.is-bad {
  color: #c0392b;
  font-weight: 600;
}
.form__note.is-ok {
  color: #1e7a4c;
  font-weight: 600;
}

.map-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  margin-bottom: 1rem;
}
.map-card iframe {
  display: block;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.info-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1rem 1.15rem;
  box-shadow: var(--sh-1);
  transition:
    transform 0.35s var(--eo),
    border-color 0.35s var(--ease);
}
.info-list li:hover {
  transform: translateX(4px);
  border-color: var(--line-gold);
}
.info-list i {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--gold-4);
  color: var(--gold-3);
  font-size: 0.9rem;
}
.info-list strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.info-list p,
.info-list address {
  margin: 0;
  font-size: 0.84rem;
  color: var(--txt-2);
  line-height: 1.6;
}
.info-list a {
  color: var(--gold-3);
  font-weight: 600;
}

.ccard {
  display: block;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--sh-1);
  transition:
    transform 0.45s var(--eo),
    box-shadow 0.45s var(--eo),
    border-color 0.4s var(--ease);
}
.ccard:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-2);
  border-color: var(--line-gold);
}
.ccard i {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  border-radius: 15px;
  font-size: 1.25rem;
  color: var(--gold-3);
  background: var(--gold-4);
  border: 1px solid var(--line-gold);
}
.ccard h2 {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--txt-3);
  margin: 0 0 0.4rem;
  font-weight: 500;
}
.ccard p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.25rem;
  word-break: break-word;
}
.ccard span {
  font-size: 0.79rem;
  color: var(--txt-2);
}
.ccard--wa i {
  color: #1fa855;
  background: rgba(31, 168, 85, 0.09);
  border-color: rgba(31, 168, 85, 0.22);
}

/* ---------- 16. SAYFA BANNER ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--txt-light);
  padding-block: clamp(2.6rem, 6vw, 4.6rem);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero__bg span {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.page-hero__bg span:first-child {
  width: 44vw;
  height: 44vw;
  max-width: 520px;
  max-height: 520px;
  top: -40%;
  left: -8%;
  background: radial-gradient(circle, rgba(194, 154, 70, 0.3), transparent 68%);
}
.page-hero__bg span:last-child {
  width: 38vw;
  height: 38vw;
  max-width: 440px;
  max-height: 440px;
  bottom: -50%;
  right: -5%;
  background: radial-gradient(circle, rgba(42, 79, 134, 0.85), transparent 68%);
}
.page-hero__in {
  position: relative;
  z-index: 1;
}
.page-hero__title {
  font-family: var(--f-disp);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 0.9rem;
  display: flex;
  justify-content: center;
}
.page-hero__lead {
  font-size: var(--s-1);
  color: var(--txt-mute);
  margin: 0;
  text-align: center;
}

.crumbs {
  margin-bottom: 1.3rem;
}
.crumbs ol {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--txt-mute);
}
.crumbs li + li::before {
  content: "/";
  margin-right: 0.45rem;
  color: var(--gold);
  opacity: 0.6;
}
.crumbs a:hover {
  color: var(--gold-2);
}
.crumbs [aria-current] {
  color: var(--gold-2);
}

/* ---------- 17. CTA BANDI ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-3));
  color: var(--txt-light);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 120% at 85% 50%,
    rgba(194, 154, 70, 0.2),
    transparent 60%
  );
}
.cta-band__in {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding-block: clamp(2.2rem, 4.5vw, 3.2rem);
}
.cta-band h2 {
  font-family: var(--f-disp);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  color: var(--white);
  margin: 0 0 0.4rem;
}
.cta-band p {
  font-size: 0.94rem;
  color: var(--txt-mute);
  margin: 0;
  max-width: 56ch;
}
.cta-band__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ---------- 18. BLOG ---------- */
.blog-tools {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.search {
  position: relative;
  display: block;
}
.search i {
  position: absolute;
  left: 1.05rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--txt-3);
}
.search input {
  width: 100%;
  min-height: 54px;
  padding: 0.9rem 1rem 0.9rem 2.8rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.95rem;
  color: var(--txt);
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.search input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(194, 154, 70, 0.14);
}

.post-card {
  display: block;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--sh-1);
  transition:
    transform 0.5s var(--eo),
    box-shadow 0.5s var(--eo),
    border-color 0.4s var(--ease);
}
.post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-3);
  border-color: var(--line-gold);
}
.post-card__media {
  display: block;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--slate);
}
.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--eo);
}
.post-card:hover .post-card__media img {
  transform: scale(1.06);
}
.post-card__cat {
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  padding: 0.32rem 0.7rem;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-3);
  letter-spacing: 0.04em;
}
.post-card__body {
  display: block;
  padding: 1.25rem 1.3rem 1.4rem;
}
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--f-mono);
  font-size: 0.63rem;
  color: var(--txt-3);
  margin-bottom: 0.6rem;
}
.post-card__title {
  font-family: var(--f-disp);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy);
  margin: 0 0 0.55rem;
  transition: color 0.35s var(--ease);
}
.post-card:hover .post-card__title {
  color: var(--gold-3);
}
.post-card__ozet {
  display: block;
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--txt-2);
  margin-bottom: 0.9rem;
}
.post-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.81rem;
  font-weight: 700;
  color: var(--gold-3);
  transition: gap 0.3s var(--ease);
}
.post-card:hover .post-card__more {
  gap: 0.65rem;
}

.pager {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 2.4rem;
}
.pager__item {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0 0.9rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--txt-2);
  transition: 0.3s var(--ease);
}
.pager__item:hover {
  border-color: var(--gold);
  color: var(--gold-3);
}
.pager__item.is-on {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.side-sticky {
  position: sticky;
  top: calc(var(--hh) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.side-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 1.4rem 1.35rem;
  box-shadow: var(--sh-1);
}
.side-card__h {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin: 0 0 1rem;
  font-weight: 500;
}
.side-cats li + li {
  border-top: 1px solid var(--line-2);
}
.side-cats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.62rem 0;
  font-size: 0.88rem;
  color: var(--txt-2);
  transition:
    color 0.3s var(--ease),
    padding-left 0.3s var(--ease);
}
.side-cats a span {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  color: var(--txt-3);
  background: var(--slate);
  border-radius: 5px;
  padding: 0.12rem 0.45rem;
}
.side-cats a:hover {
  color: var(--gold-3);
  padding-left: 0.3rem;
}
.pop li + li {
  border-top: 1px solid var(--line-2);
}
.pop a {
  display: flex;
  gap: 0.75rem;
  padding: 0.7rem 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--txt-2);
  transition: color 0.3s var(--ease);
}
.pop a:hover {
  color: var(--gold-3);
}
.pop__no {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--gold);
  flex: 0 0 auto;
}
.side-card--wa {
  background: linear-gradient(160deg, var(--navy), var(--navy-3));
  border-color: transparent;
  color: var(--txt-light);
  text-align: center;
}
.side-card--wa > i {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-size: 1.4rem;
  color: #4bd07a;
  background: rgba(75, 208, 122, 0.12);
  border: 1px solid rgba(75, 208, 122, 0.25);
  margin-bottom: 0.9rem;
}
.side-card--wa h2 {
  font-family: var(--f-disp);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.45rem;
}
.side-card--wa p {
  font-size: 0.85rem;
  color: var(--txt-mute);
  margin: 0 0 1.1rem;
}
.side-card__tel {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  font-family: var(--f-mono);
  font-size: 0.82rem;
  color: var(--gold-2);
}

/* ---------- 19. YAZI / DETAY GÖVDESİ ---------- */
.post-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--txt-light);
  padding-block: clamp(2.4rem, 5.5vw, 4rem);
}
.post-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.post-hero__bg span {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.post-hero__bg span:first-child {
  width: 40vw;
  height: 40vw;
  max-width: 480px;
  max-height: 480px;
  top: -35%;
  left: -6%;
  background: radial-gradient(
    circle,
    rgba(194, 154, 70, 0.28),
    transparent 68%
  );
}
.post-hero__bg span:last-child {
  width: 36vw;
  height: 36vw;
  max-width: 420px;
  max-height: 420px;
  bottom: -45%;
  right: -4%;
  background: radial-gradient(circle, rgba(42, 79, 134, 0.8), transparent 68%);
}
.post-hero__in {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.post-hero__cat {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 7px;
  background: rgba(194, 154, 70, 0.16);
  border: 1px solid var(--line-gold);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-2);
  margin-bottom: 0.9rem;
  display: flex;
  justify-content: center;
}
.post-hero__title {
  font-family: var(--f-disp);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 1rem;
  display: flex;
  justify-content: center;
}
.post-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  font-size: 0.82rem;
  color: var(--txt-mute);
  display: flex;
  justify-content: center;
}
.post-hero__meta i {
  color: var(--gold);
  margin-right: 0.3rem;
}

.post {
  padding-bottom: var(--sec-y);
}
.post__cover {
  margin: 2.5rem 2.5rem;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-3);
  position: relative;
  z-index: 2;
}
.post__body {
  max-width: 72ch;
}
.post__lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--txt);
  font-weight: 500;
  padding-left: 1.1rem;
  border-left: 3px solid var(--gold);
  margin: 0 0 1.8rem;
}
.post__body h2 {
  font-family: var(--f-disp);
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 600;
  color: var(--navy);
  margin: 2.2rem 0 0.8rem;
  scroll-margin-top: calc(var(--hh) + 20px);
}
.post__body h3 {
  font-family: var(--f-disp);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.6rem 0 0.6rem;
}
.post__body p {
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--txt-2);
  margin: 0 0 1.1rem;
}
.post__body strong {
  color: var(--navy);
}
.post__ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0 0 1.4rem;
}
.post__ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--txt-2);
}
.post__ul li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.post__quote {
  margin: 1.6rem 0;
  padding: 1.3rem 1.5rem;
  border-radius: var(--r-l);
  background: var(--gold-4);
  border: 1px solid var(--line-gold);
  font-family: var(--f-disp);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--navy);
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem 0 1.8rem;
}
.chip-grid span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--slate);
  border: 1px solid var(--line-2);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--txt-2);
}
.chip-grid i {
  color: var(--gold-3);
}

.steps-inline {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1.2rem 0 1.8rem;
}
.steps-inline li {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--sh-1);
}
.steps-inline > li > span {
  flex: 0 0 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--navy);
  background: linear-gradient(140deg, var(--gold-2), var(--gold-3));
}
.steps-inline strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.steps-inline p {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--txt-2);
  margin: 0;
}

.warn-box {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-top: 1.8rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--r-l);
  background: #fdf6ec;
  border: 1px solid rgba(179, 84, 30, 0.22);
}
.warn-box i {
  color: #b3541e;
  font-size: 1.1rem;
  margin-top: 0.1rem;
}
.warn-box p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #7a4418;
}

.wa-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin: 2rem 0;
  padding: 1.5rem 1.6rem;
  border-radius: var(--r-xl);
  background: linear-gradient(130deg, var(--navy), var(--navy-3));
  color: var(--txt-light);
  box-shadow: var(--sh-2);
}
.wa-box__ico {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 1.5rem;
  color: #4bd07a;
  background: rgba(75, 208, 122, 0.14);
  border: 1px solid rgba(75, 208, 122, 0.28);
}
.wa-box__txt {
  flex: 1 1 260px;
}
.wa-box h2 {
  font-family: var(--f-disp);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.3rem;
}
.wa-box p {
  font-size: 0.87rem;
  color: var(--txt-mute);
  margin: 0;
}

.post__share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin: 1.8rem 0;
  padding-block: 1.2rem;
  border-block: 1px solid var(--line);
}
.post__share > span {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--txt-3);
  margin-right: 0.4rem;
}
.post__share a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--txt-2);
  transition: 0.3s var(--ease);
}
.post__share a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.post__copy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--txt-2);
  transition: 0.3s var(--ease);
}
.post__copy:hover {
  border-color: var(--gold);
  color: var(--gold-3);
}

.author {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem 1.6rem;
  border-radius: var(--r-xl);
  background: var(--cream);
  border: 1px solid var(--line);
}
.author__ava {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--f-disp);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(140deg, var(--gold-2), var(--gold-3));
}
.author__role {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin: 0 0 0.2rem;
}
.author__name {
  font-family: var(--f-disp);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.4rem;
}
.author__bio {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--txt-2);
  margin: 0;
}

.post-toc ol {
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.post-toc li {
  counter-increment: toc;
}
.post-toc a {
  display: flex;
  gap: 0.6rem;
  padding: 0.5rem 0 0.5rem 0.7rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--txt-2);
  border-left: 2px solid transparent;
  transition: 0.3s var(--ease);
}
.post-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--f-mono);
  font-size: 0.66rem;
  color: var(--gold);
}
.post-toc a:hover,
.post-toc a.is-on {
  color: var(--navy);
  border-left-color: var(--gold);
}

.mini-form__h {
  font-family: var(--f-disp);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.3rem;
}
.mini-form__lead {
  font-size: 0.82rem;
  color: var(--txt-2);
  margin: 0 0 1rem;
}
.mini-form .lbl {
  margin-top: 0.7rem;
}
.mini-form button {
  margin-top: 1rem;
}

.svc-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--txt-light);
  padding-block: clamp(2.4rem, 5.5vw, 4.2rem);
}
.svc-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.svc-hero__bg span {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.svc-hero__bg span:first-child {
  width: 44vw;
  height: 44vw;
  max-width: 520px;
  max-height: 520px;
  top: -38%;
  left: -8%;
  background: radial-gradient(circle, rgba(194, 154, 70, 0.3), transparent 68%);
}
.svc-hero__bg span:last-child {
  width: 38vw;
  height: 38vw;
  max-width: 440px;
  max-height: 440px;
  bottom: -48%;
  right: -5%;
  background: radial-gradient(circle, rgba(42, 79, 134, 0.85), transparent 68%);
}
.svc-hero__in {
  position: relative;
  z-index: 1;
}
.svc-hero__code {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid var(--line-gold);
  border-radius: 6px;
  padding: 0.26rem 0.6rem;
  margin-bottom: 0.9rem;
  display: flex;
  justify-content: center;
}
.svc-hero__title {
  font-family: var(--f-disp);
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 0.9rem;
  display: flex;
  justify-content: center;
}
.svc-hero__lead {
  font-size: var(--s-1);
  color: var(--txt-mute);
  margin: 0;
}
.svc-hero__box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(194, 154, 70, 0.28);
  border-radius: var(--r-l);
  padding: 1.3rem 1.4rem;
  backdrop-filter: blur(8px);
}
.svc-hero__box p {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
}
.svc-hero__box strong {
  display: block;
  font-family: var(--f-disp);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}
.svc-hero__box > span {
  display: block;
  font-size: 0.8rem;
  color: var(--txt-mute);
  margin-bottom: 1rem;
}

/* ---------- 20. SEO METNİ ---------- */
.seo-block {
  background: var(--cream);
  border-top: 1px solid var(--line-2);
  padding-block: clamp(2.8rem, 5.5vw, 4.2rem);
}
.seo-inner {
  position: relative;
}
.seo__h {
  font-family: var(--f-disp);
  font-size: var(--s-2);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 1.15rem;
}
.seo__text {
  position: relative;
  max-height: 190px;
  overflow: hidden;
  transition: max-height 0.7s var(--eo);
}
.seo__text::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(to bottom, rgba(251, 248, 242, 0), var(--cream));
  transition: opacity 0.4s var(--ease);
}
.seo-inner.is-open .seo__text {
  max-height: none;
}
.seo-inner.is-open .seo__text::after {
  opacity: 0;
}
.seo__text p {
  font-size: 0.89rem;
  line-height: 1.85;
  color: var(--txt-2);
  margin: 0 0 1rem;
}
.seo__text strong {
  color: var(--navy);
}
.seo__text em {
  font-style: normal;
  color: var(--gold-3);
  font-weight: 600;
}
.seo__text h3 {
  font-family: var(--f-disp);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.5rem 0 0.55rem;
}
.seo__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  background: transparent;
  border: 0;
  padding: 0.5rem 0;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--gold-3);
  cursor: pointer;
}
.seo__toggle i {
  transition: transform 0.4s var(--eo);
}
.seo-inner.is-open .seo__toggle i {
  transform: rotate(180deg);
}
.seo__toggle:hover {
  color: var(--navy);
}

/* ---------- 21. FOOTER ---------- */
.site-footer {
  background: var(--navy);
  color: var(--txt-light);
  padding-block: clamp(2.8rem, 5.5vw, 4.2rem) 1.4rem;
  border-top: 2px solid var(--gold);
}
.brand--footer {
  margin-bottom: 1.05rem;
}
.footer__about {
  font-size: 0.86rem;
  color: var(--txt-mute);
  max-width: 34ch;
  margin: 0 0 1.1rem;
}
.footer__social {
  display: flex;
  gap: 0.5rem;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(194, 154, 70, 0.28);
  color: var(--gold-2);
  transition: 0.3s var(--ease);
}
.footer__social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}
.footer__h {
  font-family: var(--f-mono);
  font-size: 0.61rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
  font-weight: 400;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.52rem;
}
.footer__list a {
  font-size: 0.86rem;
  color: var(--txt-mute);
  transition:
    color 0.3s var(--ease),
    padding-left 0.3s var(--ease);
}
.footer__list a:hover {
  color: var(--gold-2);
  padding-left: 0.35rem;
}
.footer__addr {
  font-size: 0.86rem;
  line-height: 1.8;
  color: var(--txt-mute);
}
.footer__addr a {
  color: var(--white);
}
.footer__addr a:hover {
  color: var(--gold-2);
}
.footer__legal {
  margin: clamp(2rem, 4.5vw, 3rem) 0 1.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.73rem;
  line-height: 1.75;
  color: rgba(244, 247, 251, 0.75);
}
.footer__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: rgba(244, 247, 251, 0.75);
}
.footer__mini {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer__mini a:hover {
  color: var(--gold-2);
}

/* ---------- 22. MOBİL ALT ÇUBUK ---------- */
.bottombar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 1045;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(11, 29, 56, 0.96);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-top: 1px solid rgba(194, 154, 70, 0.3);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(120%);
  transition: transform 0.5s var(--eo);
  box-shadow: 0 -10px 30px -18px rgba(0, 0, 0, 0.8);
  margin: 10px;
  border-radius: 10px;
}
.bottombar.is-on {
  transform: translateY(0);
}
.bottombar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  padding: 0.6rem 0.3rem 0.65rem;
  min-height: 64px;
  color: var(--txt-mute);
  font-size: 0.66rem;
  transition:
    color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.bottombar__ico {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  font-size: 0.8rem;
  color: var(--gold-2);
  background: rgba(194, 154, 70, 0.12);
  transition: 0.3s var(--ease);
}
.bottombar__item:active {
  background: rgba(194, 154, 70, 0.12);
  color: var(--white);
}
.bottombar__item--wa .bottombar__ico {
  color: #4bd07a;
  background: rgba(75, 208, 122, 0.14);
}
.bottombar__item + .bottombar__item {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

/* ---------- 23. AVUKAT DESTEĞİ WIDGET ---------- */
.fab {
  position: fixed;
  right: var(--shell);
  bottom: calc(var(--shell) + 74px);
  z-index: 1060;
}
.fab__btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: linear-gradient(
    140deg,
    var(--gold-2),
    var(--gold) 50%,
    var(--gold-3)
  );
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px -14px rgba(194, 154, 70, 0.95);
  transition:
    transform 0.4s var(--eo),
    box-shadow 0.4s var(--ease);
}
.fab__btn:hover {
  transform: scale(1.06);
}
.fab__i {
  position: absolute;
  font-size: 1.4rem;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.fab__i--close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
}
.fab.is-open .fab__i--open {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}
.fab.is-open .fab__i--close {
  opacity: 1;
  transform: none;
}
.fab__ping {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0.7;
  animation: ping 2.6s var(--ease) infinite;
  pointer-events: none;
}
@keyframes ping {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  70%,
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.fab.is-open .fab__ping {
  display: none;
}

.fab__panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(92vw, 342px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: 0 34px 80px -30px rgba(11, 29, 56, 0.55);
  overflow: hidden;
  transform-origin: bottom right;
  animation: fabIn 0.4s var(--eo);
}
@keyframes fabIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fab__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(130deg, var(--navy), var(--navy-3));
  color: var(--txt-light);
}
.fab__ava {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--navy);
  background: linear-gradient(140deg, var(--gold-2), var(--gold-3));
}
.fab__title {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--white);
}
.fab__sub {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--txt-mute);
}
.fab__live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4bd07a;
  box-shadow: 0 0 0 3px rgba(75, 208, 122, 0.22);
}
.fab__x {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: var(--txt-light);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
}
.fab__x:hover {
  background: var(--gold);
  color: var(--navy);
}
.fab__body {
  padding: 1.1rem 1.1rem 1.2rem;
  max-height: min(62vh, 440px);
  overflow-y: auto;
}
.fab__step {
  display: none;
}
.fab__step.is-on {
  display: block;
  animation: openQa 0.35s var(--eo);
}
.fab__q {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.8rem;
}
.fab__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.fab__chips button {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--slate);
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--txt-2);
  min-height: 38px;
  transition: 0.3s var(--ease);
}
.fab__chips button:hover {
  background: var(--gold-4);
  border-color: var(--gold);
  color: var(--gold-3);
}
.fab__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 0;
  padding: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--txt-3);
}
.fab__back:hover {
  color: var(--gold-3);
}
.fab__picked {
  font-size: 0.8rem;
  color: var(--txt-2);
  margin: 0 0 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9px;
  background: var(--gold-4);
  border: 1px solid var(--line-gold);
}
.fab__picked strong {
  color: var(--gold-3);
}
.fab__err {
  margin: 0.1rem 0 0.6rem;
  font-size: 0.76rem;
  color: #c0392b;
  font-weight: 600;
  min-height: 1em;
}
.fab__note {
  margin: 0.7rem 0 0;
  font-size: 0.71rem;
  line-height: 1.55;
  color: var(--txt-3);
}

.to-top {
  position: fixed;
  right: var(--shell);
  bottom: calc(var(--shell) + 146px);
  z-index: 1044;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--gold-3);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    background 0.3s var(--ease);
  box-shadow: var(--sh-2);
}
.to-top.is-on {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.to-top:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ---------- 24. REVEAL ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s var(--eo),
    transform 0.8s var(--eo);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
.is-hidden {
  display: none !important;
}

/* ---------- 25. RESPONSIVE ---------- */
@media (min-width: 1200px) {
  .fab {
    bottom: var(--shell);
  }
  .to-top {
    bottom: calc(var(--shell) + 74px);
  }
}
@media (max-width: 1199.98px) {
  body {
    padding-bottom: 64px;
  }
  :root {
    --hh: 68px;
  }
}
@media (max-width: 991.98px) {
  .hero {
    padding-top: 2rem;
  }
  .hero__cta .btn-gold,
  .hero__cta .btn-ghost {
    flex: 1 1 100%;
  }
  .showcase {
    margin-top: 2.2rem;
  }
  .showcase__stage {
    min-height: 250px;
  }
  .faq-side,
  .side-sticky {
    position: static;
  }
  .timeline::before {
    display: none;
  }
  .ekip-modal__media {
    min-height: 280px;
  }
  .ekip-modal__badge {
    display: none;
  }
  .post__cover {
    margin-top: -1.6rem;
  }
  .intro__cta .btn-navy,
  .intro__cta .btn-outline {
    flex: 1 1 100%;
  }
  .cta-band__in {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767.98px) {
  .sec-head {
    text-align: left;
  }
  .sec-title {
    text-align: left;
  }
  .filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scrollbar-width: none;
  }
  .filters::-webkit-scrollbar {
    display: none;
  }
  .filter {
    flex: 0 0 auto;
  }
  .member__body {
    padding: 0.85rem 0.95rem 1.05rem;
  }
  .member__name {
    font-size: 0.98rem;
  }
  .member__more {
    font-size: 0.74rem;
  }
  .quote__inner {
    padding: 1.6rem 1.3rem 1.35rem;
  }
  .quote__mark {
    right: 1rem;
    font-size: 3.4rem;
  }
  .years li {
    flex-direction: column;
    gap: 0.5rem;
  }
  .years li > span {
    flex: none;
  }
  .wa-box {
    padding: 1.2rem;
  }
  .wa-box .btn-gold {
    width: 100%;
  }
  .author {
    flex-direction: column;
    padding: 1.2rem;
  }
  .footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .intro__stat {
    left: 0.9rem;
    bottom: 0.9rem;
    padding: 0.7rem 0.9rem;
  }
  .intro__statno {
    font-size: 1.7rem;
  }
}
@media (max-width: 575.98px) {
  .trust__item {
    padding: 0.4rem 0.2rem;
  }
  .trust__item i {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }
  .qa summary {
    font-size: 0.96rem;
    padding: 1rem 1.05rem;
    gap: 0.7rem;
  }
  .qa__body p {
    padding: 0 1.05rem 1.15rem;
  }
  .ekip-modal__contact .btn-gold,
  .ekip-modal__contact .btn-navy {
    flex: 1 1 100%;
  }

  .post__share {
    gap: 0.45rem;
  }
  .fab {
    right: 0.9rem;
    bottom: calc(0.9rem + 74px);
  }
  .to-top {
    right: 0.9rem;
    bottom: calc(0.9rem + 146px);
    width: 40px;
    height: 40px;
  }
}

@supports (-webkit-touch-callout: none) {
  .inp,
  .search input {
    font-size: 16px;
  }
}

/* ---------- 26. AZALTILMIŞ HAREKET ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__title .line > span {
    transform: none !important;
  }
  .bottombar {
    transform: translateY(0);
  }
}

/* ---------- 27. YAZDIRMA ---------- */
@media print {
  .site-header,
  .topline,
  .bottombar,
  .to-top,
  .map-card,
  .read-progress,
  .sidebar,
  .showcase,
  .quotes__ctrl,
  .fab,
  .cta-band {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
    padding: 0;
  }
  .hero,
  .page-hero,
  .post-hero,
  .svc-hero,
  .site-footer,
  .section--navy {
    background: #fff !important;
    color: #000 !important;
  }
  .seo__text {
    max-height: none !important;
  }
  .seo__text::after {
    display: none;
  }
}

/* ============================================================
   28. ALTERNATİF HERO — RESİMLİ SLIDER
   (index.html'deki .hero-slider bölümü içindir)
   ============================================================ */
.hero-slider {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.hs-stage {
  position: relative;
  min-height: clamp(460px, 72vh, 720px);
}

.hs-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.9s var(--ease),
    visibility 0.9s var(--ease);
}
.hs-slide.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  position: relative;
}
.hs-slide__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hs-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}
.hs-slide.is-on .hs-slide__media img {
  animation: hsZoom 9s var(--ease) forwards;
}
@keyframes hsZoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

.hs-slide__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(11, 29, 56, 0.96) 0%,
      rgba(11, 29, 56, 0.78) 42%,
      rgba(11, 29, 56, 0.32) 72%,
      rgba(11, 29, 56, 0.55) 100%
    ),
    linear-gradient(to top, rgba(11, 29, 56, 0.85) 0%, transparent 45%);
}
.hs-slide__in {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(3rem, 7vw, 5rem) clamp(6rem, 10vw, 8rem);
}
.hs-slide__box {
  max-width: 640px;
}

.hs-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.1rem;
  font-family: var(--f-mono);
  font-size: var(--s--1);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.hs-slide__title {
  font-family: var(--f-disp);
  font-size: clamp(2.2rem, 5.2vw, 4.2rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 1.2rem;
}
.hs-slide__title span,
.hs-slide__title em {
  display: block;
}
.hs-slide__title em {
  font-style: italic;
  color: var(--gold-2);
}
.hs-slide__lead {
  font-size: var(--s-1);
  line-height: 1.75;
  color: var(--txt-mute);
  max-width: 52ch;
  margin: 0 0 1.9rem;
}
.hs-slide__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.2rem;
}
.hs-slide__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(194, 154, 70, 0.26);
}
.hs-slide__facts strong {
  display: block;
  font-family: var(--f-disp);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-2);
}
.hs-slide__facts span {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--txt-mute);
}

/* giriş animasyonu */
.hs-slide.is-on .hs-slide__eyebrow,
.hs-slide.is-on .hs-slide__title,
.hs-slide.is-on .hs-slide__lead,
.hs-slide.is-on .hs-slide__cta,
.hs-slide.is-on .hs-slide__facts {
  animation: hsUp 0.8s var(--eo) backwards;
}
.hs-slide.is-on .hs-slide__eyebrow {
  animation-delay: 0.1s;
}
.hs-slide.is-on .hs-slide__title {
  animation-delay: 0.2s;
}
.hs-slide.is-on .hs-slide__lead {
  animation-delay: 0.3s;
}
.hs-slide.is-on .hs-slide__cta {
  animation-delay: 0.4s;
}
.hs-slide.is-on .hs-slide__facts {
  animation-delay: 0.5s;
}
@keyframes hsUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* alt kontrol şeridi */
.hs-ui {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 3;
  background: linear-gradient(
    to top,
    rgba(11, 29, 56, 0.92),
    rgba(11, 29, 56, 0)
  );
  padding-top: 2.5rem;
}
.hs-ui__in {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.1rem;
}

.hs-thumbs {
  display: flex;
  gap: 0.6rem;
}
.hs-thumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.8rem 0.4rem 0.4rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 29, 56, 0.55);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition:
    border-color 0.35s var(--ease),
    background 0.35s var(--ease),
    transform 0.35s var(--eo);
}
.hs-thumb:hover {
  transform: translateY(-3px);
  border-color: var(--line-gold);
}
.hs-thumb.is-on {
  border-color: var(--gold);
  background: rgba(194, 154, 70, 0.16);
}
.hs-thumb__img {
  display: block;
  width: 56px;
  height: 38px;
  border-radius: 8px;
  overflow: hidden;
  flex: 0 0 56px;
}
.hs-thumb__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hs-thumb__txt {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--txt-mute);
  white-space: nowrap;
}
.hs-thumb.is-on .hs-thumb__txt {
  color: var(--gold-2);
}

.hs-ctrl {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.hs-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(194, 154, 70, 0.34);
  background: rgba(11, 29, 56, 0.55);
  backdrop-filter: blur(8px);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  transition: 0.3s var(--ease);
}
.hs-arrow:hover {
  background: var(--gold);
  color: var(--navy);
}
.hs-count {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--txt-mute);
  padding-inline: 0.4rem;
  white-space: nowrap;
}
.hs-count b {
  color: var(--gold-2);
  font-weight: 500;
}

.hs-bar {
  display: block;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}
.hs-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-3), var(--gold-2));
}

@media (max-width: 991.98px) {
  .hs-stage {
    min-height: clamp(500px, 80vh, 660px);
  }
  .hs-slide__veil {
    background:
      linear-gradient(
        90deg,
        rgba(11, 29, 56, 0.95) 0%,
        rgba(11, 29, 56, 0.82) 60%,
        rgba(11, 29, 56, 0.6) 100%
      ),
      linear-gradient(to top, rgba(11, 29, 56, 0.92) 0%, transparent 55%);
  }
  .hs-ui__in {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }
  .hs-thumbs {
    overflow-x: auto;
    padding-bottom: 0.3rem;
    scrollbar-width: none;
  }
  .hs-thumbs::-webkit-scrollbar {
    display: none;
  }
  .hs-thumb {
    flex: 0 0 auto;
  }
  .hs-ctrl {
    justify-content: space-between;
  }
}
@media (max-width: 575.98px) {
  .hs-slide__cta {
    flex-direction: column;
  }
  .hs-slide__cta .btn-gold,
  .hs-slide__cta .btn-ghost {
    width: 100%;
  }
  .hs-thumb__txt {
    display: none;
  }
  .hs-thumb {
    padding: 0.35rem;
  }
  .hs-slide__facts {
    gap: 0.9rem 1.6rem;
  }
}

/* ============================================================
   29. AVUKAT DETAY SAYFASI
   ============================================================ */
.ekip-modal__detay {
  margin-top: 1.5rem;
}
.ekip-modal__contact {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
}

.member--link {
  display: block;
}

.av-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--txt-light);
  padding-block: clamp(2.4rem, 5.5vw, 4.4rem);
}
.av-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.av-hero__bg span {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
}
.av-hero__bg span:first-child {
  width: 46vw;
  height: 46vw;
  max-width: 540px;
  max-height: 540px;
  top: -36%;
  left: -10%;
  background: radial-gradient(circle, rgba(194, 154, 70, 0.3), transparent 68%);
}
.av-hero__bg span:last-child {
  width: 40vw;
  height: 40vw;
  max-width: 460px;
  max-height: 460px;
  bottom: -46%;
  right: -6%;
  background: radial-gradient(circle, rgba(42, 79, 134, 0.85), transparent 68%);
}
.av-hero__in {
  position: relative;
  z-index: 1;
}

.av-hero__photo {
  position: relative;
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: linear-gradient(150deg, var(--navy-3), var(--navy));
  box-shadow: var(--sh-3);
}
.av-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.av-hero__photo.is-fallback::before {
  content: attr(data-ini);
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  font-family: var(--f-disp);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold-2);
}
.av-hero__frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(231, 206, 146, 0.45);
  border-radius: calc(var(--r-xl) - 7px);
  pointer-events: none;
  z-index: 2;
}

.av-hero__name {
  font-family: var(--f-disp);
  font-size: clamp(2rem, 4.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 0.9rem;
}
.av-hero__lead {
  font-size: 15px;
  color: var(--txt-mute);
  max-width: 58ch;
  margin: 0 0 1.6rem;
}
.av-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.4rem;
  margin: 0 0 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(194, 154, 70, 0.24);
}
.av-hero__meta dt {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.28rem;
  font-weight: 400;
}
.av-hero__meta dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}
.av-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.av-areas {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin: 1.2rem 0 1.8rem;
}
.av-area {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--r-l);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--sh-1);
  transition:
    transform 0.4s var(--eo),
    border-color 0.35s var(--ease),
    box-shadow 0.4s var(--eo);
}
.av-area:hover {
  transform: translateY(-5px);
  border-color: var(--line-gold);
  box-shadow: var(--sh-2);
}
.av-area i {
  font-size: 1.35rem;
  color: var(--gold-3);
  margin-bottom: 0.35rem;
}
.av-area__ad {
  font-family: var(--f-disp);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.av-area__kod {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-3);
}

.av-edu {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0 0 1.6rem;
}
.av-edu li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 0.9rem 1.1rem;
  border-radius: var(--r);
  background: var(--slate);
  border: 1px solid var(--line-2);
}
.av-edu li > span {
  flex: 0 0 56px;
  font-family: var(--f-mono);
  font-size: 0.82rem;
  color: var(--gold-3);
}
.av-edu li p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--txt-2);
}

.av-memb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}
.av-memb li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--gold-4);
  border: 1px solid var(--line-gold);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gold-3);
}

.av-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.av-contact li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.av-contact i {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--gold-4);
  color: var(--gold-3);
  font-size: 0.88rem;
}
.av-contact span {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--txt-3);
  margin-bottom: 0.12rem;
}
.av-contact a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  word-break: break-word;
}
.av-contact a:hover {
  color: var(--gold-3);
}
.av-contact p,
.av-contact address {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--txt-2);
}

.av-work {
  position: relative;
  height: 100%;
  padding: 1.5rem 1.4rem;
  border-radius: var(--r-l);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  transition:
    transform 0.45s var(--eo),
    box-shadow 0.45s var(--eo),
    border-color 0.35s var(--ease);
}
.av-work:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-2);
  border-color: var(--line-gold);
}
.av-work__no {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--gold);
}
.av-work h3 {
  font-family: var(--f-disp);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.45rem;
  padding-right: 2.2rem;
}
.av-work p {
  font-size: 0.87rem;
  line-height: 1.7;
  color: var(--txt-2);
  margin: 0;
}

@media (max-width: 991.98px) {
  .av-hero__photo {
    max-width: 340px;
    margin-inline: auto;
  }
  .av-hero__cta .btn-gold,
  .av-hero__cta .btn-ghost {
    flex: 1 1 100%;
  }
}
/* INFAZ HESAPLAMA CSS */
.infaz-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
  overflow: hidden;
}

.infaz-card-header {
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #eee;
}

.infaz-step {
  width: 40px;
  height: 40px;
  background-color: #0a1a33; /* Site lacivert rengi */
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.infaz-card-title {
  margin: 0;
  font-size: 1.1rem;
  color: #0a1a33;
  font-weight: 600;
}

.infaz-card-desc {
  margin: 0;
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 0.25rem;
}

.infaz-card-body {
  padding: 2rem;
}

.infaz-lbl {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
  display: block;
  font-size: 0.95rem;
}

.infaz-lbl i {
  margin-right: 6px;
  color: #495057;
}

.infaz-inp {
  border: 1px solid #ced4da;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #495057;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.infaz-inp:focus {
  border-color: #0a1a33;
  box-shadow: 0 0 0 0.25rem rgba(10, 26, 51, 0.1);
}
select.infaz-inp {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
}

.infaz-input-wrapper {
  position: relative;
}
.infaz-icon-right {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  pointer-events: none;
}

.infaz-radio-box {
  display: block;
  cursor: pointer;
  height: 100%;
}
.infaz-radio-content {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #495057;
  background-color: #fcfcfc;
}
.infaz-radio-content i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ced4da;
  transition: color 0.2s ease;
}
.infaz-radio-content span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.infaz-radio-box.active .infaz-radio-content {
  border-color: #c5a975; /* Gold/brown color from theme */
  background-color: #fff;
  color: #0a1a33;
  box-shadow: 0 4px 12px rgba(197, 169, 117, 0.15);
}
.infaz-radio-box.active .infaz-radio-content i {
  color: #c5a975;
}

.infaz-input-group {
  position: relative;
  display: flex;
  align-items: stretch;
}
.infaz-input-group .infaz-inp {
  padding-right: 3.5rem; /* Space for suffix */
  font-weight: 600;
  font-size: 1.1rem;
}
.infaz-input-suffix {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  color: #b08d57; /* Dark gold */
  font-weight: 700;
  font-size: 0.75rem;
  border-left: 1px solid #ced4da;
}

.btn-infaz-submit {
  background-color: #0a1a33;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(10, 26, 51, 0.3);
}
.btn-infaz-submit:hover {
  background-color: #122c54;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 26, 51, 0.4);
}

.infaz-result-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid #c5a975;
}
.infaz-result-title {
  color: #0a1a33;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.infaz-result-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #dee2e6;
  padding: 0.75rem 0;
}
.infaz-result-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.infaz-result-label {
  color: #6c757d;
  font-weight: 500;
}
.infaz-result-value {
  color: #0a1a33;
  font-weight: 700;
}

/* Select option active style */
#sucTuru option {
  padding: 10px;
}

/* ---------- DROPDOWN MENU ---------- */
.has-dropdown-x {
  position: relative;
}
.dropdown-menu-x {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2);
  padding: 1.5rem;
  width: 900px;
  max-width: 90vw;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  z-index: 1000;
  pointer-events: none;
}
.has-dropdown-x:hover .dropdown-menu-x {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown-menu-x__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.dropdown-item-x {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem;
  border-radius: var(--r-lg);
  transition: background 0.3s var(--ease);
  text-decoration: none;
  color: var(--txt);
}
.dropdown-item-x:hover {
  background: var(--bg-alt);
}
.dropdown-item-x__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--cream);
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.dropdown-item-x__text {
  display: block;
}
.dropdown-item-x__title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.dropdown-item-x__desc {
  display: block;
  font-size: 0.75rem;
  color: var(--txt-2);
  line-height: 1.4;
}

/* ---------- SIDEBAR DROPDOWN ---------- */
.sidebar__has-dropdown > a {
  display: flex;
  align-items: center;
  width: 100%;
}
.sidebar__has-dropdown > a i.bi-chevron-down {
  transition: transform 0.3s var(--ease);
}
.sidebar__has-dropdown.is-open > a i.bi-chevron-down {
  transform: rotate(180deg);
}
.sidebar__dropdown {
  display: none;
  list-style: none;
  padding: 0.5rem 0 0.5rem 3.5rem;
  margin: 0;
}
.sidebar__dropdown li a {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--txt-2);
  padding: 0.5rem 0;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.sidebar__dropdown li a:hover {
  color: var(--gold);
}
.sidebar__dropdown li a i {
  color: var(--gold-3);
  font-size: 1.1rem;
}
/*hesaplama*/
.hesapla-araci * {
  box-sizing: border-box;
}
.hesapla-araci {
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    Arial,
    sans-serif;
  color: #2a2f3a;
  line-height: 1.6;
  padding: 80px 0;
}
.hesapla-araci .hpl-wrap {
  max-width: 920px;
  margin: 0 auto;
}

/* ---- sekmeler ---- */
.hesapla-araci .hpl-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.8rem;
}
.hesapla-araci .hpl-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #e6e2d8;
  background: #ffffff;
  color: #6b7280;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  font-family: inherit;
  cursor: pointer;
  transition:
    background 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease;
}
.hesapla-araci .hpl-tab svg {
  color: #9a7833;
  flex: none;
}
.hesapla-araci .hpl-tab:hover {
  border-color: #bd9648;
  color: #1b2a44;
}
.hesapla-araci .hpl-tab.is-active {
  background: #1b2a44;
  color: #ffffff;
  border-color: #1b2a44;
}
.hesapla-araci .hpl-tab.is-active svg {
  color: #d8b874;
}

/* ---- paneller ---- */
.hesapla-araci .hpl-panel {
  display: none;
}
.hesapla-araci .hpl-panel.is-active {
  display: block;
  animation: hplPop 0.35s ease;
}

/* ---- kart ---- */
.hesapla-araci .hpl-card {
  background: #ffffff;
  border: 1px solid #efeadd;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(27, 42, 68, 0.06);
  overflow: hidden;
}
.hesapla-araci .hpl-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(150deg, #1b2a44, #24365a);
  color: #ffffff;
  padding: 22px 26px;
}
.hesapla-araci .hpl-ic {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 14px;
  background: rgba(216, 184, 116, 0.16);
  color: #d8b874;
  display: grid;
  place-items: center;
}
.hesapla-araci .hpl-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
}
.hesapla-araci .hpl-head p {
  margin: 0.15rem 0 0;
  color: #c3ccda;
  font-size: 0.86rem;
}
.hesapla-araci .hpl-body {
  padding: 26px;
}

/* ---- form ---- */
.hesapla-araci .hpl-form {
  margin: 0;
}
.hesapla-araci .hpl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hesapla-araci .hpl-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.hesapla-araci .hpl-field.hpl-full {
  grid-column: 1 / -1;
}
.hesapla-araci .hpl-field label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #1b2a44;
}
.hesapla-araci .hpl-field input {
  font-family: inherit;
  font-size: 0.95rem;
  color: #2a2f3a;
  border: 1px solid #e6e2d8;
  border-radius: 12px;
  padding: 0.72rem 0.9rem;
  background: #fbf9f4;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.hesapla-araci .hpl-field input:focus {
  outline: none;
  border-color: #bd9648;
  box-shadow: 0 0 0 3px rgba(189, 150, 72, 0.16);
}

/* ---- oran hazır butonları ---- */
.hesapla-araci .hpl-presets {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.3rem;
}
.hesapla-araci .hpl-presets button {
  border: 1px solid #e6e2d8;
  background: #ffffff;
  color: #6b7280;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}
.hesapla-araci .hpl-presets button:hover {
  border-color: #bd9648;
  color: #1b2a44;
}

/* ---- aksiyon / buton ---- */
.hesapla-araci .hpl-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.hesapla-araci .hpl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  color: #241a08;
  background: linear-gradient(120deg, #bd9648, #d8b874);
  border-radius: 12px;
  padding: 0.8rem 1.5rem;
  box-shadow: 0 8px 20px rgba(189, 150, 72, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.hesapla-araci .hpl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(189, 150, 72, 0.34);
}
.hesapla-araci .hpl-btn svg {
  color: #241a08;
}

/* ---- hata ---- */
.hesapla-araci .hpl-err {
  display: none;
  color: #c0392b;
  font-size: 0.86rem;
  margin-top: 0.6rem;
}
.hesapla-araci .hpl-err.is-show {
  display: block;
}

/* ---- sonuç ---- */
.hesapla-araci .hpl-result {
  display: none;
  margin-top: 1.4rem;
  border: 1px dashed #e6e2d8;
  border-radius: 16px;
  background: #f3ede1;
  padding: 20px;
}
.hesapla-araci .hpl-result.is-show {
  display: block;
  animation: hplPop 0.35s ease;
}
.hesapla-araci .hpl-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e6e2d8;
  font-size: 0.95rem;
}
.hesapla-araci .hpl-row:last-of-type {
  border-bottom: 0;
}
.hesapla-araci .hpl-row span {
  color: #6b7280;
}
.hesapla-araci .hpl-row b {
  color: #1b2a44;
  font-weight: 600;
}
.hesapla-araci .hpl-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.6rem;
  background: #1b2a44;
  color: #ffffff;
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
}
.hesapla-araci .hpl-total span {
  color: #ffffff;
}
.hesapla-araci .hpl-total b {
  color: #d8b874;
  font-weight: 700;
  font-size: 1.35rem;
}

/* ---- bilgi notu ---- */
.hesapla-araci .hpl-note {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.6;
  margin-top: 1rem;
  background: #ffffff;
  border: 1px solid #efeadd;
  border-radius: 12px;
  padding: 0.9rem 1rem;
}
.hesapla-araci .hpl-note svg {
  color: #9a7833;
  flex: none;
  margin-top: 0.15rem;
}

/* ---- animasyon ---- */
@keyframes hplPop {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---- responsive ---- */
@media (max-width: 640px) {
  .hesapla-araci .hpl-grid {
    grid-template-columns: 1fr;
  }
  .hesapla-araci .hpl-head {
    padding: 18px 18px;
  }
  .hesapla-araci .hpl-body {
    padding: 20px 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hesapla-araci .hpl-panel.is-active,
  .hesapla-araci .hpl-result.is-show {
    animation: none;
  }
  .hesapla-araci .hpl-btn {
    transition: none;
  }
}

/* ---------- HERO STATIC ---------- */
.hero-static {
  background: var(--navy);
  color: var(--white);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.hero-static .container-xl {
  position: relative;
  z-index: 2;
}
.hero-static__eyebrow {
  color: var(--gold);
  font-family: var(--f-mono);
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.hero-static__eyebrow .eyebrow__dot {
  background: var(--gold);
  width: 24px;
  height: 1px;
  display: inline-block;
}
.hero-static__title {
  color: var(--white);
  font-family: var(--f-disp);
  line-height: 1.1;
}
.hero-static__lead {
  color: var(--txt-light);
  opacity: 0.85;
  font-size: 1.1rem;
  max-width: 500px;
}
.hero-static__btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.8rem 1.6rem;
  border-radius: 99px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s;
}
.hero-static__btn-primary:hover {
  transform: translateY(-2px);
  color: var(--navy);
}
.hero-static__btn-secondary {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 0.8rem 1.6rem;
  border-radius: 99px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}
.hero-static__btn-secondary:hover {
  background: rgba(255,255,255,0.05);
  color: var(--white);
}
.hero-static__btn-secondary i {
  color: #25D366;
}
.hero-static__fact-strong {
  display: block;
  font-weight: bold;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1.2;
  font-family: var(--f-disp);
}
.hero-static__fact-span {
  text-transform: uppercase;
  color: var(--txt-3);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.hero-static__image-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  z-index: 1;
}
.hero-static__arch {
  border-radius: 240px 240px 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.hero-static__arch img {
  object-fit: cover;
  aspect-ratio: 4/5;
}
.hero-static__badge {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background: var(--white);
  padding: 1.2rem;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}
.hero-static__badge-icon {
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hero-static__badge-title {
  display: block;
  color: var(--navy);
  font-weight: bold;
  margin: 0;
  font-size: 1.15rem;
  line-height: 1;
  font-family: var(--f-disp);
}
.hero-static__badge-text {
  font-size: 0.8rem;
  line-height: 1.3;
  display: block;
  margin-top: 5px;
  color: var(--txt-2);
  max-width: 130px;
}

/* ---------- GRID PATTERN SECTION ---------- */
.section--grid {
  position: relative;
  background-color: var(--navy); /* Ensure dark background */
}
.section--grid::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center top;
  pointer-events: none;
  z-index: 0;
}
.section--grid > * {
  position: relative;
  z-index: 1;
}

/* Dark Cards for Grid Sections */
.section--grid .scard,
.section--grid .lawyer-card,
.section--grid .quote__inner {
  background: #192a44 !important; /* Slightly lighter navy */
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.section--grid .scard__title,
.section--grid .lawyer-card h3 {
  color: var(--white) !important;
}

.section--grid .scard__text,
.section--grid .scard__list li,
.section--grid .lawyer-card p,
.section--grid .quote__who,
.section--grid .quote__who small,
.section--grid blockquote p,
.section--grid .scard__more {
  color: rgba(255, 255, 255, 0.7) !important;
}

.section--grid .lawyer-card h3 span {
  color: var(--gold) !important;
}

.section--grid .scard__no {
  color: rgba(255, 255, 255, 0.1) !important;
}

.section--grid .scard:hover {
  background: #1e3352 !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

/* ---------- HERO STATIC MOBILE ---------- */
@media (max-width: 767.98px) {
  .hero-static__buttons {
    flex-wrap: nowrap !important;
  }
  .hero-static__buttons > a {
    flex: 1;
    justify-content: center;
    padding: 0.6rem 0.5rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  .hero-static__buttons > a i {
    display: none; /* Hide icon on very small screens to fit text */
  }
  .hero-static__facts {
    flex-wrap: nowrap !important;
    justify-content: space-between;
    width: 100%;
  }
  .hero-static__facts > div {
    text-align: center;
  }
  .hero-static__fact-strong {
    font-size: 1.35rem !important;
  }
  .hero-static__fact-span {
    font-size: 0.65rem !important;
    letter-spacing: 0;
  }
}
@media (min-width: 400px) and (max-width: 767.98px) {
  .hero-static__buttons > a i {
    display: inline-block;
  }
  .hero-static__buttons > a {
    font-size: 0.9rem;
  }
}

/* ---------- MARQUEE ---------- */
.marquee-section {
  display: flex;
  overflow: hidden;
  user-select: none;
  background: var(--navy); /* Matches the hero section and grid */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: 3rem;
  animation: marquee-scroll 40s linear infinite;
  padding: 1.2rem 0;
}
.marquee-content:hover {
  animation-play-state: paused;
}
.marquee-item {
  color: var(--txt-light);
  font-family: var(--f-disp);
  font-size: 1.15rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.marquee-item:hover {
  opacity: 1;
}
.marquee-item i {
  color: var(--gold);
  font-size: 1.3rem;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 3rem));
  }
}


