:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #eef2ff;
  --text: #0f172a;
  --muted: #475569;
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --border: #dbeafe;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  --radius: 14px;
  --site-banner-h: 22px;
  --nav-bar-h: 56px;
  --nav-menu: #171a20;
  --header-bg: rgba(255, 255, 255, 0.96);
  --service-slider-blue: #3e6ae1;
  --service-slider-gap: 12px;
  /* Hizmet slaytı: referans 1024x580 (oran 1024/580) */
  --service-slide-w: 1024px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 0.85rem;
  z-index: 999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-banner {
  position: relative;
  z-index: 200;
  background: linear-gradient(95deg, #0f172a 0%, #1e3a8a 42%, #1d4ed8 100%);
  color: #f8fafc;
  font-size: 0.75rem;
  line-height: 1.2;
  padding: 0.2rem 0;
  min-height: var(--site-banner-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 0.65rem;
}

.site-banner-text {
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.01em;
}

.site-banner-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.35);
  flex-shrink: 0;
}

.site-banner-cta {
  font-weight: 800;
  white-space: nowrap;
  font-size: 0.72rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-banner-cta:hover,
.site-banner-cta:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  max-width: 100%;
  backdrop-filter: blur(8px);
  background: var(--header-bg);
  border-bottom: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.nav-bar-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--nav-bar-h);
  padding: 0.45rem max(1rem, env(safe-area-inset-left)) 0.45rem max(1rem, env(safe-area-inset-right));
  max-width: min(1400px, 94vw);
  margin: 0 auto;
  width: 100%;
}

.brand {
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 0;
}

.header .brand {
  color: var(--nav-menu);
}

.brand .kpl-logo {
  display: block;
  height: 2.125rem;
  width: auto;
  max-width: min(88vw, 19rem);
}

@media (min-width: 768px) {
  .brand .kpl-logo {
    height: 2.35rem;
    max-width: 20.5rem;
  }
}

.brand-nav {
  grid-column: 1;
  justify-self: start;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nav-menu);
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 500;
}

.nav a[aria-current="page"] {
  color: var(--primary-dark);
  font-weight: 700;
}

.nav-main {
  grid-column: 2;
  justify-self: center;
  margin: 0;
  gap: clamp(0.85rem, 2vw, 1.65rem);
  font-size: 0.875rem;
}

.nav-main a {
  color: var(--nav-menu);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-main a:hover,
.nav-main a:focus-visible {
  color: var(--primary-dark);
}

.nav-main .nav-main__bolgeler {
  font: inherit;
  font-weight: 500;
  font-size: inherit;
  color: var(--nav-menu);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-main .nav-main__bolgeler:hover,
.nav-main .nav-main__bolgeler:focus-visible {
  color: var(--primary-dark);
  outline: none;
}

.nav-main .nav-item-mega__trigger {
  color: var(--nav-menu);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-main .nav-item-mega__trigger:hover,
.nav-main .nav-item-mega__trigger:focus-visible {
  color: var(--primary-dark);
}

.nav:not(.nav-main) a {
  color: var(--nav-menu);
  transition: color 0.2s ease;
}

.nav:not(.nav-main) a:hover,
.nav:not(.nav-main) a:focus-visible {
  color: var(--primary-dark);
}

.menu-btn {
  display: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  padding: 0.55rem 0.8rem;
  font-weight: 600;
}

.menu-btn-nav {
  display: none;
  grid-column: 3;
  justify-self: end;
  color: var(--nav-menu);
}

.nav-item-mega {
  position: relative;
  width: 100%;
}

.nav-item-mega__trigger {
  display: inline-block;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  text-align: inherit;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

.nav-mega {
  background: var(--header-bg);
  backdrop-filter: blur(8px);
}

.nav-mega--dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  margin: 0;
  z-index: 200;
  border-top: none;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  padding: 1.5rem 0 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

@media (min-width: 981px) {
  .nav-main .nav-item-mega {
    width: auto;
  }

  .nav-item-mega__trigger {
    padding: 0.3rem 0.65rem;
    margin: -0.3rem -0.65rem;
    border-radius: 6px;
    transition: background 0.15s ease;
  }

  .nav-item-mega:hover .nav-item-mega__trigger,
  .nav-item-mega:focus-within .nav-item-mega__trigger {
    background: rgba(0, 0, 0, 0.06);
  }

  .nav-item-mega::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
  }

  .nav-mega--dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 12px;
  }

  .nav-mega--stack {
    display: none !important;
  }

  .header:has(.nav-item-mega:hover) .nav-mega--dropdown,
  .header:has(.nav-mega--dropdown:hover) .nav-mega--dropdown,
  .header:has(.nav-item-mega:focus-within) .nav-mega--dropdown,
  .header:has(.nav-mega--dropdown:focus-within) .nav-mega--dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 980px) {
  .nav-mega--dropdown {
    display: none !important;
  }
}

.nav-mega__inner {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.1fr);
  gap: 1.25rem 2rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 max(1rem, min(4vw, 2rem));
}

.nav-mega__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c5e62;
  margin: 0 0 0.5rem;
}

