/* =========================================================
   Nilüfer Halı Yıkama — Kurumsal tek sayfa stilleri
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --color-bg: #ffffff;
  --color-ink: #0b0b0c;
  --color-ink-2: #1f2937;
  --color-muted: #6b7280;
  --color-muted-2: #9ca3af;
  --color-line: #e5e7eb;
  --color-line-2: #1f2937;
  --color-dark: #0a0a0a;
  --color-dark-2: #030712;
  --color-accent: #111827;
  --color-card: #ffffff;

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px -4px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px -20px rgba(0, 0, 0, 0.18);

  --container: 72rem;
  --container-wide: 80rem;

  --side-pad: 1.25rem;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin: 0;
}

button,
input {
  font: inherit;
}

/* ---------- Liquid Glass ---------- */
.liquid-glass {
  background: rgba(0, 0, 0, 0.4);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.1) 80%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.7);
}

.section-title {
  font-size: clamp(1.625rem, 3.2vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--color-ink);
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.section-title--light {
  color: #fff;
}

.section-lead {
  margin-top: 1rem;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 42rem;
  overflow-wrap: break-word;
}

.section-lead--light {
  color: rgba(255, 255, 255, 0.75);
}

.section-head {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 44rem;
}

.section-head .eyebrow {
  margin-bottom: 0.75rem;
}

.section-head .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease), transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  text-align: center;
}

.btn i {
  font-size: 0.95em;
}

.btn--sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.8125rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--light {
  background: #fff;
  color: #000;
}

.btn--light:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn--dark:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn--outline:hover {
  background: var(--color-accent);
  color: #fff;
}

.btn--ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
  background: #fff;
  color: #000;
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: #000;
  color: #fff;
  overflow: hidden;
  width: 100%;
}

/* Slider kapsayıcı */
.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s var(--ease), visibility 0s linear 1.2s;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.2s var(--ease), visibility 0s linear 0s;
  z-index: 1;
}

.hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center;
}

/* Görsel slaytlara hafif Ken Burns animasyonu */
.hero__slide[data-slide-type='image'].is-active .hero__media {
  animation: heroKenBurns 12s ease-in-out forwards;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.02) translate(0, 0);
  }
  100% {
    transform: scale(1.12) translate(-1.5%, -1.5%);
  }
}

/* Slider oklarını */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 15;
  transition: background-color 0.2s var(--ease),
    border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.hero__arrow:hover {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero__arrow--prev {
  left: 1.25rem;
}

.hero__arrow--next {
  right: 1.25rem;
}

/* Dot navigasyon */
.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 8rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 12;
}

.hero__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), width 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.hero__dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero__dot.is-active {
  background: #fff;
  border-color: #fff;
  width: 1.5rem;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.45) 35%,
    rgba(0, 0, 0, 0.55) 65%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
}

/* Nav */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem var(--side-pad) 0;
  z-index: 20;
}

.nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-md);
  position: relative;
  /* liquid-glass overflow:hidden ile gelen kırpmayı pasifleştir;
     mobil menü dropdown'unun bar dışına taşması için gerekli. */
  overflow: visible;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex: 0 0 140px;
}

.nav__logo {
  display: block;
  height: 34px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  transform: scale(1.2);
  transform-origin: left center;
  transition: transform 0.25s var(--ease);
}

.nav__brand:hover .nav__logo {
  transform: scale(1.25);
}

.nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.875rem;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  padding: 0.6rem;
  border-radius: var(--radius-md);
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease),
    visibility 0s linear 0.2s;
}

.nav.is-open .nav__links {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease),
    visibility 0s linear 0s;
}

.nav__links a {
  color: #fff;
  transition: color 0.2s var(--ease);
  white-space: nowrap;
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 0.45rem;
}

.nav__links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav__toggle {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  flex-shrink: 0;
}

.nav__bar > .btn {
  display: none;
}

/* Hero content */
.hero__content {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem var(--side-pad) 9rem;
  width: 100%;
  position: relative;
  z-index: 5;
}

