/* ============================================
   Öz Nisa Halı ve Koltuk Yıkama
   Profesyonel kurumsal tema – slate & teal
   ============================================ */

:root {
  --primary: #1e293b;
  --primary-light: #334155;
  --primary-dark: #0f172a;
  --accent: #0d9488;
  --accent-hover: #0f766e;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  --radius: 8px;
  --radius-lg: 12px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 56px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #0f172a;
  background: #f5f4f2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ========== Sabit üst bar (kaydırınca tepede kalsın) ========== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.2s ease;
}

.top-bar.scrolled {
  box-shadow: var(--shadow-lg);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  letter-spacing: -0.02em;
  color: var(--primary);
  white-space: nowrap;
  line-height: 1.2;
}

@media (min-width: 769px) {
  .logo {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 0.95rem;
    white-space: normal;
    line-height: 1.25;
    max-width: 55%;
  }
}

/* Masaüstünde sadece sayfa linkleri; telefon ve WhatsApp gizli */
@media (min-width: 769px) {
  .top-nav .top-phone,
  .top-nav .btn-whatsapp-header {
    display: none !important;
  }
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-phone {
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.top-phone:hover {
  color: var(--accent);
}

.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #25d366;
  color: var(--white) !important;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}

.btn-whatsapp-header:hover {
  background: #20bd5a;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger buton - profesyonel, net çizgiler */
.nav-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border: 2px solid var(--gray-200);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.nav-toggle:hover {
  background: var(--gray-100);
  border-color: var(--primary);
}

.nav-toggle-bar {
  position: absolute;
  left: 50%;
  margin-left: -11px;
  width: 22px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}

.nav-toggle .nav-toggle-bar:nth-child(1) { top: 14px; }
.nav-toggle .nav-toggle-bar:nth-child(2) { top: 22px; }
.nav-toggle .nav-toggle-bar:nth-child(3) { top: 30px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.nav-toggle-label {
  display: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    position: relative;
  }
  .nav-toggle .nav-toggle-bar {
    position: absolute;
  }
  .top-nav {
    display: none;
  }
}

/* Mobil menü - tam ekran overlay, sayfalar ve iletişim gruplu */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-nav-backdrop.open {
  display: block;
  opacity: 1;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  padding: 4rem 1.25rem 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

.mobile-nav-heading {
  margin: 1.25rem 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
}
.mobile-nav-heading:first-child {
  margin-top: 0;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  min-height: 44px;
}

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

.mobile-nav-phone {
  font-weight: 600;
  color: var(--primary);
}

.mobile-nav-whatsapp {
  margin-top: 0.5rem;
  background: #25d366;
  color: var(--white) !important;
  border-radius: var(--radius);
  padding: 0.85rem 1rem !important;
  justify-content: center;
  border: none;
}

.mobile-nav-whatsapp:hover {
  background: #20bd5a;
  color: var(--white) !important;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .top-nav {
    display: none;
  }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Masaüstü: slider net ve büyük */
@media (min-width: 769px) {
  .hero,
  .hero-slider {
    min-height: 85vh;
    min-height: 560px;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 2rem 1.5rem;
  }
  .hero h1 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero,
  .hero-slider {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
  }
  .hero-content {
    padding: 2rem 1rem;
  }
  .hero h1 {
    font-size: 1.35rem;
    line-height: 1.3;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .hero-cta {
    gap: 0.75rem;
  }
  .hero-cta .btn {
    min-height: 44px;
    padding: 0.85rem 1.25rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--primary-dark);
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero Slider - 4 fotoğraf sırayla, tek seferde biri görünür (karışma yok) */
.hero-slider .hero-slider-track {
  position: absolute;
  inset: 0;
  background: var(--primary-dark);
}

.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  animation: hero-slide-fade 56s ease-in-out infinite;
}

.hero-slider .hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slider .hero-slide:nth-child(2) { animation-delay: -7s; }
.hero-slider .hero-slide:nth-child(3) { animation-delay: -14s; }
.hero-slider .hero-slide:nth-child(4) { animation-delay: -21s; }
.hero-slider .hero-slide:nth-child(5) { animation-delay: -28s; }
.hero-slider .hero-slide:nth-child(6) { animation-delay: -35s; }
.hero-slider .hero-slide:nth-child(7) { animation-delay: -42s; }
.hero-slider .hero-slide:nth-child(8) { animation-delay: -49s; }

.hero-slider .hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

/* 8 slayt: yumuşak giriş-çıkış, ~7 sn görünür */
@keyframes hero-slide-fade {
  0%     { opacity: 0; z-index: 1; }
  2%     { opacity: 1; z-index: 2; }
  10%    { opacity: 1; z-index: 2; }
  12.5%  { opacity: 0; z-index: 0; }
  100%   { opacity: 0; z-index: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.5) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.25rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text-box {
  background: none;
  padding: 0;
  width: 100%;
  max-width: 820px;
  margin: 0 auto 1.5rem;
  box-sizing: border-box;
}

.hero h1 {
  margin: 0 auto 1rem;
  padding: 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.25;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.5), 0 0 24px rgba(0,0,0,0.3);
}

.hero-subtitle {
  margin: 0 auto 0;
  padding: 0 0.5rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.95);
  font-weight: 700;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.5);
}

.hero-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.btn-phone {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  min-height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-phone:hover {
  background: var(--gray-100);
  color: var(--primary-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

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

.btn-primary:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  color: var(--white);
  transform: translateY(-2px);
}

/* ========== Sections ========== */
.section {
  padding: 4rem 0;
  background: #f5f4f2;
}

.section:nth-of-type(even) {
  background: #ebeae8;
}

.intro-section {
  background: #fff !important;
}

.intro-section .section-title {
  color: #0a0a0a;
  text-shadow: none;
}

.intro-section .section-intro {
  color: #171717;
}

.why-us {
  background: #fff !important;
}

.why-us .section-title {
  color: #0a0a0a;
  text-shadow: none;
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  text-align: center;
}

.section-intro {
  margin: 0 auto 2.5rem;
  max-width: 800px;
  text-align: center;
  color: #0f172a;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.75;
}

/* Sayfa link kartları – tuğla blok düzeni */
.page-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e4e2;
}

.page-link-card {
  display: block;
  padding: 2rem 1.75rem;
  background: #fafaf9;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  transition: background 0.2s, box-shadow 0.2s;
  color: #0f172a;
  border: 1px solid #e5e4e2;
  border-left: none;
  border-top: none;
}

.page-link-card:nth-child(1) {
  grid-column: 1 / -1;
  border-bottom: 1px solid var(--gray-200);
  border-left: 4px solid var(--accent);
}

.page-link-card:nth-child(2) {
  border-right: 1px solid var(--gray-200);
  border-left: 4px solid var(--accent);
}

.page-link-card:nth-child(3) {
  border-left: 4px solid var(--accent);
}

.page-link-card:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
  color: #0f172a;
}

.page-link-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.page-link-title {
  display: block;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.page-link-card:hover .page-link-title {
  color: var(--accent);
}

.page-link-desc {
  font-size: 0.9rem;
  color: #334155;
}

/* Siparişten teslimata aşamalar */
.stages-section {
  background: #ebeae8;
}

.stages-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.stage-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: #fafaf9;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s;
  border: 1px solid #e5e4e2;
  border-left: 4px solid var(--accent);
}

.stage-item:last-child {
  margin-bottom: 0;
}

.stage-item:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.stage-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: #f0fdfa;
  border-radius: 50%;
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.stage-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
}

.stage-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.stage-content p {
  margin: 0;
  font-size: 0.98rem;
  color: #0f172a;
  line-height: 1.65;
}

.stage-content a {
  font-weight: 600;
}

.stages-cta {
  text-align: center;
  margin: 0;
  padding-top: 0.5rem;
}

.stages-cta .btn {
  display: inline-block;
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .stage-item {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .stage-icon,
  .stage-num {
    margin: 0 auto;
  }

  .stages-cta .btn {
    display: block;
    margin: 0.5rem auto 0.5rem;
  }
}

/* İç sayfa hero (sayfa başlığı alanı) */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0;
  opacity: 0.9;
  font-size: 1.05rem;
}

/* Diğer sayfalarda (Hizmetlerimiz, Hizmet Bölgelerimiz, İletişim) bölümler: bir beyaz bir siyah */
main:has(.page-hero) section:nth-of-type(2n) {
  background: #fff !important;
}

main:has(.page-hero) section:nth-of-type(2n) .section-title {
  color: #0a0a0a;
  text-shadow: none;
}

main:has(.page-hero) section:nth-of-type(2n) .section-intro {
  color: #171717;
}

main:has(.page-hero) section:nth-of-type(2n) .service-detail-content h2,
main:has(.page-hero) section:nth-of-type(2n) .service-detail-content p {
  color: #0a0a0a;
}

main:has(.page-hero) section:nth-of-type(2n) .service-detail-content p {
  color: #262626;
}

main:has(.page-hero) section:nth-of-type(2n) .district-block-with-img h2,
main:has(.page-hero) section:nth-of-type(2n) .district-block-with-img p {
  color: #0a0a0a;
}

main:has(.page-hero) section:nth-of-type(2n) .district-block-with-img p {
  color: #262626;
}

main:has(.page-hero) section:nth-of-type(2n) .contact-map-block h3 {
  color: #0a0a0a;
}

main:has(.page-hero) section:nth-of-type(2n) .contact-map-block p {
  color: #262626;
}

main:has(.page-hero) section:nth-of-type(2n) a:not(.btn):not(.btn-whatsapp):not(.btn-primary) {
  color: #0a0a0a;
}

main:has(.page-hero) section:nth-of-type(2n) a:not(.btn):not(.btn-whatsapp):not(.btn-primary):hover {
  color: #404040;
}

main:has(.page-hero) section:nth-of-type(2n) .district-block-with-img {
  border-bottom-color: rgba(0,0,0,0.1);
}

main:has(.page-hero) section:nth-of-type(2n+1).section {
  background: #1a1a1a !important;
}

main:has(.page-hero) section:nth-of-type(2n+1).section .section-title,
main:has(.page-hero) section:nth-of-type(2n+1).section .section-intro,
main:has(.page-hero) section:nth-of-type(2n+1).section .service-detail-content h2,
main:has(.page-hero) section:nth-of-type(2n+1).section .service-detail-content p {
  color: #f5f5f5;
}

main:has(.page-hero) section:nth-of-type(2n+1).section .service-detail-content p {
  color: #d4d4d4;
}

main:has(.page-hero) section:nth-of-type(2n+1).section .district-block-with-img h2,
main:has(.page-hero) section:nth-of-type(2n+1).section .district-block-with-img p {
  color: #f5f5f5;
}

main:has(.page-hero) section:nth-of-type(2n+1).section .district-block-with-img p {
  color: #d4d4d4;
}

main:has(.page-hero) section:nth-of-type(2n+1).section a:not(.btn):not(.btn-primary):not(.btn-whatsapp) {
  color: #d4d4d4;
}

main:has(.page-hero) section:nth-of-type(2n+1).section a:not(.btn):not(.btn-primary):not(.btn-whatsapp):hover {
  color: #fff;
}

.top-nav a:not(.top-phone):not(.btn-whatsapp-header) {
  font-weight: 600;
  color: #0f172a;
}

.top-nav a:not(.top-phone):not(.btn-whatsapp-header):hover {
  color: var(--accent);
}

.top-nav a.active {
  color: var(--primary);
  font-weight: 600;
}

/* ========== Hizmetler ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}

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

.service-figure {
  margin: 0;
  aspect-ratio: 400 / 260;
  overflow: hidden;
  background: var(--gray-100);
}

.service-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.service-card .service-figure + h3,
.service-card h3 {
  margin: 0 1.75rem 0.75rem;
  padding-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--primary);
}

.service-card p {
  margin: 0 1.75rem 1.75rem;
  padding: 0;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* Hizmet detay (iç sayfa - hizmetlerimiz) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.service-detail-reverse {
  direction: rtl;
}

.service-detail-reverse > * {
  direction: ltr;
}

.service-detail-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-detail-figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.service-detail-content h2 {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.service-detail-content p {
  margin: 0 0 1rem;
  color: var(--gray-700);
  line-height: 1.75;
}

.service-detail-content p:last-child {
  margin-bottom: 0;
}

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

@media (max-width: 900px) {
  .service-detail,
  .service-detail-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .service-detail-reverse .service-detail-figure {
    order: 0;
  }
}

.text-center .btn {
  margin: 0 0.5rem 0.5rem 0;
}

/* ========== Neden Biz ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.why-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-top: 3px solid rgba(255,255,255,0.35);
  color: #fff;
}

.why-card:nth-child(1) {
  background-image: linear-gradient(180deg, rgba(26,26,26,0.88) 0%, rgba(45,45,45,0.9) 100%), url("images/hali-yikama-fabrika.jpg");
}

.why-card:nth-child(2) {
  background-image: linear-gradient(180deg, rgba(36,36,36,0.88) 0%, rgba(54,54,54,0.88) 100%), url("images/klas-hali-yikama.jpg");
  border-top-color: rgba(255,255,255,0.4);
}

.why-card:nth-child(3) {
  background-image: linear-gradient(180deg, rgba(26,26,26,0.88) 0%, rgba(45,45,45,0.9) 100%), url("images/evde-hali-yikama.jpg");
  border-top-color: rgba(255,255,255,0.35);
}

.why-card:nth-child(4) {
  background-image: linear-gradient(180deg, rgba(36,36,36,0.88) 0%, rgba(54,54,54,0.88) 100%), url("images/yorgan-battaniye-yikama.jpg");
  border-top-color: rgba(255,255,255,0.4);
}

.why-card:nth-child(5) {
  background-image: linear-gradient(180deg, rgba(26,26,26,0.88) 0%, rgba(45,45,45,0.9) 100%), url("images/hali-yikama-profesyonel.jpg");
  border-top-color: rgba(255,255,255,0.35);
}

.why-card:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.why-icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f5f5f5;
}

.why-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #d4d4d4;
}

/* ========== Müşteri Memnuniyeti – istatistikler + yorumlar ========== */
.testimonials-section {
  background: #fff;
}

.testimonials-section .section-title {
  color: #0a0a0a;
  text-shadow: none;
}

.testimonials-section .section-intro {
  color: #171717;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.stat-number {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 600;
}

.testimonials-subtitle {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #171717;
}

.testimonials-scroll-wrap {
  margin-top: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.2) rgba(0,0,0,0.06);
  padding-bottom: 0.5rem;
}

.testimonials-scroll-wrap::-webkit-scrollbar {
  height: 8px;
}

.testimonials-scroll-wrap::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.06);
  border-radius: 4px;
}

