:root {
  --ink: #0b1f3a;
  --ink-soft: #3a4f6c;
  --paper: #f3f6fb;
  --paper-2: #e7eef8;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --border: rgba(11, 31, 58, 0.12);
  --border-strong: rgba(11, 31, 58, 0.22);
  --signal: #ffb400;
  --signal-deep: #e89400;
  --flare: #e11d2e;
  --flare-deep: #b40f1f;
  --sky: #1a7dff;
  --sky-soft: #4da0ff;
  --lime: #12b76a;
  --bg-deep: var(--paper);
  --bg-panel: var(--surface);
  --bg-card: var(--surface);
  --accent: var(--flare);
  --accent-soft: var(--signal-deep);
  --accent-hot: var(--flare);
  --text: var(--ink);
  --muted: var(--ink-soft);
  --label: #132744;
  --field-bg: #ffffff;
  --field-bg-focus: #fffdf5;
  --field-text: #0b1f3a;
  --field-placeholder: #6b7c94;
  --field-border: rgba(11, 31, 58, 0.22);
  --glow: 0 14px 36px rgba(225, 29, 46, 0.18);
  --radius: 16px;
  --radius-sm: 12px;
  --font-head: "Manrope", "Outfit", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --stripe: repeating-linear-gradient(
    -45deg,
    var(--signal) 0 10px,
    #111 10px 20px
  );
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  background:
    radial-gradient(900px 420px at 8% -4%, rgba(255, 180, 0, 0.22), transparent 55%),
    radial-gradient(820px 380px at 96% 4%, rgba(26, 125, 255, 0.16), transparent 50%),
    radial-gradient(700px 360px at 70% 100%, rgba(225, 29, 46, 0.08), transparent 55%),
    linear-gradient(180deg, #eef4fc 0%, var(--paper) 38%, #f7f9fc 100%);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: var(--sky);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover {
  color: var(--flare);
}

.muted {
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section,
.services-band,
.blog-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 640px;
}

.topbar {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #0b1f3a 0%, #132e55 45%, #0b1f3a 100%);
  color: #fff;
  text-align: center;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--signal), var(--flare), var(--sky), var(--signal)) 1;
}
.topbar::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--stripe);
  background-size: 28px 28px;
  animation: hazard-run 1.1s linear infinite;
  opacity: 0.95;
}
.topbar .call-link {
  color: var(--signal);
  font-weight: 700;
}
.topbar .call-link:hover {
  color: #fff;
}

@keyframes hazard-run {
  from { background-position: 0 0; }
  to { background-position: 28px 0; }
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.06);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 16px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: min(100%, 420px);
  color: var(--ink);
}
.site-logo:hover {
  color: var(--flare);
}
.site-logo__img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  background: #0b1f3a;
  box-shadow: 0 0 0 3px var(--signal);
}
.site-logo__text {
  line-height: 1.25;
  font-family: var(--font-head);
  letter-spacing: -0.01em;
  text-transform: none;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 10px 18px;
  flex-wrap: wrap;
  align-items: center;
}
nav a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
nav a:hover {
  color: var(--flare);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 0 64px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(155deg, rgba(11, 31, 58, 0.58) 0%, rgba(11, 31, 58, 0.72) 42%, rgba(225, 29, 46, 0.52) 100%),
    var(
      --hero-bg,
      url("/assets/branding/hero.webp")
    )
      center / cover no-repeat;
  filter: saturate(1.25) contrast(1.08);
  z-index: 0;
  animation: hero-ken 18s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18px;
  background: var(--stripe);
  background-size: 36px 36px;
  z-index: 1;
  opacity: 0.92;
}
.hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-brand {
  display: inline-block;
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 5.5vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #fff;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  line-height: 1.05;
  max-width: 18ch;
  animation: brand-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-brand span {
  color: var(--signal);
}
.hero h1 {
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
  font-size: clamp(1.35rem, 3.4vw, 2.05rem);
  font-weight: 700;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  animation: brand-in 0.9s 0.12s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42ch;
  margin: 0 auto 28px;
  animation: brand-in 0.9s 0.22s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes brand-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes hero-ken {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

body.is-mobile-ua .hero {
  min-height: 78vh;
  padding-top: 32px;
}

.page-hero {
  padding: 56px 0 40px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(26, 125, 255, 0.1), transparent),
    linear-gradient(180deg, #dfeaf8, var(--paper));
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--signal), var(--flare), var(--sky));
}
.page-hero--compact {
  padding: 44px 0 32px;
}
.page-hero h1 {
  margin: 0 0 12px;
}
.hero-sub {
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto;
  font-size: 1.05rem;
}

h1,
h2,
h3 {
  font-family: var(--font-head);
  line-height: 1.22;
  color: var(--ink);
  letter-spacing: -0.015em;
  font-weight: 700;
}
h1 {
  font-size: clamp(1.85rem, 5vw, 3.15rem);
}
h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}
h3 {
  font-size: 1.2rem;
}