/* Slider geçişi sırasında yumuşak opacity değişimi */
.hero__content.is-switching .hero__sub,
.hero__content.is-switching .hero__cta {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.hero__content .hero__sub,
.hero__content .hero__cta {
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.hero__heading {
  font-size: clamp(2rem, 7vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.05;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero__heading .line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.hero__heading .char {
  display: inline-block;
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
  will-change: opacity, transform;
}

.hero__heading .char.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.hero__sub {
  max-width: 40rem;
  font-size: 0.9375rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
}

.hero__tagline-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 0 var(--side-pad) 2rem;
  z-index: 3;
}

.hero__tagline {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 100%;
}

.hero__tagline p {
  font-size: 0.875rem;
  font-weight: 300;
  color: #fff;
  text-align: center;
  line-height: 1.45;
}

/* Fade-in driven by JS */
[data-fade-in] {
  opacity: 0;
  transition: opacity 800ms var(--ease);
}

[data-fade-in].is-visible {
  opacity: 1;
}

/* Scroll-reveal driven by JS */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   TRUST STRIP
========================================================= */
.trust {
  background: #0a0a0a;
  color: #fff;
  padding: 2.5rem var(--side-pad);
  border-bottom: 1px solid #151515;
}

.trust__container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 1rem;
  text-align: center;
}

.trust__item {
  min-width: 0;
}

.trust__number {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1;
  margin-bottom: 0.5rem;
  overflow-wrap: break-word;
}

.trust__number span {
  font-size: 0.7em;
  color: var(--color-muted-2);
  font-weight: 400;
  margin-left: 0.15em;
}

.trust__label {
  font-size: 0.75rem;
  color: var(--color-muted-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =========================================================
   HAKKIMIZDA
========================================================= */
.about {
  padding: 4rem var(--side-pad);
  background: #fff;
}

.about__container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.about__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  max-width: 100%;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__media-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.about__media-badge span:first-child {
  font-weight: 600;
  font-size: 0.9375rem;
}

.about__media-badge span:last-child {
  color: var(--color-muted-2);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about__content {
  min-width: 0;
}

.about__points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 1.75rem;
}

.about__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-ink-2);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.about__check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--color-ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  margin-top: 0.15rem;
}

.about__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

/* =========================================================
   HİZMETLER
========================================================= */
.services {
  background: #fafafa;
  color: var(--color-ink);
  padding: 4rem var(--side-pad);
}

.services__container {
  max-width: var(--container);
  margin: 0 auto;
}

.section-head--services {
  padding: 1.25rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  box-shadow: var(--shadow-sm);
}

.section-head--services .section-title {
  margin: 0 auto;
  max-width: 36rem;
}

.services__head-note {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  font-size: 0.8125rem;
  font-weight: 500;
}

.services__head-note i {
  color: #111827;
}

.services__head-link {
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s var(--ease);
}

.services__head-link:hover {
  color: #b45309;
}

.services__head-link i {
  font-size: 0.75rem;
  transition: transform 0.2s var(--ease);
}

.services__head-link:hover i {
  transform: translateX(3px);
}

/* =========================================================
   Sayfa üst navigasyonu — sticky koyu header (alt sayfalar)
   /bursa-hali-yikama ve /hizmetler/* sayfalarında kullanılır
========================================================= */
.seo-mini-nav__menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.5rem;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease),
    visibility 0s linear 0.2s;
}

.seo-mini-nav.is-open .seo-mini-nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease),
    visibility 0s linear 0s;
}

.seo-mini-nav__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.seo-mini-nav__menu a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 0.45rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s var(--ease);
}

.seo-mini-nav__menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.seo-mini-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .seo-mini-nav__toggle {
    display: none;
  }
  .seo-mini-nav__inner {
    gap: 1.25rem;
  }
  .seo-mini-nav__menu {
    position: static;
    margin: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: none;
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .seo-mini-nav__menu ul {
    flex-direction: row;
    gap: 1.5rem;
  }
  .seo-mini-nav__menu a {
    padding: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.875rem;
  }
  .seo-mini-nav__menu a:hover {
    background: transparent;
    color: #fff;
  }
}

