/* =========================================================
   Bölge Servis — Premium Koyu Lacivert + Altın Tema
   ========================================================= */
:root {
  --navy-950: #070c1c;
  --navy-900: #0a1124;
  --navy-800: #0f1730;
  --navy-700: #16203f;
  --navy-600: #1e2a52;
  --gold: #d4af37;
  --gold-light: #f4e2a4;
  --gold-dark: #a8861e;
  --gold-grad: linear-gradient(120deg, #f7e7b0 0%, #d4af37 45%, #b8860b 100%);
  --cream: #f4f1ea;
  --body: #c3cbe0;
  --muted: #93a0bd;
  --line: rgba(212, 175, 55, .16);
  --line-strong: rgba(212, 175, 55, .32);
  --card: linear-gradient(160deg, rgba(30, 42, 82, .55), rgba(15, 23, 48, .85));
  --shadow: 0 22px 50px rgba(2, 6, 18, .55);
  --glow-gold: 0 12px 34px rgba(212, 175, 55, .28);
  --radius: 20px;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-head: "Poppins", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--navy-950);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(212, 175, 55, .10), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(30, 42, 82, .9), transparent 65%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container { width: min(1160px, 92%); margin-inline: auto; }

section { padding: 96px 0; position: relative; }

::selection { background: rgba(212, 175, 55, .35); color: #fff; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn:hover::after { left: 130%; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: var(--gold-grad);
  color: var(--navy-950);
  box-shadow: var(--glow-gold);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(212, 175, 55, .4); }

.btn--whatsapp {
  background: #1fb959;
  color: #fff;
  box-shadow: 0 12px 30px rgba(31, 185, 89, .32);
}
.btn--whatsapp:hover { transform: translateY(-3px); background: #1aa450; }

.btn--light { background: #fff; color: var(--navy-900); }
.btn--light:hover { transform: translateY(-3px); }

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 226, 164, .45);
}
.btn--ghost-light:hover { background: rgba(212, 175, 55, .12); border-color: var(--gold); }

.btn--lg { padding: 17px 36px; font-size: 17px; border-radius: 16px; }
.btn--block { width: 100%; }
.btn--header {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: .3px;
  white-space: nowrap;
  background: linear-gradient(120deg, #ff5f4d, #d92c1f);
  color: #fff;
  box-shadow: 0 6px 20px rgba(217, 44, 31, .38);
}
.btn--header:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(217, 44, 31, .55); }
.btn--header span { display: inline-block; }
.btn__icon { width: 14px; height: 14px; flex-shrink: 0; }

/* ---------- Bölüm başlıkları ---------- */
.section-head { text-align: center; max-width: 660px; margin: 0 auto 54px; }
.section-head__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(212, 175, 55, .12);
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-head__tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -.5px;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 18px auto 0;
  background: var(--gold-grad);
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(212, 175, 55, .4);
}
.section-head h2 span {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head p { color: var(--muted); font-size: 16px; }

/* ---------- Üst bilgi çubuğu ---------- */
.topbar {
  background: linear-gradient(90deg, var(--navy-800), var(--navy-700));
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  padding: 9px 0;
  font-size: 14px;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; }
.topbar__left span { display: inline-flex; align-items: center; gap: 8px; color: var(--body); }
.topbar__left span::before {
  content: "✦";
  color: var(--gold);
  font-size: 12px;
}
.topbar__right a { font-weight: 800; color: var(--gold-light); display: inline-flex; align-items: center; gap: 7px; }
.topbar__right svg { width: 14px; height: 14px; color: var(--gold); }
.topbar__phone:hover { color: var(--gold); }

/* ---------- Menü ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 17, 36, .78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s;
}
.header.scrolled { border-color: var(--line); box-shadow: 0 18px 40px rgba(2, 6, 18, .5); }
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
}

.brand { display: flex; align-items: center; gap: 12px; justify-self: start; }
.brand__logo {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--gold-grad);
  color: var(--navy-950);
  border-radius: 14px;
  box-shadow: var(--glow-gold);
}
.brand__logo svg { width: 26px; height: 26px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--font-head); font-size: 24px; font-weight: 800; white-space: nowrap; line-height: 1.1; letter-spacing: .4px; }
.brand__name strong {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 800;
}
.brand__name--sub {
  color: var(--body);
  white-space: nowrap;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 10.5px;
  margin-top: 3px;
}

.header__actions { display: flex; align-items: center; gap: 12px; justify-self: end; }

.nav { display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; }
.nav a { font-weight: 600; color: var(--body); position: relative; padding: 4px 0; white-space: nowrap; font-size: 14.5px; transition: color .2s; }
.nav a.active { color: var(--gold-light); }
.nav a.active::after { width: 100%; }
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
  transition: width .25s;
}
.nav a:hover { color: var(--gold-light); }
.nav a:hover::after { width: 100%; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 25px; height: 2.5px; background: var(--gold-light); border-radius: 3px; margin: 5px 0; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 84px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 380px at 82% 8%, rgba(212, 175, 55, .16), transparent 62%),
    radial-gradient(600px 420px at 6% 110%, rgba(30, 42, 82, .9), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: -180px; right: -120px;
  width: 520px; height: 520px;
  border: 1px solid rgba(212, 175, 55, .18);
  border-radius: 50%;
  pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; position: relative; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, .14);
  border: 1px solid var(--line-strong);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: inset 0 0 24px rgba(212, 175, 55, .08);
}
.badge::before { content: "★"; color: var(--gold); }
.hero__content h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero__content h1 span {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { color: var(--muted); font-size: 17.5px; max-width: 540px; margin-bottom: 30px; }
.hero__districts {
  font-weight: 800;
  font-size: 16px;
  color: var(--gold-light);
  letter-spacing: .3px;
  margin: 0 0 22px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero__bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.hero__bullets li {
  display: flex; align-items: center; gap: 9px;
  font-weight: 600; color: var(--cream);
  font-size: 15px;
}
.hero__bullets li::before {
  content: "";
  width: 22px; height: 22px;
  background: rgba(212, 175, 55, .16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__visual { position: relative; display: flex; align-items: center; }
.hero__card--main {
  background: var(--card);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  max-width: 420px;
  width: 100%;
  margin-left: auto;
  position: relative;
}
.hero__card--main::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(212,175,55,.25), transparent 70%);
  pointer-events: none;
}
.hero__card-body { padding: 30px 28px 8px; }
.hero__card--main h3 {
  font-family: var(--font-head);
  font-size: 21px;
  margin: 0 0 8px;
  color: var(--cream);
}
.hero__card--main p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 22px;
}
.hero__card-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: rgba(7, 12, 28, .55);
  border-top: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
}
.hero__rating-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; flex-shrink: 0; text-shadow: 0 0 12px rgba(212,175,55,.5); }
.hero__rating-score {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  flex-shrink: 0;
}
.hero__rating-text { font-size: 13px; color: var(--muted); font-weight: 600; line-height: 1.35; }

/* ---------- Sayaçlar ---------- */
.stats {
  background: linear-gradient(120deg, var(--navy-800), var(--navy-700));
  border-block: 1px solid var(--line);
  padding: 52px 0;
  position: relative;
}
.stats::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .5;
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { position: relative; }
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--line);
}
.stat__num {
  display: block;
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label { opacity: .85; font-size: 14px; font-weight: 600; color: var(--body); }

/* ---------- Hizmetler ---------- */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: transform .28s, box-shadow .28s, border-color .28s;
  display: block;
  position: relative;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.service:hover::before { transform: scaleX(1); }
.service__icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: rgba(212, 175, 55, .12);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--gold);
  margin-bottom: 20px;
  transition: transform .3s, background .3s, box-shadow .3s;
}
.service__icon svg { width: 30px; height: 30px; }
.service:hover .service__icon { transform: translateY(-3px); background: rgba(212, 175, 55, .2); box-shadow: 0 8px 22px rgba(212, 175, 55, .25); }
.service h3 { font-family: var(--font-head); font-size: 19px; margin-bottom: 10px; color: var(--cream); }
.service p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.service__link { font-weight: 700; color: var(--gold); font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.service:hover .service__link { gap: 10px; }

/* ---------- Hizmet Bölgeleri ---------- */
.areas { background: transparent; }
.areas__group-title {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  margin: 0 0 20px;
  color: var(--cream);
}
.areas__group-title span { color: var(--gold); }
.areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}
.areas__grid a {
  background: rgba(15, 23, 48, .6);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  text-align: center;
  font-weight: 700;
  color: var(--body);
  transition: .28s;
  position: relative;
  overflow: hidden;
}
.areas__grid a::before {
  content: "✦";
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
  color: var(--gold);
}
.areas__grid a:hover { border-color: var(--gold); color: var(--gold-light); box-shadow: var(--shadow); background: rgba(212, 175, 55, .08); transform: translateY(-3px); }

