/* =====================================================================
   Rehber Gümrük Müşavirliği — Ön yüz stilleri
   Palet tek yerde tanımlıdır; tema değişimi buradan yapılır.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Değişkenler
   --------------------------------------------------------------------- */
:root {
  /* Altın palet */
  --gold: #C8A44D;
  --gold-light: #E4C878;
  --gold-dark: #8A6E28;
  --gold-wash: #FBF7EC;

  /* Koyu yeşil tonlar */
  --ink: #0E2419;
  --ink-deep: #071510;
  --ink-soft: #17372A;

  /* Koyu yüzeylerde kullanılan gradientler */
  --grad-dark: linear-gradient(158deg, #1A4030 0%, #0E2419 46%, #071510 100%);
  --grad-bar:  linear-gradient(180deg, #10291D 0%, #071510 100%);
  --grad-btn:  linear-gradient(180deg, #1B4231 0%, #0F2A1E 100%);
  --grad-btn-hover: linear-gradient(180deg, #24563F 0%, #163725 100%);

  /* Açık tonlar */
  --cream: #F8F6F1;
  --white: #FFFFFF;

  /* Metin */
  --text: #1A1D23;
  --text-muted: #5A6068;
  --text-light: rgba(255, 255, 255, .74);

  /* Çizgi ve kenarlık */
  --line: rgba(200, 164, 77, .22);
  --line-strong: rgba(200, 164, 77, .45);
  --border: #E6E1D5;
  --border-dark: rgba(255, 255, 255, .10);

  /* Ölçü */
  --radius: 3px;
  --container: 1240px;
  --gutter: clamp(18px, 4vw, 40px);
  --section-y: clamp(56px, 7vw, 104px);

  /* Gölge */
  --shadow-sm: 0 1px 2px rgba(10, 28, 20, .05);
  --shadow: 0 18px 40px -22px rgba(10, 28, 20, .30);
  --shadow-lg: 0 30px 60px -30px rgba(10, 28, 20, .40);

  /* Tipografi */
  --font-head: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --h1: clamp(2.05rem, 1.15rem + 3.4vw, 3.55rem);
  --h2: clamp(1.6rem, 1.05rem + 1.9vw, 2.45rem);
  --h3: clamp(1.2rem, 1rem + .65vw, 1.5rem);
  --lead: clamp(1rem, .95rem + .3vw, 1.135rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------------------------------------------------------------------
   2. Sıfırlama
   --------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  margin: 0 0 .6em;
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.018em;
  color: var(--ink);
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); font-weight: 700; }
h4 { font-size: 1.06rem; font-weight: 700; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }

img, svg, video { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .38em; }

hr { border: 0; border-top: 1px solid var(--border); margin: 2rem 0; }

strong, b { font-weight: 700; color: var(--ink); }

blockquote {
  margin: 1.6em 0;
  padding: 4px 0 4px 22px;
  border-left: 2px solid var(--gold);
  color: var(--text-muted);
  font-style: normal;
}

table { border-collapse: collapse; width: 100%; }

::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Ekran okuyucu */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--gold); color: var(--ink); padding: 10px 18px;
  font-weight: 700; border-radius: var(--radius);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: var(--ink); }

/* ---------------------------------------------------------------------
   3. Düzen
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow { max-width: 880px; }

.section { padding: var(--section-y) 0; }
.section--tight { padding: clamp(40px, 5vw, 68px) 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

.section--dark {
  background: var(--grad-dark);
  color: var(--text-light);
  position: relative;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark strong { color: #fff; }
.section--dark a { color: var(--gold-light); }

/* İnce altın desen — koyu bölümlerde arkaplan dokusu */
.pattern-grid::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-dark) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 40%, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 65% at 50% 40%, #000 30%, transparent 78%);
  opacity: .8;
  pointer-events: none;
}
.pattern-grid > * { position: relative; z-index: 1; }

.grid { display: grid; gap: clamp(18px, 2.2vw, 30px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4.5vw, 72px);
  align-items: center;
}
.split--wide-left { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }

