/* ==========================================================================
   Rio Oto Kurtarma — Ana Stil Dosyası
   Geliştirici: mavi11.com
   ========================================================================== */

/* ---------- 1. Tasarım Değişkenleri ---------- */
:root {
  --bg:          #090B11;
  --bg-alt:      #0F131C;
  --surface:     #151A26;
  --surface-2:   #1C2231;
  --surface-3:   #242C3D;
  --line:        rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .16);

  --text:        #F3F6FB;
  --text-soft:   #C3CBD9;
  --muted:       #8E99AD;

  --brand:       #FFB020;
  --brand-dark:  #F09000;
  --brand-glow:  rgba(255, 176, 32, .28);
  --wa:          #25D366;
  --danger:      #FF4D4D;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .3);
  --shadow:    0 12px 34px rgba(0, 0, 0, .42);
  --shadow-lg: 0 26px 66px rgba(0, 0, 0, .55);

  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);

  --ease: cubic-bezier(.4, .14, .3, 1);
  --header-h: 68px;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: #FFC85C; }

h1, h2, h3, h4 {
  margin: 0 0 .6em;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(1.95rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.55rem, 3.9vw, 2.5rem); }
h3 { font-size: clamp(1.12rem, 2.2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

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

::selection { background: var(--brand); color: #14181F; }

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

/* Ekran okuyucu / atlama bağlantısı */
.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: 50%; top: -100px; z-index: 999;
  transform: translateX(-50%);
  background: var(--brand); color: #14181F;
  padding: .75rem 1.5rem; border-radius: 0 0 10px 10px; font-weight: 700;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 0; color: #14181F; }

/* ---------- 3. Yerleşim Yardımcıları ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow { max-width: 820px; }

.section { padding-block: var(--section-y); position: relative; }
.section--alt { background: var(--bg-alt); }
.section--surface { background: linear-gradient(180deg, var(--bg-alt), var(--bg)); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--text-soft); font-size: 1.05rem; margin-bottom: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand);
  background: var(--brand-glow);
  border: 1px solid rgba(255, 176, 32, .3);
  padding: .4rem .9rem; border-radius: 999px;
  margin-bottom: 1.1rem;
}
.eyebrow svg { width: 15px; height: 15px; }

.text-brand { color: var(--brand); }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.16rem); color: var(--text-soft); }

/* ---------- 4. Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem; font-weight: 700; font-family: inherit;
  line-height: 1.2; text-align: center;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #16191F;
  box-shadow: 0 8px 26px var(--brand-glow);
}
.btn--primary:hover { color: #16191F; box-shadow: 0 14px 34px rgba(255, 176, 32, .42); }

.btn--wa { background: var(--wa); color: #04220F; box-shadow: 0 8px 26px rgba(37, 211, 102, .26); }
.btn--wa:hover { color: #04220F; box-shadow: 0 14px 34px rgba(37, 211, 102, .38); }

.btn--ghost {
  background: rgba(255, 255, 255, .05);
  border-color: var(--line-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; }

.btn--sm { padding: .58rem .98rem; font-size: .88rem; }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.08rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---------- 5. Üst Bilgi Çubuğu ---------- */
.topbar {
  background: linear-gradient(90deg, var(--brand-dark), var(--brand));
  color: #17191E;
  font-size: .84rem; font-weight: 700;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 38px; flex-wrap: wrap;
}
.topbar__items { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; color: #17191E; }
/* Dokunma hedefini büyüt (telefon bağlantısı mobilde sık tıklanıyor) */
a.topbar__item { padding-block: .5rem; margin-block: -.5rem; }
.topbar__item svg { width: 15px; height: 15px; }
.topbar a:hover { color: #000; }
.topbar__pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #0E7A32;
  box-shadow: 0 0 0 0 rgba(14, 122, 50, .7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(14, 122, 50, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 122, 50, 0); }
}

/* ---------- 6. Başlık / Navigasyon ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9, 11, 17, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.header.is-stuck { box-shadow: 0 8px 30px rgba(0, 0, 0, .5); background: rgba(9, 11, 17, .96); }
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; min-height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; gap: .65rem; color: var(--text); flex-shrink: 0; }
.logo:hover { color: var(--text); }
.logo__mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: grid; place-items: center;
  box-shadow: 0 6px 18px var(--brand-glow);
  flex-shrink: 0;
}
.logo__mark svg { width: 26px; height: 26px; color: #16191F; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name { font-size: 1.05rem; font-weight: 900; letter-spacing: -.02em; white-space: nowrap; }
.logo__name b { color: var(--brand); font-weight: 900; }
.logo__tag { font-size: .62rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: .1rem; }
.nav a {
  color: var(--text-soft); font-size: .89rem; font-weight: 600;
  padding: .55rem .55rem; border-radius: 9px;
  white-space: nowrap;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
/* Masaüstünde gizli: logo zaten ana sayfaya gidiyor. Mobil çekmecede görünür. */
.nav a.nav-home { display: none; }
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, .06); }
.nav a.is-active { color: var(--brand); background: rgba(255, 176, 32, .1); }

.header__cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--text);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(9, 11, 17, .97) 0%, rgba(9, 11, 17, .9) 38%, rgba(9, 11, 17, .55) 66%, rgba(9, 11, 17, .78) 100%),
    linear-gradient(180deg, rgba(9, 11, 17, .8) 0%, rgba(9, 11, 17, .1) 30%, rgba(9, 11, 17, .95) 100%);
}
.hero__inner {
  padding-block: clamp(3.5rem, 9vw, 7rem);
  max-width: 730px;
}
.hero h1 { margin-bottom: 1.1rem; text-wrap: balance; }
.hero h1 span { color: var(--brand); display: block; }
.hero__desc { font-size: clamp(1.02rem, 2vw, 1.2rem); color: var(--text-soft); margin-bottom: 1.9rem; max-width: 58ch; }
.hero .btn-row { margin-bottom: 2.2rem; }