.areas__seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}
.areas__seo-grid a {
  background: rgba(212, 175, 55, .08);
  border: 1px solid var(--line);
  color: var(--gold-light);
  border-radius: 14px;
  padding: 15px 12px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  transition: .28s;
}
.areas__seo-grid a:hover { background: rgba(212, 175, 55, .16); box-shadow: var(--glow-gold); transform: translateY(-3px); }

@media (max-width: 860px) { .areas__grid, .areas__seo-grid { grid-template-columns: repeat(2, 1fr); } .brands__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .areas__grid, .areas__seo-grid { grid-template-columns: 1fr; } .brands__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Neden Biz ---------- */
.why {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  border-block: 1px solid var(--line);
}
.why__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: center; }
.why__text h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 16px; letter-spacing: -.5px; }
.why__text h2 span {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.why__text > p { color: var(--muted); margin-bottom: 30px; }
.why__list { display: grid; gap: 18px; margin-bottom: 34px; }
.why__list li { display: flex; gap: 15px; align-items: flex-start; }
.why__icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--gold-grad);
  color: var(--navy-950);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 15px;
  box-shadow: var(--glow-gold);
  margin-top: 2px;
}
.why__list strong { font-family: var(--font-head); color: var(--cream); }
.why__list div { color: var(--muted); font-size: 15px; }