.section {
  padding: 72px 0;
}
.section-title {
  margin: 0 0 12px;
}
.section-lead {
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 36px;
  font-size: 1.05rem;
}
.alt {
  background:
    linear-gradient(180deg, rgba(255, 180, 0, 0.08), transparent 40%),
    linear-gradient(180deg, #e9f0fa, #f7f9fc);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--flare);
  margin: 0 0 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.two-col {
  grid-template-columns: 1fr 1fr;
}
.stack {
  display: grid;
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 180, 0, 0.55);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.12);
}

.feature {
  padding: 22px 18px;
  background: linear-gradient(160deg, #fff 0%, #fff8e8 100%);
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  border: 1px solid rgba(255, 180, 0, 0.35);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background: linear-gradient(135deg, var(--flare) 0%, #ff4d3a 55%, var(--signal) 160%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(225, 29, 46, 0.28);
  animation: cta-pulse 2.4s ease-in-out infinite;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--flare-deep), var(--flare));
  color: #fff;
  transform: translateY(-2px);
}
.btn-xl {
  font-size: 1.1rem;
  padding: 17px 32px;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}
.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(11, 31, 58, 0.25);
}
.hero .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}
.section .btn-ghost,
.card .btn-ghost,
main .btn-ghost {
  color: var(--ink);
  border: 2px solid var(--border-strong);
  background: #fff;
}
.section .btn-ghost:hover,
.card .btn-ghost:hover,
main .btn-ghost:hover {
  border-color: var(--sky);
  color: var(--sky);
  background: #f0f7ff;
}
.btn-block {
  width: 100%;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(225, 29, 46, 0.28); }
  50% { box-shadow: 0 14px 36px rgba(255, 180, 0, 0.4); }
}

.center,
.cta {
  text-align: center;
}
.cta--inline .cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding: 36px 40px;
  background:
    linear-gradient(120deg, rgba(255, 180, 0, 0.18), rgba(26, 125, 255, 0.1)),
    #fff;
  border: 1px solid rgba(255, 180, 0, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.08);
}
.cta--inline h2 {
  margin: 0 0 8px;
}
.cta--inline p {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
}

.services-band {
  position: relative;
}
.services-band::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(900px, 100%);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--signal), var(--flare), var(--sky), transparent);
}

.service-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.service-grid--large {
  grid-template-columns: 1fr;
  gap: 28px;
}

.service-card,
.service-panel {
  position: relative;
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, #fff 0%, #f7faff 100%);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(11, 31, 58, 0.07);
}
.service-card::after,
.service-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--flare), var(--signal));
}
.service-card--oto-kurtarici::after,
.service-panel--oto-kurtarici::after {
  background: linear-gradient(90deg, var(--sky), #7ec8ff);
}
.service-card--yol-yardim::after,
.service-panel--yol-yardim::after {
  background: linear-gradient(90deg, var(--lime), #7ee787);
}

.service-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--flare);
  margin-bottom: 10px;
}
.service-badge--lg {
  font-size: 0.72rem;
}