.testimonials-scroll-wrap::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.22);
  border-radius: 4px;
}

.testimonials-scroll-wrap::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.35);
}

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  padding: 0.5rem 0.25rem 1rem;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1rem;
  padding-inline: 0.25rem;
}

.testimonial-card {
  flex: 0 0 min(300px, 85vw);
  scroll-snap-align: start;
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.testimonial-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: #eab308;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  display: block;
}

.testimonial-quote {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #334155;
  font-style: normal;
}

.testimonial-author {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-600);
  font-style: normal;
  font-weight: 600;
}

/* Hizmet bölgeleri özet bandı */
.regions-strip .section-title {
  color: #0a0a0a;
  text-shadow: none;
}

.regions-strip .section-intro {
  color: #171717;
}

.regions-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.region-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.regions-cta {
  margin: 1.5rem 0 0;
  text-align: center;
}

/* Son CTA bölümü */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
}

.cta-section .section-title {
  color: var(--white);
  text-shadow: none;
}

.cta-section .section-intro {
  color: rgba(255,255,255,0.9);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--primary);
}

.cta-section .btn-primary:hover {
  background: var(--gray-100);
}

.cta-section .btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.cta-section .btn-whatsapp:hover {
  background: #20bd5a;
  color: var(--white);
}

.btn-cta {
  min-width: 160px;
  text-align: center;
}