.why__image { display: grid; gap: 22px; }
.why__card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .28s, border-color .28s;
}
.why__card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.why__card::after {
  content: "";
  position: absolute;
  right: -30px; top: -30px;
  width: 110px; height: 110px;
  background: radial-gradient(circle, rgba(212,175,55,.18), transparent 70%);
}
.why__card h3 { font-family: var(--font-head); margin-bottom: 8px; color: var(--cream); display: flex; align-items: center; gap: 10px; }
.why__card h3 svg { width: 22px; height: 22px; color: var(--gold); }
.why__card p { color: var(--muted); font-size: 15px; }

/* ---------- Adımlar ---------- */
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  position: relative;
  transition: transform .28s, box-shadow .28s, border-color .28s;
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.step__num {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: var(--gold-grad);
  color: var(--navy-950);
  font-size: 25px; font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-family: var(--font-head);
  box-shadow: var(--glow-gold);
}
.step h3 { font-family: var(--font-head); margin-bottom: 10px; color: var(--cream); }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- Markalar ---------- */
.brands { padding-top: 0; }
.brands__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-bottom: 48px; }
.brands__service-grid { margin-bottom: 8px; }
.brands__grid span {
  background: rgba(15, 23, 48, .6);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 10px;
  text-align: center;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--body);
  transition: .28s;
}
.brands__grid span:hover { border-color: var(--gold); color: var(--gold-light); box-shadow: var(--shadow); transform: translateY(-3px); }
.brands__note { text-align: center; color: var(--muted); margin-top: 28px; font-size: 15px; }