.hero__badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
  padding: .5rem 1rem; border-radius: 999px;
  font-size: .85rem; font-weight: 600; color: var(--text-soft);
}
.hero__badge svg { width: 16px; height: 16px; color: var(--brand); flex-shrink: 0; }

/* ---------- 8. Güven Şeridi ---------- */
.trust {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.trust__item {
  background: var(--surface);
  padding: 1.7rem 1.2rem;
  text-align: center;
}
.trust__num {
  font-size: clamp(1.5rem, 3.4vw, 2.15rem); font-weight: 900;
  color: var(--brand); line-height: 1.1; letter-spacing: -.03em;
  display: block; margin-bottom: .25rem;
}
.trust__label { font-size: .87rem; color: var(--muted); font-weight: 600; }

/* ---------- 9. Kart Izgaraları ---------- */
.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.6vw, 1.9rem);
  position: relative;
  overflow: hidden;
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), transparent);
  opacity: 0; transition: opacity .3s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: rgba(255, 176, 32, .38); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }

.card__icon {
  width: 54px; height: 54px; border-radius: 15px;
  background: var(--brand-glow);
  border: 1px solid rgba(255, 176, 32, .28);
  display: grid; place-items: center;
  margin-bottom: 1.15rem;
  transition: background-color .28s var(--ease);
}
.card__icon svg { width: 28px; height: 28px; color: var(--brand); }
.card:hover .card__icon { background: rgba(255, 176, 32, .2); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--text-soft); font-size: .96rem; margin-bottom: 0; }
.card__link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: auto; padding-top: 1.05rem;
  font-weight: 700; font-size: .92rem;
  align-self: flex-start;
}
.card__link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* Tam kart tıklanabilir */
.card--linked .card__stretch::after { content: ""; position: absolute; inset: 0; }