.nav-mega__phone {
  display: inline-block;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #171a20;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.nav-mega__phone:hover,
.nav-mega__phone:focus-visible {
  color: var(--primary-dark);
}

.nav-mega__note {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-mega__address {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #393c41;
}

.nav-mega__divider {
  width: 1px;
  min-height: 4.5rem;
  background: #e5e5e5;
  align-self: stretch;
}
@media (max-width: 640px) {
  .nav-mega__inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .nav-mega__divider {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-mega--dropdown {
    transition-duration: 0.01ms;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  border: 1px solid transparent;
  font-weight: 700;
  padding: 0.75rem 1.1rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
}

.btn-secondary {
  border-color: #cbd5e1;
  color: var(--text);
  background: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: #94a3b8;
}

.hero {
  padding: 3.8rem 0 3.2rem;
}

.hero-banner {
  position: relative;
  isolation: isolate;
  /* ~590px laptop referans; kisa ekranlarda vh ile kisalir, asagi 320px ile sinirli */
  min-height: max(320px, min(590px, 85vh));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  color: #f8fafc;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.45) 55%, rgba(15, 23, 42, 0.65) 100%),
    url("./assets/arac5.jpeg") center / cover no-repeat;
}

.hero-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.hero-banner__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.88);
}

.hero-banner__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-wrap: balance;
}

.hero-banner__sub {
  margin: 0 auto 0.85rem;
  max-width: 36rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.5;
  color: rgba(241, 245, 249, 0.92);
}

.hero-banner__callback {
  display: inline-block;
  margin-bottom: 1.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.2s ease;
}

.hero-banner__callback:hover,
.hero-banner__callback:focus-visible {
  opacity: 0.88;
}

.hero-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.btn-hero-primary {
  min-width: 10.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--primary);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-primary:hover,
.btn-hero-primary:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(30, 64, 175, 0.4);
}