.service-body,
.service-panel__body {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 14px 0 22px;
  line-height: 1.7;
}

.service-panel__head h2 {
  margin: 6px 0 0;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.service-panel__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.text-center {
  text-align: center;
}

form label {
  display: block;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--label);
  letter-spacing: 0.01em;
  line-height: 1.35;
}
form label > span,
.form-label-text {
  color: var(--label);
}
.form-hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin: -6px 0 14px;
  line-height: 1.45;
}
input,
textarea,
select {
  width: 100%;
  margin-top: 8px;
  display: block;
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--field-bg);
  background-image: none;
  border: 1.5px solid var(--field-border);
  border-radius: 12px;
  color: var(--field-text);
  -webkit-text-fill-color: var(--field-text);
  caret-color: var(--flare);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  color-scheme: light;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233a4f6c' d='M1.4 1.2 6 5.8l4.6-4.6 1.2 1.2L6 8.2.2 2.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
select option,
select optgroup {
  background-color: #fff;
  color: #0b1f3a;
}
input::placeholder,
textarea::placeholder {
  color: var(--field-placeholder);
  -webkit-text-fill-color: var(--field-placeholder);
  opacity: 1;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--field-placeholder);
  -webkit-text-fill-color: var(--field-placeholder);
  opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--field-placeholder);
  opacity: 1;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  background-color: var(--field-bg-focus);
  border-color: var(--signal-deep);
  box-shadow: 0 0 0 3px rgba(255, 180, 0, 0.28);
  color: var(--field-text);
  -webkit-text-fill-color: var(--field-text);
}
input:disabled,
textarea:disabled,
select:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  color: var(--muted);
  -webkit-text-fill-color: var(--muted);
}
input[type="checkbox"],
input[type="radio"] {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0 8px 0 0;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  accent-color: var(--flare);
  border-radius: 4px;
  cursor: pointer;
  -webkit-appearance: auto;
  appearance: auto;
  background: transparent;
  -webkit-text-fill-color: initial;
}
input[type="file"] {
  padding: 10px 12px;
  color: var(--field-text);
  -webkit-text-fill-color: var(--field-text);
}
input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: 1px solid var(--field-border);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--signal), #ffe08a);
  color: #0b1f3a;
  padding: 8px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  opacity: 1;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"] {
  color-scheme: light;
}
label:has(> input[type="checkbox"]),
label:has(> input[type="radio"]) {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 600;
  color: var(--label);
}
label:has(> input[type="checkbox"]) > input,
label:has(> input[type="radio"]) > input {
  margin-top: 0;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--field-text) !important;
  caret-color: var(--flare);
  box-shadow: 0 0 0 1000px var(--field-bg) inset !important;
  transition: background-color 99999s ease-out;
  border-color: var(--field-border);
}

iframe {
  border: 0;
  width: 100%;
  height: 300px;
  border-radius: var(--radius-sm);
  margin: 12px 0;
  border: 1px solid var(--border);
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #0b1f3a, #071527);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}
.footer a {
  color: var(--signal);
}
.footer a:hover {
  color: #fff;
}

.fab-whatsapp,
.fab-call {
  position: fixed;
  right: 18px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.82rem;
  z-index: 60;
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.25);
}
.fab-whatsapp {
  bottom: 18px;
  background: #25d366;
  color: #03140a;
}
.fab-call {
  bottom: 82px;
  background: linear-gradient(135deg, var(--flare), #ff5a45);
  color: #fff;
}

#exitLeadBox.show,
#scrollLeadPanel.show {
  display: block !important;
}
#exitLeadBox,
#scrollLeadPanel {
  color: var(--text);
  border: 2px solid var(--signal);
  box-shadow: 0 18px 48px rgba(11, 31, 58, 0.2);
}
#exitLeadBox strong,
#scrollLeadPanel strong {
  color: var(--flare);
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-head);
  font-size: 1.15rem;
}
#exitLeadBox p,
#scrollLeadPanel p {
  color: var(--muted);
}
#exitLeadBox input,
#scrollLeadPanel input {
  margin-bottom: 10px;
}
.lead-result {
  color: var(--lime);
  font-size: 0.9rem;
  min-height: 1.2em;
}