@media (max-width: 480px) {
  .seo-mini-nav__cta span {
    display: none;
  }
}

.services__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-card);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease),
    border-color 0.3s var(--ease);
  min-width: 0;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.service-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f4f6;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.service-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

.service-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  line-height: 1.3;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.service-card__more {
  margin-top: auto;
  padding-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink);
  text-decoration: none;
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}

.service-card__more i {
  font-size: 0.75rem;
  transition: transform 0.2s var(--ease);
}

.service-card__more:hover {
  color: #b45309;
}

.service-card:hover .service-card__more i {
  transform: translateX(3px);
}

/* =========================================================
   NASIL ÇALIŞIR — SÜREÇ
========================================================= */
.process {
  background: var(--color-dark);
  color: #fff;
  padding: 4rem var(--side-pad);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 0%,
    rgba(255, 255, 255, 0.05),
    transparent 50%
  );
  pointer-events: none;
}

.process__container {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.process__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.process__step {
  padding: 1.75rem;
  border: 1px solid #1f1f1f;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0) 60%
  );
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
  min-width: 0;
}

.process__step:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.process__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.process__number {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
}

.process__title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.process__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* =========================================================
   GALERİ
========================================================= */
.gallery {
  padding: 4rem var(--side-pad);
  background: #fff;
}

.gallery__container {
  max-width: var(--container-wide);
  margin: 0 auto;
}

.gallery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: 200px;
  gap: 0.75rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #f3f4f6;
  min-width: 0;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

/* =========================================================
   GÜNLÜK SERVİS BÖLGELERİ (HARİTA)
========================================================= */
.areas {
  background: #fff;
  padding: 4rem var(--side-pad);
  position: relative;
}

.areas__container {
  max-width: var(--container-wide);
  margin: 0 auto;
}

.areas__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

/* ---- Harita ---- */
.areas__map {
  position: relative;
  min-width: 0;
}

.areas__map-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #e6eef2;
  aspect-ratio: 4 / 3;
  min-height: 320px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-line);
  isolation: isolate;
}

.areas__map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 320px;
  z-index: 1;
  display: block;
  background: #f5efe4;
}

/* Sağ üst köşede şehir etiketi */
.areas__map-badge {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  z-index: 5;
  background: rgba(17, 24, 39, 0.92);
  color: #fff;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.areas__map-badge i {
  color: #f59e0b;
  font-size: 0.875rem;
}

/* ---- SVG harita pinleri ---- */
.map-pin-g {
  cursor: pointer;
}

.map-pin-g__dot {
  fill: #111827;
  stroke: #fff;
  stroke-width: 2.5;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  transition: fill 0.2s var(--ease), r 0.2s var(--ease),
    stroke-width 0.2s var(--ease);
}

.map-pin-g__label {
  fill: #111827;
  font-size: 11px;
  font-weight: 600;
  text-anchor: middle;
  letter-spacing: -0.01em;
  pointer-events: none;
  paint-order: stroke fill;
  stroke: #f5efe4;
  stroke-width: 3;
  stroke-linejoin: round;
  transition: fill 0.2s var(--ease), font-size 0.2s var(--ease);
}

.map-pin-g:hover .map-pin-g__dot {
  fill: #f59e0b;
  r: 9;
  stroke-width: 3;
}

.map-pin-g:hover .map-pin-g__label {
  fill: #92400e;
  font-size: 12.5px;
}

/* Osmangazi varyantı — pinler farklı tonda gösterilir */
.map-pin-g--osm .map-pin-g__dot {
  fill: #0f766e;
}

.map-pin-g--osm:hover .map-pin-g__dot {
  fill: #f59e0b;
}

/* Harita altı lejant */
.areas__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: #fafafa;
}

.areas__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-ink-2);
}

.areas__legend-item i {
  color: var(--color-muted);
  font-size: 0.875rem;
}