/* ---------- Yorumlar ---------- */
.testimonials { background: linear-gradient(180deg, var(--navy-800), var(--navy-900)); border-block: 1px solid var(--line); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .28s, border-color .28s;
}
.testimonial:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.testimonial::before {
  content: "“";
  position: absolute;
  top: 6px; right: 22px;
  font-family: Georgia, serif;
  font-size: 88px;
  line-height: 1;
  color: rgba(212, 175, 55, .14);
}
.testimonial__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; text-shadow: 0 0 10px rgba(212,175,55,.4); }
.testimonial p { color: var(--cream); font-size: 15px; margin-bottom: 18px; position: relative; }
.testimonial__name { color: var(--gold-light); font-weight: 700; font-size: 14px; }

/* ---------- S.S.S ---------- */
.faq__wrap { max-width: 780px; }
.faq__list { display: grid; gap: 14px; }
.faq__item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 26px;
  transition: border-color .25s, box-shadow .25s;
}
.faq__item[open] { border-color: var(--line-strong); box-shadow: var(--shadow); }
.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--cream);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--gold);
  font-weight: 800;
  line-height: 1;
  transition: transform .25s;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p { color: var(--muted); padding-top: 12px; font-size: 15px; }

/* ---------- CTA ---------- */
.cta {
  background:
    radial-gradient(700px 320px at 50% -20%, rgba(255, 255, 255, .18), transparent 70%),
    var(--gold-grad);
  color: var(--navy-950);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  bottom: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 260px;
  background: radial-gradient(ellipse, rgba(7, 12, 28, .22), transparent 70%);
}
.cta__inner { display: grid; gap: 14px; justify-items: center; position: relative; }
.cta h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 40px); font-weight: 800; max-width: 780px; }
.cta p { font-size: 17px; opacity: .9; max-width: 620px; }
.cta__actions { display: flex; gap: 14px; margin-top: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- İletişim ---------- */
.contact { background: linear-gradient(180deg, var(--navy-900), var(--navy-950)); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; }
.contact__info h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 38px); font-weight: 800; margin-bottom: 14px; }
.contact__info h2 span {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.contact__info > p { color: var(--muted); margin-bottom: 30px; }
.contact__list { display: grid; gap: 16px; margin-bottom: 30px; }
.contact__list li { display: flex; align-items: center; gap: 14px; font-weight: 600; color: var(--cream); }
.contact__list li a { color: var(--body); transition: color .2s; }
.contact__list li a:hover { color: var(--gold); }
.contact__icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: rgba(212, 175, 55, .12);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact__icon svg { width: 20px; height: 20px; }

.contact__form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.contact__form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
}
.contact__form h3 { font-family: var(--font-head); margin-bottom: 4px; color: var(--cream); }
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  font-family: var(--font-body);
  font-size: 15px;
  background: rgba(7, 12, 28, .5);
  color: var(--cream);
  transition: border-color .2s, box-shadow .2s;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: var(--muted); }