details {
  background: var(--surface);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  border: 1px solid var(--border);
}
details summary {
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-head);
  color: var(--ink);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--flare), #ff5a45);
  color: #fff !important;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.82rem;
  white-space: nowrap;
  border: none;
  box-shadow: var(--glow);
}
.header-phone:hover {
  color: #fff !important;
  filter: brightness(1.05);
}
@media (max-width: 900px) {
  .header-phone__text {
    font-size: 0.75rem;
  }
}

.geo-prompt-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(88px + env(safe-area-inset-bottom, 0));
  z-index: 93;
  max-width: 520px;
  margin: 0 auto;
}
.geo-prompt-banner__inner {
  background: #fff;
  border: 2px solid var(--signal);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.2);
}
.geo-prompt-banner__text {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: var(--text);
}
.geo-prompt-banner__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.geo-prompt-banner .btn-ghost {
  color: var(--ink);
  border: 2px solid var(--border-strong);
  background: #fff;
}
.geo-prompt-banner .btn-ghost:hover {
  border-color: var(--sky);
  color: var(--sky);
  background: #f0f7ff;
}

.mobile-call-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 85;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0));
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.96));
  border-top: 1px solid var(--border);
  justify-content: center;
}
.mobile-call-bar__btn {
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 14px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--flare), #ff5a45);
  color: #fff !important;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.95rem;
  box-shadow: 0 8px 28px rgba(225, 29, 46, 0.35);
}
.mobile-call-bar__btn:hover {
  color: #fff !important;
}

@media (max-width: 760px) {
  body:not(.admin-body) {
    padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }
  .mobile-call-bar {
    display: flex;
  }
  /* Call bar = birincil CTA; çift çağrı butonu çakışmasın */
  .fab-call {
    display: none !important;
  }
  .fab-whatsapp {
    bottom: calc(92px + env(safe-area-inset-bottom, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
  }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.trust-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--signal);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  text-align: left;
  font-size: 0.92rem;
  color: var(--muted);
}
.trust-chip strong {
  display: block;
  color: var(--flare);
  font-family: var(--font-body);
  margin-bottom: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 700;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 10px 26px rgba(11, 31, 58, 0.06);
}
.review-card__meta {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.review-card__stars {
  color: var(--signal-deep);
  letter-spacing: 2px;
  margin: 0 0 8px;
}

.district-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}
.district-pills a {
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}
.district-pills a:hover {
  border-color: var(--flare);
  color: var(--flare);
  background: #fff5f5;
}

.hero-search-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.hero-search-tel .btn-xl {
  min-width: min(100%, 320px);
}

@media (max-width: 760px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .header nav {
    font-size: 0.88rem;
  }
  .cta--inline .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px;
  }
}

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

@media (max-width: 720px) {
  .nav-wrap {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0;
    gap: 12px;
  }
  .site-logo__img {
    width: 40px;
    height: 40px;
  }
  .site-logo {
    justify-content: center;
    margin: 0 auto;
  }
  .logo {
    text-align: center;
    font-size: clamp(0.95rem, 4vw, 1.05rem);
  }
  .header nav {
    justify-content: flex-start;
    gap: 8px 14px;
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 4px 4px 10px;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    overscroll-behavior-x: contain;
  }
  .header nav a {
    flex: 0 0 auto;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(11, 31, 58, 0.04);
  }
  .header-phone {
    align-self: center;
    max-width: 100%;
    justify-content: center;
  }
  .section {
    padding: clamp(40px, 10vw, 72px) 0;
  }
  .container {
    width: min(1140px, 94vw);
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: min(78vh, 560px);
    padding: 28px 0 40px;
  }
  .hero .container {
    padding-inline: 4px;
  }
  .btn-xl {
    font-size: 1rem;
    padding: 15px 22px;
    width: 100%;
    max-width: 340px;
  }
  .fab-whatsapp {
    font-size: 0.78rem;
    padding: 11px 14px;
    right: max(12px, env(safe-area-inset-right, 0px));
  }
  .topbar {
    font-size: 0.8rem;
    padding: 10px 12px 14px;
    line-height: 1.4;
  }
}

