/* ============================================================
   HEDEF VİNÇ — Retrofit Hedef Crane
   Site stili — renkler logodan: lacivert + emniyet sarısı
   ============================================================ */

:root {
  --navy-950: #0d1430;
  --navy-900: #131c3d;
  --navy-800: #1b2653;
  --navy-700: #243069;
  --navy-600: #2e3d85;
  --navy-100: #e6e9f4;
  --yellow-500: #ffc42e;
  --yellow-600: #f5b400;
  --yellow-700: #d99e00;
  --wa-green: #25d366;
  --wa-green-dark: #1eb857;
  --ink: #1a2138;
  --ink-soft: #4a5372;
  --ink-mute: #6f7896;
  --bg: #ffffff;
  --bg-soft: #f5f6fb;
  --bg-card: #ffffff;
  --line: #e3e6f0;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(19, 28, 61, 0.08);
  --shadow-md: 0 6px 24px rgba(19, 28, 61, 0.10);
  --shadow-lg: 0 18px 48px rgba(19, 28, 61, 0.16);
  --font-head: "Archivo", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --container: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

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

a { color: var(--navy-700); text-decoration: none; }
a:hover { color: var(--navy-600); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy-900);
  font-weight: 800;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: #dfe4f5;
}
.section--navy h2, .section--navy h3 { color: #fff; }

/* Başlık blokları */
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head--left { margin: 0 0 40px; text-align: left; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow-700);
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--yellow-500);
}
.section--navy .kicker { color: var(--yellow-500); }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 0; }
.section--navy .section-head p { color: #b8c1e0; }

/* ============ Butonlar ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn svg { flex: 0 0 auto; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--yellow-500);
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(245, 180, 0, 0.35);
}
.btn--primary:hover { background: var(--yellow-600); color: var(--navy-950); }

.btn--whatsapp {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.30);
}
.btn--whatsapp:hover { background: var(--wa-green-dark); color: #fff; }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover { border-color: var(--yellow-500); color: var(--yellow-500); }

.btn--navy {
  background: var(--navy-800);
  color: #fff;
  box-shadow: 0 8px 22px rgba(19, 28, 61, 0.25);
}
.btn--navy:hover { background: var(--navy-700); color: #fff; }

.btn--sm { padding: 10px 18px; font-size: 0.88rem; }

/* ============ Üst bilgi çubuğu ============ */
.topbar {
  background: var(--navy-950);
  color: #aeb8da;
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__group { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar a { color: #dfe4f5; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.topbar a:hover { color: var(--yellow-500); }
.topbar svg { opacity: 0.85; }
.topbar__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow-500);
  font-weight: 700;
}

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-md); }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  height: 56px;
  width: auto;
  border-radius: 10px;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.18rem;
  color: var(--navy-900);
  letter-spacing: 0.02em;
}
.brand__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-700);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.nav > a:hover { background: var(--bg-soft); color: var(--navy-800); }
.nav > a.is-active { color: var(--navy-800); }
.nav > a.is-active::after {
  content: "";
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--yellow-500);
  margin-top: 2px;
}

/* Hizmetler açılır menü */
.nav__drop { position: relative; }
.nav__drop > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border: 0;
  background: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
}
.nav__drop > button:hover { background: var(--bg-soft); color: var(--navy-800); }
.nav__drop > button svg { transition: transform 0.2s ease; }
.nav__drop.is-open > button svg { transform: rotate(180deg); }
.nav__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 300px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  display: none;
  z-index: 95;
}
.nav__drop.is-open .nav__menu { display: block; }
.nav__menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
}
.nav__menu a:hover { background: var(--bg-soft); color: var(--navy-800); }

.header__cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--navy-900);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--yellow-500);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(46, 61, 133, 0.55), transparent 60%),
    linear-gradient(155deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 96px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 196, 46, 0.12);
  border: 1px solid rgba(255, 196, 46, 0.4);
  color: var(--yellow-500);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--yellow-500); }
.hero__lead {
  color: #b8c1e0;
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 30px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero__trust { display: flex; gap: 22px; flex-wrap: wrap; }
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  color: #cfd6ec;
  font-size: 0.9rem;
  font-weight: 600;
}
.hero__trust { padding: 0; margin: 0; }
.hero__trust svg { color: var(--yellow-500); flex: 0 0 auto; }
.hero__art { position: relative; }
.hero__art svg { width: 100%; height: auto; }

