:root {
  --ink: #102b4f;
  --ink-soft: #526b8c;
  --deep: #062b63;
  --deep-2: #0a438f;
  --teal: #0b5fb3;
  --teal-bright: #168ee0;
  --aqua: #e4f2ff;
  --aqua-2: #bfddfa;
  --mint: #76c5f6;
  --cream: #f5f9ff;
  --cream-2: #e9f1fb;
  --white: #fff;
  --line: rgba(10, 76, 145, 0.15);
  --whatsapp: #22b964;
  --whatsapp-dark: #13994d;
  --shadow-sm: 0 8px 24px rgba(6, 43, 99, 0.08);
  --shadow-md: 0 18px 54px rgba(6, 43, 99, 0.12);
  --shadow-lg: 0 26px 80px rgba(3, 31, 73, 0.18);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1220px;
  --header-height: 82px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family:
    Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  background: var(--white);
  backdrop-filter: none;
}

body.menu-open .floating-actions {
  opacity: 0;
  pointer-events: none;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1,
h2 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

address {
  font-style: normal;
}

svg {
  display: block;
}

:focus-visible {
  outline: 3px solid #48a9ef;
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--teal);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 120px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--deep);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: relative;
  z-index: 20;
  color: rgba(255, 255, 255, 0.84);
  background: var(--deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.topbar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.topbar p,
.topbar a {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}

.topbar svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.topbar a {
  transition: color 180ms ease;
}

.topbar a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(10, 76, 145, 0.08);
  backdrop-filter: saturate(1.4) blur(18px);
  transition:
    box-shadow 220ms ease,
    background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(7, 45, 104, 0.09);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand--image {
  width: 300px;
  height: 74px;
}

.brand__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.brand__mark {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--teal);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(11, 95, 179, 0.2);
  place-items: center;
}

.brand__mark svg {
  width: 38px;
  height: 38px;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__copy strong {
  color: var(--deep);
  font-size: 1.04rem;
  letter-spacing: -0.015em;
}

.brand__copy small {
  margin-top: 5px;
  color: #6480a1;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.main-nav a {
  position: relative;
  padding-block: 27px 25px;
  color: #395f8a;
  font-size: 0.89rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 3px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--teal);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button__icon {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  place-items: center;
}

.button__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button--compact {
  min-height: 43px;
  padding: 8px 14px 8px 10px;
  border-radius: 13px;
  font-size: 0.82rem;
}

.button--compact .button__icon {
  width: 28px;
  height: 28px;
}

.button--primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 13px 30px rgba(11, 95, 179, 0.25);
}

.button--primary:hover {
  background: var(--deep-2);
  box-shadow: 0 16px 34px rgba(11, 95, 179, 0.32);
}

.button--soft {
  color: var(--teal);
  background: #e9f4ff;
  border-color: rgba(11, 95, 179, 0.1);
}

.button--soft:hover {
  background: #e1f1ff;
}

.button--soft .button__icon {
  color: var(--white);
  background: var(--teal);
}

.button--whatsapp {
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 10px 24px rgba(34, 185, 100, 0.2);
}

.button--whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 14px 28px rgba(24, 157, 79, 0.28);
}

.button--whatsapp .button__icon {
  background: rgba(255, 255, 255, 0.16);
}

.button--large {
  min-height: 58px;
  padding: 15px 24px 15px 16px;
  border-radius: 18px;
  font-size: 0.95rem;
}

.button--large .button__icon {
  width: 32px;
  height: 32px;
}

.button--glass {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(8, 56, 61, 0.1);
  backdrop-filter: blur(12px);
}

.button--glass:hover {
  background: rgba(255, 255, 255, 0.9);
}

.button--glass .button__icon {
  color: var(--white);
  background: var(--deep);
}

.button--white {
  color: var(--deep);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(2, 42, 47, 0.2);
}

.button--white .button__icon {
  color: var(--white);
  background: var(--whatsapp);
}

.button--outline-white {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}

.button--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
}

.button--outline-white .button__icon {
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--deep);
  background: var(--aqua);
  border: 0;
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.menu-toggle__close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
  display: block;
}

.mobile-menu {
  position: absolute;
  z-index: 10;
  top: 100%;
  right: 0;
  bottom: auto;
  left: 0;
  height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px 24px max(30px, env(safe-area-inset-bottom));
  background: #f3f8ff;
  box-shadow: 0 20px 45px rgba(6, 43, 99, 0.18);
  backdrop-filter: none;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav {
  display: flex;
  padding: 5px 16px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(11, 95, 179, 0.1);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(6, 43, 99, 0.07);
}

.mobile-menu nav a {
  min-height: 52px;
  padding: 15px 5px;
  color: var(--deep);
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 800;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
}

.mobile-menu__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.hero {
  position: relative;
  min-height: min(790px, calc(100svh - 38px - var(--header-height)));
  overflow: hidden;
  background: #eaf4ff;
  isolation: isolate;
}

.hero__media,
.hero__veil,
.hero__bubbles {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
  overflow: hidden;
  transform: scale(1.01);
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 650ms ease,
    transform 1800ms ease;
  will-change: opacity, transform;
}

.hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero__veil {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(245, 249, 255, 0.98) 0%,
      rgba(245, 249, 255, 0.95) 27%,
      rgba(245, 249, 255, 0.74) 47%,
      rgba(245, 249, 255, 0.14) 68%,
      rgba(245, 249, 255, 0) 100%
    ),
    linear-gradient(0deg, rgba(8, 53, 112, 0.05), transparent 38%);
}

.hero__inner {
  display: flex;
  min-height: inherit;
  align-items: center;
  padding-block: 80px 110px;
}

.hero__content {
  display: flex;
  align-self: stretch;
  width: min(650px, 53%);
  flex-direction: column;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 21px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow__spark {
  display: grid;
  width: 29px;
  height: 29px;
  color: var(--deep);
  background: var(--aqua-2);
  border-radius: 50%;
  font-size: 0.86rem;
  place-items: center;
}

.eyebrow--dark {
  color: var(--teal);
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 26px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 6.5vw, 6.55rem);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.067em;
}

.hero h1 span {
  display: block;
  color: var(--teal);
  font-style: italic;
}

.hero__brand {
  position: relative;
  display: block;
  overflow: hidden;
  width: min(560px, 100%);
  height: 170px;
  margin: 0;
  padding: 40px 12px 10px;
  background: var(--white);
  border: 1px solid rgba(10, 76, 145, 0.08);
  border-radius: 24px;
  box-shadow: 0 13px 32px rgba(6, 43, 99, 0.15);
}

.hero__brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.hero__brand-rating {
  position: absolute;
  z-index: 1;
  top: 11px;
  right: 20px;
  color: var(--deep);
  font-size: 0.94rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.hero__brand-rating i {
  margin-inline: 5px;
  font-style: normal;
  opacity: 0.42;
}

.hero__services {
  display: none;
}

.hero__lead {
  max-width: 570px;
  margin-bottom: 34px;
  color: #456b94;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.hero__reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 28px;
  color: #4e6d92;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero__reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__reassurance svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  color: var(--white);
  fill: currentColor;
  background: var(--teal);
  border-radius: 50%;
}

.hero__bubbles {
  z-index: -1;
  pointer-events: none;
}

.hero__bubbles span {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-shadow:
    inset 3px 4px 8px rgba(255, 255, 255, 0.5),
    1px 2px 12px rgba(8, 72, 145, 0.06);
  opacity: 0.55;
  animation: bubbleFloat 7s ease-in-out infinite;
}

.hero__bubbles span:nth-child(1) {
  top: 16%;
  right: 39%;
  width: 22px;
  height: 22px;
}

.hero__bubbles span:nth-child(2) {
  top: 29%;
  right: 33%;
  width: 38px;
  height: 38px;
  animation-delay: -2s;
}

.hero__bubbles span:nth-child(3) {
  right: 44%;
  bottom: 21%;
  width: 15px;
  height: 15px;
  animation-delay: -4s;
}

@keyframes bubbleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

.hero__scroll {
  position: absolute;
  bottom: 29px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(6, 43, 99, 0.7);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll i {
  position: relative;
  display: block;
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(6, 43, 99, 0.35);
  border-radius: 14px;
}

.hero__scroll i::after {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  background: var(--teal);
  border-radius: 4px;
  content: "";
  transform: translateX(-50%);
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0%,
  100% {
    opacity: 0.45;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 7px);
  }
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 54px;
}

.section-heading .eyebrow {
  margin-bottom: 15px;
}

.section-heading h2,
.care__content h2,
.contact-card h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 4.6vw, 4.8rem);
  font-weight: 400;
}

