/* =========================================================
   Ankara Moto Kurye — Modern UI Theme (mavi + turuncu)
   Sadece görsel katman. İçerik / yapı / işlev değişmez.
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");

:root {
  --brand: #0A3D91;
  --brand-2: #1565C0;
  --brand-3: #1E88E5;
  --accent: #F97316;
  --accent-2: #EA580C;

  --ink: #0b1220;
  --muted: #64748b;
  --line: rgba(2, 6, 23, 0.08);
  --line-strong: rgba(2, 6, 23, 0.12);

  --surface: #ffffff;
  --surface-2: #f8fafc;

  --radius-sm: 14px;
  --radius: 18px;
  --radius-lg: 26px;

  --shadow-xs: 0 1px 2px rgba(2, 6, 23, 0.06);
  --shadow-sm: 0 10px 26px rgba(2, 6, 23, 0.07);
  --shadow-md: 0 20px 44px rgba(2, 6, 23, 0.12);
  --shadow-lg: 0 34px 70px rgba(2, 6, 23, 0.20);

  --grad-brand: linear-gradient(135deg, #1565C0 0%, #0A3D91 100%);
  --grad-accent: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  --grad-brand-accent: linear-gradient(115deg, #0A3D91 0%, #1565C0 48%, #F97316 100%);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-head: "Plus Jakarta Sans", "Montserrat", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Bootstrap köprüleri */
  --bs-body-font-family: var(--font-body);
  --bs-body-color: var(--ink);
  --bs-border-color: var(--line);
  --bs-border-radius: var(--radius-sm);
  --bs-border-radius-lg: var(--radius);
  --bs-link-color: var(--brand-2);
  --bs-link-hover-color: var(--brand);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: #e8eef8;
  background-image:
    radial-gradient(1100px 560px at 92% -8%, rgba(249, 115, 22, 0.12), transparent 55%),
    radial-gradient(1000px 560px at -8% 4%, rgba(10, 61, 145, 0.14), transparent 52%),
    linear-gradient(180deg, #eef3fb 0%, #e8eef8 100%);
  background-attachment: fixed;
  letter-spacing: 0.1px;
}

/* ---------- Tipografi ---------- */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.navbar-brand .fw-bold,
.hero-title {
  font-family: var(--font-head);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.fw-bold { font-weight: 700 !important; }
.fw-semibold { font-weight: 600 !important; }
.text-primary { color: var(--brand) !important; }
.bg-primary { background-color: var(--brand) !important; }
.text-muted { color: var(--muted) !important; }

a { text-decoration: none; transition: color 0.15s var(--ease); }

/* Bölüm başlıklarına vurgu çizgisi */
main :is(h1, h2).text-primary {
  position: relative;
}
main :is(h1, h2).text-primary::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 0.7rem;
  border-radius: 999px;
  background: var(--grad-accent);
}

/* ---------- Yüzeyler ---------- */
.bg-white,
.bg-light { background-color: var(--surface) !important; }
.border { border-color: var(--line) !important; }
.rounded-4 { border-radius: var(--radius) !important; }
.shadow-sm { box-shadow: var(--shadow-sm) !important; }

main.container {
  position: relative;
}
main.container > section {
  scroll-margin-top: 96px;
}
main .home-services,
main .home-features,
main .home-cta,
main .home-faq {
  position: relative;
}
main .bg-white.border,
main .bg-white.rounded-4 {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

/* ---------- Butonlar ---------- */
.btn {
  font-weight: 600;
  border-radius: 13px;
  padding: 0.55rem 1.05rem;
  transition: transform 0.16s var(--ease), box-shadow 0.22s var(--ease),
    background-color 0.2s var(--ease), border-color 0.2s var(--ease),
    color 0.2s var(--ease), filter 0.2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-lg { border-radius: 15px; padding: 0.8rem 1.35rem; font-size: 1rem; }
.btn-sm { border-radius: 11px; }

.btn-primary {
  background: var(--grad-brand);
  border: none;
  color: #fff;
  box-shadow: 0 10px 24px rgba(10, 61, 145, 0.28);
}
.btn-primary:hover,
.btn-primary:focus {
  color: #fff;
  filter: brightness(1.07);
  box-shadow: 0 16px 32px rgba(10, 61, 145, 0.36);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--grad-accent);
  border: none;
  color: #fff;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.32);
}
.btn-accent:hover,
.btn-accent:focus {
  color: #fff;
  filter: brightness(1.06);
  box-shadow: 0 16px 32px rgba(234, 88, 12, 0.38);
  transform: translateY(-2px);
}

.btn-outline-primary {
  border: 1.5px solid rgba(10, 61, 145, 0.35);
  color: var(--brand);
  background: rgba(10, 61, 145, 0.02);
}
.btn-outline-primary:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  border-color: #fff;
  color: var(--brand);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.18);
}
.btn-light:hover { background: #eef3ff; color: var(--brand); transform: translateY(-2px); }

.btn-soft-primary {
  background: rgba(10, 61, 145, 0.06);
  color: var(--brand);
  border: 1px solid rgba(10, 61, 145, 0.12);
  border-radius: 999px;
  font-weight: 700;
}
.btn-soft-primary:hover {
  background: rgba(10, 61, 145, 0.12);
  color: var(--brand);
  border-color: rgba(10, 61, 145, 0.22);
  transform: translateY(-2px);
}

.btn-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0; border-radius: 13px;
}

/* ---------- Navbar ---------- */
.site-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 0.7rem 0;
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line) !important;
  box-shadow: 0 8px 32px rgba(2, 6, 23, 0.06);
}