/* ============ Öne çıkanlar şeridi ============ */
.feature-strip {
  position: relative;
  z-index: 5;
  margin-top: -46px;
}
.feature-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-strip__item {
  background: #fff;
  padding: 26px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-strip__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy-100);
  color: var(--navy-800);
  display: grid;
  place-items: center;
}
.feature-strip__item h3 { font-size: 1rem; margin-bottom: 4px; }
.feature-strip__item p { font-size: 0.86rem; color: var(--ink-mute); margin: 0; }

/* ============ Hizmet kartları ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--yellow-500);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after { opacity: 1; }
.service-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-600));
  color: var(--yellow-500);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.service-card p { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy-800);
}
.service-card__link svg { transition: transform 0.2s ease; }
.service-card:hover .service-card__link svg { transform: translateX(4px); }
.service-card:hover .service-card__link { color: var(--yellow-700); }

/* ============ Neden biz ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.why-card:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-4px); }
.why-card__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  color: var(--yellow-500);
  opacity: 0.9;
  margin-bottom: 12px;
}
.why-card h3 { font-size: 1.05rem; color: #fff; margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: #b8c1e0; margin: 0; }

/* ============ Konteyner bandı ============ */
.promo-band {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, var(--yellow-500) 0%, #ffd45e 100%);
  color: var(--navy-950);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.promo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(13, 20, 48, 0.05) 0 18px,
    transparent 18px 36px
  );
  pointer-events: none;
}
.promo-band h2 {
  position: relative;
  color: var(--navy-950);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: 8px;
}
.promo-band p {
  position: relative;
  color: rgba(13, 20, 48, 0.75);
  font-weight: 500;
  margin: 0;
  max-width: 560px;
}
.promo-band__actions { position: relative; display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ Hizmet bölgesi ============ */
.region-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.region-chips { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0 0 20px; list-style: none; }
.region-chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
}
.region-chips li.is-primary {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
}
.region-chips li svg { color: var(--yellow-600); flex: 0 0 auto; }
.region-chips li.is-primary svg { color: var(--yellow-500); }
.region-note { font-size: 0.92rem; color: var(--ink-mute); }
.region-art svg { width: 100%; height: auto; }

/* ============ Adım kartları (nasıl çalışır) ============ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-sm);
}
.step-card__badge {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-family: var(--font-head);
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(245, 180, 0, 0.4);
}
.step-card h3 { font-size: 1.05rem; margin: 10px 0 8px; }
.step-card p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* ============ SSS ============ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item.is-open { box-shadow: var(--shadow-md); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
}
.faq-item__q .faq-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--navy-100);
  color: var(--navy-800);
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--yellow-500);
  color: var(--navy-950);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item__a-inner {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ============ İletişim CTA bandı ============ */
.cta-final {
  text-align: center;
  padding: 90px 0;
}
.cta-final h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.cta-final p { color: #b8c1e0; max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-final__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-final__phones { margin-top: 26px; display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
.cta-final__phones a {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta-final__phones a:hover { color: var(--yellow-500); }
.cta-final__phones span.lang {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.14);
  color: #cfd6ec;
  border-radius: 6px;
  padding: 3px 8px;
  letter-spacing: 0.08em;
}

/* ============ Footer ============ */
.footer {
  background: var(--navy-950);
  color: #aeb8da;
  padding: 70px 0 0;
  font-size: 0.92rem;
}
.footer a { color: #cfd6ec; }
.footer a:hover { color: var(--yellow-500); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand img {
  height: 64px;
  width: auto;
  background: #fff;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 18px;
}
.footer__brand p { color: #8891b5; font-size: 0.88rem; max-width: 300px; }
.footer h4 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer__contact svg { flex: 0 0 auto; margin-top: 3px; color: var(--yellow-500); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #6f7896;
}

/* ============ Yüzen WhatsApp ============ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.08);
  color: #fff;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55);
}
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa-green);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ============ Alt sayfalar (hizmet detay / hakkımızda / iletişim) ============ */
.page-hero {
  position: relative;
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(46, 61, 133, 0.5), transparent 60%),
    linear-gradient(155deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-800) 100%);
  color: #fff;
  padding: 72px 0 64px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 20%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 20%, #000 20%, transparent 80%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 0.85rem;
}
.breadcrumb a { color: #aeb8da; }
.breadcrumb a:hover { color: var(--yellow-500); }
.breadcrumb li { display: flex; align-items: center; gap: 8px; color: #6f7896; }
.breadcrumb li:not(:first-child)::before { content: "›"; color: #4a5372; }
.breadcrumb .current { color: var(--yellow-500); font-weight: 600; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.8vw, 2.7rem); margin-bottom: 12px; }
.page-hero__lead { color: #b8c1e0; font-size: 1.08rem; max-width: 680px; margin-bottom: 26px; }
.page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: flex-start;
}
.detail-body h2 { font-size: 1.5rem; margin-top: 40px; }
.detail-body h2:first-child { margin-top: 0; }
.detail-body h3 { font-size: 1.15rem; margin-top: 28px; }
.detail-body p { color: var(--ink-soft); }
.detail-body ul { color: var(--ink-soft); padding-left: 4px; list-style: none; margin: 0 0 1.2em; }
.detail-body ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.detail-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--yellow-500);
  clip-path: none;
}
.detail-body ul li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 9px;
  height: 5px;
  border-left: 2.5px solid var(--navy-950);
  border-bottom: 2.5px solid var(--navy-950);
  transform: rotate(-45deg);
}

.sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 22px; }
.sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card--navy {
  background: linear-gradient(155deg, var(--navy-900), var(--navy-700));
  border: 0;
  color: #dfe4f5;
}
.sidebar-card--navy h3 { color: #fff; }
.sidebar-card h3 { font-size: 1.05rem; margin-bottom: 14px; }
.sidebar-card .btn { width: 100%; margin-bottom: 10px; }
.sidebar-card .btn:last-child { margin-bottom: 0; }
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { border-bottom: 1px solid var(--line); }
.sidebar-links li:last-child { border-bottom: 0; }
.sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 2px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}
.sidebar-links a:hover { color: var(--navy-700); padding-left: 6px; }
.sidebar-links a.is-current { color: var(--yellow-700); }
.sidebar-links a svg { flex: 0 0 auto; color: var(--yellow-600); }