/* ---------------------------------------------------------------------
   4. Bölüm başlıkları
   --------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: .705rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  flex: none;
}
.section--dark .eyebrow { color: var(--gold-light); }

.section-head { max-width: 720px; margin-bottom: clamp(30px, 3.6vw, 52px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.section-head p {
  font-size: var(--lead);
  color: var(--text-muted);
  margin-bottom: 0;
}
.section--dark .section-head p { color: var(--text-light); }

.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
}
.section-head--row > div:first-child { max-width: 700px; }

/* ---------------------------------------------------------------------
   5. Butonlar
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 650;
  letter-spacing: .02em;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), transform .22s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn .ico { width: 17px; height: 17px; }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--ink); }

.btn-dark {
  background: var(--grad-btn);
  color: #fff;
  border-color: #16382A;
}
.btn-dark:hover { background: var(--grad-btn-hover); color: var(--gold-light); border-color: #24563F; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-wash); }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .30);
}
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(200, 164, 77, .08); }

.btn-sm { padding: 10px 18px; font-size: .8rem; }
.btn-lg { padding: 17px 34px; font-size: .93rem; }
.btn-block { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* Metin bağlantısı — ok ile */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .845rem;
  font-weight: 650;
  letter-spacing: .02em;
  color: var(--gold-dark);
}
.link-arrow .ico { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.link-arrow:hover .ico { transform: translateX(4px); }
.section--dark .link-arrow { color: var(--gold-light); }

/* ---------------------------------------------------------------------
   6. İkonlar
   --------------------------------------------------------------------- */
.ico {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.ico-lg { width: 28px; height: 28px; }

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--gold-dark);
  background: var(--gold-wash);
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.icon-box .ico { width: 24px; height: 24px; }

.section--dark .icon-box {
  background: rgba(200, 164, 77, .07);
  border-color: var(--line-strong);
  color: var(--gold-light);
}

/* ---------------------------------------------------------------------
   7. Üst bar + Header
   --------------------------------------------------------------------- */
.topbar {
  background: var(--grad-bar);
  color: rgba(255, 255, 255, .62);
  font-size: .78rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 42px;
}
/* Kur bandı esneyerek yer kaplar; iletişim bilgileri sıkışmamalı. */
.topbar-list {
  display: flex; align-items: center; gap: 22px;
  list-style: none; margin: 0; padding: 0;
  flex: none;
}
.topbar-list li { margin: 0; white-space: nowrap; }
/* SVG'ler global sıfırlamada display:block; üst barda satır atlamaması için
   ikon taşıyan bağlantı ve etiketler inline-flex yapılır. */
.topbar a,
.topbar-list li > span { display: inline-flex; align-items: center; gap: 7px; }
.topbar a { color: rgba(255, 255, 255, .72); }
.topbar a:hover { color: var(--gold-light); }
.topbar .ico { width: 14px; height: 14px; color: var(--gold); }
.topbar-social { display: flex; gap: 6px; }
.topbar-social a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
}
.topbar-social a:hover { border-color: var(--gold); }

/* Döviz kuru şeridi — kesintisiz kayan bant.
   Liste iki kez basılır; track %50 kaydığında başa dönmüş olur. */
.rates {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  min-width: 0;
  flex: 1 1 auto;
}
.rates-viewport {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 34px, #000 calc(100% - 34px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 34px, #000 calc(100% - 34px), transparent 100%);
}
.rates-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: rates-scroll var(--rates-duration, 40s) linear infinite;
}
.rates:hover .rates-track { animation-play-state: paused; }

@keyframes rates-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.rate {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
  font-size: .775rem;
  font-variant-numeric: tabular-nums;
}
.rate b {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .05em;
  font-size: .715rem;
}
.rate > span { color: rgba(255, 255, 255, .84); }

.trend { font-style: normal; font-size: .58rem; line-height: 1; }
.trend-up { color: #6FB77B; }
.trend-down { color: #D9705F; }

.rates-meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: none;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, .09);
  font-size: .69rem;
  color: rgba(255, 255, 255, .42);
  cursor: help;
}
.rates-meta .ico { width: 12px; height: 12px; color: var(--gold-dark); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 8px 28px -18px rgba(10, 28, 20, .45); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 84px;
}

/* Masaüstünde marka bloğu küçülmez; dar ekranda (mobil bloğunda) esner. */
.brand { display: flex; align-items: center; gap: 13px; flex: none; min-width: 0; }
/* Logo, başlık çubuğunun tam yüksekliğini kullanır; çubuk büyümez.
   Global img kuralındaki max-width:100% burada logoyu daraltmamalı. */
.brand img { max-height: 68px; width: auto; max-width: none; }
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--grad-btn);
  border-bottom: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: .04em;
  flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.18; min-width: 0; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.055rem;
  letter-spacing: -.015em;
  color: var(--ink);
}
.brand-sub {
  font-size: .655rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}

/* Ana menü */
.nav { display: flex; align-items: center; gap: 4px; }
/* Alt menü, bağlı olduğu maddeye göre konumlanır — bu yüzden li konumlandırılır. */
.nav-list > li { position: relative; margin: 0; }
.nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 15px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .005em;
  border-radius: var(--radius);
}
.nav a:hover, .nav li.is-active > a { color: var(--gold-dark); }
.nav .caret { width: 13px; height: 13px; opacity: .55; transition: transform .22s var(--ease); }
.nav li:hover > .caret, .nav li:hover .caret { transform: rotate(180deg); }

.nav-list { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; gap: 2px; }

.submenu {
  position: absolute;
  /* Boşluk bırakılmaz: fare üst maddeden alt menüye inerken menü kapanmamalı. */
  top: 100%;
  left: 0;
  min-width: 262px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow);
  list-style: none;
  margin: 0;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.has-sub:hover > .submenu,
.has-sub:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li { margin: 0; }
.submenu a {
  padding: 10px 13px;
  font-size: .845rem;
  font-weight: 550;
  color: var(--text);
  border-left: 2px solid transparent;
  border-radius: 0;
}
.submenu a:hover { background: var(--gold-wash); border-left-color: var(--gold); color: var(--gold-dark); }
.submenu-sub { font-size: .72rem; color: var(--text-muted); display: block; font-weight: 400; }