.areas__legend-dot {
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: var(--color-ink);
  flex-shrink: 0;
}

.areas__legend-dot--active {
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18);
}

.areas__legend-dot--osm {
  background: #0f766e;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.18);
}

/* ---- Sağ taraf — sayaç & grid & alt CTA ---- */
.areas__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.areas__count {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-line);
}

.areas__count-number {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--color-ink);
  line-height: 1;
}

.areas__count-label {
  font-size: 0.875rem;
  color: var(--color-muted);
  letter-spacing: 0.01em;
}

.areas__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}

.area-card {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: border-color 0.2s var(--ease),
    background-color 0.2s var(--ease), transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  cursor: default;
  min-width: 0;
}

.area-card:hover {
  border-color: var(--color-ink);
  background: #fafafa;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.area-card__pin {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--radius-sm);
  background: #111827;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: background-color 0.2s var(--ease);
}

.area-card:hover .area-card__pin {
  background: #f59e0b;
  color: #111827;
}

.area-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.area-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.area-card__meta {
  font-size: 0.6875rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.areas__cta {
  margin-top: 0.5rem;
  padding: 1.25rem;
  border: 1px dashed var(--color-line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  background: #fafafa;
}

.areas__cta-text {
  font-size: 0.875rem;
  color: var(--color-ink-2);
  line-height: 1.55;
}

.areas__cta .btn {
  align-self: flex-start;
}

/* =========================================================
   REFERANSLAR
========================================================= */
.testimonials {
  padding: 4rem var(--side-pad);
  background: #fafafa;
}

.testimonials__container {
  max-width: var(--container);
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  min-width: 0;
}

.testimonial:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.testimonial__stars {
  color: #f59e0b;
  font-size: 0.9375rem;
  display: flex;
  gap: 0.15rem;
}

.testimonial__text {
  color: var(--color-ink-2);
  font-size: 0.9375rem;
  line-height: 1.65;
  flex: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--color-line);
}

.testimonial__avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--color-ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-ink);
}

.testimonial__meta {
  font-size: 0.8125rem;
  color: var(--color-muted);
}

/* =========================================================
   CTA
========================================================= */
.cta {
  position: relative;
  padding: 5rem var(--side-pad);
  color: #fff;
  text-align: center;
  overflow: hidden;
  background-color: #000;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/anasayfagorsel1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: 0;
}

.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.cta__container {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  margin: 0 auto;
}

.cta__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cta__lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  background: var(--color-dark-2);
  color: #fff;
  padding: 3rem var(--side-pad) 1.5rem;
}

.footer__container {
  max-width: var(--container);
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.25rem;
}

.footer__col {
  min-width: 0;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer__logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  transition: opacity 0.2s var(--ease);
}

.footer__brand:hover .footer__logo {
  opacity: 0.85;
}

.footer__text {
  color: var(--color-muted-2);
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 22rem;
  margin-bottom: 1.25rem;
}

.footer__social {
  display: flex;
  gap: 0.5rem;
}

.footer__social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  color: #fff;
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer__social a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.footer__heading {
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.footer__list,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__list--compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
}

.footer__list a,
.footer__list li {
  color: var(--color-muted-2);
  font-size: 0.875rem;
  transition: color 0.2s var(--ease);
}

.footer__list a:hover {
  color: #fff;
}

.footer__more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  color: #fff;
  font-weight: 500;
  transition: gap 0.2s var(--ease), opacity 0.2s var(--ease);
}

.footer__more-link i {
  font-size: 0.6875rem;
  transition: transform 0.2s var(--ease);
}

.footer__more-link:hover {
  opacity: 0.85;
  gap: 0.6rem;
}

.footer__more-link:hover i {
  transform: translateX(2px);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: var(--color-muted-2);
  font-size: 0.875rem;
  line-height: 1.55;
}

.footer__contact li > i {
  flex-shrink: 0;
  width: 1rem;
  margin-top: 0.25rem;
  color: var(--color-muted-2);
  font-size: 0.9375rem;
}