/* İletişim sayfası */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-card__icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-600));
  color: var(--yellow-500);
  display: grid;
  place-items: center;
}
.contact-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.contact-card p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 6px; }
.contact-card a.strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy-800);
}
.contact-card a.strong:hover { color: var(--yellow-700); }

/* Görünürlük animasyonu */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-float::after { animation: none; }
}

/* ============================================================
   V2 — foto ağırlıklı modern bileşenler
   ============================================================ */

/* Dil değiştirici */
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-switch a {
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  line-height: 1;
}
.lang-switch a:hover { color: var(--navy-800); }
.lang-switch a.is-active {
  background: var(--navy-900);
  color: var(--yellow-500);
}
.nav .lang-switch { display: none; }

/* Foto arka planlı hero */
.hero--photo {
  position: relative;
  background: var(--navy-950);
}
.hero--photo .hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  filter: saturate(0.7);
}
.hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13, 20, 48, 0.96) 0%, rgba(19, 28, 61, 0.82) 45%, rgba(27, 38, 83, 0.45) 100%);
  pointer-events: none;
}
.hero--photo::before { z-index: 2; }
.hero--photo .container { position: relative; z-index: 3; }

/* Hero foto yığını */
.hero__photos {
  position: relative;
  min-height: 420px;
}
.hero__photo-main,
.hero__photo-small {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255, 255, 255, 0.12);
}
.hero__photo-main {
  top: 0;
  right: 0;
  width: 78%;
  transform: rotate(1.5deg);
}
.hero__photo-small {
  bottom: -8px;
  left: 0;
  width: 46%;
  transform: rotate(-3deg);
  border-color: rgba(255, 196, 46, 0.5);
}
.hero__photo-main img,
.hero__photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__badge {
  position: absolute;
  top: -14px;
  left: 6%;
  z-index: 4;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(245, 180, 0, 0.45);
  transform: rotate(-2deg);
}

/* Kayan şerit (marquee) */
.marquee {
  background: var(--yellow-500);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
  z-index: 6;
}
.marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee__track span {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-950);
  white-space: nowrap;
  padding-right: 14px;
}
.marquee__track span::after {
  content: "✦";
  margin-left: 14px;
  color: var(--navy-800);
  opacity: 0.55;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* İstatistik bandı */
.stats-band {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: #fff;
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  text-align: center;
}
.stat h3 {
  color: var(--yellow-500);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 900;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.stat p {
  color: #b8c1e0;
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0;
}

/* Galeri */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
}
.gallery-item.is-tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 16px 14px;
  background: linear-gradient(transparent, rgba(13, 20, 48, 0.85));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
}