/* —— Admin —— */
.admin-body {
  min-height: 100vh;
  background: #eef2f7;
}
.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
}
.admin-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #0f2744 0%, #132f52 55%, #0d213a 100%);
  color: #fff;
  padding: 20px 14px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
}
.admin-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 10px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}
.admin-sidebar__mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, var(--flare), #ff6b4a 55%, var(--signal));
  box-shadow: 0 8px 18px rgba(225, 29, 46, 0.28);
  flex-shrink: 0;
}
.admin-sidebar__brand strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.admin-sidebar__brand small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.admin-nav-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.admin-nav-group__label {
  margin: 0 10px 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.admin-nav-bar__link,
.admin-nav-bar a {
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.25;
  transition: background 0.15s ease, color 0.15s ease;
}
.admin-nav-bar__link:hover,
.admin-nav-bar a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.admin-nav-bar__link.is-active {
  color: #0f2744;
  background: linear-gradient(135deg, #ffe08a, var(--signal));
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(255, 180, 0, 0.2);
}
.admin-workspace {
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 39, 68, 0.08);
  position: sticky;
  top: 0;
  z-index: 70;
}
.admin-top__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.admin-top__brand strong {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.admin-top__page {
  color: var(--muted);
  font-size: 0.8rem;
}
.admin-top__site {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f0f5fb;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(15, 39, 68, 0.08);
}
.admin-top__site:hover {
  background: #e7eef8;
  color: var(--sky);
}
.admin-nav-toggle {
  display: none;
  border: 1px solid rgba(15, 39, 68, 0.12);
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  min-height: 42px;
  min-width: 64px;
  -webkit-tap-highlight-color: transparent;
}
.admin-nav-backdrop {
  display: none;
}
.admin-main {
  flex: 1;
  padding: 24px 28px 36px;
  width: 100%;
  max-width: none;
  min-width: 0;
  box-sizing: border-box;
}
.admin-main > h1 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  word-break: normal;
  overflow-wrap: anywhere;
  color: var(--ink);
}
.admin-main .section {
  padding: 12px 0 28px;
}
.admin-body,
.admin-main {
  color: var(--text);
}
.admin-main .card,
.admin-body .card {
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(15, 39, 68, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 39, 68, 0.05);
  overflow-wrap: anywhere;
}
.admin-main .card:hover,
.admin-body form.card:hover {
  transform: none;
  box-shadow: 0 12px 30px rgba(15, 39, 68, 0.07);
}
.admin-main .grid.grid-4 > .card {
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
}
.admin-main .grid.grid-4 > .card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--signal), var(--flare));
  border-radius: 16px 0 0 16px;
}
.admin-main .grid.grid-4 > .card small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.admin-main .grid.grid-4 > .card strong {
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.admin-main h2,
.admin-body h2 {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
}
.admin-main form label,
.admin-body form label,
.admin-main .seo-form label,
.admin-main .seo-grid label {
  color: var(--label);
}
.admin-main input,
.admin-main textarea,
.admin-main select,
.admin-body input,
.admin-body textarea,
.admin-body select {
  background-color: #fbfcfe;
  color: var(--field-text);
  -webkit-text-fill-color: var(--field-text);
  border-color: rgba(15, 39, 68, 0.14);
}
.admin-main input:focus,
.admin-main textarea:focus,
.admin-main select:focus,
.admin-body input:focus,
.admin-body textarea:focus,
.admin-body select:focus {
  background-color: #fff;
  border-color: rgba(26, 125, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(26, 125, 255, 0.12);
}
.admin-main input::placeholder,
.admin-main textarea::placeholder,
.admin-body input::placeholder,
.admin-body textarea::placeholder {
  color: var(--field-placeholder);
  -webkit-text-fill-color: var(--field-placeholder);
  opacity: 1;
}
.admin-main .btn-primary {
  animation: none;
}
.admin-main .btn-ghost {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(15, 39, 68, 0.14);
}
.admin-main .btn-ghost:hover {
  border-color: var(--sky);
  color: var(--sky);
  background: #f0f7ff;
}
.admin-footer {
  padding: 1rem 28px 1.5rem;
  text-align: left;
  color: var(--muted);
  font-size: 0.85rem;
}
.theme-signature,
.theme-signature--admin {
  margin: 10px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.theme-signature a,
.theme-signature--admin a {
  color: var(--sky);
  font-weight: 600;
}
.grid.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 980px) {
  .grid.grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(280px, 86vw);
    z-index: 65;
    transform: translateX(-105%);
    transition: transform 0.25s ease;
    box-shadow: 18px 0 40px rgba(15, 39, 68, 0.25);
  }
  .admin-sidebar.is-open {
    transform: translateX(0);
  }
  .admin-nav-toggle {
    display: inline-flex;
  }
  .admin-top {
    padding: 14px 16px;
  }
  .admin-main {
    padding: 18px 16px 28px;
  }
  .admin-footer {
    padding-inline: 16px;
  }
  .admin-top__site {
    display: none;
  }
  body.admin-nav-open {
    overflow: hidden;
    touch-action: none;
  }
  .admin-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 31, 58, 0.42);
    z-index: 55;
    border: 0;
    padding: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .admin-nav-backdrop.is-visible {
    display: block;
  }
  body.admin-nav-open::before {
    content: none;
  }
}
@media (max-width: 760px) {
  .grid.grid-4 {
    grid-template-columns: 1fr;
  }
  .admin-main .card {
    overflow: visible;
  }
  .admin-main input,
  .admin-main select,
  .admin-main textarea,
  .admin-main button,
  .admin-main .btn {
    max-width: 100%;
  }
}