/* Marka alanı */
.site-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: 0.5rem;
  padding: 0;
}
.site-brand-logo {
  flex-shrink: 0;
  display: inline-flex;
  line-height: 0;
}
.site-brand-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}
.site-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.site-brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  white-space: nowrap;
}
.site-brand-lead {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.site-brand-rest {
  color: var(--brand);
}
.site-brand-tagline {
  font-size: 0.68rem;
  line-height: 1.25;
  white-space: normal;
  max-width: 16rem;
}

/* Collapse düzeni */
.site-navbar-collapse {
  align-items: center;
  gap: 0.75rem;
}
.site-navbar-toggler {
  border-radius: 12px;
  border-color: var(--line-strong);
  padding: 0.45rem 0.65rem;
}
.site-navbar-toggler:focus {
  box-shadow: 0 0 0 0.22rem rgba(30, 136, 229, 0.18);
}

/* Menü pill track */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0 auto !important;
  padding: 0.3rem;
  background: rgba(10, 61, 145, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.site-nav .nav-item {
  flex-shrink: 0;
}
.site-nav .nav-link {
  font-weight: 600;
  font-size: 0.86rem;
  color: #475569;
  white-space: nowrap;
  border-radius: 999px;
  padding: 0.5rem 0.95rem !important;
  transition: color 0.15s var(--ease), background-color 0.15s var(--ease),
    box-shadow 0.15s var(--ease);
}
.site-nav .nav-link:hover {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.7);
}
.site-nav .nav-link.active {
  color: var(--brand);
  background: #fff;
  box-shadow:
    0 4px 14px rgba(2, 6, 23, 0.08),
    inset 0 -2px 0 var(--accent);
}

/* Sağ CTA butonları */
.site-navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.site-nav-cta-phone {
  white-space: nowrap;
  font-size: 0.82rem;
  padding: 0.5rem 0.95rem;
  border-radius: 12px;
}
.site-nav-cta-mail {
  white-space: nowrap;
  font-size: 0.82rem;
  padding: 0.5rem 0.9rem;
  border-radius: 12px;
  border-width: 1.5px;
  background: rgba(255, 255, 255, 0.8);
}

/* XL: dengeli yatay düzen */
@media (min-width: 1200px) {
  .site-navbar .container {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .site-brand {
    flex-shrink: 0;
  }
  .site-navbar-toggler {
    display: none;
  }
  .site-navbar-collapse {
    display: flex !important;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
  }
  .site-nav {
    margin: 0 auto !important;
  }
  .site-navbar-actions {
    flex-shrink: 0;
    margin-left: 0 !important;
  }
}

/* LG altı: mobil menü */
@media (max-width: 1199.98px) {
  .site-navbar-collapse {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--line);
  }
  .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius);
    padding: 0.5rem;
    margin-bottom: 0.75rem !important;
  }
  .site-nav .nav-link {
    border-radius: 12px;
    text-align: center;
    padding: 0.65rem 1rem !important;
  }
  .site-navbar-actions {
    width: 100%;
    flex-direction: column;
  }
  .site-nav-cta-phone,
  .site-nav-cta-mail {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1rem;
  }
  .site-brand-tagline {
    display: none;
  }
}

/* Orta ekran: marka adı biraz küçült */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .site-brand-name {
    font-size: 0.86rem;
  }
  .site-nav .nav-link {
    font-size: 0.82rem;
    padding: 0.45rem 0.75rem !important;
  }
  .site-nav-cta-phone span,
  .site-nav-cta-mail span {
    display: none;
  }
  .site-nav-cta-phone,
  .site-nav-cta-mail {
    padding: 0.5rem 0.7rem;
  }
}

/* Eski navbar sınıflarıyla uyumluluk */
.navbar-brand .fw-bold {
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* =========================================================
   Hero — koyu lacivert sahne + cam efektli katmanlar
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #061530;
  color: #e6edfb;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--grad-brand-accent);
}

/* --- Arka plan katmanları --- */
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(115% 90% at 80% 4%, rgba(21, 101, 192, 0.52) 0%, transparent 58%),
    radial-gradient(95% 85% at 4% 102%, rgba(249, 115, 22, 0.26) 0%, transparent 60%),
    linear-gradient(160deg, #08213f 0%, #061530 48%, #040e1f 100%);
}
.hero-grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(148, 178, 235, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 178, 235, 0.075) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(125% 88% at 50% 0%, #000 0%, transparent 74%);
  mask-image: radial-gradient(125% 88% at 50% 0%, #000 0%, transparent 74%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.hero-orb-brand {
  top: -20%;
  right: -10%;
  width: 46vw;
  height: 46vw;
  max-width: 620px;
  max-height: 620px;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.75) 0%, rgba(30, 136, 229, 0) 70%);
  animation: heroOrbDrift 17s ease-in-out infinite;
}
.hero-orb-accent {
  bottom: -28%;
  left: -12%;
  width: 38vw;
  height: 38vw;
  max-width: 520px;
  max-height: 520px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.6) 0%, rgba(249, 115, 22, 0) 70%);
  animation: heroOrbDrift 23s ease-in-out infinite reverse;
}
@keyframes heroOrbDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-4%, 6%, 0) scale(1.1); }
}

/* --- Izgara --- */
.hero-container {
  position: relative;
  z-index: 2;
  padding-top: clamp(40px, 5.5vw, 80px);
  padding-bottom: clamp(48px, 6.5vw, 92px);
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(46px, 6vw, 60px);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}