.btn-hero-secondary {
  min-width: 10.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus-visible {
  background: #fff;
  transform: translateY(-1px);
}

.how-we-work {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.how-we-work__title {
  text-align: center;
  margin: 0 0 1.75rem;
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  font-weight: 700;
  color: #171a20;
  letter-spacing: -0.02em;
}

.how-we-work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.how-card {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f4f4f4;
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px;
  align-items: stretch;
}

.how-card__content {
  padding: clamp(1.5rem, 3vw, 2.35rem) clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.85rem;
}

.how-card__heading {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: #171a20;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.how-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #5c5e62;
  max-width: 40ch;
}

.how-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.35rem;
  padding: 0.65rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #171a20;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.how-card__btn:hover,
.how-card__btn:focus-visible {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.how-card__media {
  position: relative;
  min-height: 240px;
  height: 100%;
  align-self: stretch;
}

.how-card__media--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  min-height: 220px;
}

.how-card--step-call .how-card__media--icon {
  background: linear-gradient(155deg, #eff6ff 0%, #dbeafe 55%, #e0e7ff 100%);
  color: #1d4ed8;
  border-left: 1px solid rgba(37, 99, 235, 0.12);
}

.how-card--step-field .how-card__media--icon {
  background: linear-gradient(155deg, #ecfdf5 0%, #d1fae5 50%, #e0f2fe 100%);
  color: #047857;
  border-left: 1px solid rgba(5, 150, 105, 0.15);
}

.how-card__icon-svg {
  width: clamp(4.5rem, 12vw, 5.75rem);
  height: clamp(4.5rem, 12vw, 5.75rem);
  flex-shrink: 0;
  filter: drop-shadow(0 10px 24px rgba(15, 23, 42, 0.08));
}

@media (max-width: 960px) {
  .how-we-work__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .how-card {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .how-card__media--icon {
    order: -1;
    min-height: 180px;
    border-left: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  }

  .how-card--step-call .how-card__media--icon {
    border-left: none;
  }

  .how-card--step-field .how-card__media--icon {
    border-left: none;
  }

  .how-card__text {
    max-width: none;
  }
}

.hero-form-section {
  padding-top: 2.5rem;
}

.hero-form-section__title {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  margin: 0.5rem 0 0.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.hero-form-section__lead {
  margin-bottom: 1.75rem;
}

.hero-form-section .hero-grid .hero-cta {
  margin-top: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.badge {
  display: inline-block;
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin: 0;
}

h1 {
  font-size: clamp(1.9rem, 4.8vw, 3rem);
  line-height: 1.15;
  margin: 1rem 0 1rem;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.8rem;
}

h3 {
  margin: 0.2rem 0 0.5rem;
  font-size: 1.08rem;
}

h3 a {
  color: inherit;
}

h3 a:hover,
h3 a:focus-visible {
  color: var(--primary-dark);
}

.lead {
  color: var(--muted);
  max-width: 55ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.35rem 0;
}

.hero-list {
  padding-left: 1rem;
  margin: 0;
  color: var(--muted);
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.hero-card-body {
  padding: 1.15rem 1.2rem 1.25rem;
}

.hero-card-head {
  margin-bottom: 0.85rem;
}

.hero-card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.45rem;
}

.hero-card-body h2 {
  font-size: 1.28rem;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.hero-card-lead {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.quick-form {
  display: grid;
  gap: 0.5rem;
}

.quick-form label {
  font-weight: 600;
  margin-top: 0.15rem;
  font-size: 0.88rem;
}

.quick-form label:first-of-type {
  margin-top: 0;
}

.quick-form input,
.quick-form select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.quick-form input:focus,
.quick-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.btn-block {
  width: 100%;
  margin-top: 0.35rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-text {
  color: var(--muted);
  max-width: 68ch;
}

.services-section__head {
  margin-bottom: 1.5rem;
  margin-left: max(1rem, min(4vw, 2rem));
  margin-right: auto;
  width: min(1120px, calc(100% - 2 * max(1rem, min(4vw, 2rem))));
}

.services-section__head .section-text {
  margin-top: 0.5rem;
}

/* Hizmet bölgeleri modal (Airbnb tarzı) */
body.service-areas-modal-open {
  overflow: hidden;
}

.service-areas-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right))
    max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
}

.service-areas-modal[hidden] {
  display: none;
}

.service-areas-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.service-areas-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(88vh, 900px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.service-areas-modal__top {
  flex-shrink: 0;
  padding: 0.65rem 1rem 0;
  border-bottom: 1px solid #e4e4e7;
}

.service-areas-modal__close {
  position: absolute;
  top: 0.55rem;
  left: 0.65rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: #111827;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.service-areas-modal__close:hover,
.service-areas-modal__close:focus-visible {
  background: #f4f4f5;
  outline: none;
}

.service-areas-modal__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  justify-content: center;
  padding: 0.35rem 2rem 0.65rem;
}

.service-areas-modal__tab {
  padding: 0.5rem 0.15rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #71717a;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.service-areas-modal__tab:hover,
.service-areas-modal__tab:focus-visible {
  color: #111827;
  outline: none;
}

.service-areas-modal__tab.is-active {
  color: #111827;
  font-weight: 600;
  border-bottom-color: #111827;
}

.service-areas-modal__heading {
  flex-shrink: 0;
  margin: 0.85rem 1.25rem 0.5rem;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
}

.service-areas-modal__subhead {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #71717a;
}

.service-areas-modal__subhead--spaced {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #e4e4e7;
}

.service-areas-modal__panel-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0.35rem 1.25rem 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.service-areas-modal__tabpanel[hidden] {
  display: none;
}

.service-areas-modal__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}

.service-areas-modal__tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
  padding: 0.85rem 0.65rem;
  text-align: left;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.service-areas-modal__tile:hover,
.service-areas-modal__tile:focus-visible {
  border-color: #111827;
  background: #fafafa;
  outline: none;
}

.service-areas-modal__tile-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.service-areas-modal__tile-sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: #71717a;
  line-height: 1.35;
}

.service-areas-modal__grid-error {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #64748b;
}

.service-areas-modal__grid-error a {
  font-weight: 600;
  color: #1d4ed8;
}

.service-areas-modal__marmara {
  max-width: 52ch;
}

.service-areas-modal__marmara-lead {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #3f3f46;
}

.service-areas-modal__marmara-list {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #52525b;
}

.service-areas-modal__marmara-list li + li {
  margin-top: 0.35rem;
}

.service-areas-modal__call {
  display: inline-flex;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1d4ed8;
}

@media (max-width: 900px) {
  .service-areas-modal__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem 0.85rem;
  }
}

@media (max-width: 520px) {
  .service-areas-modal__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 0.65rem;
  }

  .service-areas-modal__tabs {
    justify-content: flex-start;
    padding-left: 2.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-areas-modal__backdrop {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* İlçe sayfaları & rehber */
.ilce-page .nav-wrap,
.ilce-hub .nav-wrap {
  flex-wrap: wrap;
  row-gap: 0.5rem;
}

.ilce-page .nav,
.ilce-hub .nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 0.35rem;
  column-gap: 0.85rem;
  font-size: 0.8rem;
}

.ilce-page,
.ilce-hub {
  background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 28%, #f8fafc 100%);
}

.ilce-hero {
  position: relative;
  padding: 1.75rem 0 2.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .ilce-hero {
    padding: 2.25rem 0 3rem;
  }
}

.ilce-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% 20%, rgba(59, 130, 246, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 60% at 92% 8%, rgba(99, 102, 241, 0.14), transparent 50%),
    linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.72) 100%);
  pointer-events: none;
}

.ilce-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .ilce-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem;
  }
}

.ilce-hero__crumb {
  margin: 0 0 0.85rem;
  flex-wrap: wrap;
  row-gap: 0.2rem;
}

.ilce-hero__crumb a {
  color: var(--primary-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.ilce-hero__crumb-sep {
  margin: 0 0.35rem;
  opacity: 0.45;
  user-select: none;
}

.ilce-hero__badge {
  display: inline-flex;
  margin: 0 0 0.65rem;
  padding: 0.28rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e40af;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 999px;
}

.ilce-hero__copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0f172a;
}

.ilce-hero__lead {
  margin: 0 0 1.25rem;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
}

.ilce-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}

.ilce-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.ilce-hero__btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
}

.ilce-hero__btn--primary:hover,
.ilce-hero__btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.42);
  outline: none;
}