.admin-table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  margin: 12px 0 24px;
  border-radius: 14px;
  border: 1px solid rgba(15, 39, 68, 0.08);
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 39, 68, 0.04);
}
.admin-table-wrap::-webkit-scrollbar {
  height: 10px;
}
.admin-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(15, 39, 68, 0.22);
  border-radius: 999px;
}

.admin-table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  table-layout: auto;
}
.admin-table th,
.admin-table td {
  padding: 11px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 39, 68, 0.07);
  white-space: nowrap;
  vertical-align: middle;
}
.admin-table th {
  background: #f5f8fc;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.admin-table tr:last-child td {
  border-bottom: none;
}
.admin-table tbody tr:hover td {
  background: rgba(255, 180, 0, 0.06);
}
.admin-table td.admin-td-wrap {
  white-space: normal;
  max-width: 220px;
  overflow-wrap: anywhere;
}

.admin-ip-full {
  display: inline-block;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  font-variant-numeric: tabular-nums;
  font-size: 0.82rem;
  background: #eef3f9;
  color: var(--ink);
  padding: 3px 8px;
  border-radius: 6px;
  line-height: 1.35;
}
.admin-actions {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
}
.admin-btn-sm,
.admin-main .btn.admin-btn-sm {
  padding: 5px 10px;
  font-size: 0.78rem;
  border-radius: 8px;
  white-space: nowrap;
  width: auto;
  max-width: none;
}