/* --- Durum rozeti --- */
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  padding: 0.45rem 0.95rem 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 178, 235, 0.24);
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #cfe0ff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}
.hero-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  flex-shrink: 0;
  animation: heroPulse 2.4s var(--ease) infinite;
}
@keyframes heroPulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  70% { box-shadow: 0 0 0 11px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* --- Başlık --- */
.hero-title {
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 0.98;
  font-size: clamp(34px, 5.4vw, 66px);
  color: #ffffff;
  text-transform: uppercase;
}
.hero-title .hero-line { display: block; }
.hero-title .hero-highlight {
  background: linear-gradient(100deg, #FDBA74 0%, #F97316 42%, #FB923C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin: 0 0 1.6rem;
  max-width: 34rem;
  color: rgba(211, 224, 247, 0.8);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.65;
}

/* --- Aksiyonlar --- */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
  margin-bottom: 1.35rem;
}
.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 700;
}
.btn-hero-wa {
  background: #ffffff;
  color: var(--brand);
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.42);
}
.btn-hero-wa i {
  color: #22c55e;
  font-size: 1.05rem;
}
.btn-hero-wa:hover,
.btn-hero-wa:focus {
  background: #f1f6ff;
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(2, 6, 23, 0.52);
}
.btn-hero-call {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.4);
}
.btn-hero-call:hover,
.btn-hero-call:focus {
  color: #fff;
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(234, 88, 12, 0.5);
}

/* --- İletişim hapları --- */
.hero-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.85rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 178, 235, 0.2);
  background: rgba(255, 255, 255, 0.055);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #dbe6fa;
  font-size: 0.79rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), border-color 0.18s var(--ease),
    background-color 0.18s var(--ease), color 0.18s var(--ease);
}
.hero-pill i {
  color: #7db3f5;
  font-size: 0.84rem;
  flex-shrink: 0;
  transition: color 0.18s var(--ease);
}
.hero-pill:hover {
  color: #fff;
  border-color: rgba(249, 115, 22, 0.5);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.hero-pill:hover i { color: var(--accent); }
.hero-pill-email-text {
  display: inline-block;
  max-width: 13rem;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}

/* --- İstatistik şeridi --- */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem 1.2rem;
  max-width: 30rem;
  margin: 0;
  padding: 1.3rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(148, 178, 235, 0.16);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
}
.hero-stat strong small {
  margin-left: 0.18em;
  font-size: 0.48em;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-stat span {
  display: block;
  margin-top: 0.22rem;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(196, 212, 240, 0.68);
}

/* --- Görsel sahne --- */
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-visual-inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.hero-visual-inner::before {
  content: "";
  position: absolute;
  inset: 10% -7% -12% 5%;
  z-index: -1;
  border-radius: 44px;
  background: var(--grad-brand-accent);
  filter: blur(48px);
  opacity: 0.42;
}
.hero-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 42px 90px rgba(2, 6, 23, 0.58),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.hero-visual-inner:hover .hero-photo-frame {
  transform: perspective(1400px) rotateY(-2deg) rotateX(0deg) translateY(-6px);
  box-shadow: 0 52px 110px rgba(2, 6, 23, 0.66);
}
.hero-photo {
  display: block;
  width: 100%;
  height: clamp(300px, 38vw, 470px);
  object-fit: cover;
  object-position: 55% center;
}
.hero-photo-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 21, 48, 0) 48%, rgba(6, 21, 48, 0.5) 100%),
    linear-gradient(90deg, rgba(10, 61, 145, 0.28) 0%, rgba(10, 61, 145, 0) 46%);
}

/* --- Yüzen cam kartlar --- */
.hero-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 178, 235, 0.22);
  background: rgba(9, 24, 52, 0.74);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 22px 46px rgba(2, 6, 23, 0.46);
  will-change: transform;
}
.hero-float-eta {
  top: 9%;
  left: -5%;
  animation: heroFloatY 6.5s ease-in-out infinite;
}
.hero-float-live {
  bottom: 8%;
  right: -6%;
  animation: heroFloatY 8s ease-in-out infinite reverse;
}
@keyframes heroFloatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  font-size: 0.85rem;
  color: #fff;
}
.hero-float-icon-accent {
  background: var(--grad-accent);
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.38);
}
.hero-float-icon-brand {
  background: var(--grad-brand);
  box-shadow: 0 8px 18px rgba(21, 101, 192, 0.42);
}
.hero-float-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}
.hero-float-text strong {
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
}
.hero-float-text small {
  font-size: 0.68rem;
  color: rgba(196, 212, 240, 0.7);
}

/* --- Giriş animasyonu --- */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
.hero-status,
.hero-title .hero-line,
.hero-sub,
.hero-actions,
.hero-contact,
.hero-stats,
.hero-visual-inner {
  animation: heroRise 0.75s var(--ease) both;
}
.hero-status { animation-delay: 0.04s; }
.hero-title .hero-line:nth-child(1) { animation-delay: 0.1s; }
.hero-title .hero-line:nth-child(2) { animation-delay: 0.16s; }
.hero-title .hero-line:nth-child(3) { animation-delay: 0.22s; }
.hero-sub { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.36s; }
.hero-contact { animation-delay: 0.42s; }
.hero-stats { animation-delay: 0.48s; }
.hero-visual-inner { animation-delay: 0.2s; animation-duration: 0.95s; }

/* --- Duyarlı davranış --- */
@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(32px, 4vw, 56px);
  }
}