/* ========== İlçeler SEO ========== */
.districts .section-intro {
  margin-bottom: 2rem;
}

.district-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}

.district-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.district-block h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--primary);
}

.district-block p {
  margin: 0;
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* Hizmet bölgeleri sayfası - ilçe blokları + görsel */
.districts-page {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.district-block-with-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.district-block-with-img:last-of-type {
  border-bottom: none;
}

.district-block-with-img figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.district-block-with-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.district-block-with-img h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.district-block-with-img p {
  margin: 0;
  color: var(--gray-700);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .district-block-with-img {
    grid-template-columns: 1fr;
  }
}

/* İletişim sayfası */
.contact-page-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.contact-info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  color: var(--primary);
}

.contact-info-card p {
  margin: 0 0 0.75rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.contact-phones-block {
  margin: 1rem 0;
}

.contact-phones-block a {
  font-weight: 600;
  font-size: 1.15rem;
}

.contact-image-block figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-image-block img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.contact-map-block {
  margin-top: 2rem;
}

.contact-map-block h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: var(--primary);
}

.contact-map-block p {
  margin: 0 0 1rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-map iframe {
  display: block;
  min-height: 400px;
}

.contact-extra {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
}

.contact-extra h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  color: var(--primary);
}

.contact-extra p {
  margin: 0;
  color: var(--gray-700);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .contact-page-wrap {
    grid-template-columns: 1fr;
  }
}

/* ========== İletişim ========== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-name {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--primary);
}

.contact-info p {
  margin: 0 0 0.75rem;
  color: var(--gray-700);
}

.contact-phones a {
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-info .btn {
  margin-top: 0.5rem;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-map iframe {
  display: block;
  min-height: 300px;
}

@media (max-width: 768px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

/* ========== Blog placeholder ========== */
.blog-placeholder {
  padding: 3rem 0;
}

.blog-placeholder .section-intro {
  margin-bottom: 0;
}

/* ========== Footer ========== */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 2.5rem 0 1.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.95);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.footer-brand p {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-links h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-links p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-credit {
  margin-top: 0.75rem !important;
  font-size: 0.7rem !important;
  opacity: 0.75 !important;
}

.footer-credit a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

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

.footer-credit-logo {
  height: 16px;
  width: auto;
  max-width: 56px;
  vertical-align: middle;
  opacity: 0.95;
}

.footer-credit .footer-credit-logo {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ========== Arama butonu (WhatsApp'ın üstünde) ========== */
.call-float {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255,255,255,0.15);
  transition: transform 0.35s ease, box-shadow 0.2s, background 0.2s;
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  background: #242424;
  color: #fff;
}

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

/* ========== WhatsApp Float ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: var(--white);
}

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

/* ========== Mobil uyumluluk (tam sayfa) ========== */
html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .section {
    padding: 2.5rem 0;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .section-intro {
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
  }
  .page-links {
    grid-template-columns: 1fr;
    gap: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
  }
  .page-link-card {
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200) !important;
    border-left: 4px solid var(--accent) !important;
  }
  .page-link-card:nth-child(1) {
    grid-column: auto;
  }
  .page-link-card:nth-child(2) {
    border-right: 1px solid var(--gray-200);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .why-card {
    padding: 1.25rem;
  }
  .why-card h3 {
    font-size: 1rem;
  }
  .stages-list {
    padding: 0;
  }
  .stage-item {
    padding: 1rem;
  }
  .stage-content h3 {
    font-size: 1.05rem;
  }
  .stage-content p {
    font-size: 0.9rem;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .stat-item {
    padding: 1.25rem 0.75rem;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .testimonial-card {
    flex: 0 0 min(280px, 88vw);
  }
  .regions-tags {
    gap: 0.5rem;
    margin: 1rem 0;
  }
  .region-tag {
    font-size: 0.85rem;
    padding: 0.4rem 0.85rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    min-height: 48px;
  }
  .footer {
    padding: 2rem 0 1.25rem;
  }
  .footer-grid {
    gap: 1.5rem;
  }
  .call-float {
    bottom: max(84px, calc(52px + 24px + 8px + env(safe-area-inset-bottom)));
    right: max(24px, env(safe-area-inset-right));
    width: 52px;
    height: 52px;
  }
  .call-float svg {
    width: 24px;
    height: 24px;
  }
  .whatsapp-float {
    bottom: max(24px, env(safe-area-inset-bottom));
    right: max(24px, env(safe-area-inset-right));
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 52px;
  }
  .top-bar-inner {
    min-height: 52px;
  }
  .logo {
    font-size: 1rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}