.ilce-hero__btn--ghost {
  color: #0f172a;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.ilce-hero__btn--ghost:hover,
.ilce-hero__btn--ghost:focus-visible {
  border-color: #cbd5e1;
  transform: translateY(-1px);
  outline: none;
}

.ilce-hero__btn--wa {
  gap: 0.5rem;
}

.ilce-hero__btn--wa .ilce-wa-icon {
  color: #25d366;
}

.ilce-wa-icon {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.ilce-wa-icon svg {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

.ilce-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ilce-hero__chip {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.ilce-hero__visual-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 420px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .ilce-hero__visual-wrap {
    margin: 0;
    max-width: none;
    justify-content: flex-end;
  }
}

.ilce-hero__svg {
  width: 100%;
  height: auto;
  max-width: 380px;
  filter: drop-shadow(0 22px 40px rgba(30, 64, 175, 0.15));
}

.ilce-body {
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
}

.ilce-block-head {
  margin-bottom: 1.25rem;
  text-align: center;
}

@media (min-width: 640px) {
  .ilce-block-head {
    text-align: left;
    max-width: 48rem;
  }
}

.ilce-content__h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.ilce-content__h2--tight {
  margin-top: 2.25rem;
}

.ilce-block-head .ilce-content__h2 {
  margin-top: 0;
}

.ilce-cta-panel + .ilce-content__h2 {
  margin-top: 2.25rem;
}

.ilce-content__deck {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
}

.ilce-content__deck--tight {
  margin-bottom: 1rem;
  max-width: none;
}

.ilce-feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .ilce-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ilce-feature-card {
  padding: 1.15rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.ilce-feature-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.ilce-feature-card__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: #2563eb;
  background: linear-gradient(145deg, #eff6ff 0%, #e0e7ff 100%);
  border-radius: 14px;
}

.ilce-feature-card__icon .ilce-svg-icon {
  width: 1.85rem;
  height: 1.85rem;
}

.ilce-feature-card__title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.ilce-seo-block {
  margin-top: 2rem;
  padding: 1.25rem 1.2rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 16px;
}

.ilce-seo-block__h2 {
  margin-bottom: 0.65rem;
}

.ilce-seo-block__body {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ilce-seo-block__body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #334155;
}

.ilce-feature-card__desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.ilce-region-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .ilce-region-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ilce-region-card {
  padding: 1rem 1.05rem;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  border-top: 3px solid #3b82f6;
}

.ilce-region-card__tag {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #2563eb;
}

.ilce-region-card__body {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #475569;
}

.ilce-cta-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0 0.5rem;
  padding: 1.35rem 1.25rem;
  background: linear-gradient(120deg, #1e3a8a 0%, #1d4ed8 48%, #2563eb 100%);
  border-radius: 18px;
  color: #f8fafc;
  box-shadow: 0 20px 50px rgba(29, 78, 216, 0.35);
}

@media (min-width: 720px) {
  .ilce-cta-panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
  }
}

.ilce-cta-panel__copy {
  flex: 1;
  min-width: 0;
}

.ilce-cta-panel__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.ilce-cta-panel__sub {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  opacity: 0.92;
}

.ilce-cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex-shrink: 0;
}

.ilce-cta-panel__tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1e3a8a;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.ilce-cta-panel__tel:hover,
.ilce-cta-panel__tel:focus-visible {
  transform: scale(1.02);
  outline: none;
}

.ilce-cta-panel__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.ilce-cta-panel__wa .ilce-wa-icon {
  color: #fff;
}

.ilce-cta-panel__wa:hover,
.ilce-cta-panel__wa:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  outline: none;
}

.ilce-content__text {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 68ch;
}

.ilce-faq {
  max-width: 68ch;
  margin-top: 0.5rem;
}

.ilce-faq details {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  background: #fafafa;
}

.ilce-faq details + details {
  margin-top: 0.5rem;
}

.ilce-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.92rem;
  color: #171a20;
}