@media (max-width: 991.98px) {
  .hero-content { max-width: 100%; }
  .hero-stats { max-width: 100%; }
  .hero-visual-inner { max-width: 520px; }
  .hero-photo-frame { transform: none; }
  .hero-visual-inner:hover .hero-photo-frame { transform: translateY(-4px); }
  .hero-float-eta { top: 6%; left: 3%; }
  .hero-float-live { bottom: 6%; right: 3%; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: clamp(28px, 8.4vw, 40px); }
  .hero-sub {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 1.3rem;
  }
  .hero-actions .btn {
    padding: 0.72rem 1.1rem;
    font-size: 0.85rem;
  }
  .hero-pill {
    padding: 0.42rem 0.75rem;
    font-size: 0.72rem;
  }
  .hero-pill-email-text { max-width: 10.5rem; }
  .hero-stats { gap: 0.3rem 0.7rem; }
  .hero-stat span { font-size: 0.66rem; }
  .hero-photo { height: clamp(260px, 62vw, 340px); }
  .hero-float {
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
    border-radius: 14px;
  }
  .hero-float-icon {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    font-size: 0.75rem;
  }
  .hero-float-text strong { font-size: 0.75rem; }
  .hero-float-text small { font-size: 0.62rem; }
  .hero-float-live small { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .hero-status-dot,
  .hero-float,
  .hero-status,
  .hero-title .hero-line,
  .hero-sub,
  .hero-actions,
  .hero-contact,
  .hero-stats,
  .hero-visual-inner {
    animation: none !important;
  }
  .hero-photo-frame,
  .hero-visual-inner:hover .hero-photo-frame { transform: none; }
}
/* ---------- Servis kartları ---------- */
.service-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -28%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.1) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  opacity: 0.7;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(10, 61, 145, 0.14);
  border-color: rgba(30, 136, 229, 0.28);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after {
  transform: scale(1.25);
  opacity: 1;
}
.service-card .icon {
  width: 60px; height: 60px;
  border-radius: 17px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-brand);
  color: #fff;
  font-size: 23px;
  box-shadow: 0 12px 24px rgba(10, 61, 145, 0.30);
  transition: transform 0.3s var(--ease);
}
.service-card:hover .icon { transform: translateY(-2px) scale(1.05); }
.service-card .text-muted,
.service-card .service-card-desc { color: #5b6573 !important; }
.service-card .btn i { transition: transform 0.2s var(--ease); }
.service-card:hover .btn i { transform: translateX(4px); }

@media (max-width: 575.98px) {
  .service-card .icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 18px;
    margin-bottom: 0.65rem !important;
  }
  .service-card .fw-bold {
    font-size: 0.82rem;
    line-height: 1.25;
  }
  .service-card .text-muted,
  .service-card .service-card-desc {
    font-size: 0.7rem;
    line-height: 1.4;
    margin-bottom: 0.65rem !important;
  }
  .service-card .btn {
    font-size: 0.7rem;
    padding: 0.38rem 0.5rem;
  }
}

/* Bağlantılı kutular (ilçe vb.) */
a .border.rounded-4 {
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
a:hover .border.rounded-4 {
  transform: translateY(-4px);
  border-color: rgba(30, 136, 229, 0.3);
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}

/* ---------- Özellik şeridi ---------- */
.feature-strip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.feature-item {
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.4rem;
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.feature-item:hover { background: rgba(249, 115, 22, 0.06); transform: translateY(-2px); }
.feature-item i {
  color: #fff;
  font-size: 17px;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--grad-accent);
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.28);
}
.feature-item .title { font-weight: 700; font-size: 14px; color: var(--ink); }
.feature-item .desc { color: var(--muted); font-size: 12.5px; line-height: 1.55; }

/* Anasayfa hizmet kartları */
.home-service-card {
  padding-top: 1.35rem !important;
}
.home-service-card .icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font-size: 26px;
  box-shadow:
    0 10px 22px rgba(10, 61, 145, 0.22),
    0 0 0 6px rgba(249, 115, 22, 0.08);
  border: 3px solid rgba(249, 115, 22, 0.42);
}
.home-service-card:hover .icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 14px 28px rgba(10, 61, 145, 0.28),
    0 0 0 8px rgba(249, 115, 22, 0.12);
}
.home-service-card .service-card-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
  line-height: 1.3;
}
.home-service-card .service-card-desc {
  flex-grow: 1;
}
.home-service-card .service-card-cta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.58rem 1rem;
}

@media (min-width: 768px) {
  .home-service-card .icon {
    width: 80px;
    height: 80px;
    font-size: 28px;
  }
  .home-service-card .service-card-title {
    font-size: 0.96rem;
  }
}

@media (max-width: 575.98px) {
  .home-service-card .icon {
    width: 54px;
    height: 54px;
    font-size: 21px;
    margin-bottom: 0.65rem !important;
  }
  .home-service-card .service-card-title {
    font-size: 0.78rem;
  }
  .home-service-card .text-muted,
  .home-service-card .service-card-desc {
    font-size: 0.7rem;
    line-height: 1.4;
    margin-bottom: 0.65rem !important;
  }
  .home-service-card .service-card-cta {
    font-size: 0.68rem;
    padding: 0.42rem 0.5rem;
  }
}

/* Anasayfa özellik şeridi */
.home-feature-strip {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  border: 1px solid rgba(10, 61, 145, 0.1);
  box-shadow: 0 16px 40px rgba(10, 61, 145, 0.07);
}
.home-feature-strip::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--grad-brand-accent);
}
.home-feature-strip .feature-item {
  padding: 0.75rem 1rem;
}
.home-feature-strip .feature-item:hover {
  background: transparent;
  transform: none;
}
.home-feature-strip .feature-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 46px;
  padding-top: 0.05rem;
}
.home-feature-strip .feature-icon i {
  color: #fff;
  font-size: 0.95rem;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad-accent);
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.28);
}
.home-feature-strip .feature-item .title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.2rem;
}
.home-feature-strip .feature-item .desc {
  font-size: 0.76rem;
  line-height: 1.45;
  color: #4b5563;
}