/* ---------- 10. Galeri ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.7rem, 1.4vw, 1.1rem);
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: zoom-in;
  aspect-ratio: 3 / 4;
  padding: 0;
  display: block;
  width: 100%;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 2.2rem .9rem .85rem;
  background: linear-gradient(to top, rgba(6, 8, 12, .93), transparent);
  font-size: .84rem; font-weight: 600; color: #fff;
  text-align: left;
  transform: translateY(6px); opacity: .9;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.gallery__item:hover figcaption { transform: translateY(0); opacity: 1; }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 3 / 2; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(4, 6, 10, .95);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden;
  transition: opacity .28s var(--ease), visibility .28s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure { margin: 0; max-width: min(94vw, 900px); text-align: center; }
.lightbox img {
  max-width: 100%; max-height: 78vh;
  width: auto; margin-inline: auto;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.lightbox figcaption { color: var(--text-soft); margin-top: 1rem; font-size: .95rem; }
.lightbox__btn {
  position: absolute;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid var(--line-strong);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  transition: background-color .2s var(--ease);
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .22); }
.lightbox__btn svg { width: 24px; height: 24px; }
.lightbox__close { top: clamp(.8rem, 3vw, 1.8rem); right: clamp(.8rem, 3vw, 1.8rem); }
.lightbox__prev { left: clamp(.5rem, 2vw, 1.8rem); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(.5rem, 2vw, 1.8rem); top: 50%; transform: translateY(-50%); }

/* ---------- 11. Süreç Adımları ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.4vw, 1.8rem); counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: 2.6rem; font-weight: 900; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 176, 32, .45);
  margin-bottom: .7rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.step p { color: var(--text-soft); font-size: .94rem; margin-bottom: 0; }
.step::after {
  content: ""; position: absolute; top: 1.9rem; left: 3.4rem; right: -1rem;
  height: 1px; background: linear-gradient(90deg, rgba(255, 176, 32, .35), transparent);
}
.step:last-child::after { display: none; }

/* ---------- 12. Öne Çıkan / Split Bölüm ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.6rem); align-items: center; }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split__media--tall img { aspect-ratio: 3 / 4; }
.split__badge {
  position: absolute; left: 1.1rem; bottom: 1.1rem;
  background: rgba(9, 11, 17, .85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: .8rem 1.15rem;
  display: flex; align-items: center; gap: .75rem;
}
.split__badge svg { width: 26px; height: 26px; color: var(--brand); flex-shrink: 0; }
.split__badge b { display: block; font-size: .95rem; }
.split__badge span { font-size: .8rem; color: var(--muted); }

.checklist { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .85rem; }
.checklist li { display: flex; align-items: flex-start; gap: .75rem; margin: 0; color: var(--text-soft); }
.checklist svg {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px;
  color: var(--brand);
}
.checklist b { color: var(--text); }

/* ---------- 13. Hizmet Bölgeleri ---------- */
.area-search {
  position: relative;
  max-width: 460px;
  margin-bottom: 1.8rem;
}
.area-search input {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  font-family: inherit; font-size: 1rem;
  padding: .95rem 1.3rem .95rem 3rem;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.area-search input::placeholder { color: var(--muted); }
.area-search input:focus { outline: none; border-color: var(--brand); background: var(--surface-3); }
.area-search svg {
  position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; color: var(--muted); pointer-events: none;
}

.area-tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.area-tab {
  background: var(--surface-2); border: 1px solid var(--line);
  color: var(--text-soft); font-family: inherit; font-size: .9rem; font-weight: 700;
  padding: .55rem 1.15rem; border-radius: 999px; cursor: pointer;
  transition: all .2s var(--ease);
}
.area-tab:hover { border-color: var(--line-strong); color: var(--text); }
.area-tab.is-active { background: var(--brand); border-color: var(--brand); color: #16191F; }

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: .7rem;
}
.area-link {
  display: flex; align-items: center; gap: .6rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .82rem 1rem;
  color: var(--text-soft); font-size: .95rem; font-weight: 600;
  transition: all .2s var(--ease);
}
.area-link svg { width: 17px; height: 17px; color: var(--brand); flex-shrink: 0; }
.area-link:hover {
  background: var(--surface-3); color: var(--text);
  border-color: rgba(255, 176, 32, .45); transform: translateX(3px);
}
.area-link[hidden] { display: none; }
.area-empty { color: var(--muted); padding: 1.5rem 0; }

/* ---------- 14. SSS Akordiyon ---------- */
.faq { display: grid; gap: .8rem; }
.faq__item {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq__item.is-open { border-color: rgba(255, 176, 32, .4); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: 0; cursor: pointer;
  padding: 1.15rem 1.35rem;
  color: var(--text); font-family: inherit; font-size: 1.02rem; font-weight: 700;
  text-align: left; line-height: 1.45;
}
.faq__q:hover { color: var(--brand); }
.faq__q svg {
  width: 22px; height: 22px; flex-shrink: 0; color: var(--brand);
  transition: transform .3s var(--ease);
}
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .32s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding: 0 1.35rem 1.3rem;
  color: var(--text-soft); font-size: .97rem; margin: 0;
}

/* ---------- 15. Çağrı Bandı (CTA) ---------- */
.cta-band { position: relative; isolation: isolate; overflow: hidden; }
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(9, 11, 17, .96) 20%, rgba(9, 11, 17, .74) 100%);
}
.cta-band__inner {
  padding-block: clamp(3rem, 7vw, 5rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 { margin-bottom: .5rem; }
.cta-band p { color: var(--text-soft); margin-bottom: 0; max-width: 52ch; }

.phone-big {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 900;
  color: var(--brand); letter-spacing: -.02em;
}
.phone-big:hover { color: #FFC85C; }
.phone-big svg { width: 34px; height: 34px; flex-shrink: 0; }

/* ---------- 16. Harita ---------- */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: clamp(300px, 46vw, 470px); border: 0; display: block; filter: grayscale(.35) contrast(1.05); }

/* ---------- 17. İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(1.6rem, 3.5vw, 3rem); align-items: start; }

.info-list { display: grid; gap: .85rem; list-style: none; padding: 0; margin: 0; }
.info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin: 0;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.info-item:hover { border-color: rgba(255, 176, 32, .35); transform: translateY(-2px); }
.info-item__icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--brand-glow); display: grid; place-items: center;
}
.info-item__icon svg { width: 22px; height: 22px; color: var(--brand); }
.info-item > div { min-width: 0; }
.info-item__label { display: block; font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; line-height: 1.5; }
.info-item__value { display: block; font-size: 1.05rem; font-weight: 700; color: var(--text); word-break: break-word; line-height: 1.35; }
a.info-item__value:hover { color: var(--brand); }
.info-item__note { display: block; font-size: .86rem; color: var(--muted); line-height: 1.45; }

/* Form */
.form-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .88rem; font-weight: 700; margin-bottom: .4rem; color: var(--text-soft); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit; font-size: 1rem;
  padding: .82rem 1rem;
  transition: border-color .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 118px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238E99AD' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 18px; padding-right: 2.6rem; }
.field select option { background: var(--surface); color: var(--text); }
.form-note { font-size: .84rem; color: var(--muted); margin-top: .9rem; }

/* ---------- 18. Alt Bilgi ---------- */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding-block: clamp(2.6rem, 5vw, 4rem) 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(1.6rem, 3vw, 2.6rem);
  padding-bottom: 2.6rem;
}
.footer h4 {
  font-size: .92rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--text); margin-bottom: 1.1rem;
}
.footer p, .footer li { color: var(--muted); font-size: .93rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.footer ul a, .footer ul li { display: flex; align-items: center; gap: .5rem; padding-block: .3rem; }
.footer ul svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--brand); }
.footer ul li > a { padding-block: 0; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--brand); }
.footer .logo { margin-bottom: 1rem; }