.ilce-faq details p {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.ilce-content__related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.ilce-content__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.ilce-content__btn:hover,
.ilce-content__btn:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.ilce-content__btn--secondary {
  background: #1e293b;
}

.ilce-content__btn--secondary:hover,
.ilce-content__btn--secondary:focus-visible {
  background: #0f172a;
}

.ilce-content__btn--ghost {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid rgba(37, 99, 235, 0.35);
}

.ilce-content__btn--ghost:hover,
.ilce-content__btn--ghost:focus-visible {
  background: rgba(37, 99, 235, 0.08);
}

.ilce-footer .footer-wrap {
  justify-content: center;
  text-align: center;
}

.ilce-footer a {
  color: inherit;
  font-weight: 600;
}

/* İlçe rehberi (hub) — hero & paneller */
.ilce-hub-hero {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  isolation: isolate;
}

.ilce-hub-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 100% 90% at 15% 20%, rgba(37, 99, 235, 0.12), transparent 55%),
    radial-gradient(ellipse 90% 70% at 92% 75%, rgba(13, 148, 136, 0.1), transparent 50%),
    linear-gradient(165deg, #f8fafc 0%, #e0e7ff 38%, #f1f5f9 100%);
}

.ilce-hub-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .ilce-hub-hero__inner {
    grid-template-columns: 1fr minmax(280px, 42%);
    gap: 2rem;
  }
}

.ilce-hub-hero__crumb {
  margin-bottom: 0.75rem;
}

.ilce-hub-hero__badge {
  display: inline-block;
  margin: 0 0 0.55rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(129, 140, 248, 0.45);
  border-radius: 999px;
}

.ilce-hub-hero__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0f172a;
}

.ilce-hub-hero__lead {
  margin: 0 0 1.15rem;
  font-size: clamp(0.95rem, 2vw, 1.06rem);
  line-height: 1.55;
  color: #475569;
  max-width: 40rem;
}

.ilce-hub-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
  max-width: 26rem;
}