.section-heading h2 em,
.care__content h2 em,
.contact-card h2 em {
  color: var(--teal);
  font-weight: 400;
}

.section-heading > p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.services {
  position: relative;
  background:
    radial-gradient(circle at 9% 10%, rgba(110, 191, 243, 0.12), transparent 21%),
    radial-gradient(circle at 95% 92%, rgba(11, 95, 179, 0.08), transparent 25%),
    var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 83, 91, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(6, 43, 99, 0.05);
  transition:
    transform 300ms var(--ease),
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.service-card:hover {
  border-color: rgba(11, 95, 179, 0.22);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.service-card--featured::before {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--teal);
  content: "";
}

.service-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e7f0fb;
}

.service-card__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(0deg, rgba(4, 38, 43, 0.25), transparent);
  content: "";
  opacity: 0.58;
  pointer-events: none;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.service-card:hover .service-card__media img {
  transform: scale(1.055);
}

.service-card__number {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 13px;
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
  place-items: center;
}

.service-card__body {
  display: flex;
  min-height: 225px;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 25px 24px 23px;
}

.service-card__kicker {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.13;
}

.service-card__body p:not(.service-card__kicker) {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.service-card__link,
.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-size: 0.83rem;
  font-weight: 900;
}

.service-card__link svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 180ms var(--ease);
}

.service-card__link:hover svg,
.text-link:hover svg {
  transform: translateX(5px);
}

.care {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.care::before {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(110, 191, 243, 0.12), transparent 68%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.care__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: clamp(56px, 7vw, 100px);
}

.care__visual {
  position: relative;
}

.care__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.55;
  background: var(--aqua);
  border-radius: 35% 10% 35% 10% / 22% 8% 22% 8%;
  box-shadow: var(--shadow-lg);
}

.care__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(4, 48, 54, 0.17));
  content: "";
  pointer-events: none;
}

.care__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 69% center;
  transform: scale(1.02);
}

.care__badge {
  position: absolute;
  right: -28px;
  bottom: 58px;
  display: flex;
  min-width: 210px;
  align-items: center;
  gap: 13px;
  padding: 17px 20px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.care__badge > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--deep);
  background: var(--aqua-2);
  border-radius: 50%;
  place-items: center;
}

.care__badge div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.care__badge strong {
  font-size: 0.92rem;
}

.care__badge small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.73rem;
}

.care__content h2 {
  margin-bottom: 25px;
}

.care__content > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  line-height: 1.83;
}

.care-list {
  display: flex;
  margin: 0 0 34px;
  padding: 0;
  flex-direction: column;
  gap: 18px;
  list-style: none;
}

.care-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.care-list > li > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--teal);
  background: var(--aqua);
  border-radius: 50%;
  place-items: center;
}

.care-list svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.care-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--deep);
  font-size: 0.91rem;
}

.care-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.process {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 85%, rgba(97, 211, 181, 0.15), transparent 27%),
    radial-gradient(circle at 88% 10%, rgba(158, 235, 214, 0.09), transparent 22%),
    var(--deep);
}

.process__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(30deg, transparent 47%, rgba(255, 255, 255, 0.4) 48%, rgba(255, 255, 255, 0.4) 49%, transparent 50%),
    linear-gradient(150deg, transparent 47%, rgba(255, 255, 255, 0.3) 48%, rgba(255, 255, 255, 0.3) 49%, transparent 50%);
  background-size: 58px 34px;
  pointer-events: none;
}

.section-heading--light {
  position: relative;
  z-index: 1;
}

.section-heading--light .eyebrow {
  color: var(--mint);
}

.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light h2 em {
  color: var(--mint);
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.67);
}

.process-list {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 18px 0 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.process-list::before {
  position: absolute;
  z-index: -1;
  top: 43px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(151, 231, 210, 0.4) 0 7px, transparent 7px 15px);
  content: "";
}

.process-list li {
  position: relative;
  padding: 0 clamp(14px, 2.4vw, 35px);
  text-align: center;
}

.process-list__number {
  position: absolute;
  top: 1px;
  left: calc(50% + 27px);
  display: grid;
  width: 24px;
  height: 24px;
  color: var(--deep);
  background: var(--mint);
  border: 3px solid var(--deep);
  border-radius: 50%;
  font-size: 0.55rem;
  font-weight: 900;
  place-items: center;
}

.process-list__icon {
  display: grid;
  width: 86px;
  height: 86px;
  margin: 0 auto 25px;
  color: var(--mint);
  background: #0a438f;
  border: 1px solid rgba(162, 235, 216, 0.22);
  border-radius: 26px;
  box-shadow: 0 16px 36px rgba(0, 26, 30, 0.2);
  transform: rotate(4deg);
  place-items: center;
}

.process-list li:nth-child(even) .process-list__icon {
  transform: rotate(-4deg);
}

.process-list__icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
  transform: rotate(-4deg);
}

.process-list li:nth-child(even) .process-list__icon svg {
  transform: rotate(4deg);
}

.process-list h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  line-height: 1.7;
}

.contact {
  position: relative;
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream) 68%, var(--white) 68%, var(--white) 100%);
}

.contact-card {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(44px, 7vw, 100px);
  padding: clamp(45px, 6vw, 76px);
  color: var(--white);
  background:
    radial-gradient(circle at 95% 9%, rgba(152, 231, 210, 0.22), transparent 25%),
    linear-gradient(120deg, #0a4f9b, #062b63);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-card::before,
.contact-card::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact-card::before {
  top: -90px;
  right: -70px;
  width: 260px;
  height: 260px;
}

.contact-card::after {
  right: 28%;
  bottom: -135px;
  width: 220px;
  height: 220px;
}

.contact-card__copy,
.contact-card__details {
  position: relative;
  z-index: 1;
}

.contact-card .eyebrow {
  color: var(--mint);
}

.contact-card h2 {
  max-width: 660px;
  margin-bottom: 22px;
  color: var(--white);
}

.contact-card h2 em {
  color: var(--mint);
}

.contact-card__copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
}

.contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.contact-card__details {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 7px 0 7px 38px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 16px;
  transition: background 180ms ease;
}

a.contact-detail:hover {
  background: rgba(255, 255, 255, 0.08);
}

.contact-detail__icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  color: var(--mint);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  place-items: center;
}

.contact-detail__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-detail div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-detail small {
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 0.94rem;
}

.contact-detail p {
  margin: 1px 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.76rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.66);
  background: #031f49;
}

.site-footer__main {
  display: grid;
  padding-block: 78px 55px;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 1.1fr;
  gap: 55px;
}

.brand--footer-image {
  width: 300px;
  height: 112px;
  padding: 8px 10px;
  background: var(--white);
  border-radius: 14px;
}

.brand--footer .brand__mark {
  color: var(--deep);
  background: var(--mint);
  box-shadow: none;
}

.brand--footer .brand__copy strong {
  color: var(--white);
}

.brand--footer .brand__copy small {
  color: rgba(255, 255, 255, 0.48);
}

.footer-brand > p {
  max-width: 300px;
  margin: 22px 0 0;
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 9px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  width: fit-content;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--mint);
}

.footer-column--contact a,
.footer-column--contact p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-column svg {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  flex: 0 0 auto;
  fill: var(--mint);
}

.site-footer__bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.72rem;
}

.site-footer__bottom p {
  margin: 0;
}

.floating-actions {
  position: fixed;
  z-index: 150;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 11px;
}

.floating-action {
  position: relative;
  display: grid;
  width: 57px;
  height: 57px;
  color: var(--white);
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 13px 35px rgba(3, 32, 74, 0.24);
  transition:
    transform 200ms var(--ease),
    box-shadow 200ms ease;
  place-items: center;
}

.floating-action:hover {
  box-shadow: 0 17px 40px rgba(3, 32, 74, 0.29);
  transform: translateY(-3px) scale(1.04);
}