.social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social a {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--surface-2); border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: all .2s var(--ease);
}
.social a:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-3px); }
.social a:hover svg { color: #16191F; }
.social svg { width: 19px; height: 19px; color: var(--text-soft); transition: color .2s var(--ease); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.4rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  font-size: .88rem; color: var(--muted);
}
.footer__bottom p { margin: 0; }
.footer__dev a { color: var(--brand); font-weight: 700; }

/* Alt bilgi ilçe bulutu */
.area-cloud { display: flex; flex-wrap: wrap; gap: .4rem; }
.area-cloud a {
  font-size: .81rem; color: var(--muted);
  background: var(--surface); border: 1px solid var(--line);
  padding: .3rem .7rem; border-radius: 7px;
  transition: all .2s var(--ease);
}
.area-cloud a:hover { color: var(--brand); border-color: rgba(255, 176, 32, .4); }

/* ---------- 19. Sayfa Başlığı (iç sayfalar) ---------- */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(9, 11, 17, .97) 30%, rgba(9, 11, 17, .82) 100%);
}
.page-hero__inner { padding-block: clamp(2.4rem, 6vw, 4.4rem); max-width: 780px; }
.page-hero h1 { margin-bottom: .7rem; }
.page-hero p { color: var(--text-soft); font-size: 1.05rem; margin-bottom: 0; }

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; padding: 0; margin: 0 0 1rem; list-style: none; font-size: .86rem; }
.breadcrumb li { margin: 0; color: var(--muted); display: flex; align-items: center; gap: .45rem; }
.breadcrumb li:not(:last-child)::after { content: "›"; color: var(--muted); opacity: .6; }
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--brand); }