@media (max-width: 520px) {
  .ilce-hub-hero__stats {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

.ilce-hub-stat {
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.ilce-hub-stat__n {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ilce-hub-stat__l {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.ilce-hub-stat--total .ilce-hub-stat__n {
  color: var(--primary-dark);
}

.ilce-hub-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.ilce-hub-jump__link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.ilce-hub-jump__link--avrupa {
  color: #1e40af;
  background: #dbeafe;
  border-color: #93c5fd;
}

.ilce-hub-jump__link--anadolu {
  color: #0f766e;
  background: #ccfbf1;
  border-color: #5eead4;
}

.ilce-hub-jump__link:hover,
.ilce-hub-jump__link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.ilce-hub-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
}

.ilce-hub-hero__tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  background: var(--primary);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.3);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.ilce-hub-hero__tel:hover,
.ilce-hub-hero__tel:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.ilce-hub-hero__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.68rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  background: #22c55e;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.28);
  transition: background 0.15s ease, transform 0.15s ease;
}

.ilce-hub-hero__wa:hover,
.ilce-hub-hero__wa:focus-visible {
  background: #16a34a;
  transform: translateY(-1px);
}

.ilce-hub-hero__wa-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.ilce-hub-hero__art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ilce-hub-hero__art img {
  width: 100%;
  max-width: min(100%, 440px);
  height: auto;
  border-radius: 20px;
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.9);
}

.ilce-hub-body {
  padding-top: 0.25rem;
  padding-bottom: 2.5rem;
}

.ilce-hub-panels {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.ilce-hub__panel {
  scroll-margin-top: 5.5rem;
  padding: 1.35rem 1.2rem 1.5rem;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.ilce-hub__panel--avrupa {
  border-top: 4px solid #2563eb;
}

.ilce-hub__panel--anadolu {
  border-top: 4px solid #0d9488;
}

.ilce-hub__panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.ilce-hub__panel-head-text {
  flex: 1;
  min-width: min(100%, 16rem);
}

.ilce-hub__panel-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.ilce-hub__panel-deck {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #64748b;
}

.ilce-hub__panel-count {
  margin: 0;
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  background: #f1f5f9;
  border-radius: 10px;
  white-space: nowrap;
}

.ilce-hub__panel-count span {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.ilce-hub__tiles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
  gap: 0.55rem;
}

@media (min-width: 640px) {
  .ilce-hub__tiles {
    grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
    gap: 0.65rem;
  }
}

.ilce-hub__tile-item {
  margin: 0;
}

.ilce-hub__tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  background: linear-gradient(180deg, #fafafa 0%, #f4f4f5 100%);
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease,
    background 0.15s ease;
}

.ilce-hub__tile-arr {
  flex-shrink: 0;
  font-size: 0.95rem;
  color: var(--primary);
  opacity: 0.65;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.ilce-hub__tile:hover,
.ilce-hub__tile:focus-visible {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.12);
  background: #fff;
  transform: translateY(-1px);
}

.ilce-hub__tile:hover .ilce-hub__tile-arr,
.ilce-hub__tile:focus-visible .ilce-hub__tile-arr {
  opacity: 1;
  transform: translateX(2px);
}

.ilce-hub-bottom-cta {
  padding: 0 0 2.75rem;
}

.ilce-hub-bottom-cta__inner {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: 18px;
  color: #f8fafc;
  background: linear-gradient(125deg, #1e3a8a 0%, #1d4ed8 48%, #172554 100%);
  box-shadow: 0 20px 48px rgba(30, 64, 175, 0.22);
}

.ilce-hub-bottom-cta__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 800;
}

.ilce-hub-bottom-cta__text {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(241, 245, 249, 0.92);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.ilce-hub-bottom-cta__tel {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 1.35rem;
  border-radius: 11px;
  font-weight: 800;
  font-size: 1rem;
  color: #172554;
  background: #fff;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.ilce-hub-bottom-cta__tel:hover,
.ilce-hub-bottom-cta__tel:focus-visible {
  transform: translateY(-2px);
}

.services-slider {
  outline: none;
}

.services-slider:focus-visible {
  box-shadow: 0 0 0 3px rgba(62, 106, 225, 0.45);
  border-radius: 4px;
}

.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;
}

.services-slider__viewport {
  position: relative;
  overflow: hidden;
  padding-left: max(1rem, min(4vw, 2rem));
  padding-right: 0;
  touch-action: manipulation;
}

.services-slider__track {
  display: flex;
  gap: var(--service-slider-gap);
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .services-slider__track {
    transition-duration: 0.01ms;
  }
}

.service-slide {
  position: relative;
  --slide-gutter: max(1rem, min(4vw, 2rem));
  flex: 0 0
    min(
      var(--service-slide-w),
      calc(100vw - var(--slide-gutter) - max(0.75rem, min(2vw, 1.25rem)))
    );
  width: min(
    var(--service-slide-w),
    calc(100vw - var(--slide-gutter) - max(0.75rem, min(2vw, 1.25rem)))
  );
  min-width: 0;
  max-width: var(--service-slide-w);
  aspect-ratio: 1024 / 580;
  height: auto;
  min-height: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a1a;
}

.service-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-slide__bg--pos-tire {
  background-position: center 42%;
}

.service-slide__bg--pos-fuel {
  background-position: 72% center;
}

.service-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.35) 48%,
    rgba(0, 0, 0, 0.12) 100%
  );
  pointer-events: none;
}

.service-slide__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.25rem, 3vw, 1.85rem);
  box-sizing: border-box;
}

.service-slide__eyebrow {
  margin: 0;
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
}

.service-slide__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 36rem;
}

.service-slide__title {
  margin: 0;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.service-slide__desc {
  margin: 0;
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.service-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.75rem;
  margin-top: 0.35rem;
}

.service-slide__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.service-slide__btn--primary {
  background: var(--service-slider-blue);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 4px 14px rgba(62, 106, 225, 0.35);
}

.service-slide__btn--primary:hover,
.service-slide__btn--primary:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.service-slide__btn--secondary {
  background: #fff;
  color: #171a20;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.service-slide__btn--secondary:hover,
.service-slide__btn--secondary:focus-visible {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.services-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.94);
  color: #393c41;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.services-slider__arrow:hover:not(:disabled) {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.services-slider__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.services-slider__arrow--prev {
  left: max(0.5rem, calc(max(1rem, min(4vw, 2rem)) - 0.15rem));
}

.services-slider__arrow--next {
  right: max(0.75rem, min(4vw, 2rem));
}

.services-slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
  padding: 0 1rem 0.25rem;
}

.services-slider__dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: #b0b0b0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.services-slider__dots button.is-active {
  background: #171a20;
  transform: scale(1.2);
}