@media (min-width: 992px) {
  .home-feature-strip .row > .col-lg-3:not(:last-child) .feature-item {
    border-right: 1px solid rgba(10, 61, 145, 0.12);
    padding-right: 1.25rem;
  }
}

@media (max-width: 991.98px) {
  .home-feature-strip .row > .col-sm-6:nth-child(odd) .feature-item {
    border-right: 1px solid rgba(10, 61, 145, 0.1);
    padding-right: 0.75rem;
  }
}

/* Anasayfa panelleri / ilçe chip'leri */
.home-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(520px 220px at 100% 0%, rgba(249, 115, 22, 0.06), transparent 60%),
    radial-gradient(420px 200px at 0% 100%, rgba(21, 101, 192, 0.07), transparent 55%),
    #ffffff !important;
  border-color: rgba(10, 61, 145, 0.1) !important;
  box-shadow: 0 18px 44px rgba(10, 61, 145, 0.08) !important;
}
.home-panel .text-primary::after {
  width: 48px;
}
.district-chip {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  height: 100%;
  min-height: 78px;
  padding: 0.95rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 61, 145, 0.1);
  background: linear-gradient(180deg, #f8fafc 0%, #eef3fb 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease),
    box-shadow 0.22s var(--ease), background 0.22s var(--ease);
}
.district-chip-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.district-chip-meta {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}
.district-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.4);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(10, 61, 145, 0.1);
}
.district-chip:hover .district-chip-name { color: var(--brand); }
.district-chip:hover .district-chip-meta { color: var(--accent); }

/* ---------- CTA bar ---------- */
.cta-bar {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(620px 220px at 88% -50%, rgba(255, 255, 255, 0.22), transparent 60%),
    radial-gradient(420px 180px at 8% 120%, rgba(249, 115, 22, 0.35), transparent 55%),
    var(--grad-brand-accent);
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: 0 24px 50px rgba(10, 61, 145, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.cta-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.6;
  pointer-events: none;
}
.cta-bar > * { position: relative; z-index: 1; }
.cta-bar h4, .cta-bar .h4 {
  color: #fff;
  font-family: var(--font-head);
  letter-spacing: -0.02em;
}
.cta-bar-lead {
  max-width: 34rem;
  line-height: 1.55;
}
.cta-bar .btn-lg {
  border-radius: 999px;
  padding: 0.78rem 1.35rem;
  font-weight: 700;
}
.cta-bar .btn-light {
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.22);
}
.cta-bar .btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ---------- Formlar ---------- */
.form-label { font-weight: 600; font-size: 0.9rem; color: #334155; margin-bottom: 0.4rem; }
.form-control,
.form-select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  padding: 0.72rem 0.95rem;
  background: var(--surface-2);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease),
    background-color 0.18s var(--ease);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--brand-3);
  background: #fff;
  box-shadow: 0 0 0 0.22rem rgba(30, 136, 229, 0.16);
}
.form-check-input:checked { background-color: var(--brand); border-color: var(--brand); }
.form-check-input:focus { border-color: var(--brand-3); box-shadow: 0 0 0 0.22rem rgba(30, 136, 229, 0.16); }

/* ---------- Accordion (SSS) ---------- */
.accordion {
  --bs-accordion-border-color: var(--line);
  --bs-accordion-border-radius: var(--radius-sm);
  --bs-accordion-active-color: var(--brand);
  --bs-accordion-active-bg: rgba(10, 61, 145, 0.06);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.22rem rgba(30, 136, 229, 0.16);
}
.accordion-item {
  border: 1px solid rgba(10, 61, 145, 0.1);
  border-radius: 16px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 6px 18px rgba(10, 61, 145, 0.05);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(30, 136, 229, 0.28);
  box-shadow: 0 10px 24px rgba(10, 61, 145, 0.08);
}
.accordion-button {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 16px !important;
  padding: 1rem 1.15rem;
  background: transparent;
}
.accordion-button:not(.collapsed) {
  color: var(--brand);
  background: rgba(10, 61, 145, 0.04);
  box-shadow: none;
}
.accordion-button:focus { border-color: transparent; }
.accordion-button::after {
  background-size: 1rem;
  transition: transform 0.25s var(--ease);
}
.accordion-body {
  padding: 0 1.15rem 1.1rem;
  line-height: 1.65;
}