/* ---------- 20. Yazı İçeriği ---------- */
.prose { max-width: 74ch; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.9rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--text-soft); }
.prose strong { color: var(--text); }

.callout {
  background: linear-gradient(135deg, rgba(255, 176, 32, .12), rgba(255, 176, 32, .04));
  border: 1px solid rgba(255, 176, 32, .28);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-block: 1.6rem;
}
.callout p { margin-bottom: 0; color: var(--text-soft); }
.callout strong { color: var(--brand); }

.table-wrap { overflow-x: auto; margin-block: 1.6rem; border-radius: var(--radius); border: 1px solid var(--line); -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 440px; }
th, td { padding: .85rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
th { background: var(--surface-2); font-weight: 800; color: var(--text); white-space: nowrap; }
td { color: var(--text-soft); }
tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(255, 255, 255, .025); }

/* ---------- 21. Mobil Alt Çağrı Çubuğu ---------- */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
  display: none;
  background: rgba(12, 15, 22, .96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-strong);
  padding: .5rem .5rem calc(.5rem + env(safe-area-inset-bottom));
  gap: .45rem;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, .45);
}
.mobile-bar a {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem;
  padding: .5rem .3rem;
  border-radius: 12px;
  font-size: .72rem; font-weight: 700;
  color: var(--text-soft);
  text-align: center;
  line-height: 1.2;
}
.mobile-bar a svg { width: 21px; height: 21px; }
.mobile-bar .mb-call { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #16191F; }
.mobile-bar .mb-wa { background: var(--wa); color: #04220F; }

/* Sabit WhatsApp balonu (masaüstü) */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 110;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa);
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .4);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.09); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* Yukarı çık */
.to-top {
  position: fixed; right: 20px; bottom: 88px; z-index: 109;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--line-strong);
  display: grid; place-items: center; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .25s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--brand); border-color: var(--brand); }