.services-slider__dots button:focus-visible {
  outline: 2px solid var(--service-slider-blue);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .services-slider__arrow {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }

  .services-slider__arrow--prev {
    left: 0.35rem;
  }

  .services-slider__arrow--next {
    right: 0.35rem;
  }

  .service-slide {
    --slide-gutter: 1rem;
    flex: 0 0 min(92vw, calc(100vw - 2rem));
    width: min(92vw, calc(100vw - 2rem));
    max-width: none;
    aspect-ratio: 1024 / 580;
  }
}

.cards {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.card-media {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #dbeafe;
  margin-bottom: 0.7rem;
  aspect-ratio: 18 / 11;
  object-fit: cover;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.steps {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.steps article {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid #c7d2fe;
  padding: 1.15rem;
}

.steps span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  color: var(--primary-dark);
  background: #dbeafe;
}

.steps p,
.reviews blockquote,
.faq p,
.contact p,
address p {
  color: var(--muted);
}

.reviews {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.reviews blockquote {
  margin: 0;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  background: #fff;
}

.reviews cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  font-weight: 700;
  color: var(--text);
}

.faq {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

#sss #sss-baslik {
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #1d1d1f;
  margin: 0 0 2rem;
}

#sss .faq summary {
  font-size: clamp(17px, 2.5vw, 24px);
  font-weight: 600;
  line-height: 1.3;
  color: #1d1d1f;
}

#sss .faq details p {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
  color: #1d1d1f;
  margin: 0.6rem 0 0;
}

.breadcrumb {
  display: inline-flex;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Hizmet alt sayfaları — akü takviye, mobil lastik */
.service-detail {
  background: #f8fafc;
}

.service-detail-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(2rem, 4vw, 3.25rem);
  isolation: isolate;
}

.service-detail--battery .service-detail-hero {
  --sd-glow: rgba(22, 163, 74, 0.14);
  --sd-accent: #16a34a;
  --sd-accent-dark: #15803d;
}

.service-detail--tire .service-detail-hero {
  --sd-glow: rgba(37, 99, 235, 0.14);
  --sd-accent: #2563eb;
  --sd-accent-dark: #1d4ed8;
}

.service-detail-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 120% 85% at 88% 15%, var(--sd-glow), transparent 52%),
    radial-gradient(ellipse 100% 70% at 8% 88%, var(--sd-glow), transparent 48%),
    linear-gradient(165deg, #f8fafc 0%, #eef2ff 42%, #f1f5f9 100%);
}

.service-detail-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 900px) {
  .service-detail-hero__inner {
    grid-template-columns: 1fr minmax(260px, 36%);
    gap: 2.25rem;
  }
}

.service-detail-hero__copy .breadcrumb {
  margin-bottom: 0.85rem;
}

.service-detail-hero__badge {
  display: inline-block;
  margin: 0 0 0.6rem;
  padding: 0.32rem 0.78rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--sd-accent-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 999px;
}

.service-detail-hero__title {
  margin: 0 0 0.7rem;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0f172a;
}

.service-detail-hero__lead {
  margin: 0 0 1.2rem;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.55;
  color: #475569;
  max-width: 38rem;
}

.service-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.75rem;
  margin-bottom: 1rem;
}

.service-detail-hero__tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  background: var(--sd-accent);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.service-detail--battery .service-detail-hero__tel {
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.32);
}

.service-detail--tire .service-detail-hero__tel {
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.32);
}

.service-detail-hero__tel:hover,
.service-detail-hero__tel:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.service-detail-hero__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  background: #22c55e;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.28);
  transition: transform 0.15s ease, background 0.15s ease;
}

.service-detail-hero__wa:hover,
.service-detail-hero__wa:focus-visible {
  background: #16a34a;
  transform: translateY(-1px);
}

.service-detail-hero__wa-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.service-detail-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-detail-hero__chip {
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e2e8f0;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
}

.service-detail-hero__art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-detail-hero__art img {
  width: min(100%, 400px);
  height: auto;
  border-radius: 20px;
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.9);
}

.service-detail-section {
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
}

.service-detail-section__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}

.service-detail-section__head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.service-detail-section__deck {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.service-detail-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .service-detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-detail-card {
  margin: 0;
  padding: 1.2rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.service-detail-card:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
}

.service-detail-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border-radius: 14px;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  color: #0f172a;
}