.floating-action svg {
  position: relative;
  z-index: 2;
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.floating-action--call {
  width: 57px;
  height: 57px;
  background: var(--teal);
  order: 2;
}

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

.floating-action--whatsapp {
  background: var(--whatsapp);
  order: 1;
}

.floating-action__pulse {
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: rgba(34, 185, 100, 0.43);
  border-radius: 50%;
  animation: pulse 2.3s ease-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.75;
    transform: scale(0.95);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

.floating-action__tooltip {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  padding: 7px 10px;
  color: var(--white);
  background: var(--deep);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(7px, -50%);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  white-space: nowrap;
}

.floating-action__tooltip::after {
  position: absolute;
  top: 50%;
  left: 100%;
  border: 5px solid transparent;
  border-left-color: var(--deep);
  content: "";
  transform: translateY(-50%);
}

.floating-action:hover .floating-action__tooltip {
  opacity: 1;
  transform: translate(0, -50%);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms var(--ease),
    transform 650ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .reveal:nth-child(2),
.process-list .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.services-grid .reveal:nth-child(3),
.process-list .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.services-grid .reveal:nth-child(4),
.process-list .reveal:nth-child(4) {
  transition-delay: 210ms;
}

.services-grid .reveal:nth-child(6) {
  transition-delay: 70ms;
}

.services-grid .reveal:nth-child(7) {
  transition-delay: 140ms;
}

.services-grid .reveal:nth-child(8) {
  transition-delay: 210ms;
}

.service-areas-preview {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 100%, rgba(110, 191, 243, 0.14), transparent 25%),
    var(--white);
}

.area-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.area-preview-card {
  position: relative;
  display: flex;
  min-height: 405px;
  overflow: hidden;
  flex-direction: column;
  padding: 30px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 25px;
  box-shadow: 0 12px 35px rgba(6, 43, 99, 0.05);
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms ease;
}

.area-preview-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.area-preview-card::after {
  position: absolute;
  right: -42px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(11, 95, 179, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.area-preview-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 33px;
}

.area-preview-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  color: var(--teal);
  background: var(--aqua);
  border-radius: 17px;
  place-items: center;
}

.area-preview-card__icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.area-preview-card__count {
  padding: 7px 11px;
  color: var(--teal);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.area-preview-card__kicker {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.area-preview-card h3 {
  margin-bottom: 13px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 400;
}

.area-preview-card > p:not(.area-preview-card__kicker) {
  margin-bottom: 21px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.area-preview-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 26px;
}

.area-preview-card__tags span {
  padding: 6px 9px;
  color: #526f94;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(11, 95, 179, 0.09);
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 800;
}

.area-preview-card__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.area-preview-card__link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 180ms var(--ease);
}

.area-preview-card__link:hover svg {
  transform: translateX(5px);
}

.area-preview-card--accent {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(118, 197, 246, 0.2), transparent 28%),
    var(--deep);
  border-color: rgba(255, 255, 255, 0.08);
}

.area-preview-card--accent::after {
  border-color: rgba(255, 255, 255, 0.13);
}

.area-preview-card--accent .area-preview-card__icon {
  color: var(--mint);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.area-preview-card--accent .area-preview-card__count {
  color: var(--mint);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.area-preview-card--accent .area-preview-card__kicker,
.area-preview-card--accent .area-preview-card__link {
  color: var(--mint);
}

.area-preview-card--accent h3 {
  color: var(--white);
}

.area-preview-card--accent > p:not(.area-preview-card__kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.area-preview-card--accent .area-preview-card__tags span {
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

.areas-hero {
  position: relative;
  min-height: 565px;
  overflow: hidden;
  background: #eaf4ff;
  isolation: isolate;
}

.areas-hero__media {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(245, 249, 255, 0.99) 0%,
      rgba(245, 249, 255, 0.96) 36%,
      rgba(245, 249, 255, 0.69) 58%,
      rgba(245, 249, 255, 0.08) 100%
    ),
    url("assets/images/hero-carpet-cleaning.jpg") center / cover no-repeat;
}

.areas-hero__inner {
  display: flex;
  min-height: inherit;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-block: 65px 72px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 39px;
  color: #607b9d;
  font-size: 0.73rem;
  font-weight: 700;
}

.breadcrumb a {
  transition: color 180ms ease;
}

.breadcrumb a:hover {
  color: var(--teal);
}

.breadcrumb span[aria-hidden="true"] {
  color: rgba(11, 95, 179, 0.35);
}

.areas-hero .eyebrow {
  margin-bottom: 16px;
}

.areas-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 6.5vw, 6.3rem);
  font-weight: 400;
  line-height: 0.95;
}

.areas-hero h1 em {
  display: block;
  color: var(--teal);
  font-weight: 400;
}

.areas-hero__lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: #486b94;
  font-size: 1.03rem;
  line-height: 1.8;
}

.areas-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.areas-hero__stats > div,
.areas-hero__stats > a {
  display: flex;
  min-width: 160px;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(6, 43, 99, 0.07);
  backdrop-filter: blur(10px);
}

.areas-hero__stats strong {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.areas-hero__stats span {
  max-width: 100px;
  color: #58779b;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.25;
}

.areas-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.areas-hero--bahcelievler .areas-hero__media {
  background:
    linear-gradient(
      90deg,
      rgba(245, 249, 255, 0.99) 0%,
      rgba(245, 249, 255, 0.95) 38%,
      rgba(245, 249, 255, 0.6) 61%,
      rgba(245, 249, 255, 0.08) 100%
    ),
    url("assets/images/service-stor-perde.jpg") center / cover no-repeat;
}

.areas-hero--bagcilar .areas-hero__media {
  background:
    linear-gradient(
      90deg,
      rgba(245, 249, 255, 0.99) 0%,
      rgba(245, 249, 255, 0.95) 38%,
      rgba(245, 249, 255, 0.58) 62%,
      rgba(245, 249, 255, 0.08) 100%
    ),
    url("assets/images/service-hali-yikama.jpg") center / cover no-repeat;
}

.areas-hero--kucukcekmece .areas-hero__media {
  background:
    linear-gradient(
      90deg,
      rgba(239, 248, 246, 0.99) 0%,
      rgba(239, 248, 246, 0.94) 39%,
      rgba(239, 248, 246, 0.55) 64%,
      rgba(239, 248, 246, 0.06) 100%
    ),
    url("assets/images/service-koltuk.jpg") center / cover no-repeat;
}

.areas-hero--esenler .areas-hero__media {
  background:
    linear-gradient(
      90deg,
      rgba(240, 247, 255, 0.99) 0%,
      rgba(240, 247, 255, 0.95) 39%,
      rgba(240, 247, 255, 0.57) 63%,
      rgba(240, 247, 255, 0.05) 100%
    ),
    url("assets/images/hero-carpet-cleaning-2.jpg") center / cover no-repeat;
}

.areas-hero--gungoren .areas-hero__media {
  background:
    linear-gradient(
      90deg,
      rgba(244, 248, 255, 0.99) 0%,
      rgba(244, 248, 255, 0.95) 38%,
      rgba(244, 248, 255, 0.57) 62%,
      rgba(244, 248, 255, 0.05) 100%
    ),
    url("assets/images/hero-carpet-cleaning-3.jpg") center / cover no-repeat;
}

.areas-hero--bakirkoy .areas-hero__media {
  background:
    linear-gradient(
      90deg,
      rgba(242, 248, 255, 0.99) 0%,
      rgba(242, 248, 255, 0.95) 38%,
      rgba(242, 248, 255, 0.54) 62%,
      rgba(242, 248, 255, 0.04) 100%
    ),
    url("assets/images/hero-carpet-cleaning-4.jpg") center / cover no-repeat;
}

.region-directory {
  background:
    radial-gradient(circle at 100% 0, rgba(110, 191, 243, 0.13), transparent 23%),
    var(--cream);
}

.region-directory--single {
  background:
    radial-gradient(circle at 2% 5%, rgba(110, 191, 243, 0.13), transparent 20%),
    var(--white);
}

.region-toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(310px, 0.55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 36px;
}

.region-toolbar .eyebrow {
  margin-bottom: 13px;
}

.region-toolbar h2,
.local-service-panel__copy h2 {
  margin: 0;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 4.4vw, 4.5rem);
  font-weight: 400;
}

.region-toolbar h2 em,
.local-service-panel__copy h2 em {
  color: var(--teal);
  font-weight: 400;
}

.area-search {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.area-search > span {
  color: var(--deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.area-search input {
  width: 100%;
  min-height: 54px;
  padding: 13px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(11, 95, 179, 0.16);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.area-search input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(11, 95, 179, 0.11);
}

.area-search input::placeholder {
  color: #8ca0b8;
}

.region-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.region-jump a {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  gap: 12px;
  padding: 9px 10px 9px 16px;
  color: var(--deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 7px 19px rgba(6, 43, 99, 0.04);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms var(--ease);
}

.region-jump a:hover {
  color: var(--teal);
  border-color: rgba(11, 95, 179, 0.26);
  transform: translateY(-2px);
}

.region-jump span {
  padding: 5px 8px;
  color: var(--teal);
  background: var(--aqua);
  border-radius: 8px;
  font-size: 0.63rem;
}

.region-block {
  scroll-margin-top: calc(var(--header-height) + 24px);
  margin-top: 26px;
  padding: clamp(30px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 95, 179, 0.1);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.region-block + .region-block {
  margin-top: 28px;
}

.region-block--accent {
  margin-top: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(118, 197, 246, 0.15), transparent 30%),
    var(--cream);
}

.region-block__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.region-block__title {
  display: flex;
  align-items: center;
  gap: 17px;
}

.region-block__icon {
  display: grid;
  width: 57px;
  height: 57px;
  flex: 0 0 auto;
  color: var(--teal);
  background: var(--aqua);
  border-radius: 18px;
  place-items: center;
}

.region-block__icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.region-block__title p {
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.region-block__title h2 {
  margin: 0;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  font-weight: 400;
}

.region-block__total {
  padding: 8px 13px;
  color: var(--teal);
  background: var(--aqua);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  white-space: nowrap;
}

.region-block__intro {
  max-width: 750px;
  margin: 24px 0 29px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.neighborhood-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.neighborhood-tag {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 76px;
  justify-content: center;
  flex-direction: column;
  padding: 13px 15px;
  color: var(--deep);
  background: var(--cream);
  border: 1px solid rgba(11, 95, 179, 0.09);
  border-radius: 14px;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms var(--ease),
    box-shadow 180ms ease;
}

.neighborhood-tag::after {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.neighborhood-tag:hover {
  color: var(--teal);
  background: var(--white);
  border-color: rgba(11, 95, 179, 0.24);
  box-shadow: 0 10px 24px rgba(6, 43, 99, 0.08);
  transform: translateY(-3px);
}

.neighborhood-tag:hover::after {
  opacity: 1;
}

.neighborhood-tag span {
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.22;
  text-overflow: ellipsis;
}

.neighborhood-tag small {
  margin-top: 4px;
  overflow: hidden;
  color: #748ba8;
  font-size: 0.61rem;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
}

.neighborhood-tag--home {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.neighborhood-tag--home small {
  color: rgba(255, 255, 255, 0.72);
}

.neighborhood-tag--home:hover {
  color: var(--white);
  background: var(--deep-2);
}

.neighborhood-tag.is-hidden {
  display: none;
}

.area-search-empty {
  margin: 28px 0 0;
  padding: 20px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px dashed rgba(11, 95, 179, 0.25);
  border-radius: 15px;
  text-align: center;
}

.area-search-empty[hidden] {
  display: none;
}

.yenibosna-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-top: 28px;
  padding: clamp(31px, 4vw, 50px);
  color: var(--white);
  background:
    radial-gradient(circle at 95% 15%, rgba(118, 197, 246, 0.18), transparent 25%),
    var(--deep);
  border-radius: 25px;
  box-shadow: var(--shadow-lg);
}

.yenibosna-promo .eyebrow {
  margin-bottom: 10px;
  color: var(--mint);
}

.yenibosna-promo h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
}

.yenibosna-promo p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.yenibosna-promo .button {
  flex: 0 0 auto;
}

.local-service-panel {
  display: grid;
  margin-top: 30px;
  padding: clamp(35px, 5vw, 62px);
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
  background: var(--aqua);
  border-radius: 28px;
}

.local-service-panel__copy h2 {
  margin-bottom: 19px;
}

.local-service-panel__copy > p:not(.eyebrow) {
  margin-bottom: 27px;
  color: var(--ink-soft);
}

.local-service-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.local-service-list li {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 95, 179, 0.09);
  border-radius: 13px;
  font-size: 0.78rem;
  font-weight: 850;
}

.local-service-list svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  padding: 3px;
  color: var(--white);
  fill: currentColor;
  background: var(--teal);
  border-radius: 50%;
}

.area-note {
  display: grid;
  margin-top: 22px;
  padding: 24px 27px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.area-note__icon {
  display: grid;
  width: 43px;
  height: 43px;
  color: var(--teal);
  background: var(--aqua);
  border-radius: 14px;
  place-items: center;
}

.area-note__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.area-note strong {
  color: var(--deep);
  font-size: 0.85rem;
}

.area-note p {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.area-note > a {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  white-space: nowrap;
}

.contact--inner {
  padding-top: 0;
}

/* İlçe bazlı ayrı sayfa yerleşimleri */

.district-hub .section-heading {
  margin-bottom: 44px;
}

.district-hub__grid .district-card--offset {
  transform: translateY(28px);
}

.district-hub__grid .district-card--offset:hover {
  transform: translateY(21px);
}

.district-directory {
  position: relative;
}

.district-layout--bagcilar {
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 4vw, 58px);
}

.district-summary {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 34px 4px 34px 0;
}

.district-summary__number {
  display: block;
  margin-bottom: -11px;
  color: rgba(11, 95, 179, 0.13);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 10vw, 9rem);
  line-height: 0.8;
}

.district-summary h2 {
  max-width: 300px;
  margin-bottom: 18px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 0.98;
}

.district-summary > p:not(.eyebrow) {
  max-width: 310px;
  margin-bottom: 25px;
  color: var(--ink-soft);
}

.region-block--bagcilar {
  margin-top: 0;
  padding: clamp(24px, 3vw, 38px);
}

.neighborhood-grid--bagcilar {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: bagcilar-neighborhood;
}

.neighborhood-grid--bagcilar .neighborhood-tag {
  min-height: 96px;
  align-items: flex-start;
  padding-left: 20px;
  counter-increment: bagcilar-neighborhood;
}

.neighborhood-grid--bagcilar .neighborhood-tag::before {
  margin-bottom: 8px;
  color: rgba(11, 95, 179, 0.46);
  content: counter(bagcilar-neighborhood, decimal-leading-zero);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.75rem;
}

.neighborhood-grid--bagcilar .neighborhood-tag--home::before {
  color: rgba(255, 255, 255, 0.62);
}

.district-cta {
  padding-top: 0;
  background: var(--cream);
}

.district-cta__inner {
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding: clamp(38px, 5vw, 65px);
  color: var(--white);
  background:
    radial-gradient(circle at 95% 10%, rgba(118, 197, 246, 0.18), transparent 27%),
    var(--deep);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.district-cta__inner h2 {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.4vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
}

.district-cta__inner h2 em {
  display: block;
  color: var(--mint);
  font-weight: 400;
}

.district-cta__actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
}

.district-directory--kucukcekmece {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 6%, rgba(11, 95, 179, 0.1), transparent 22%),
    var(--white);
}

.district-intro-band {
  position: relative;
  display: grid;
  overflow: hidden;
  margin-bottom: 28px;
  padding: clamp(30px, 4vw, 48px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: 60px;
  background: var(--aqua);
  border-radius: 28px 28px 8px 28px;
}

.district-intro-band h2 {
  margin: 0;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 4.7vw, 4.8rem);
  font-weight: 400;
}

.district-intro-band h2 em {
  color: var(--teal);
  font-weight: 400;
}

.district-intro-band > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
}

.district-intro-band__count {
  position: absolute;
  top: -42px;
  right: 20px;
  color: rgba(11, 95, 179, 0.07);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13rem;
  line-height: 1;
  pointer-events: none;
}

.neighborhood-grid--kucukcekmece {
  padding: clamp(22px, 3vw, 36px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px 28px 28px 28px;
}

.neighborhood-grid--kucukcekmece .neighborhood-tag {
  min-height: 94px;
  align-items: flex-start;
  padding-left: 20px;
  background: var(--white);
}

.neighborhood-grid--kucukcekmece .neighborhood-tag:nth-child(7n + 1) {
  grid-column: span 2;
  background: var(--aqua);
}

.neighborhood-grid--kucukcekmece .neighborhood-tag--home {
  background: var(--teal);
}

.district-service-strip {
  display: grid;
  margin-top: 24px;
  padding: 21px 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 16px;
  background: var(--deep);
  border-radius: 18px;
}

.district-service-strip p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
  font-weight: 800;
}

.district-service-strip p span {
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.district-service-strip .text-link {
  color: var(--white);
}

.region-block--bahcelievler {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(230, 242, 255, 0.84)),
    var(--cream);
}

.neighborhood-grid--bahcelievler {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
}

.neighborhood-grid--bahcelievler .neighborhood-tag {
  min-height: 94px;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
}

.neighborhood-grid--bahcelievler .neighborhood-tag:nth-child(1),
.neighborhood-grid--bahcelievler .neighborhood-tag:nth-child(6),
.neighborhood-grid--bahcelievler .neighborhood-tag:nth-child(10) {
  grid-column: span 2;
  min-height: 128px;
}

.neighborhood-grid--bahcelievler .neighborhood-tag:nth-child(6) {
  color: var(--white);
  background: var(--deep);
}

.neighborhood-grid--bahcelievler .neighborhood-tag:nth-child(6) small {
  color: rgba(255, 255, 255, 0.66);
}

/* İlçe mahalle tabloları */

.district-table-section {
  position: relative;
  background:
    radial-gradient(circle at 100% 0, rgba(110, 191, 243, 0.14), transparent 24%),
    var(--cream);
}

.district-table-layout {
  display: grid;
  grid-template-columns: minmax(245px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(32px, 5vw, 70px);
}

.district-table-intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding-top: 23px;
}

.district-table-intro__number {
  display: block;
  margin-bottom: -8px;
  color: rgba(11, 95, 179, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 10vw, 9rem);
  line-height: 0.8;
}

.district-table-intro h2,
.district-table-heading h2,
.district-table-editorial h2 {
  margin: 0;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 0.98;
}

.district-table-intro > p:not(.eyebrow) {
  max-width: 320px;
  margin: 20px 0 27px;
  color: var(--ink-soft);
}

.neighborhood-table-wrap {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 95, 179, 0.11);
  border-radius: 25px;
  box-shadow: var(--shadow-md);
}

.neighborhood-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink);
}

.neighborhood-table caption {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.neighborhood-table th,
.neighborhood-table td {
  padding: 17px 22px;
  border-bottom: 1px solid rgba(11, 95, 179, 0.09);
  text-align: left;
}

.neighborhood-table thead {
  color: var(--white);
  background: var(--deep);
}

.neighborhood-table thead th {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.neighborhood-table thead th:first-child,
.neighborhood-table tbody td:first-child {
  width: 82px;
  text-align: center;
}

.neighborhood-table tbody td:first-child {
  color: rgba(11, 95, 179, 0.48);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
}

.neighborhood-table tbody th {
  color: var(--deep);
  font-size: 0.86rem;
  font-weight: 850;
}

.neighborhood-table tbody td:last-child,
.neighborhood-table thead th:last-child {
  width: 170px;
  text-align: right;
}

.neighborhood-table tbody tr:last-child > * {
  border-bottom: 0;
}

.neighborhood-table tbody tr {
  transition: background 180ms ease;
}

.neighborhood-table tbody tr:hover {
  background: var(--aqua);
}

.neighborhood-table tbody a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  color: var(--teal);
  background: var(--aqua);
  border: 1px solid rgba(11, 95, 179, 0.1);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms var(--ease);
}

.neighborhood-table tbody a:hover {
  color: var(--white);
  background: var(--teal);
  transform: translateY(-2px);
}

.district-table-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 34px;
  padding: 0 5px;
}

.district-table-heading h2 em,
.district-table-editorial h2 em {
  color: var(--teal);
  font-weight: 400;
}

.district-table-heading__note {
  display: flex;
  min-width: 205px;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  color: var(--white);
  background: var(--teal);
  border-radius: 16px;
}

.district-table-heading__note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.district-table-heading__note span {
  max-width: 90px;
  font-size: 0.66rem;
  font-weight: 850;
  line-height: 1.3;
}

.district-table-section--band {
  background:
    linear-gradient(180deg, var(--aqua) 0 245px, var(--white) 245px 100%);
}

.neighborhood-table--compact tbody tr:nth-child(even) {
  background: rgba(230, 242, 255, 0.58);
}

.district-table-back {
  margin: 25px 4px 0;
}

.district-table-editorial {
  display: grid;
  max-width: 1080px;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.54fr);
  gap: 70px;
  margin-bottom: 38px;
}