.header-cta { display: flex; align-items: center; gap: 12px; flex: none; }


.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--ink);
}

/* Mobil menü paneli */
.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(400px, 88vw);
  background: var(--white);
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  z-index: 200;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--white); z-index: 2;
}
.mobile-nav-close {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  background: transparent; cursor: pointer; border-radius: var(--radius);
  color: var(--ink);
}
.mobile-nav-body { padding: 10px var(--gutter) 28px; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav li { margin: 0; border-bottom: 1px solid var(--border); }
.mobile-nav > .mobile-nav-body > ul > li > a,
.mobile-nav .m-parent {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; gap: 10px;
  padding: 15px 0;
  font-family: var(--font-head);
  font-size: .98rem; font-weight: 700; color: var(--ink);
  background: none; border: 0; cursor: pointer; text-align: left;
}
.mobile-nav .m-parent .ico { transition: transform .25s var(--ease); color: var(--gold-dark); }
.mobile-nav .m-parent[aria-expanded="true"] .ico { transform: rotate(180deg); }
.mobile-nav .m-sub { display: none; padding: 0 0 12px 14px; border-left: 1px solid var(--line); margin-bottom: 8px; }
.mobile-nav .m-sub.is-open { display: block; }
.mobile-nav .m-sub li { border: 0; }
.mobile-nav .m-sub a { display: block; padding: 9px 0; font-size: .875rem; color: var(--text-muted); font-weight: 500; }
.mobile-nav .m-sub a:hover { color: var(--gold-dark); }
.mobile-nav-foot { margin-top: 22px; display: grid; gap: 10px; }

.backdrop {
  position: fixed; inset: 0;
  background: rgba(7, 21, 16, .55);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
  z-index: 150;
}
.backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------------------------------------------------------------------
   8. Hero / Slider
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--grad-dark);
  color: #fff;
  overflow: hidden;
}