.service-detail--battery .service-detail-card__icon {
  background: linear-gradient(145deg, #dcfce7 0%, #bbf7d0 100%);
}

.service-detail--tire .service-detail-card__icon {
  background: linear-gradient(145deg, #dbeafe 0%, #bfdbfe 100%);
}

.service-detail-card__title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.service-detail-card__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #64748b;
}

.service-detail-steps {
  padding: 2.25rem 0 2.75rem;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.service-detail-steps__title {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: clamp(1.3rem, 2.6vw, 1.55rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.service-detail-steps__grid {
  display: grid;
  gap: 1rem;
  counter-reset: sdstep;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .service-detail-steps__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-detail-step {
  position: relative;
  padding: 1.15rem 1rem 1.15rem 3.25rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.service-detail-step::before {
  counter-increment: sdstep;
  content: counter(sdstep);
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: var(--primary);
  border-radius: 8px;
}

.service-detail-step h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.service-detail-step p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #64748b;
}

.service-detail-areas {
  padding: 2.5rem 0;
}

.service-detail-areas__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.3rem, 2.6vw, 1.55rem);
  font-weight: 800;
  text-align: center;
  color: #0f172a;
}

.service-detail-areas__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .service-detail-areas__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-detail-area-card {
  margin: 0;
  padding: 1rem 1rem;
  background: #fff;
  border: 1px dashed rgba(100, 116, 139, 0.45);
  border-radius: 14px;
  text-align: center;
}

.service-detail-area-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  color: #0f172a;
}

.service-detail-area-card span {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.45;
}

.service-detail-faq {
  padding: 2.25rem 0 3rem;
}

.service-detail-faq__title {
  margin: 0 0 1.1rem;
  font-size: clamp(1.25rem, 2.5vw, 1.45rem);
  font-weight: 800;
  text-align: center;
  color: #0f172a;
}

.service-detail-faq .faq {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.service-detail-cross {
  padding: 0 0 2.5rem;
}

.service-detail-cross__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.35rem 1.35rem;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  border: 1px solid #bfdbfe;
  border-radius: 16px;
}

.service-detail-cross__card h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.service-detail-cross__card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #475569;
}

.service-detail-cross__card a {
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
}

.service-detail-cross__card a:hover,
.service-detail-cross__card a:focus-visible {
  text-decoration: underline;
}

.service-detail-cta {
  padding: 2rem 0 2.75rem;
}

.service-detail-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: 18px;
  color: #f8fafc;
  background: linear-gradient(125deg, #1e3a8a 0%, #1d4ed8 45%, #172554 100%);
  box-shadow: 0 20px 48px rgba(30, 64, 175, 0.25);
}

.service-detail-cta__inner h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 800;
}

.service-detail-cta__inner p {
  margin: 0;
  max-width: 32rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(241, 245, 249, 0.92);
}

.service-detail-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.service-detail-cta__tel {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.25rem;
  border-radius: 11px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #172554;
  background: #fff;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.service-detail-cta__tel:hover,
.service-detail-cta__tel:focus-visible {
  transform: translateY(-1px);
}

.page-hero {
  padding: 3rem 0 1.2rem;
}

.content-list {
  padding-left: 1rem;
  color: var(--muted);
}

.content-list li + li {
  margin-top: 0.4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
}

address {
  font-style: normal;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1rem;
}

.footer {
  border-top: 1px solid #dbeafe;
  background: #fff;
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer a {
  color: var(--primary-dark);
  font-weight: 600;
}

.float-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.call-float,
.whatsapp-float {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.call-float {
  background: #2563eb;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.35);
}

.call-float svg {
  width: 26px;
  height: 26px;
}

.call-float:hover,
.call-float:focus-visible {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.whatsapp-float {
  background: #22c55e;
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.35);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #16a34a;
  transform: translateY(-1px);
}

@media (max-width: 992px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps,
  .reviews {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .nav-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }

  .brand-nav {
    grid-column: unset;
  }

  .nav-main {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    grid-column: unset;
    justify-self: stretch;
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 0.85rem 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
    display: none;
  }

  .nav-main.open {
    display: flex;
  }

  .nav-main a {
    padding: 0.35rem 0;
    width: 100%;
    color: var(--nav-menu);
  }

  .nav-main .nav-main__bolgeler {
    padding: 0.35rem 0;
    width: 100%;
    text-align: left;
    color: var(--nav-menu);
  }

  .nav-main .nav-item-mega > .nav-item-mega__trigger {
    padding: 0.35rem 0;
    width: 100%;
    text-align: left;
  }

  .nav-mega--stack {
    position: static;
    left: auto;
    margin-left: 0;
    width: 100%;
    top: auto;
    z-index: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-top: 1px solid #e2e8f0;
    padding: 0.85rem 0 0;
    margin-top: 0.35rem;
    background: transparent;
    transition: none;
  }

  .nav-mega--stack .nav-mega__inner {
    padding: 0;
    max-width: none;
  }

  .menu-btn-nav {
    display: inline-flex !important;
    grid-column: unset;
    margin-left: auto;
  }
}

@media (min-width: 981px) {
  .menu-btn-nav {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .float-contact {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .call-float,
  .whatsapp-float {
    width: 52px;
    height: 52px;
  }

  .call-float svg {
    width: 24px;
    height: 24px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