.to-top:hover svg { color: #16191F; }
.to-top svg { width: 20px; height: 20px; color: var(--text-soft); transition: color .2s var(--ease); }

/* ---------- 22. Kaydırma Animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   23. DUYARLI TASARIM — Tablet & Mobil
   ========================================================================== */

/* Geniş tablet / küçük masaüstü — menü buradan itibaren hamburger olur */
@media (max-width: 1180px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .step:nth-child(2)::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .nav-toggle { display: grid; }

  /* Başlıktaki backdrop-filter, içindeki position:fixed menüye içerme bloğu
     oluşturup paneli kırpıyordu. Menünün kullanıldığı genişliklerde kaldırıyoruz. */
  .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--bg);
  }
  .header.is-stuck { background: var(--bg); }

  .nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(320px, 84vw);
    background: var(--bg-alt);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    padding: calc(var(--header-h) + 1.6rem) 1.2rem 2rem;
    transform: translateX(100%);
    transition: transform .32s var(--ease);
    overflow-y: auto;
    box-shadow: -14px 0 44px rgba(0, 0, 0, .5);
    z-index: 101;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { padding: .85rem 1rem; font-size: 1.02rem; border-radius: 11px; }
  .nav a.nav-home { display: block; }
  .nav__mobile-cta { display: grid !important; gap: .6rem; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }

  .nav-backdrop {
    position: fixed; inset: 0; z-index: 99;
    background: rgba(4, 6, 10, .6);
    backdrop-filter: blur(3px);
    opacity: 0; visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s var(--ease);
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }

  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery__item--wide { grid-column: span 3; aspect-ratio: 16 / 9; }
}

/* Tablet */
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; max-width: 560px; margin-inline: auto; width: 100%; }
  .split--reverse .split__media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .map-wrap iframe { height: 340px; }
}

/* Mobil */
@media (max-width: 640px) {
  :root { --header-h: 62px; }
  body { font-size: 15.5px; padding-bottom: 68px; }

  .header__cta .btn span { display: none; }
  .header__cta .btn { padding: .62rem .8rem; }
  .header__cta .btn--ghost { display: none; }

  .topbar .container { flex-wrap: nowrap; }
  .topbar__items { gap: .9rem; font-size: .78rem; flex-wrap: nowrap; }
  .topbar__item--hide-sm, .topbar__long { display: none; }

  .logo__mark { width: 38px; height: 38px; border-radius: 11px; }
  .logo__mark svg { width: 23px; height: 23px; }
  .logo__name { font-size: 1.04rem; }
  .logo__tag { font-size: .62rem; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; row-gap: 1.6rem; }
  .step::after { display: none; }
  .step { padding-top: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; aspect-ratio: 4 / 3; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; gap: .6rem; }
  .trust__item { padding: 1.3rem .8rem; }

  .btn { width: 100%; }
  .btn-row .btn { flex: 1 1 100%; }
  .header__cta .btn, .topbar .btn, .nav .btn { width: auto; }
  .area-tab { flex: 1 1 auto; }

  .hero__inner { padding-block: 2.8rem 3.2rem; }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(9, 11, 17, .93) 0%, rgba(9, 11, 17, .8) 42%, rgba(9, 11, 17, .96) 100%);
  }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }

  .mobile-bar { display: flex; }
  .wa-float { display: none; }
  .to-top { bottom: 82px; right: 14px; width: 40px; height: 40px; }

  .lightbox__prev { left: .4rem; }
  .lightbox__next { right: .4rem; }
  .lightbox__btn { width: 44px; height: 44px; }
  .lightbox img { max-height: 68vh; }

  .section-head { margin-bottom: 1.8rem; }
}

@media (max-width: 400px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .area-grid { grid-template-columns: 1fr; }
}

/* Hareket azaltma tercihi */
@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; }
}

/* Yazdırma */
@media print {
  .header, .topbar, .mobile-bar, .wa-float, .to-top, .footer, .cta-band, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  .hero::after, .page-hero::after { display: none; }
  a { color: #000; text-decoration: underline; }
}