/* ---------- Zengin içerik (.content) ---------- */
.content { color: #334155; line-height: 1.78; font-size: 1rem; }
.content > :first-child { margin-top: 0; }
.content > :last-child { margin-bottom: 0; }
.content h2, .content h3, .content h4 {
  margin-top: 1.7rem; margin-bottom: 0.6rem; font-weight: 700; color: var(--brand);
}
.content p { margin-bottom: 1rem; }
.content ul, .content ol { padding-left: 1.2rem; margin-bottom: 1rem; }
.content li { margin-bottom: 0.4rem; }
.content a { color: var(--brand-2); text-decoration: underline; text-underline-offset: 2px; }
.content a:hover { color: var(--brand); }

/* ---------- Alert ---------- */
.alert { border-radius: var(--radius-sm); border: 1px solid transparent; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: transparent !important;
  border-top: none;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
  background: var(--grad-brand-accent);
}
.site-footer-top {
  position: relative;
  padding: 3.75rem 0 3rem;
  background:
    radial-gradient(720px 340px at 100% -10%, rgba(249, 115, 22, 0.28), transparent 55%),
    radial-gradient(640px 300px at -8% 110%, rgba(30, 136, 229, 0.28), transparent 58%),
    linear-gradient(165deg, #071a3d 0%, #0a1f4a 42%, #040f28 100%);
  color: rgba(255, 255, 255, 0.88);
}
.site-footer-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 178, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 178, 235, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
  pointer-events: none;
}
.site-footer-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.06) 0%, transparent 28%),
    radial-gradient(circle at 18% 72%, rgba(249, 115, 22, 0.08) 0%, transparent 32%);
  pointer-events: none;
}
.site-footer-main {
  position: relative;
  z-index: 1;
}
.site-footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1.15rem;
}
.site-footer-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 6px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.28);
  line-height: 0;
}
.site-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}
.site-footer-name {
  font-family: var(--font-head);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}
.site-footer-name .site-brand-lead {
  background: linear-gradient(135deg, #FDBA74 0%, #F97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.site-footer-name .site-brand-rest {
  color: #fff;
}
.site-footer-tagline {
  margin-top: 0.28rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(196, 212, 240, 0.72);
}
.site-footer-person {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(253, 186, 116, 0.95);
}
.site-footer-desc {
  max-width: 28rem;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(211, 224, 247, 0.74);
}
.site-footer-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.site-footer-heading::after {
  content: "";
  flex: 1;
  max-width: 48px;
  height: 2px;
  border-radius: 999px;
  background: var(--grad-accent);
}

/* İletişim aksiyon kartları */
.site-footer-actions {
  display: grid;
  gap: 0.7rem;
}
.site-footer-action {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid rgba(148, 178, 235, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.18);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease),
    background-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.site-footer-action:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 32px rgba(2, 6, 23, 0.28);
}
.site-footer-action-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.05rem;
  color: #fff;
}
.site-footer-action-phone .site-footer-action-icon {
  background: var(--grad-accent);
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.35);
}
.site-footer-action-phone2 .site-footer-action-icon {
  background: var(--grad-brand);
  box-shadow: 0 8px 18px rgba(21, 101, 192, 0.35);
}
.site-footer-action-wa .site-footer-action-icon {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.3);
}
.site-footer-action-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  line-height: 1.2;
}
.site-footer-action-copy strong {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.site-footer-action-copy small {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(196, 212, 240, 0.7);
}

/* Sosyal + meta */
.site-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}
.site-footer-social {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
  transition: background-color 0.18s var(--ease), transform 0.18s var(--ease),
    border-color 0.18s var(--ease), color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.site-footer-social:hover {
  color: #fff;
  background: rgba(249, 115, 22, 0.9);
  border-color: rgba(249, 115, 22, 0.95);
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.28);
  transform: translateY(-3px);
}
.site-footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.site-footer-meta-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 178, 235, 0.14);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.84rem;
  line-height: 1.4;
  color: rgba(211, 224, 247, 0.82);
  text-decoration: none;
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease),
    color 0.18s var(--ease);
}
.site-footer-meta-link:hover {
  color: #fff;
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(255, 255, 255, 0.08);
}
.site-footer-meta-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(30, 136, 229, 0.2);
  color: #9ec5ff;
  font-size: 0.8rem;
}
.site-footer-meta-link .site-footer-meta-icon {
  background: rgba(249, 115, 22, 0.18);
  color: #fdba74;
}

.site-footer-bottom {
  background: #020914;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding: 1.05rem 0;
}
.site-footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
}
.site-footer-powered {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}
.site-footer-powered span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}
.site-footer-powered:hover {
  color: rgba(255, 255, 255, 0.72);
}
.site-footer-powered:hover span {
  color: #fdba74;
}

@media (max-width: 991.98px) {
  .site-footer-top {
    padding: 2.75rem 0 2.25rem;
  }
  .site-footer-actions,
  .site-footer-socials,
  .site-footer-meta {
    max-width: 420px;
  }
}

@media (max-width: 575.98px) {
  .site-footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
  .site-footer-name {
    font-size: 1rem;
  }
  .site-footer-action {
    padding: 0.78rem 0.9rem;
  }
  .site-footer-action-copy strong {
    font-size: 0.9rem;
  }
  .site-footer-meta-item {
    word-break: break-word;
  }
}

/* ---------- Hareket tercihi ---------- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- İç sayfa hero (Hakkımızda vb.) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(640px 320px at 88% 0%, rgba(249, 115, 22, 0.35), transparent 58%),
    radial-gradient(520px 280px at 6% 100%, rgba(21, 101, 192, 0.4), transparent 55%),
    linear-gradient(135deg, #06193f 0%, #0a1c44 50%, #04102d 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 85%);
  mask-image: linear-gradient(180deg, #000, transparent 85%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 280px;
  height: 280px;
  background: url("../img/logo-placeholder.svg") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 52px 0 48px;
  max-width: 720px;
}
.page-hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.85rem;
  color: #fff;
}
.page-hero-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff, rgba(174, 203, 255, 0.6));
}
.page-hero-lead {
  margin: 0;
  max-width: 540px;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

/* İç sayfalarda hero ile içerik arasında net ayrım */
.about-page,
.services-page,
.district-page {
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
  margin-top: 0;
}