/* Blog kartları */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.post-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.post-card:hover .post-card__img img { transform: scale(1.05); }
.post-card__date {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 999px;
}
.post-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
}
.post-card__body h3 { font-size: 1.08rem; margin-bottom: 8px; }
.post-card__body h3 a { color: var(--navy-900); }
.post-card__body h3 a:hover { color: var(--yellow-700); }
.post-card__body p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 14px;
}
.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--navy-800);
}
.post-card:hover .post-card__link { color: var(--yellow-700); }

/* Makale sayfası */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: flex-start;
}
.article-body { max-width: 760px; }
.article-body > figure.post-figure {
  margin: 0 0 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.article-body > figure.post-figure img { width: 100%; display: block; }
.article-body > figure.post-figure figcaption {
  background: var(--bg-soft);
  color: var(--ink-mute);
  font-size: 0.82rem;
  padding: 10px 16px;
}
.article-body h2 { font-size: 1.45rem; margin-top: 40px; }
.article-body h3 { font-size: 1.15rem; margin-top: 28px; }
.article-body p { color: var(--ink-soft); font-size: 1.02rem; }
.article-body ul, .article-body ol { color: var(--ink-soft); padding-left: 22px; margin: 0 0 1.2em; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  margin: 28px 0;
  padding: 18px 24px;
  border-left: 4px solid var(--yellow-500);
  background: var(--bg-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--navy-800);
  font-weight: 600;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: #aeb8da;
  font-size: 0.85rem;
  font-weight: 600;
}
.post-meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-meta svg { color: var(--yellow-500); }

/* Hizmet sayfası içi foto */
.detail-photo {
  margin: 0 0 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.detail-photo img { width: 100%; display: block; }

/* Fotolu promo (konteyner) */
.promo-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(120deg, var(--yellow-500) 0%, #ffd45e 100%);
}
.promo-split__content {
  padding: 48px;
  color: var(--navy-950);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
.promo-split__content h2 { color: var(--navy-950); font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 0 0 4px; }
.promo-split__content p { color: rgba(13, 20, 48, 0.75); font-weight: 500; margin-bottom: 14px; }
.promo-split__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.promo-split__img { position: relative; min-height: 280px; }
.promo-split__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .section { padding: 68px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .hero .container { grid-template-columns: 1fr; padding-top: 64px; padding-bottom: 84px; }
  .hero__art { max-width: 560px; margin: 0 auto; }
  .hero__photos { max-width: 560px; margin: 24px auto 0; min-height: 380px; }
  .region-wrap { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-split { grid-template-columns: 1fr; }
  .promo-split__img { min-height: 240px; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(84vw, 360px);
    background: var(--navy-950);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 96px 22px 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 80;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav > a { color: #dfe4f5; padding: 14px 16px; font-size: 1.02rem; }
  .nav > a:hover, .nav > a.is-active { background: rgba(255, 255, 255, 0.07); color: var(--yellow-500); }
  .nav > a.is-active::after { display: none; }
  .nav__drop > button {
    width: 100%;
    justify-content: space-between;
    color: #dfe4f5;
    padding: 14px 16px;
    font-size: 1.02rem;
  }
  .nav__drop > button:hover { background: rgba(255, 255, 255, 0.07); color: var(--yellow-500); }
  .nav__menu {
    position: static;
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 0;
    box-shadow: none;
    min-width: 0;
    margin-top: 4px;
  }
  .nav__drop.is-open .nav__menu { display: block; }
  .nav__menu a { color: #b8c1e0; font-size: 0.94rem; }
  .nav__menu a:hover { background: rgba(255, 255, 255, 0.06); color: var(--yellow-500); }
  .nav-toggle { display: flex; z-index: 85; position: relative; }
  .header__cta .btn { display: none; }
  .topbar__group--right { display: none; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 20, 48, 0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 75;
  }
  .nav-overlay.is-visible { opacity: 1; pointer-events: auto; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .feature-strip__grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .promo-band { grid-template-columns: 1fr; padding: 34px 26px; }
  .brand__text { display: none; }
  .hero__actions .btn { flex: 1 1 100%; }
  .cta-final__phones { flex-direction: column; gap: 14px; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.is-tall { grid-row: span 1; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero__photos { min-height: 300px; }
  .header .lang-switch { display: none; }
  .nav .lang-switch {
    display: inline-flex;
    margin: 14px 16px 0;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
  }
  .nav .lang-switch a { color: #b8c1e0; }
  .nav .lang-switch a.is-active { background: var(--yellow-500); color: var(--navy-950); }
}