.badge-bot,
.badge-human {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  white-space: nowrap;
  vertical-align: middle;
}
.badge-bot {
  background: rgba(225, 29, 46, 0.12);
  color: var(--flare-deep);
  border: 1px solid rgba(225, 29, 46, 0.3);
}
.badge-human {
  background: rgba(18, 183, 106, 0.12);
  color: #0a7a45;
  border: 1px solid rgba(18, 183, 106, 0.3);
}
.visitor-summary-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.visitor-summary-grid > .card {
  padding: 16px 18px;
  min-width: 0;
}
.visitor-summary-grid > .card small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.visitor-summary-grid > .card strong {
  font-size: clamp(1.15rem, 2vw, 1.4rem) !important;
  word-break: normal;
}
@media (max-width: 1100px) {
  .visitor-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .visitor-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.seo-form label,
.seo-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--label);
}
.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}
.seo-grid .seo-span-2 {
  grid-column: 1 / -1;
}
.seo-hint {
  color: var(--muted);
  font-size: 0.8rem;
}
.seo-form input,
.seo-form textarea,
.seo-form select,
.seo-grid input,
.seo-grid textarea,
.seo-grid select {
  margin-top: 0;
  color: var(--field-text);
  -webkit-text-fill-color: var(--field-text);
  background-color: var(--field-bg);
}
.font-mono,
textarea.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85rem;
}
.chart-card h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}
.chart-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 220px;
}
.chart-wrap canvas {
  width: 100% !important;
  max-height: 320px;
}
.chart-wrap--wide {
  min-height: 260px;
}
@media (max-width: 768px) {
  .seo-grid {
    grid-template-columns: 1fr;
  }
  .seo-grid .seo-span-2 {
    grid-column: auto;
  }
  .chart-wrap {
    min-height: 200px;
  }
}

.blog-section .section-lead {
  color: var(--muted);
}

.blog-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0 0 28px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.blog-tag-cloud__label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--flare);
  margin-right: 4px;
}
a.blog-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  background: #f5f8fc;
}
a.blog-tag:hover {
  border-color: var(--sky);
  color: var(--sky);
}
a.blog-tag.is-active {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--flare), #ff5a45);
}

.blog-list {
  display: grid;
  gap: 22px;
}
.blog-list__title {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
}
.blog-list__title a {
  color: var(--ink);
}
.blog-list__title a:hover {
  color: var(--flare);
}
.blog-list__excerpt {
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.65;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  align-items: center;
}
.blog-tags--footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.blog-tags__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  margin-right: 6px;
}
.blog-tags__link {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--sky);
}
.blog-tags__link:hover {
  color: var(--flare);
  border-color: rgba(225, 29, 46, 0.35);
}

.blog-article__body {
  margin-top: 20px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--muted);
}
.blog-article__body a {
  color: var(--sky);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blog-article__body a:hover {
  color: var(--flare);
}
.blog-article h1 {
  margin-bottom: 12px;
}
.blog-local-links {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.blog-local-links__title {
  font-size: 1.05rem;
  margin: 0 0 14px;
  color: var(--ink);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
  animation: brand-in 0.9s 0.32s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-cta-row .btn {
  min-width: 140px;
}

.breadcrumb {
  padding: 14px 0 0;
  font-size: 0.88rem;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
}
.breadcrumb__list li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  opacity: 0.45;
}
.breadcrumb__list a {
  color: var(--sky);
  font-weight: 600;
}
.prose-seo {
  max-width: 72ch;
  line-height: 1.75;
  color: var(--muted);
}
.prose-seo h2,
.prose-seo h3 {
  color: var(--ink);
}
.seo-landmark-list {
  margin: 12px 0 0;
  padding-left: 1.2rem;
}
.faq-list {
  display: grid;
  gap: 10px;
  max-width: 760px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  background: #fff;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}
.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}
.footer-seo {
  text-align: left;
}
.footer-seo__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 22px;
}
.footer-seo__title {
  font-weight: 800;
  margin: 0 0 10px;
  color: inherit;
}
.footer-seo__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0;
  font-size: 0.9rem;
}
.footer-seo__links a {
  opacity: 0.9;
}
@media (max-width: 800px) {
  .footer-seo__cols {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero::before {
    transform: none;
  }
}

/* —— Mobil sertleştirme (frontend + admin) —— */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}
body.admin-body {
  padding-bottom: 0 !important;
  background: #eef2f7;
}
body.admin-body .fab-whatsapp,
body.admin-body .fab-call,
body.admin-body .mobile-call-bar {
  display: none !important;
}