.hero-slides { position: relative; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s var(--ease), visibility .8s;
  display: flex;
  align-items: center;
}
.hero-slide.is-active { opacity: 1; visibility: visible; position: relative; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
/* Metin solda durduğu için karartma soldan sağa açılır; fotoğrafın sağ tarafı görünür kalır. */
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(7, 21, 16, .86) 4%, rgba(7, 21, 16, .58) 40%, rgba(7, 21, 16, .16) 100%);
}
.hero-bg--plain {
  background:
    radial-gradient(120% 100% at 12% 18%, #1A4030 0%, #071510 58%),
    var(--ink-deep);
}
.hero-bg--plain::after {
  background-image:
    linear-gradient(rgba(200, 164, 77, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 164, 77, .07) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: radial-gradient(ellipse 78% 78% at 22% 42%, #000 12%, transparent 72%);
  mask-image: radial-gradient(ellipse 78% 78% at 22% 42%, #000 12%, transparent 72%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(72px, 11vw, 148px) 0 clamp(84px, 12vw, 150px);
}
.hero-content { max-width: 760px; }

.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold); width: 34px; }

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -.028em;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-text {
  font-size: clamp(1rem, .95rem + .42vw, 1.19rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, .8);
  max-width: 620px;
  margin-bottom: 32px;
}

/* Açık zeminli hero: karartma kalkar, yazı koyulaşır.
   Görselin sol tarafı beyaz olduğu için metin oradan okunur; sağdan hafif
   bir beyaz geçiş, dar ekranlarda yazının fotoğrafa binmesini engeller. */
.hero-slide--light .hero-bg::after {
  background: linear-gradient(100deg,
    rgba(255, 255, 255, .92) 0%,
    rgba(255, 255, 255, .78) 34%,
    rgba(255, 255, 255, .10) 62%,
    rgba(255, 255, 255, 0) 100%);
}
.hero-slide--light .hero-content h1 { color: var(--ink); }
.hero-slide--light .hero-content h1 em { color: var(--gold-dark); }
.hero-slide--light .hero-text { color: #3A4048; }
.hero-slide--light .eyebrow { color: var(--gold-dark); }
.hero-slide--light .eyebrow::before { background: var(--gold-dark); }

/* Hero alt şerit — hızlı bilgi */
.hero-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .022);
}
.hero-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.hero-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  border-right: 1px solid rgba(255, 255, 255, .07);
}
.hero-strip-item:last-child { border-right: 0; }
.hero-strip-item .ico { width: 24px; height: 24px; color: var(--gold); }
.hero-strip-item strong { display: block; color: #fff; font-family: var(--font-head); font-size: .95rem; }
.hero-strip-item span { font-size: .785rem; color: rgba(255, 255, 255, .58); }

/* Slider kontrolleri */
.slider-nav {
  position: absolute;
  bottom: clamp(26px, 4vw, 48px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 3;
  pointer-events: none;
}
.slider-dots { display: flex; gap: 9px; pointer-events: auto; }
.slider-dot {
  width: 30px; height: 3px;
  background: rgba(255, 255, 255, .25);
  border: 0; padding: 0; cursor: pointer;
  transition: background-color .3s var(--ease);
}
.slider-dot.is-active { background: var(--gold); }

.slider-arrows { display: flex; gap: 8px; pointer-events: auto; }
.slider-arrow {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background-color .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* Açık zeminli slaytta slider kontrolleri koyulaşır */
.hero.is-light .slider-dot { background: rgba(14, 36, 25, .18); }
.hero.is-light .slider-dot.is-active { background: var(--gold-dark); }
.hero.is-light .slider-arrow {
  background: rgba(255, 255, 255, .7);
  border-color: rgba(14, 36, 25, .16);
  color: var(--ink);
}
.hero.is-light .slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* Sayfa başlığı (iç sayfalar) */
.page-hero {
  position: relative;
  background: var(--grad-dark);
  color: #fff;
  padding: clamp(52px, 7vw, 92px) 0 clamp(46px, 6vw, 78px);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(115% 130% at 78% 6%, #173829 0%, transparent 62%),
    linear-gradient(90deg, rgba(200, 164, 77, .05) 1px, transparent 1px) 0 0 / 74px 74px;
  opacity: .9;
}
/* Fotoğraf arkaplanı varsa desen kapanır, görsel kirlenmez. */
.page-hero.has-image::before { display: none; }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 12px; max-width: 900px; }
.page-hero p { color: rgba(255, 255, 255, .74); max-width: 720px; font-size: var(--lead); margin: 0; }
.page-hero .eyebrow { color: var(--gold-light); }

.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  list-style: none; margin: 0 0 18px; padding: 0;
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
}
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: "/"; color: rgba(255, 255, 255, .25); }
.breadcrumb a { color: rgba(255, 255, 255, .68); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---------------------------------------------------------------------
   9. Kartlar
   --------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}

/* Kategori kartı */
.card-cat {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.6vw, 34px);
  overflow: hidden;
}
.card-cat::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s var(--ease);
}
.card-cat:hover { border-color: var(--line-strong); box-shadow: var(--shadow); transform: translateY(-3px); }
.card-cat:hover::before { transform: scaleX(1); }
.card-cat:hover .icon-box { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.card-cat .icon-box { margin-bottom: 20px; }
.card-cat h3 { margin-bottom: 10px; }
.card-cat h3 a { color: inherit; }
.card-cat h3 a:hover { color: var(--gold-dark); }
.card-cat p { color: var(--text-muted); font-size: .915rem; margin-bottom: 18px; }

.card-cat-list {
  list-style: none; margin: 0 0 22px; padding: 0;
  border-top: 1px solid var(--border);
}
.card-cat-list li { margin: 0; border-bottom: 1px solid var(--border); }
.card-cat-list a {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 0;
  font-size: .845rem;
  color: var(--text-muted);
}
.card-cat-list a::before {
  content: ""; width: 4px; height: 4px; background: var(--gold); flex: none;
  transition: transform .22s var(--ease);
}
.card-cat-list a:hover { color: var(--gold-dark); }
.card-cat-list a:hover::before { transform: scale(1.8); }

.card-cat .link-arrow { margin-top: auto; }

/* Hizmet kartı */
.card-service {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 30px);
  height: 100%;
}
.card-service:hover { border-color: var(--line-strong); box-shadow: var(--shadow); transform: translateY(-3px); }
.card-service:hover .icon-box { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.card-service .icon-box { margin-bottom: 18px; }
.card-service h3 { font-size: 1.04rem; margin-bottom: 9px; }
.card-service h3 a { color: inherit; }
.card-service h3 a:hover { color: var(--gold-dark); }
.card-service p { color: var(--text-muted); font-size: .885rem; margin-bottom: 18px; flex: 1; }

.card-service-tag {
  display: inline-block;
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

/* Görselli kart */
.card-media { overflow: hidden; }
.card-media-img {
  aspect-ratio: 16 / 10;
  background: var(--cream) center/cover no-repeat;
  border-bottom: 1px solid var(--border);
  transition: transform .5s var(--ease);
}
.card-media:hover .card-media-img { transform: scale(1.04); }
.card-media-body { padding: 24px; }

/* ---------------------------------------------------------------------
   10. Sayaçlar
   --------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: rgba(255, 255, 255, .09); }
.stat {
  background: var(--ink);
  padding: clamp(26px, 3vw, 40px) clamp(18px, 2vw, 28px);
  text-align: left;
}
.stat .ico { width: 24px; height: 24px; color: var(--gold); margin-bottom: 16px; }
.stat-value {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.05rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.stat-value span { color: var(--gold); }
.stat-label { font-size: .875rem; font-weight: 600; color: #fff; margin-bottom: 5px; }
.stat-text { font-size: .805rem; color: rgba(255, 255, 255, .55); line-height: 1.6; }

/* ---------------------------------------------------------------------
   11. Süreç adımları
   --------------------------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.process-step {
  position: relative;
  background: var(--white);
  padding: clamp(26px, 2.8vw, 38px);
  transition: background-color .28s var(--ease);
}
.process-step:hover { background: var(--gold-wash); }
.process-num {
  display: block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.process-step .ico-lg { color: var(--gold-dark); margin-bottom: 16px; }
.process-step h3 { font-size: 1.02rem; margin-bottom: 9px; }
.process-step p { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* ---------------------------------------------------------------------
   12. Referans logoları
   --------------------------------------------------------------------- */
.logo-strip { overflow: hidden; position: relative; }
.logo-strip::before,
.logo-strip::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.logo-strip::before { left: 0; background: linear-gradient(90deg, var(--cream), transparent); }
.logo-strip::after { right: 0; background: linear-gradient(-90deg, var(--cream), transparent); }

.logo-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: logo-scroll 42s linear infinite;
}
.logo-strip:hover .logo-track { animation-play-state: paused; }
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-item {
  display: grid;
  place-items: center;
  min-width: 200px;
  height: 92px;
  padding: 16px 28px;
  border-right: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .855rem;
  font-weight: 600;
  text-align: center;
  opacity: .9;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.logo-item:hover { opacity: 1; }
/* Sitesi tanımlı referanslar tıklanabilir; şeritte de bağlantı olarak basılır. */
.logo-item.is-link { cursor: pointer; }
.logo-item.is-link:hover { transform: translateY(-2px); }
.logo-item img { max-height: 52px; width: auto; object-fit: contain; }

/* Referans ızgarası (referanslar sayfası) */
.ref-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.ref-cell {
  background: var(--white);
  min-height: 148px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  padding: 24px 18px;
  text-align: center;
  transition: background-color .25s var(--ease);
}
.ref-cell:hover { background: var(--gold-wash); }
.ref-cell img { max-height: 58px; object-fit: contain; }
.ref-cell strong { font-size: .9rem; color: var(--ink); font-family: var(--font-head); }
.ref-cell span { font-size: .755rem; color: var(--text-muted); letter-spacing: .04em; }

/* ---------------------------------------------------------------------
   13. Akordiyon (SSS)
   --------------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-btn {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.01rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  transition: color .22s var(--ease);
}
.accordion-btn:hover { color: var(--gold-dark); }
.accordion-icon {
  position: relative;
  width: 22px; height: 22px;
  flex: none;
  margin-top: 3px;
  color: var(--gold-dark);
}
.accordion-icon::before,
.accordion-icon::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.accordion-icon::before { width: 14px; height: 1.5px; }
.accordion-icon::after { width: 1.5px; height: 14px; }
.accordion-btn[aria-expanded="true"] .accordion-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .34s var(--ease);
}
.accordion-panel.is-open { grid-template-rows: 1fr; }
.accordion-panel > div { overflow: hidden; }
.accordion-body {
  padding: 0 46px 24px 0;
  color: var(--text-muted);
  font-size: .93rem;
}
.accordion-body p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------------
   14. İçerik (prose)
   --------------------------------------------------------------------- */
.prose { font-size: 1.005rem; color: #3A4048; }
.prose h2 {
  font-size: clamp(1.28rem, 1.1rem + .55vw, 1.6rem);
  margin: 2.1em 0 .7em;
  padding-top: .1em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.12rem; margin: 1.7em 0 .55em; }
.prose ul, .prose ol { padding-left: 0; list-style: none; }
.prose ol { counter-reset: prose-ol; }
.prose ul > li {
  position: relative;
  padding-left: 26px;
  margin-bottom: .58em;
}
.prose ul > li::before {
  content: "";
  position: absolute;
  left: 3px; top: .72em;
  width: 6px; height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.prose ol > li {
  position: relative;
  padding-left: 30px;
  margin-bottom: .58em;
  counter-increment: prose-ol;
}
.prose ol > li::before {
  content: counter(prose-ol);
  position: absolute; left: 0; top: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  color: var(--gold-dark);
  line-height: 1.9;
}
.prose img { margin: 1.8em 0; border: 1px solid var(--border); }
.prose table { margin: 1.8em 0; font-size: .92rem; }
.prose th, .prose td { padding: 12px 16px; border: 1px solid var(--border); text-align: left; }
.prose th { background: var(--cream); font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.prose .note {
  background: var(--gold-wash);
  border-left: 2px solid var(--gold);
  padding: 16px 20px;
  font-size: .9rem;
  color: var(--text-muted);
}
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

/* Yan sütun */
.sidebar { display: grid; gap: 22px; align-content: start; position: sticky; top: 108px; }

.side-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.side-box-head {
  padding: 16px 22px;
  background: var(--grad-bar);
  color: #fff;
  border-bottom: 2px solid var(--gold);
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.side-list { list-style: none; margin: 0; padding: 0; }
.side-list li { margin: 0; border-bottom: 1px solid var(--border); }
.side-list li:last-child { border-bottom: 0; }
.side-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 22px;
  font-size: .87rem;
  font-weight: 550;
  color: var(--text);
  border-left: 2px solid transparent;
}
.side-list a:hover { background: var(--gold-wash); border-left-color: var(--gold); color: var(--gold-dark); }
.side-list li.is-active a { background: var(--gold-wash); border-left-color: var(--gold); color: var(--gold-dark); font-weight: 650; }
.side-list .ico { width: 14px; height: 14px; opacity: .5; }

/* Numaralı yan liste */
.side-steps {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  counter-reset: side-steps;
}
.side-steps li {
  position: relative;
  margin: 0;
  padding: 12px 22px 12px 54px;
  border-bottom: 1px solid var(--border);
  font-size: .865rem;
  color: var(--text);
  counter-increment: side-steps;
}
.side-steps li:last-child { border-bottom: 0; }
.side-steps li::before {
  content: counter(side-steps);
  position: absolute;
  left: 22px;
  top: 12px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--gold-wash);
  border: 1px solid var(--line);
  color: var(--gold-dark);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
}

.side-cta {
  background: var(--grad-dark);
  color: var(--text-light);
  padding: 28px 24px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.side-cta::before {
  content: ""; position: absolute; right: -34px; top: -34px;
  width: 120px; height: 120px;
  border: 1px solid rgba(200, 164, 77, .18);
  transform: rotate(45deg);
}
.side-cta h3 { color: #fff; font-size: 1.06rem; margin-bottom: 10px; position: relative; }
.side-cta p { font-size: .875rem; margin-bottom: 20px; position: relative; }
.side-cta .btn { position: relative; }

/* ---------------------------------------------------------------------
   15. Formlar
   --------------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 7px; }
.form-row--full { grid-column: 1 / -1; }

.form-label {
  font-size: .795rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .015em;
}
.form-label .req { color: #B4443A; margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: .915rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-control::placeholder { color: #9AA0A8; }
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 77, .14);
}
textarea.form-control { min-height: 132px; resize: vertical; line-height: 1.65; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235A6068' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-hint { font-size: .755rem; color: var(--text-muted); }

.form-file {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 15px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  font-size: .85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.form-file:hover { border-color: var(--gold); background: var(--gold-wash); }
.form-file input[type="file"] { display: none; }
.form-file .ico { color: var(--gold-dark); }

.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; color: var(--text-muted); }
.form-check input { margin-top: 4px; accent-color: var(--gold-dark); width: 15px; height: 15px; flex: none; }
.form-check a { text-decoration: underline; text-underline-offset: 2px; }

/* Bal küpü — spam tuzağı, kullanıcıya görünmez */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.form-message {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: .875rem;
  margin-bottom: 18px;
  display: none;
  border-left: 2px solid;
}
.form-message.is-visible { display: block; }
.form-message.is-success { background: #F0F7F1; border-color: #4C8B5A; color: #2C5936; }
.form-message.is-error { background: #FDF2F1; border-color: #B4443A; color: #8C332B; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow);
}

/* Buton yükleniyor durumu */
.btn.is-loading { pointer-events: none; opacity: .72; }
.btn.is-loading::after {
  content: "";
  width: 15px; height: 15px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------------------------------------------------------------------
   16. İletişim
   --------------------------------------------------------------------- */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.contact-item:last-child { border-bottom: 0; }
.contact-item .icon-box { width: 44px; height: 44px; }
.contact-item .icon-box .ico { width: 20px; height: 20px; }
.contact-item h4 { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px; font-weight: 600; font-family: var(--font-body); }
.contact-item p, .contact-item a { font-size: .95rem; color: var(--ink); font-weight: 550; margin: 0; }
.contact-item a:hover { color: var(--gold-dark); }

.map-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  min-height: 340px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.map-placeholder {
  display: grid; place-items: center; gap: 10px;
  min-height: 340px; text-align: center; padding: 32px;
  color: var(--text-muted); font-size: .875rem;
}
.map-placeholder .ico { width: 32px; height: 32px; color: var(--gold-dark); }

/* ---------------------------------------------------------------------
   17. CTA bandı
   --------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--grad-dark);
  color: var(--text-light);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 130% at 88% 50%, rgba(200, 164, 77, .13) 0%, transparent 58%);
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(38px, 4.6vw, 62px) 0;
}
.cta-inner h2 { color: #fff; margin-bottom: 10px; max-width: 640px; }
.cta-inner p { margin: 0; max-width: 620px; font-size: var(--lead); }
.cta-actions { display: flex; gap: 12px; flex: none; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   18. Footer
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--grad-dark);
  color: rgba(255, 255, 255, .62);
  font-size: .875rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: clamp(28px, 3.4vw, 56px);
  padding: clamp(48px, 5.5vw, 76px) 0 clamp(34px, 4vw, 52px);
}
.footer-col h4 {
  color: #fff;
  font-size: .775rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255, 255, 255, .62); }
.footer-col a:hover { color: var(--gold-light); }

.footer-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: var(--gold); }
.footer-brand img { max-height: 62px; }
.footer-about { line-height: 1.75; margin-bottom: 22px; }

.footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact .ico { width: 17px; height: 17px; color: var(--gold); margin-top: 3px; }

.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .7);
  transition: border-color .22s var(--ease), color .22s var(--ease), background-color .22s var(--ease);
}
.footer-social a:hover { border-color: var(--gold); color: var(--ink); background: var(--gold); }

/* Grup bilgisi şeridi — kurumsal bağı belirtir.
   Alt bilgide koyu zemin, sayfa içinde açık zemin varyantı kullanılır. */
.group-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .875rem;
  line-height: 1.6;
}
.group-note .ico { width: 18px; height: 18px; color: var(--gold); flex: none; }
.group-note p { margin: 0; }
.group-note a:hover { text-decoration: underline; }

.group-note--dark {
  margin-bottom: 4px;
  background: rgba(200, 164, 77, .07);
  color: var(--text-light);
}
.group-note--dark strong,
.group-note--dark a { color: var(--gold); font-weight: 600; }

.group-note--light {
  margin-top: 28px;
  background: var(--gold-wash);
  border-color: var(--line-strong);
  color: var(--text-muted);
}
.group-note--light strong,
.group-note--light a { color: var(--gold-dark); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: .805rem;
  color: rgba(255, 255, 255, .45);
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 20px; list-style: none; margin: 0; padding: 0; }
.footer-bottom li { margin: 0; }

/* Yukarı çık */
.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--grad-btn);
  color: var(--gold);
  border: 1px solid rgba(200, 164, 77, .35);
  border-radius: var(--radius);
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background-color .22s var(--ease);
  z-index: 80;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: var(--ink); }

/* WhatsApp hızlı düğme */
.wa-float {
  position: fixed;
  right: 22px; bottom: 78px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: #1FA855;
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 80;
  transition: transform .22s var(--ease);
}
.wa-float:hover { transform: translateY(-2px); color: #fff; }
.wa-float .ico { width: 23px; height: 23px; }

/* Anasayfa kur kartları — kayan bant */
.rate-cards-viewport {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.rate-cards-track {
  display: flex;
  width: max-content;
  gap: 1px;
  background: rgba(255, 255, 255, .10);
  animation: rates-scroll var(--cards-duration, 60s) linear infinite;
}
.rate-cards-viewport:hover .rate-cards-track { animation-play-state: paused; }

.rate-card {
  flex: 0 0 auto;
  width: 224px;
  background: rgba(7, 21, 16, .55);
  padding: 22px 24px;
  transition: background-color .25s var(--ease);
}
.rate-card:hover { background: rgba(200, 164, 77, .07); }

.rate-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.rate-card-code {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
}
.rate-card-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .715rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.rate-card-change.is-up { color: #6FB77B; }
.rate-card-change.is-down { color: #D9705F; }
.rate-card-change.is-flat { color: rgba(255, 255, 255, .34); font-weight: 400; }

.rate-card-value {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 1.1rem + 1.1vw, 1.95rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.rate-card-value small {
  font-size: .5em;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .04em;
}
.rate-card-label { margin-top: 7px; font-size: .83rem; color: rgba(255, 255, 255, .66); }
.rate-card-unit { margin-top: 3px; font-size: .715rem; color: rgba(255, 255, 255, .38); }

/* ---------------------------------------------------------------------
   Mevzuat haberleri
   --------------------------------------------------------------------- */
.reg-search {
  position: relative;
  display: flex;
  gap: 10px;
  margin-bottom: 34px;
}
.reg-search .ico {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.reg-search .form-control { padding-left: 42px; }

.reg-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--border); }
.reg-item { margin: 0; padding: 26px 0; border-bottom: 1px solid var(--border); }

.reg-item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: .78rem;
  color: var(--text-muted);
}
.reg-item-meta time { font-variant-numeric: tabular-nums; }

.reg-item-title {
  font-size: clamp(1.02rem, .95rem + .35vw, 1.2rem);
  line-height: 1.45;
  margin-bottom: 8px;
}
.reg-item-title a { color: var(--ink); }
.reg-item-title a:hover { color: var(--gold-dark); }
.reg-item-summary { font-size: .92rem; color: var(--text-muted); margin-bottom: 12px; }

.reg-empty {
  text-align: center;
  padding: 62px 20px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}
.reg-empty .ico { margin: 0 auto 16px; color: var(--gold-dark); }
.reg-empty p { color: var(--text-muted); max-width: 460px; margin: 0 auto; font-size: .92rem; }

/* Detaydaki kaynak kutusu */
.reg-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding: 22px 26px;
  background: var(--gold-wash);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius);
}
.reg-source strong { font-family: var(--font-head); font-size: 1rem; }
.reg-source span { color: var(--text-muted); font-size: .875rem; }

/* Anasayfa mevzuat kartı */
.card-reg {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 28px);
  height: 100%;
}
.card-reg:hover { border-color: var(--line-strong); box-shadow: var(--shadow); transform: translateY(-3px); }
.card-reg h3 { font-size: 1rem; line-height: 1.45; margin-bottom: 10px; }
.card-reg h3 a { color: inherit; }
.card-reg h3 a:hover { color: var(--gold-dark); }
.card-reg p { font-size: .875rem; color: var(--text-muted); margin-bottom: 16px; flex: 1; }
.card-reg .link-arrow { margin-top: auto; }

@media (max-width: 680px) {
  .reg-search { flex-direction: column; }
  .reg-search .btn { width: 100%; }
  .reg-source { flex-direction: column; align-items: flex-start; }
}

/* ---------------------------------------------------------------------
   19. Çerez bildirimi
   --------------------------------------------------------------------- */
.cookie-bar {
  position: fixed;
  left: 22px; bottom: 22px;
  z-index: 120;
  max-width: 400px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px 22px;
  font-size: .845rem;
  color: var(--text-muted);
  transform: translateY(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.cookie-bar.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.cookie-bar p { margin-bottom: 14px; }
.cookie-bar .btn-group { gap: 8px; }

/* ---------------------------------------------------------------------
   20. Sayfalama, etiket, rozet
   --------------------------------------------------------------------- */
.pagination { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 44px; }
.pagination a, .pagination span {
  min-width: 42px; height: 42px;
  display: grid; place-items: center;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .865rem;
  font-weight: 600;
  color: var(--text);
}
.pagination a:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-wash); }
.pagination .is-current { background: var(--ink); border-color: var(--ink); color: #fff; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px;
  border: 1px solid var(--line);
  background: var(--gold-wash);
  border-radius: var(--radius);
  font-size: .715rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

/* ---------------------------------------------------------------------
   21. Hata sayfası
   --------------------------------------------------------------------- */
.error-page {
  min-height: 62vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(56px, 8vw, 110px) 0;
}
.error-code {
  font-family: var(--font-head);
  font-size: clamp(4.4rem, 3rem + 8vw, 9rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.05em;
  color: var(--gold);
  margin-bottom: 18px;
}
.error-page p { color: var(--text-muted); font-size: var(--lead); max-width: 520px; margin: 0 auto 28px; }

/* ---------------------------------------------------------------------
   22. Görünüm animasyonu
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .06s; }
.reveal-d2 { transition-delay: .12s; }
.reveal-d3 { transition-delay: .18s; }
.reveal-d4 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .logo-track { animation: none; }
  /* Kayan şeritler durur; taşan içerik elle kaydırılabilir kalır. */
  .rates-track, .rate-cards-track { animation: none; }
  .rates-viewport, .rate-cards-viewport { overflow-x: auto; }
}

/* ---------------------------------------------------------------------
   23. Duyarlı düzen
   --------------------------------------------------------------------- */
/* Büyük logo yer kapladığı için üst menüye alan açılır:
   önce başlıktaki telefon bloğu (üst barda zaten var), sonra logo ölçeği. */
@media (max-width: 1340px) {
  }
@media (max-width: 1200px) {
  .brand img { max-height: 66px; }
}

@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-strip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-strip-item:nth-child(2) { border-right: 0; }
  .hero-strip-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .07); }
  .ref-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1140px) {
  .nav-list { display: none; }
  .nav-toggle { display: inline-flex; }
  .brand img { max-height: 68px; }   /* menü kapandı, logoya yer açıldı */
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .split--wide-left { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 1180px) {
  /* Kur bandına yer açmak için önce çalışma saatleri, sonra e-posta gizlenir. */
  .topbar-list li:nth-child(n+3) { display: none; }
}
@media (max-width: 940px) {
  .topbar-list li:nth-child(n+2) { display: none; }
}

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-head--row { flex-direction: column; align-items: flex-start; }
  .ref-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  body { font-size: 15.5px; }
  .topbar .container { justify-content: center; flex-wrap: wrap; padding-top: 6px; padding-bottom: 6px; }
  .topbar-list { gap: 14px; flex-wrap: wrap; justify-content: center; }
  .topbar-social { display: none; }

  /* Kur şeridi kendi satırına iner; taşarsa yatay kaydırılır.
     Kaynak etiketi de alt satıra geçer, böylece kurlara yer kalır. */
  .rates {
    width: 100%;
    margin-left: 0;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, .07);
  }
  .rates-viewport { width: 100%; }
  .rates-track { gap: 20px; }
  .rates-meta {
    width: 100%;
    justify-content: center;
    padding-left: 0;
    border-left: 0;
    font-size: .65rem;
  }

  /* Başlık çubuğu dar ekranda taşmamalı: marka bloğu küçülebilir kalır. */
  .header-inner { min-height: 68px; gap: 12px; }
  .brand { flex: 0 1 auto; }
  .brand img { max-height: 52px; max-width: 178px; object-fit: contain; }
  .brand-mark { width: 38px; height: 38px; font-size: .92rem; }
  .brand-text { overflow: hidden; }
  .brand-name {
    font-size: .88rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-sub { display: none; }
  .header-cta { gap: 8px; }
  .header-cta .btn { padding: 9px 13px; font-size: .755rem; }
  .nav-toggle { width: 42px; height: 42px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .hero-strip-grid { grid-template-columns: 1fr; }
  .hero-strip-item { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .07); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .group-note { align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom ul { justify-content: center; }
  .slider-arrows { display: none; }
  .accordion-body { padding-right: 0; }
  .cookie-bar { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .ref-grid { grid-template-columns: 1fr 1fr; }
  .btn { padding: 13px 20px; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1; }
}

@media (max-width: 420px) {
  .ref-grid { grid-template-columns: 1fr; }
  .logo-item { min-width: 160px; }
}

/* Yazdırma */
@media print {
  .topbar, .site-header, .site-footer, .to-top, .wa-float, .cookie-bar, .cta-band, .slider-nav { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .section { padding: 12pt 0; }
}