.contact__form select { color: var(--cream); }
.contact__form select option { background: var(--navy-800); color: var(--cream); }
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .18);
}
.contact__form-note { text-align: center; color: var(--muted); font-size: 13px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); border-top: 1px solid var(--line); padding-top: 64px; position: relative; }
.footer::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .4;
}
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 44px; }
.brand--footer .brand__text strong {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand--footer .brand__name--sub { color: var(--cream); }
.brand--footer .brand__logo { background: var(--gold-grad); }
.footer__brand p { color: var(--muted); font-size: 14px; margin-top: 16px; max-width: 300px; }
.footer__links, .footer__contact { display: grid; gap: 10px; align-content: start; }
.footer h4 { font-family: var(--font-head); margin-bottom: 12px; color: var(--gold-light); font-size: 15px; letter-spacing: 1px; text-transform: uppercase; }
.footer a { color: var(--body); font-size: 14px; transition: color .2s, transform .2s; }
.footer a:hover { color: var(--gold); transform: translateX(3px); }
.footer__contact a, .footer__contact span { display: flex; align-items: center; gap: 10px; }
.footer__contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.footer__contact span { color: var(--body); font-size: 14px; }
.footer__bottom {
  border-top: 1px solid rgba(212, 175, 55, .12);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Yüzen ara butonu ---------- */
.float-call {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 62px; height: 62px;
  background: var(--gold-grad);
  color: var(--navy-950);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(212, 175, 55, .45);
  z-index: 99;
  animation: pulse 2.2s infinite;
}
.float-call svg { width: 26px; height: 26px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, .5); }
  70% { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* ---------- Yukarı çık butonu ---------- */
.back-top {
  position: fixed;
  right: 28px; bottom: 98px;
  width: 46px; height: 46px;
  background: rgba(15, 23, 48, .9);
  border: 1px solid var(--line-strong);
  color: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.back-top svg { width: 22px; height: 22px; }
.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: var(--glow-gold); }

/* ---------- Görünüm animasyonları ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Duyarlı tasarım ---------- */
@media (max-width: 1024px) {
  .header__inner { grid-template-columns: 1fr auto; gap: 16px; }
  .nav {
    position: fixed;
    top: 0; right: -300px;
    width: 300px; height: 100vh;
    background: var(--navy-800);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 96px 30px 30px;
    box-shadow: -20px 0 50px rgba(2, 6, 18, .6);
    transition: right .3s ease;
    z-index: 101;
  }
  .nav.open { right: 0; }
  .nav a { font-size: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }
  .burger { display: block; z-index: 102; }
  .btn--header { display: none; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .brands__grid { grid-template-columns: repeat(4, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  section { padding: 64px 0; }
  .hero__grid, .why__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: auto; margin-top: 24px; }
  .hero__card--main { margin-inline: auto; }
  .testimonials__grid, .steps__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .hero__bullets { grid-template-columns: 1fr; }
  .services__grid, .brands__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .cta__actions { flex-direction: column; }
}

/* =========================================================
   Kurumsal Premium Eklentiler
   ========================================================= */

/* ---------- Kurumsal güven şeridi (hero) ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--body);
}
.trust-strip li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ---------- Kurumsal kimlik kartı (neden biz) ---------- */
.why__card--corporate {
  background: linear-gradient(160deg, rgba(212, 175, 55, .14), rgba(15, 23, 48, .9));
  border-color: var(--line-strong);
}
.why__creds {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.why__creds li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--body);
  font-weight: 600;
}
.why__creds li::before {
  content: "";
  width: 18px; height: 18px;
  background: rgba(212, 175, 55, .2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Kurumsal yorumlar ---------- */
.testimonial__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.testimonial__avatar {
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--gold-grad);
  color: var(--navy-950);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .5px;
  border-radius: 50%;
  box-shadow: var(--glow-gold);
}
.testimonial__top .testimonial__stars { margin-bottom: 2px; font-size: 13px; letter-spacing: 2px; }
.testimonial__top .testimonial__name { display: block; font-weight: 700; font-size: 14px; }

/* ---------- Kurumsal form ---------- */
.contact__form-head {
  margin-bottom: 6px;
}
.contact__form-head h3 { font-size: 20px; }
.contact__form-head p {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 2px;
}
.contact__field { display: grid; gap: 7px; }
.contact__field label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  font-family: var(--font-body);
  font-size: 15px;
  background: rgba(7, 12, 28, .5);
  color: var(--cream);
  transition: border-color .2s, box-shadow .2s;
}
.contact__field input::placeholder,
.contact__field textarea::placeholder { color: var(--muted); }
.contact__field select { color: var(--cream); }
.contact__field select option { background: var(--navy-800); color: var(--cream); }
.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .18);
}

/* ---------- Kurumsal footer ---------- */
.footer__creds {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}
.footer__creds li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--body);
  font-weight: 600;
}
.footer__creds li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: var(--muted); font-size: 13px; }
.footer__legal a:hover { color: var(--gold); }

/* ---------- Premium kaydırma çubuğu ---------- */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--navy-950); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--navy-600), var(--gold-dark));
  border-radius: 8px;
  border: 2px solid var(--navy-950);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ---------- Erişilebilirlik ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (max-width: 560px) {
  .trust-strip { gap: 8px 14px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}