/* ---------- Hakkımızda sayfası ---------- */
.about-page {
  position: relative;
  padding-top: 0;
}
.page-hero-about .page-hero-inner {
  padding-bottom: 56px;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-stats {
  position: relative;
  z-index: 3;
  margin-top: -2rem;
  margin-bottom: 2rem;
}
.about-stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about-stat-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-size: 17px;
}
.about-stat-value {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--brand);
  margin-bottom: 0.2rem;
}
.about-stat-label {
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--muted);
}
.about-main-grid {
  margin-top: 0.25rem;
}
.about-article {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.25rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.about-article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--grad-accent);
}
.about-article::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 200px;
  height: 200px;
  background: url("../img/logo-placeholder.svg") center / contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
}
.about-article-head {
  position: relative;
  z-index: 1;
  margin-bottom: 1.35rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.about-eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-2);
}
.about-article-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.about-article-tagline {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.about-content {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}
.about-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
}
.about-lead {
  font-size: clamp(17px, 1.6vw, 20px) !important;
  font-weight: 500;
  line-height: 1.8 !important;
  color: #1e293b !important;
  padding-left: 1.25rem;
  border-left: 4px solid var(--brand-3);
}
.about-section-head {
  margin-bottom: 1.15rem;
}
.about-section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.about-section-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.about-section-lead {
  margin: 0;
  max-width: 38rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}
.about-pillar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.about-pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 136, 229, 0.22);
}
.about-pillar-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 61, 145, 0.08);
  color: var(--brand);
  font-size: 18px;
}
.about-pillar-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--brand);
}
.about-pillar-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
  color: #475569;
}
.about-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}
.about-why-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s var(--ease);
}
.about-why-item:hover {
  background: rgba(30, 136, 229, 0.04);
}
.about-why-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 1.35rem;
}
.about-why-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.2rem;
}
.about-why-desc {
  font-size: 0.84rem;
  line-height: 1.55;
  color: #4b5563;
}
.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-aside-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.about-aside-cta {
  border-color: rgba(10, 61, 145, 0.14);
  box-shadow: var(--shadow-md);
}
.about-aside-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-size: 22px;
  margin-bottom: 1rem;
  box-shadow: 0 10px 22px rgba(10, 61, 145, 0.22);
}
.about-aside-cta-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 0.35rem;
}
.about-aside-cta-lead {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 1rem;
}
.about-aside-meta hr {
  border-color: var(--line);
  opacity: 1;
}
.about-meta-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.about-meta-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 61, 145, 0.08);
  color: var(--brand);
  font-size: 15px;
}
.about-meta-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.15rem;
}
.about-meta-value {
  font-size: 0.86rem;
  line-height: 1.5;
  color: #475569;
}
.about-meta-link {
  color: var(--brand-2);
  text-decoration: none;
  word-break: break-all;
}
.about-meta-link:hover {
  color: var(--brand);
}
.about-aside-links-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.85rem;
}
.about-quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.about-quick-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.about-quick-link i:first-child {
  color: var(--brand);
  width: 1rem;
  text-align: center;
}
.about-quick-link-arrow {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--brand-2);
  transition: transform 0.2s var(--ease);
}
.about-quick-link:hover {
  border-color: rgba(30, 136, 229, 0.25);
  background: #fff;
  color: var(--brand);
}
.about-quick-link:hover .about-quick-link-arrow {
  transform: translateX(3px);
}
.about-services {
  padding-top: 0.25rem;
}
.about-services-all {
  flex-shrink: 0;
}
.about-service-link {
  display: block;
  color: inherit;
}
.about-service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.about-service-link:hover .about-service-card {
  transform: translateY(-4px);
  border-color: rgba(30, 136, 229, 0.25);
  box-shadow: var(--shadow-md);
}
.about-service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-size: 20px;
}
.about-service-title {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.35rem;
}
.about-service-desc {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (min-width: 768px) {
  .about-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.15rem;
  }
}

@media (min-width: 992px) {
  .about-aside {
    position: sticky;
    top: 88px;
  }
  .about-stats {
    margin-top: -2.35rem;
  }
}

@media (max-width: 575.98px) {
  .about-stat-card {
    padding: 0.9rem 0.65rem;
  }
  .about-stat-value {
    font-size: 1.1rem;
  }
  .about-stat-label {
    font-size: 0.7rem;
  }
  .about-article {
    padding: 1.5rem 1.25rem 1.75rem;
  }
  .about-pillar-card {
    padding: 1.1rem 1rem;
  }
  .about-section-head-row {
    align-items: flex-start;
  }
}

/* ---------- Hizmetlerimiz sayfası ---------- */
.services-page {
  position: relative;
}
.services-grid {
  margin-bottom: 0.5rem;
}
.service-card-page {
  min-height: 100%;
  background: var(--surface);
}
.service-card-page .service-card-title {
  font-family: var(--font-head);
  font-size: 1.08rem;
  color: var(--ink);
}
.service-card-page .icon {
  width: 64px;
  height: 64px;
  font-size: 24px;
}
.services-empty {
  text-align: center;
  background: var(--surface);
  border: 1px dashed rgba(10, 61, 145, 0.22);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-sm);
}
.services-empty-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 61, 145, 0.06);
  color: var(--brand);
  font-size: 28px;
}
.services-cta .cta-bar {
  margin-bottom: 0;
}