.footer__contact a {
  color: var(--color-muted-2);
  transition: color 0.2s var(--ease);
  word-break: break-word;
}

.footer__contact a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid var(--color-line-2);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
  color: #4b5563;
  font-size: 0.75rem;
}

.footer__bottom-meta {
  color: #374151;
}

/* =========================================================
   FLOATING CONTACT BUTTONS
========================================================= */
.floating-contact {
  pointer-events: none;
}

.floating-contact__btn {
  position: fixed;
  bottom: 1.25rem;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 60;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    filter 0.2s var(--ease);
  pointer-events: auto;
}

.floating-contact__btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 28px -10px rgba(0, 0, 0, 0.5);
}

.floating-contact__btn--whatsapp {
  left: 1rem;
  background: linear-gradient(145deg, #22c55e, #16a34a);
}

.floating-contact__btn--phone {
  right: 1rem;
  background: linear-gradient(145deg, #1f2937, #111827);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (min-width: 480px) {
  :root {
    --side-pad: 1.5rem;
  }

  .nav__logo {
    height: 38px;
    max-width: 170px;
  }

  .nav__brand {
    flex-basis: 170px;
  }

  .hero__sub,
  .testimonial__text {
    font-size: 1rem;
  }
}

@media (min-width: 640px) {
  .trust {
    padding: 3rem var(--side-pad);
  }

  .trust__container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem 1rem;
  }

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

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

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

  .about,
  .services,
  .process,
  .gallery,
  .testimonials,
  .areas {
    padding: 5rem var(--side-pad);
  }

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

  .cta {
    padding: 6rem var(--side-pad);
  }

  .section-head--services {
    padding: 1.5rem 1.25rem;
  }

  .floating-contact__btn {
    width: 3.5rem;
    height: 3.5rem;
  }

  .floating-contact__btn--whatsapp {
    left: 1.25rem;
  }

  .floating-contact__btn--phone {
    right: 1.25rem;
  }
}

@media (min-width: 768px) {
  :root {
    --side-pad: 2.5rem;
  }

  .nav {
    padding: 1.25rem var(--side-pad) 0;
  }

  .nav__logo {
    height: 42px;
    max-width: 200px;
  }

  .nav__brand {
    flex-basis: 200px;
  }

  .nav__links {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: none;
  }

  .nav__links a {
    padding: 0;
    border-radius: 0;
  }

  .nav__links a:hover {
    color: #d1d5db;
    background: transparent;
  }

  .nav__toggle {
    display: none;
  }

  .nav__bar > .btn {
    display: inline-flex;
  }

  .hero__arrow {
    display: inline-flex;
  }

  .hero__arrow--prev {
    left: 1.75rem;
  }

  .hero__arrow--next {
    right: 1.75rem;
  }

  .hero__dots {
    bottom: 9rem;
  }

  .hero__content {
    padding: 6rem var(--side-pad) 9rem;
  }

  .hero__tagline p {
    font-size: 1rem;
  }

  .about__container {
    grid-template-columns: 5fr 6fr;
    gap: 3.5rem;
  }

  .footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .gallery__item--tall {
    grid-row: span 2;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

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

  .areas__layout {
    grid-template-columns: 1.05fr 1fr;
    gap: 2.5rem;
  }

  .areas__map {
    position: sticky;
    top: 2rem;
  }

  .areas__map-frame {
    aspect-ratio: 1 / 1;
    min-height: 480px;
  }

  .testimonial,
  .process__step {
    padding: 1.75rem;
  }

  .service-card__body {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --side-pad: 3rem;
  }

  .nav__links {
    gap: 1.75rem;
  }

  .hero__tagline p {
    font-size: 1.25rem;
  }

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

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

  .gallery__grid {
    gap: 1rem;
  }

  .areas__layout {
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1280px) {
  :root {
    --side-pad: 4rem;
  }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__slide .hero__media {
    animation: none !important;
  }

  .hero__heading .char,
  [data-fade-in],
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 4px;
}