.district-table-editorial__label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  color: #275a91;
  background: #e5f0fb;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.district-table-editorial > p {
  margin: 0;
  padding-left: 24px;
  color: var(--ink-soft);
  border-left: 2px solid #76a8d7;
}

.district-page--bakirkoy .district-table-section {
  background:
    radial-gradient(circle at 8% 3%, rgba(92, 151, 207, 0.14), transparent 24%),
    #f3f7fd;
}

.district-page--bakirkoy .neighborhood-table thead {
  background: #123b70;
}

.neighborhood-table--striped tbody tr:nth-child(odd) {
  background: rgba(229, 240, 251, 0.45);
}

.district-page--bakirkoy .neighborhood-table tbody a {
  color: #214d79;
  background: #e5f0fb;
  border-color: rgba(39, 90, 145, 0.12);
}

.district-page--bakirkoy .neighborhood-table tbody a:hover {
  color: var(--white);
  background: #275a91;
}

.district-cta--esenler .district-cta__inner {
  background:
    radial-gradient(circle at 94% 12%, rgba(119, 204, 250, 0.2), transparent 28%),
    #084f9a;
}

.district-cta--gungoren .district-cta__inner {
  background: linear-gradient(120deg, #062b63, #176fc1);
}

.district-cta--bakirkoy .district-cta__inner {
  background:
    radial-gradient(circle at 94% 15%, rgba(115, 175, 226, 0.2), transparent 28%),
    #123b70;
}

@media (max-width: 980px) {
  .district-hub__grid .district-card--offset,
  .district-hub__grid .district-card--offset:hover {
    transform: none;
  }

  .district-layout--bagcilar {
    grid-template-columns: 1fr;
  }

  .district-summary {
    position: static;
    display: grid;
    padding: 0;
    grid-template-columns: auto 1fr;
    align-items: end;
    column-gap: 25px;
  }

  .district-summary__number {
    margin: 0;
    grid-row: 1 / 4;
  }

  .district-summary h2,
  .district-summary > p:not(.eyebrow) {
    max-width: none;
  }

  .neighborhood-grid--kucukcekmece {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .district-service-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .district-service-strip .text-link {
    grid-column: 1 / -1;
  }

  .district-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .district-cta__actions {
    flex-direction: row;
  }
}

@media (max-width: 760px) {
  .areas-hero--bagcilar .areas-hero__media,
  .areas-hero--kucukcekmece .areas-hero__media,
  .areas-hero--bahcelievler .areas-hero__media {
    background:
      linear-gradient(180deg, rgba(245, 249, 255, 0.98) 0%, rgba(245, 249, 255, 0.93) 54%, rgba(245, 249, 255, 0.55) 78%, rgba(6, 43, 99, 0.12) 100%),
      url("assets/images/hero-carpet-cleaning.jpg") 68% center / cover no-repeat;
  }

  .district-intro-band {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .neighborhood-grid--bagcilar,
  .neighborhood-grid--kucukcekmece,
  .neighborhood-grid--bahcelievler {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .neighborhood-grid--kucukcekmece .neighborhood-tag:nth-child(7n + 1),
  .neighborhood-grid--bahcelievler .neighborhood-tag:nth-child(1),
  .neighborhood-grid--bahcelievler .neighborhood-tag:nth-child(6),
  .neighborhood-grid--bahcelievler .neighborhood-tag:nth-child(10) {
    grid-column: auto;
    min-height: 88px;
  }

  .district-service-strip {
    grid-template-columns: 1fr;
  }

  .district-service-strip .text-link {
    grid-column: auto;
  }

  .district-cta__actions {
    width: 100%;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .district-summary {
    display: block;
  }

  .district-summary__number {
    margin-bottom: -6px;
  }

  .neighborhood-grid--bagcilar .neighborhood-tag,
  .neighborhood-grid--kucukcekmece .neighborhood-tag,
  .neighborhood-grid--bahcelievler .neighborhood-tag {
    min-height: 82px;
    padding: 13px;
  }

  .district-intro-band {
    padding: 28px 22px;
  }

  .district-intro-band__count {
    font-size: 9rem;
  }

  .district-cta__inner {
    min-height: 0;
    padding: 34px 22px;
  }
}

@media (max-width: 1120px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.82rem;
  }

  .header-actions .button--soft {
    display: none;
  }

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

  .service-card__body {
    min-height: 205px;
  }

  .care__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
    gap: 58px;
  }

  .contact-card {
    gap: 45px;
  }

  .site-footer__main {
    grid-template-columns: 1.25fr 0.75fr 0.9fr;
  }

  .footer-column--contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 88px;
  }

  .section {
    padding-block: 90px;
  }

  .topbar {
    display: none;
  }

  .site-header,
  .site-header.is-scrolled {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.menu-open .site-header,
  body.menu-open .site-header.is-scrolled {
    background: var(--white);
  }

  .site-header .nav-wrap {
    justify-content: flex-end;
  }

  .site-header .brand--image {
    display: none;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .site-header .brand--image {
    width: min(250px, calc(100vw - 96px));
    height: 78px;
  }

  .brand__mark {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .brand__mark svg {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero__content {
    width: min(620px, 70%);
  }

  .hero__veil {
    background:
      linear-gradient(
        90deg,
        rgba(245, 249, 255, 0.98) 0%,
        rgba(245, 249, 255, 0.92) 42%,
        rgba(245, 249, 255, 0.54) 70%,
        rgba(245, 249, 255, 0.12) 100%
      ),
      linear-gradient(0deg, rgba(6, 43, 99, 0.13), transparent 45%);
  }

  .section-heading {
    gap: 36px;
  }

  .care__grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 50px;
  }

  .care__badge {
    right: -18px;
    bottom: 35px;
    min-width: 190px;
  }

  .process-list li {
    padding-inline: 12px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-card__copy {
    max-width: 720px;
  }

  .contact-card__details {
    display: grid;
    padding: 30px 0 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .contact-detail {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding-block: 76px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__media {
    top: 0;
    height: auto;
    transform: scale(1.01);
  }

  .hero__slide {
    background-position: right center;
  }

  .hero__slide:nth-child(2) {
    background-position: right center;
  }

  .hero__slide:nth-child(3) {
    background-position: right center;
  }

  .hero__slide:nth-child(4) {
    background-position: right center;
  }

  .hero__slide:nth-child(5) {
    background-position: right center;
  }

  .hero__veil {
    background: linear-gradient(180deg, rgba(6, 43, 99, 0.03), rgba(6, 43, 99, 0.1));
  }

  .hero__inner {
    align-items: flex-start;
    width: 100%;
    min-height: 100svh;
    padding: 64px 28px 34px;
  }

  .hero__content {
    min-width: 0;
    width: 100%;
    min-height: calc(100svh - 98px);
    padding: 16px clamp(22px, 5vw, 32px) 26px;
    background: linear-gradient(
      180deg,
      rgba(248, 251, 255, 0.5) 0%,
      rgba(240, 247, 255, 0.08) 30%,
      rgba(240, 247, 255, 0.02) 58%,
      rgba(238, 246, 255, 0.7) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 34px;
    box-shadow: 0 24px 60px rgba(6, 43, 99, 0.2);
    backdrop-filter: none;
  }

  .hero h1 {
    max-width: 560px;
    margin-bottom: 22px;
    font-size: clamp(3.4rem, 14vw, 4.8rem);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
  }

  .hero__brand {
    width: 100%;
    height: 152px;
    margin: 0;
    padding: 36px 10px 8px;
    border-radius: 22px;
  }

  .hero__brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 43%;
  }

  .hero__brand-rating {
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 18px;
    color: var(--deep);
    font-size: clamp(0.76rem, 2.7vw, 0.95rem);
    font-weight: 750;
    letter-spacing: -0.02em;
  }

  .hero__brand-rating i {
    margin-inline: 4px;
    font-style: normal;
    opacity: 0.42;
  }

  .hero__lead {
    max-width: 520px;
    margin-bottom: 20px;
    color: #315a86;
    font-size: clamp(0.96rem, 3.4vw, 1.08rem);
    line-height: 1.75;
  }

  .hero__services {
    display: grid;
    width: 100%;
    gap: 7px;
    margin-top: auto;
    margin-bottom: 25px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero__services span {
    display: flex;
    min-width: 0;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 7px 3px 6px;
    color: var(--deep);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(6, 43, 99, 0.32);
    border-radius: 15px;
    text-align: center;
  }

  .hero__services svg {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--teal);
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .hero__services b {
    min-width: 0;
    font-size: clamp(0.58rem, 1.9vw, 0.72rem);
    font-weight: 800;
    line-height: 1.15;
  }

  .hero__actions {
    display: grid;
    width: 100%;
    gap: 10px;
    margin-top: 0;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .hero__actions .button {
    min-width: 0;
    gap: 7px;
    padding-inline: 9px;
    font-size: clamp(0.72rem, 2.45vw, 0.88rem);
  }

  .hero__actions .button__icon {
    width: 29px;
    height: 29px;
  }

  .hero__reassurance {
    margin-top: 22px;
    gap: 10px 16px;
  }

  .hero__reassurance svg {
    background: var(--whatsapp);
  }

  .hero__scroll {
    color: rgba(255, 255, 255, 0.86);
  }

  .hero__scroll i {
    border-color: rgba(255, 255, 255, 0.62);
  }

  .hero__scroll i::after {
    background: var(--white);
  }

  .section-heading {
    display: flex;
    align-items: flex-start;
    margin-bottom: 38px;
    flex-direction: column;
    gap: 20px;
  }

  .section-heading h2,
  .care__content h2,
  .contact-card h2 {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
  }

  .section-heading > p {
    max-width: 600px;
  }

  .services-grid {
    gap: 16px;
  }

  .care__grid {
    grid-template-columns: 1fr;
  }

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

  .care__image {
    aspect-ratio: 4 / 3.65;
  }

  .care__content {
    padding-top: 15px;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 12px;
  }

  .process-list::before {
    display: none;
  }

  .contact-card {
    padding: 40px 28px;
    border-radius: 26px;
  }

  .contact-card__details {
    grid-template-columns: 1fr;
  }

  .contact-detail {
    align-items: center;
    flex-direction: row;
  }

  .site-footer__main {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 44px 35px;
  }

  .footer-column--contact {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .site-header .brand--image {
    width: min(250px, calc(100vw - 96px));
    height: 78px;
  }

  .brand__copy strong {
    font-size: 0.94rem;
  }

  .brand__copy small {
    font-size: 0.59rem;
  }

  .mobile-menu__actions {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 755px;
  }

  .hero__inner {
    padding-top: 52px;
  }

  .hero__content {
    min-height: calc(100svh - 86px);
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 0.66rem;
    letter-spacing: 0.13em;
  }

  .hero h1 {
    margin-bottom: 21px;
  }

  .hero__lead {
    margin-bottom: 25px;
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .hero__actions {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .hero__actions .button {
    min-width: 0;
    gap: 6px;
    padding-inline: 8px;
    font-size: clamp(0.68rem, 2.8vw, 0.8rem);
  }

  .hero__reassurance {
    display: grid;
    margin-top: 22px;
    grid-template-columns: 1fr 1fr;
    font-size: 0.7rem;
  }

  .hero__reassurance span:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero__scroll span {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card__body {
    min-height: 0;
  }

  .care__visual {
    width: calc(100% - 12px);
    margin-left: 0;
  }

  .care__badge {
    right: -13px;
    bottom: 23px;
    min-width: 178px;
    padding: 13px 15px;
  }

  .care__badge > span {
    width: 36px;
    height: 36px;
  }

  .process-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }

  .process-list li {
    display: grid;
    padding-inline: 5px;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 18px;
    text-align: left;
  }

  .process-list__icon {
    width: 68px;
    height: 68px;
    margin: 0;
    grid-row: 1 / 3;
    border-radius: 21px;
  }

  .process-list__icon svg {
    width: 29px;
    height: 29px;
  }

  .process-list__number {
    top: -8px;
    left: 51px;
  }

  .process-list h3 {
    align-self: end;
    margin-bottom: 5px;
  }

  .process-list p {
    align-self: start;
  }

  .contact {
    padding-bottom: 65px;
  }

  .contact-card {
    margin-inline: -3px;
    padding: 36px 22px;
  }

  .contact-card__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-card__actions .button {
    width: 100%;
  }

  .contact-card__details {
    padding-top: 24px;
  }

  .contact-detail {
    padding: 12px 2px;
  }

  .site-footer__main {
    padding-block: 64px 44px;
    grid-template-columns: 1fr 1fr;
    gap: 45px 26px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .brand--footer-image {
    width: 260px;
    height: 100px;
  }

  .footer-column--contact {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    min-height: 92px;
    align-items: flex-start;
    justify-content: center;
    padding-block: 22px;
    flex-direction: column;
    gap: 5px;
  }

  .floating-actions {
    right: 15px;
    bottom: max(15px, env(safe-area-inset-bottom));
    gap: 8px;
  }

  .floating-action {
    width: 53px;
    height: 53px;
    border-width: 2px;
  }

  .floating-action--call {
    width: 53px;
    height: 53px;
  }

  .floating-action__tooltip {
    display: none;
  }
}

@media (max-width: 1120px) {
  .neighborhood-grid,
  .neighborhood-grid--five {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .local-service-panel {
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  }
}

@media (max-width: 980px) {
  .area-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .area-preview-card--accent {
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .areas-hero {
    min-height: 530px;
  }

  .areas-hero__inner {
    padding-block: 55px 65px;
  }

  .region-toolbar {
    grid-template-columns: 1fr minmax(280px, 0.55fr);
    gap: 38px;
  }

  .neighborhood-grid,
  .neighborhood-grid--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .local-service-panel {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

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

  .area-preview-card,
  .area-preview-card--accent {
    min-height: 350px;
    grid-column: auto;
  }

  .areas-hero {
    min-height: 590px;
  }

  .areas-hero__media,
  .areas-hero--bahcelievler .areas-hero__media {
    background:
      linear-gradient(180deg, rgba(245, 249, 255, 0.98) 0%, rgba(245, 249, 255, 0.93) 54%, rgba(245, 249, 255, 0.55) 78%, rgba(6, 43, 99, 0.12) 100%),
      url("assets/images/hero-carpet-cleaning.jpg") 68% center / cover no-repeat;
  }

  .areas-hero__inner {
    justify-content: flex-start;
    padding-block: 42px 62px;
  }

  .breadcrumb {
    margin-bottom: 29px;
  }

  .areas-hero h1 {
    font-size: clamp(3.35rem, 14vw, 5rem);
  }

  .areas-hero__lead {
    max-width: 560px;
    font-size: 0.96rem;
  }

  .region-toolbar {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .area-search {
    max-width: none;
  }

  .region-jump {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .region-jump a:last-child {
    grid-column: 1 / -1;
  }

  .region-block {
    border-radius: 22px;
  }

  .neighborhood-grid,
  .neighborhood-grid--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yenibosna-promo {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .local-service-list {
    grid-template-columns: 1fr 1fr;
  }

  .area-note {
    grid-template-columns: auto 1fr;
  }

  .area-note > a {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .area-preview-card,
  .area-preview-card--accent {
    min-height: 0;
    padding: 25px 22px;
  }

  .area-preview-card__top {
    margin-bottom: 27px;
  }

  .areas-hero {
    min-height: 620px;
  }

  .areas-hero__stats {
    display: grid;
    width: 100%;
    max-width: 380px;
    grid-template-columns: 1fr 1fr;
  }

  .areas-hero__stats > div,
  .areas-hero__stats > a {
    min-width: 0;
  }

  .areas-hero__stats > a:last-child {
    grid-column: 1 / -1;
  }

  .areas-hero__actions {
    display: grid;
    width: min(100%, 390px);
    grid-template-columns: 1fr;
  }

  .region-toolbar h2,
  .local-service-panel__copy h2 {
    font-size: clamp(2.45rem, 11vw, 3.3rem);
  }

  .region-block {
    padding: 23px 18px;
  }

  .region-block__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .region-block__title {
    align-items: flex-start;
  }

  .region-block__icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .region-block__title h2 {
    font-size: 1.78rem;
  }

  .region-block__total {
    margin-left: 65px;
  }

  .neighborhood-tag {
    min-height: 72px;
    padding: 11px 12px;
  }

  .neighborhood-tag span {
    font-size: 0.75rem;
  }

  .yenibosna-promo {
    padding: 30px 22px;
  }

  .yenibosna-promo .button {
    width: 100%;
  }

  .local-service-panel {
    padding: 32px 21px;
  }

  .local-service-list {
    grid-template-columns: 1fr;
  }

  .area-note {
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .area-note > a {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .district-table-layout {
    grid-template-columns: 1fr;
  }

  .district-table-intro {
    position: static;
    display: grid;
    padding-top: 0;
    grid-template-columns: auto 1fr;
    column-gap: 25px;
  }

  .district-table-intro__number {
    grid-row: 1 / 5;
  }

  .district-table-editorial {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .district-table-editorial > p {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .district-table-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .district-table-heading__note {
    min-width: 0;
  }

  .district-table-intro {
    display: block;
  }

  .district-table-intro__number {
    margin-bottom: -5px;
  }

  .district-table-intro h2,
  .district-table-heading h2,
  .district-table-editorial h2 {
    font-size: clamp(2.45rem, 11.5vw, 3.5rem);
  }

  .neighborhood-table-wrap {
    border-radius: 19px;
  }

  .neighborhood-table th,
  .neighborhood-table td {
    padding: 14px 15px;
  }

  .areas-hero--esenler .areas-hero__media {
    background:
      linear-gradient(180deg, rgba(240, 247, 255, 0.98) 0%, rgba(240, 247, 255, 0.93) 55%, rgba(240, 247, 255, 0.56) 78%, rgba(6, 43, 99, 0.13) 100%),
      url("assets/images/hero-carpet-cleaning-2.jpg") 72% center / cover no-repeat;
  }

  .areas-hero--gungoren .areas-hero__media {
    background:
      linear-gradient(180deg, rgba(244, 248, 255, 0.98) 0%, rgba(244, 248, 255, 0.93) 55%, rgba(244, 248, 255, 0.55) 78%, rgba(6, 43, 99, 0.13) 100%),
      url("assets/images/hero-carpet-cleaning-3.jpg") 78% center / cover no-repeat;
  }

  .areas-hero--bakirkoy .areas-hero__media {
    background:
      linear-gradient(180deg, rgba(242, 248, 255, 0.98) 0%, rgba(242, 248, 255, 0.93) 55%, rgba(242, 248, 255, 0.55) 78%, rgba(6, 43, 99, 0.13) 100%),
      url("assets/images/hero-carpet-cleaning-4.jpg") 70% center / cover no-repeat;
  }
}

@media (max-width: 560px) {
  .nav-wrap {
    gap: 12px;
  }

  .site-header .brand--image {
    width: min(250px, calc(100vw - 96px));
    height: 78px;
  }

  .menu-toggle {
    flex: 0 0 58px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 12vw, 3.8rem);
    letter-spacing: -0.045em;
  }

  .areas-hero h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 12vw, 3.8rem);
    overflow-wrap: anywhere;
  }

  .areas-hero--hub .areas-hero__stats > a:last-child {
    grid-column: auto;
  }

  .neighborhood-table thead th:first-child,
  .neighborhood-table tbody td:first-child {
    display: none;
  }

  .neighborhood-table tbody td:last-child,
  .neighborhood-table thead th:last-child {
    width: 116px;
  }

  .neighborhood-table tbody th {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .neighborhood-table tbody a {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.62rem;
  }

  .district-table-editorial > p {
    padding-left: 16px;
  }
}

@media (max-width: 420px) {
  .hero__inner {
    padding-inline: 12px;
  }

  .hero__content {
    padding: 16px 18px 24px;
    border-radius: 28px;
  }

  .eyebrow {
    gap: 8px;
    font-size: 0.58rem;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12.8vw, 3.35rem);
    letter-spacing: -0.055em;
  }

  .hero__brand {
    height: 138px;
  }

  .hero__services {
    gap: 5px;
  }

  .hero__services span {
    min-height: 60px;
    padding-inline: 2px;
    border-radius: 13px;
  }

  .hero__services svg {
    width: 22px;
    height: 22px;
  }

  .hero__services b {
    font-size: clamp(0.52rem, 2.4vw, 0.62rem);
  }

  .hero__actions {
    gap: 7px;
  }

  .hero__actions .button {
    gap: 5px;
    min-height: 64px;
    padding-inline: 6px;
    font-size: clamp(0.64rem, 2.8vw, 0.74rem);
  }

  .hero__actions .button__icon {
    width: 27px;
    height: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* District hero slideshow alignment with index mobile hero */
.areas-hero--slideshow {
  isolation: isolate;
  background: #eaf4ff;
}

.areas-hero--slideshow .areas-hero__media {
  z-index: 0;
  overflow: hidden;
  background: none;
  transform: scale(1.01);
}

.areas-hero--slideshow::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(245, 249, 255, 0.98) 0%,
    rgba(245, 249, 255, 0.95) 28%,
    rgba(245, 249, 255, 0.74) 48%,
    rgba(245, 249, 255, 0.14) 70%,
    rgba(245, 249, 255, 0) 100%
  );
}

.areas-hero--slideshow .areas-hero__inner {
  position: relative;
  z-index: 2;
}

.district-hero__brand {
  display: none;
}

@media (max-width: 760px) {
  .district-page .areas-hero--slideshow {
    min-height: 100svh;
    background: #dfeeff;
  }

  .district-page .areas-hero--slideshow .areas-hero__media,
  .district-page .areas-hero--slideshow.areas-hero--bagcilar .areas-hero__media,
  .district-page .areas-hero--slideshow.areas-hero--kucukcekmece .areas-hero__media,
  .district-page .areas-hero--slideshow.areas-hero--bahcelievler .areas-hero__media,
  .district-page .areas-hero--slideshow.areas-hero--esenler .areas-hero__media,
  .district-page .areas-hero--slideshow.areas-hero--gungoren .areas-hero__media,
  .district-page .areas-hero--slideshow.areas-hero--bakirkoy .areas-hero__media {
    top: 0;
    height: auto;
    background: none;
    transform: scale(1.01);
  }

  .district-page .areas-hero--slideshow .hero__slide,
  .district-page .areas-hero--slideshow .hero__slide:nth-child(2),
  .district-page .areas-hero--slideshow .hero__slide:nth-child(3),
  .district-page .areas-hero--slideshow .hero__slide:nth-child(4),
  .district-page .areas-hero--slideshow .hero__slide:nth-child(5) {
    background-position: right center;
  }

  .district-page .areas-hero--slideshow::after {
    background: linear-gradient(180deg, rgba(6, 43, 99, 0.03), rgba(6, 43, 99, 0.1));
  }

  .district-page .areas-hero--slideshow .areas-hero__inner {
    width: calc(100% - 56px);
    min-height: calc(100svh - 98px);
    margin: 64px auto 34px;
    padding: 16px clamp(22px, 5vw, 32px) 26px;
    align-items: stretch;
    justify-content: flex-start;
    background: linear-gradient(
      180deg,
      rgba(248, 251, 255, 0.5) 0%,
      rgba(240, 247, 255, 0.08) 30%,
      rgba(240, 247, 255, 0.02) 58%,
      rgba(238, 246, 255, 0.7) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 34px;
    box-shadow: 0 24px 60px rgba(6, 43, 99, 0.2);
  }

  .district-page .areas-hero--slideshow .breadcrumb {
    display: none;
  }

  .district-hero__brand {
    position: relative;
    display: flex;
    width: 100%;
    height: 152px;
    margin: 0 0 20px;
    padding: 36px 10px 8px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 22px;
  }

  .district-hero__brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 43%;
  }

  .district-hero__brand-rating {
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 18px;
    color: var(--deep);
    font-size: clamp(0.76rem, 2.7vw, 0.95rem);
    font-weight: 750;
    letter-spacing: -0.02em;
  }

  .district-hero__brand-rating i {
    margin-inline: 4px;
    font-style: normal;
    opacity: 0.42;
  }

  .district-page .areas-hero--slideshow .eyebrow {
    margin-bottom: 12px;
  }

  .district-page .areas-hero--slideshow h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 10vw, 3.45rem);
    line-height: 0.98;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
  }

  .district-page .areas-hero--slideshow .areas-hero__lead {
    margin-bottom: 20px;
    color: #315a86;
    font-size: clamp(0.92rem, 3.3vw, 1.04rem);
    line-height: 1.65;
  }

  .district-page .areas-hero--slideshow .areas-hero__actions {
    display: grid;
    width: 100%;
    gap: 10px;
    margin-top: auto;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .district-page .areas-hero--slideshow .areas-hero__actions .button {
    min-width: 0;
    gap: 7px;
    padding-inline: 9px;
    font-size: clamp(0.72rem, 2.45vw, 0.88rem);
  }

  .district-page .areas-hero--slideshow .areas-hero__actions .button__icon {
    width: 29px;
    height: 29px;
  }
}

@media (max-width: 560px) {
  .district-page .areas-hero--slideshow .areas-hero__inner {
    width: calc(100% - 28px);
    min-height: calc(100svh - 54px);
    margin: 26px auto 28px;
    padding: 14px 18px 22px;
    border-radius: 28px;
  }

  .district-hero__brand {
    height: 138px;
    margin-bottom: 16px;
    padding: 34px 7px 6px;
  }

  .district-page .areas-hero--slideshow h1 {
    font-size: clamp(2.15rem, 10.8vw, 3rem);
  }

  .district-page .areas-hero--slideshow .areas-hero__actions {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }
}

@media (max-width: 420px) {
  .district-page .areas-hero--slideshow .areas-hero__inner {
    width: calc(100% - 20px);
    padding: 12px 14px 18px;
  }

  .district-hero__brand {
    height: 126px;
  }

  .district-page .areas-hero--slideshow h1 {
    font-size: clamp(2rem, 10.4vw, 2.65rem);
  }

  .district-page .areas-hero--slideshow .areas-hero__actions .button {
    min-height: 50px;
    padding-inline: 7px;
    font-size: 0.72rem;
  }
}


/* Mobile district page and sticky contact bar refinements */
.floating-actions {
  display: none !important;
}

.sticky-contact-bar {
  display: none;
}

body.menu-open .sticky-contact-bar {
  opacity: 0;
  pointer-events: none;
}

.district-hero__headline {
  display: inline-flex;
  margin-top: auto;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(6, 43, 99, 0.16);
  backdrop-filter: blur(14px);
}

.district-hero__headline h1 {
  margin: 0;
}

.district-hero__services {
  display: grid;
  width: 100%;
  gap: 10px;
  margin-top: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.district-hero__services span {
  display: flex;
  min-width: 0;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 8px 4px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(6, 43, 99, 0.16);
  border-radius: 17px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(6, 43, 99, 0.08);
  backdrop-filter: blur(12px);
}

.district-hero__services svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.district-hero__services b {
  min-width: 0;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.18;
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(98px + env(safe-area-inset-bottom));
  }

  .hero__actions,
  .areas-hero__actions,
  .mobile-menu__actions {
    display: none !important;
  }

  .sticky-contact-bar {
    position: fixed;
    z-index: 170;
    left: 50%;
    bottom: calc(12px + env(safe-area-inset-bottom));
    display: grid;
    width: min(calc(100% - 24px), 560px);
    padding: 8px;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(6, 43, 99, 0.18);
    backdrop-filter: blur(16px);
    transform: translateX(-50%);
  }

  .sticky-contact-bar .button {
    justify-content: center;
    min-height: 58px;
    padding-inline: 10px;
    border-radius: 18px;
    font-size: 0.88rem;
    font-weight: 800;
    box-shadow: none;
  }

  .sticky-contact-bar .button__icon {
    width: 30px;
    height: 30px;
  }

  .district-page .areas-hero--slideshow .areas-hero__inner {
    justify-content: flex-start;
    padding-bottom: 26px;
  }

  .district-page .areas-hero--slideshow .district-hero__headline {
    margin-top: auto;
  }

  .district-page .areas-hero--slideshow h1 {
    font-size: clamp(1.6rem, 7vw, 2.3rem);
    line-height: 1.05;
    text-shadow: none;
  }
}

@media (max-width: 560px) {
  .district-hero__headline {
    padding: 13px 16px;
    border-radius: 20px;
  }

  .district-hero__services {
    gap: 8px;
    margin-top: 12px;
  }

  .district-hero__services span {
    min-height: 64px;
    padding: 7px 4px;
    border-radius: 15px;
  }

  .district-hero__services b {
    font-size: 0.62rem;
  }

  .sticky-contact-bar {
    width: min(calc(100% - 18px), 560px);
    bottom: calc(10px + env(safe-area-inset-bottom));
    padding: 7px;
    gap: 8px;
  }

  .sticky-contact-bar .button {
    min-height: 54px;
    gap: 7px;
    padding-inline: 8px;
    font-size: 0.78rem;
  }

  .sticky-contact-bar .button__icon {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 761px) {
  .district-hero__services {
    max-width: 560px;
  }
}