.header nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

#exitLeadBox,
#scrollLeadPanel,
.lead-float {
  position: fixed;
  left: auto;
  right: 16px;
  bottom: 16px;
  max-width: 340px;
  width: min(340px, calc(100vw - 32px));
  margin: 0;
  box-sizing: border-box;
  z-index: 90;
}

@media (max-width: 760px) {
  #exitLeadBox,
  #scrollLeadPanel {
    left: 12px;
    right: 12px;
    bottom: calc(100px + env(safe-area-inset-bottom, 0px));
    max-width: none;
    width: auto;
  }
  .geo-prompt-banner {
    bottom: calc(100px + env(safe-area-inset-bottom, 0px));
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 360px);
    margin-inline: auto;
  }
  .hero-cta-row .btn {
    width: 100%;
    min-width: 0;
  }
  .page-hero--compact {
    min-height: auto !important;
    padding: 28px 0 36px !important;
  }
  .page-hero h1,
  .hero h1 {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .district-pills {
    justify-content: flex-start;
  }
  .district-pills a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
  .service-panel__foot,
  .service-card .btn-block {
    width: 100%;
  }
  .service-panel__foot {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .service-panel__foot .btn {
    width: 100%;
  }
  .breadcrumb {
    padding-inline: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .breadcrumb__list {
    flex-wrap: nowrap;
    width: max-content;
    max-width: 100%;
  }
  .footer {
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  }
  .footer-seo {
    text-align: left;
  }
  iframe {
    height: min(240px, 55vw);
  }
  .card {
    padding: 18px 16px;
  }
  .card:hover {
    transform: none;
  }
  .reviews-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .grid.grid-4 {
    grid-template-columns: 1fr;
  }
  .blog-article__body,
  .prose-seo {
    overflow-wrap: anywhere;
  }
  .header .nav-wrap {
    gap: 8px;
  }
  .site-logo__text {
    font-size: clamp(0.92rem, 3.8vw, 1.05rem);
  }
}

@media (max-width: 480px) {
  .visitor-summary-grid {
    grid-template-columns: 1fr;
  }
  .admin-top__brand strong {
    font-size: 0.98rem;
    line-height: 1.25;
  }
  .admin-top__page {
    display: none;
  }
  .admin-main > h1 {
    font-size: 1.2rem;
  }
  .admin-actions {
    flex-wrap: wrap;
  }
  .admin-table th,
  .admin-table td {
    padding: 10px 10px;
    font-size: 0.82rem;
  }
}

@media (max-width: 980px) {
  .admin-sidebar {
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  }
  .admin-top {
    gap: 10px;
    padding-top: max(12px, env(safe-area-inset-top, 0px));
  }
  .admin-main {
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  }
  .admin-main .seo-grid,
  .admin-body .seo-grid {
    grid-template-columns: 1fr;
  }
  .admin-main .seo-grid .seo-span-2 {
    grid-column: auto;
  }
  .admin-main canvas,
  .admin-main .chart-wrap,
  .admin-main [id$="Chart"] {
    max-width: 100% !important;
  }
  .admin-quick-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-quick-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Login sayfası mobil */
body.admin-body > .section {
  padding: 32px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
body.admin-body > .section .container {
  width: min(480px, 92vw);
}
body.admin-body > .section .card:hover {
  transform: none;
}

@media (hover: none) {
  .card:hover,
  .admin-main .card:hover,
  .service-card:hover {
    transform: none;
  }
}