/* ---------- Hizmet detay sayfası ---------- */
.service-detail-page {
  position: relative;
  padding-top: 0;
}
.page-hero-service .page-hero-inner {
  max-width: 760px;
  padding-bottom: 56px;
}
.service-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}
.service-breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}
.service-breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}
.service-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.service-hero-badge i {
  font-size: 0.9rem;
}
.service-highlights {
  position: relative;
  z-index: 3;
  margin-top: -2rem;
  margin-bottom: 2rem;
}
.service-highlight-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.service-highlight-card:hover {
  transform: translateY(-4px);
}
.service-highlight-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.55rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
}
.service-highlight-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.service-highlight-desc {
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--muted);
}
.service-detail-grid {
  margin-top: 0.25rem;
}
.service-article {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.25rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.service-article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--grad-accent);
}
.service-article-head {
  margin-bottom: 1.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.service-article-eyebrow {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-2);
}
.service-article-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.service-article-content {
  font-size: 1.05rem;
}
.service-article-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
}
.service-info-strip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}
.service-info-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.service-info-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 0.55rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 61, 145, 0.08);
  color: var(--brand);
  font-size: 15px;
}
.service-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.service-info-value {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand);
}
.service-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-aside-cta .about-aside-icon {
  background: var(--brand);
  box-shadow: 0 10px 22px rgba(10, 61, 145, 0.22);
}
.service-related-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.service-empty-card {
  margin-top: 2rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
}
.service-empty-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 61, 145, 0.08);
  color: var(--brand);
  font-size: 28px;
}

@media (min-width: 992px) {
  .service-aside {
    position: sticky;
    top: 88px;
  }
  .service-highlights {
    margin-top: -2.35rem;
  }
}

@media (max-width: 575.98px) {
  .service-article {
    padding: 1.5rem 1.25rem 1.75rem;
  }
  .service-highlight-card {
    padding: 0.85rem 0.75rem;
  }
  .service-highlight-title {
    font-size: 0.72rem;
  }
  .service-highlight-desc {
    font-size: 0.68rem;
  }
}

/* ---------- İlçe detay sayfası ---------- */
.page-hero-district .page-hero-inner {
  max-width: 760px;
}
.district-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.district-page {
  position: relative;
}
.district-visual {
  position: relative;
  margin: 0 0 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  background: #06193f;
}
.district-visual-img {
  display: block;
  width: 100%;
  height: clamp(220px, 32vw, 360px);
  object-fit: cover;
}
.district-visual-caption {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(6, 16, 38, 0.88));
  color: #fff;
}
.district-visual-caption-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
}
.district-visual-caption-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
}
.district-visual-fallback {
  position: relative;
  min-height: clamp(220px, 32vw, 360px);
  overflow: hidden;
}
.district-visual-fallback-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 260px at 85% 15%, hsla(var(--district-hue), 85%, 58%, 0.55), transparent 60%),
    radial-gradient(420px 220px at 10% 90%, hsla(var(--district-hue), 70%, 42%, 0.45), transparent 58%),
    linear-gradient(135deg, hsl(var(--district-hue), 55%, 18%) 0%, #04102d 100%),
    url("../img/hero-placeholder.svg") center / cover no-repeat;
}
.district-visual-fallback-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.55;
}
.district-visual-fallback-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: clamp(220px, 32vw, 360px);
  padding: 1.5rem 1.75rem;
  color: #fff;
}
.district-visual-fallback-icons {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.district-visual-fallback-icons span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 17px;
}
.district-visual-fallback-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}
.district-visual-fallback-sub {
  margin-top: 0.45rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}
.district-article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
}
.district-aside .about-aside-card {
  position: sticky;
  top: 88px;
}
.district-service-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.district-service-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-accent);
  color: #fff;
  font-size: 16px;
  box-shadow: 0 8px 18px rgba(21, 101, 192, 0.22);
}

/* ---------- Mobil Hemen Ara çubuğu ---------- */
@media (max-width: 991.98px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
}

.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(233, 238, 251, 0) 0%, rgba(233, 238, 251, 0.92) 38%, #e9eefb 100%);
  pointer-events: none;
}

.mobile-call-bar-link {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 0.95rem;
  border-radius: 18px;
  background: var(--grad-brand);
  color: #fff !important;
  box-shadow:
    0 14px 34px rgba(10, 61, 145, 0.34),
    0 4px 12px rgba(21, 101, 192, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.18s var(--ease), box-shadow 0.22s var(--ease), filter 0.2s var(--ease);
}

.mobile-call-bar-link:hover,
.mobile-call-bar-link:focus-visible {
  color: #fff !important;
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 18px 40px rgba(10, 61, 145, 0.38),
    0 6px 16px rgba(21, 101, 192, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.mobile-call-bar-link:active {
  transform: translateY(0);
}

.mobile-call-bar-icon {
  position: relative;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 1.15rem;
}

.mobile-call-bar-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  animation: mobile-call-pulse 2.2s ease-out infinite;
}

@keyframes mobile-call-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.75;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.mobile-call-bar-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}

.mobile-call-bar-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.mobile-call-bar-phone {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.02em;
}

.mobile-call-bar-arrow {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  opacity: 0.9;
}

/* ---------- İletişim haritası ---------- */
.contact-map {
  min-height: 280px;
  line-height: 0;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

/* ---------- Mobil ---------- */
@media (max-width: 575.98px) {
  main :is(h1, h2).text-primary::after { width: 44px; }
  .page-hero-inner { padding: 40px 0 36px; }
  .about-article { padding: 1.5rem 1.25rem 1.75rem; }
  .services-empty { padding: 2rem 1.25rem; }
  .district-article { padding: 1.35rem 1.15rem 1.6rem; }
  .district-visual-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .district-aside .about-aside-card { position: static; }
  .site-footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-map iframe { height: 240px; }
}
