/* ==========================================================================
   PEKER HALI YIKAMA — 2026 MODERN DESIGN SYSTEM
   Ultra-Fast, Premium, Mobile-First, SEO-Oriented
   ========================================================================== */

@import url('base.css');
@import url('layout.css');
@import url('components.css');
@import url('pages.css');
@import url('responsive.css');

:root {
  /* Renk Paleti - #AED1EF Ana Renk & Yüksek Kontrastlı Lacivert */
  --primary: #0D235E;         /* Güçlü Peker laciverti (silikliği önleyen ana kontrast) */
  --primary-dark: #08163D;    /* Derin başlık ve vurgu laciverti */
  --primary-light: #AED1EF;   /* Kullanıcının belirlediği Ana Renk (#AED1EF) */
  --brand-blue: #AED1EF;      /* Header & Footer Resmi Arka Plan Rengi */
  --brand-navy: #0D235E;      /* Logodaki Peker laciverti */
  --brand-hover: #0284C7;     /* Canlı interaktif mavi */
  --accent: #0284C7;          /* Hijyen ve su mavisi */
  --accent-light: #E0F2FE;
  --secondary: #059669;       /* Kalite ve teslimat yeşili */
  --whatsapp: #25D366;        /* WhatsApp yeşili */
  --whatsapp-dark: #1EBE5D;
  --danger: #E11D48;          /* Acil arama / uyarı */
  
  /* Zemin ve Metin Renkleri */
  --bg-main: #FFFFFF;
  --bg-subtle: #F0F7FD;       /* #AED1EF ile uyumlu hafif ferah zemin */
  --bg-muted: #E2EFF9;        /* #AED1EF yumuşak gölgesi */
  --text-main: #0B172E;       /* Net ve keskin gövde metni */
  --text-muted: #1E3A8A;      /* Okunabilir lacivert-gri tonu */
  --text-light: #3B5998;
  --border: #C8E1F7;          /* #AED1EF ile uyumlu zarif kenarlık */
  --border-focus: #0D235E;

  /* Gölgeler */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.04);

  /* Yuvarlaklık ve Geçişler */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  /* Düzen Boyutları */
  --max-w: 1240px;
  --header-h: 76px;
}

/* Reset & Temel */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  color: var(--text-main);
  background-color: var(--bg-main);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* Sticky bar için boşluk */
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

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

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

ul {
  list-style: none;
}

/* Tipografi */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); letter-spacing: -0.01em; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; font-weight: 600; }

p {
  color: var(--text-muted);
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Üst Bildirim Şeridi (Top Bar) */
.top-bar {
  background: #9EC7EB; /* #AED1EF ile ton sür ton uyumlu, 1 kademe daha derin */
  color: #0D235E;      /* Derin lacivert - net ve okunabilir */
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(13, 35, 94, 0.15);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-info {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #0D235E;
}

.top-bar-info svg {
  stroke: #0D235E;
  stroke-width: 2.2;
}

/* Ana Header (#AED1EF Arka Plan) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #AED1EF; /* Kullanıcının istediği resmi arka plan rengi */
  border-bottom: 2px solid rgba(13, 35, 94, 0.12);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 4px 16px rgba(13, 35, 94, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(174, 209, 239, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(13, 35, 94, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo Stilleri */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.brand-logo:hover .site-logo-img {
  transform: scale(1.02);
}

/* Navigasyon - #AED1EF üzerinde keskin, net ve silik kalmayan lacivert */
.nav-menu {
  display: none;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

.nav-link {
  font-size: 0.855rem;
  font-weight: 700;
  color: #0D235E; /* Maksimum kontrast, sıfır solukluk */
  padding: 0.48rem 0.75rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}

.nav-link:hover {
  color: #0284C7;
  background: rgba(255, 255, 255, 0.5);
}

.nav-link.active {
  color: #0D235E;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 6px rgba(13, 35, 94, 0.08);
}

/* Header Eylemleri (CTA) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-header-call {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.925rem;
  color: #0D235E;
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1.5px solid rgba(13, 35, 94, 0.2);
  box-shadow: 0 2px 8px rgba(13, 35, 94, 0.06);
  transition: var(--transition);
}

.btn-header-call svg {
  stroke: #0D235E;
}

.btn-header-call:hover {
  background: #0D235E;
  color: #FFFFFF;
  border-color: #0D235E;
  box-shadow: 0 4px 14px rgba(13, 35, 94, 0.2);
}

.btn-header-call:hover svg {
  stroke: #FFFFFF;
}

@media (min-width: 768px) {
  .btn-header-call {
    display: flex;
  }
}

.btn-header-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #059669; /* Canlı zümrüt yeşili - #AED1EF ile güçlü kontrast */
  color: #FFFFFF;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
  transition: var(--transition);
}

.btn-header-whatsapp:hover {
  background: #047857;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.45);
}

/* Mobil Menü Butonu */
.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid #0D235E;
  border-radius: var(--radius-md);
  cursor: pointer;
  color: #0D235E;
}

@media (min-width: 1024px) {
  .hamburger-btn {
    display: none;
  }
}

/* ==========================================================================
   YENİ NESİL TAM EKRAN MOBİL APP HUB MENÜSÜ
   ========================================================================== */

/* Masaüstünde kesinlikle gizli */
@media (min-width: 1024px) {
  .peker-app-hub {
    display: none !important;
  }
}

/* Mobil / Tablet (max-width: 1023px) */
@media (max-width: 1023px) {
  /* Sayfa arkası kaymayı engelleme */
  body.app-hub-locked {
    overflow: hidden !important;
    touch-action: none;
  }

  .peker-app-hub {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #F8FAFC;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.985);
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.28s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .peker-app-hub.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .app-hub-container {
    max-width: 520px;
    margin: 0 auto;
    padding: 1.25rem 1.15rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
  }

  /* 1. Üst Bar */
  .app-hub-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(13, 35, 94, 0.08);
  }

  .app-hub-logo-link {
    display: inline-flex;
    align-items: center;
  }

  .app-hub-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
  }

  .app-hub-topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .app-hub-online-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #059669;
    background: #ECFDF5;
    padding: 0.35rem 0.65rem;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.25);
  }

  .app-pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: appPulse 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
  }

  @keyframes appPulse {
    to { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  }

  .app-hub-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(13, 35, 94, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0D235E;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
  }

  .app-hub-close-btn:active {
    transform: scale(0.92);
    background-color: #F1F5F9;
  }

  /* 2. Hızlı Kart */
  .app-hub-quickcard {
    background: linear-gradient(135deg, #0D235E 0%, #08163D 100%);
    border-radius: 20px;
    padding: 1.35rem 1.25rem;
    color: white;
    box-shadow: 0 12px 28px -6px rgba(13, 35, 94, 0.35);
  }

  .quickcard-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #38BDF8;
    margin-bottom: 0.35rem;
    letter-spacing: 0.3px;
  }

  .quickcard-title {
    color: white;
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 0.35rem 0;
  }

  .quickcard-desc {
    color: #CBD5E1;
    font-size: 0.84rem;
    margin: 0 0 1.15rem 0;
  }

  .quickcard-actions {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 0.65rem;
  }

  .app-btn-wp, .app-btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.75rem 0.65rem;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.15s ease;
  }

  .app-btn-wp:active, .app-btn-call:active {
    transform: scale(0.96);
  }

  .app-btn-wp {
    background: #25D366;
    color: white !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  }

  .app-btn-call {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
  }

  /* 3. Bölüm Başlığı */
  .app-hub-section {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .app-hub-section-title {
    font-size: 0.72rem;
    font-weight: 800;
    color: #64748B;
    letter-spacing: 0.8px;
    padding-left: 0.25rem;
  }

  /* 4. Uygulama Grid Kartları (2 Sütun) */
  .app-hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .app-hub-card {
    background: white;
    border: 1px solid rgba(13, 35, 94, 0.08);
    border-radius: 18px;
    padding: 1.1rem 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .app-hub-card:active {
    transform: scale(0.96);
    background: #F8FAFC;
    border-color: #0284C7;
  }

  .app-card-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .icon-blue    { background: #EFF6FF; color: #2563EB; }
  .icon-indigo  { background: #EEF2FF; color: #4F46E5; }
  .icon-teal    { background: #F0FDFA; color: #0D9488; }
  .icon-amber   { background: #FFFBEB; color: #D97706; }
  .icon-cyan    { background: #ECFEFF; color: #0891B2; }
  .icon-emerald { background: #ECFDF5; color: #059669; }

  .app-card-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.25;
  }

  .app-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0F172A;
  }

  .app-card-sub {
    font-size: 0.74rem;
    color: #64748B;
    margin-top: 2px;
    font-weight: 600;
  }

  .highlight-card {
    border: 1.5px solid rgba(5, 150, 105, 0.3);
    background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);
  }

  /* Halı'nın Alt Menüsü: Halı Türleri Özel Kartı (Mobil App Hub) */
  .app-hub-subcard {
    background: #FFFFFF;
    border: 1.5px solid rgba(2, 132, 199, 0.22);
    border-radius: 18px;
    padding: 1.15rem 1rem;
    box-shadow: 0 4px 16px rgba(2, 132, 199, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.25rem;
  }

  .subcard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .subcard-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .subcard-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    color: #0284C7;
    letter-spacing: 0.5px;
  }

  .subcard-title {
    font-size: 0.96rem;
    font-weight: 800;
    color: #0D235E;
  }

  .subcard-all-btn {
    font-size: 0.76rem;
    font-weight: 700;
    color: #0284C7;
    background: #E0F2FE;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.15s ease;
  }

  .subcard-all-btn:active {
    transform: scale(0.95);
    background: #0284C7;
    color: #FFFFFF;
  }

  .subcard-desc {
    font-size: 0.78rem;
    color: #64748B;
    margin: 0;
    line-height: 1.4;
  }

  .subcard-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .chip-item {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #1E293B;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    padding: 0.38rem 0.7rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.15s ease;
  }

  .chip-item:active {
    transform: scale(0.94);
    background: #E0F2FE;
    border-color: #38BDF8;
    color: #0369A1;
  }

  /* 5. iOS Tarzı Liste Grubu */
  .app-hub-list-group {
    background: white;
    border-radius: 18px;
    border: 1px solid rgba(13, 35, 94, 0.08);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  }

  .app-hub-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1.15rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(13, 35, 94, 0.06);
    transition: background-color 0.15s;
  }

  .app-hub-list-item:last-child {
    border-bottom: none;
  }

  .app-hub-list-item:active {
    background-color: #F1F5F9;
  }

  .list-item-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }

  .list-item-icon {
    font-size: 1.25rem;
  }

  .list-item-text {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1E293B;
  }

  .list-item-arrow {
    stroke: #94A3B8;
  }

  /* 6. Alt Bilgi */
  .app-hub-footer {
    text-align: center;
    padding-top: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
  }

  .app-hub-footer-info {
    display: flex;
    gap: 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748B;
    flex-wrap: wrap;
    justify-content: center;
  }

  .app-hub-footer-copy {
    font-size: 0.72rem;
    color: #94A3B8;
    margin: 0;
  }
}

/* Buton Standartları */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-accent:hover {
  background: #0284C7;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-main);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--bg-subtle);
}

/* HERO SECTION — Tüm stiller pages.css dosyasındadır */

/* SECTION STANDARTLARI */
.section {
  padding: 4.5rem 0;
}

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

.section-header {
  text-align: center;
  max-width: 1080px;
  margin: 0 auto 3.5rem;
  padding: 0 1rem;
}

.section-header h1 {
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.25;
  text-wrap: balance;
}

.section-header h2 {
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.25;
  text-wrap: balance;
}

.section-header p {
  max-width: 720px;
  margin: 0.75rem auto 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .section-header h1,
  .section-header h2 {
    white-space: nowrap;
  }
}

.section-tag {
  display: inline-block;
  background: transparent !important;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 !important;
  border: none !important;
  margin-bottom: 0.5rem;
}

/* Breadcrumb Gezinme Çubuğu (Ortalı & Mobil Uyumlu) */
.breadcrumb-nav {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  flex-wrap: wrap !important;
  text-align: center !important;
  gap: 0.35rem 0.5rem;
  width: 100%;
}

.breadcrumb-nav a {
  color: var(--text-muted);
  transition: var(--transition);
}

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

/* HİZMET KARTLARI */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-card-media {
  height: 180px;
  background: #E2E8F0;
  position: relative;
  overflow: hidden;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.service-card-desc {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-card-link {
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}

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

/* SÜREÇ TIMELINE (6 ADIM) */
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.timeline-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.timeline-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.timeline-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.timeline-card h3 {
  margin-bottom: 0.5rem;
}

.timeline-card p {
  font-size: 0.9rem;
}

/* FİYAT LİSTESİ TABLOLARI */
.price-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.price-tab-btn {
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: white;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.price-tab-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.price-table-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.price-table th {
  background: var(--bg-muted);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 700;
}

.price-table td {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}

.price-table tr:hover td {
  background: var(--bg-subtle);
}

.price-tag {
  font-weight: 800;
  color: var(--primary);
}

/* BÖLGELERİMİZ LİSTESİ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

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

@media (min-width: 1024px) {
  .locations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.location-pill {
  background: white;
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.location-pill:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--primary);
  transform: translateX(3px);
}

/* SSS / FAQ AKORDEON */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-icon {
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* FOOTER */
.site-footer {
  background: #0B192C;
  color: #94A3B8;
  padding: 4.5rem 0 2rem;
  font-size: 0.9rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a:hover {
  color: white;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* MOBİL SABİT CTA BARI (STICKY CTA BAR) */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  display: flex;
  padding: 0.6rem 0.85rem;
  gap: 0.65rem;
}

@media (min-width: 1024px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.92rem;
  color: white;
}

.sticky-call {
  background: var(--danger);
}

.sticky-whatsapp {
  background: var(--whatsapp);
}

/* ==========================================================================
   YENİ NESİL SABİT İLETİŞİM DOCK (DESKTOP & MOBİL AYRI MİMARİ)
   ========================================================================== */

/* MASAÜSTÜ DOCK: Mobilde Kesinlikle Gizli */
.peker-desktop-floating-dock {
  display: none;
}

@media (min-width: 1024px) {
  .peker-desktop-floating-dock {
    display: flex !important;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    position: fixed !important;
    bottom: 40px !important; /* Ekranın altında asla kalmaz, tam ve ferah görünür */
    right: 32px !important;
    z-index: 99999 !important;
    pointer-events: none;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
  }

  .peker-desktop-floating-dock * {
    pointer-events: auto;
  }

  /* Bilgi / Prompt Balonu */
  .dock-tooltip-bubble {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(13, 35, 94, 0.14);
    border-radius: 16px;
    box-shadow: 0 18px 40px -6px rgba(13, 35, 94, 0.22), 0 4px 12px rgba(0, 0, 0, 0.04);
    padding: 14px 18px;
    width: 290px;
    position: relative;
    transform-origin: bottom right;
    animation: dockBubbleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    margin-bottom: 2px;
  }

  .dock-tooltip-bubble.hidden {
    opacity: 0;
    transform: translateY(12px) scale(0.94);
    pointer-events: none;
    visibility: hidden;
  }

  .dock-tooltip-bubble::after {
    content: "";
    position: absolute;
    bottom: -7px;
    right: 42px;
    width: 14px;
    height: 14px;
    background: white;
    transform: rotate(45deg);
    border-right: 1px solid rgba(13, 35, 94, 0.14);
    border-bottom: 1px solid rgba(13, 35, 94, 0.14);
  }

  .dock-tooltip-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    font-size: 1.15rem;
    color: #94A3B8;
    cursor: pointer;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 50%;
    transition: color 0.2s, background-color 0.2s;
  }

  .dock-tooltip-close:hover {
    color: #0F172A;
    background-color: #F1F5F9;
  }

  .dock-pulse-online {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
  }

  .dock-tooltip-text {
    margin: 0;
    font-size: 0.835rem;
    color: #334155;
    line-height: 1.45;
  }

  .dock-tooltip-text strong {
    color: #0D235E;
  }

  /* Masaüstü Buton Grubu: Yan Yana Şık Kapsüller */
  .dock-desktop-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .dock-desktop-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 14px;
    border-radius: 50px;
    text-decoration: none;
    color: white !important;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: visible;
    white-space: nowrap;
    box-sizing: border-box;
  }

  .dock-desktop-btn:hover {
    transform: translateY(-3px) scale(1.02);
  }

  .dock-desktop-wp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    box-shadow: 0 8px 24px -2px rgba(37, 211, 102, 0.45);
  }

  .dock-desktop-wp:hover {
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65);
  }

  .dock-desktop-call {
    background: linear-gradient(135deg, #0D235E 0%, #08163D 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px -2px rgba(13, 35, 94, 0.4);
  }

  .dock-desktop-call:hover {
    box-shadow: 0 12px 32px rgba(13, 35, 94, 0.55);
  }

  .dock-btn-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .dock-desktop-btn:hover .dock-btn-icon-box {
    transform: rotate(-8deg) scale(1.1);
  }

  .dock-btn-labels {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
  }

  .dock-label-sub {
    font-size: 0.68rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.3px;
    text-transform: uppercase;
  }

  .dock-label-main {
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.2px;
  }
}

/* MOBİL KAPSÜL ADA: Masaüstünde Kesinlikle Gizli */
@media (min-width: 1024px) {
  .mobile-sticky-bar,
  .nextgen-mobile-dock {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  body {
    padding-bottom: 84px !important;
  }

  .mobile-sticky-bar.nextgen-mobile-dock {
    position: fixed;
    bottom: 14px;
    left: 14px;
    right: 14px;
    width: calc(100% - 28px);
    max-width: 440px;
    margin: 0 auto;
    height: auto !important;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 12px 35px -5px rgba(13, 35, 94, 0.22), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    padding: 6px;
    display: flex !important;
    gap: 8px;
    z-index: 9999;
  }

  .mobile-sticky-bar.nextgen-mobile-dock .sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 40px;
    text-decoration: none;
    color: white !important;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.15s ease, filter 0.15s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-sticky-bar.nextgen-mobile-dock .sticky-btn:active {
    transform: scale(0.96);
    filter: brightness(0.92);
  }

  .mobile-sticky-bar.nextgen-mobile-dock .sticky-call {
    background: linear-gradient(135deg, #0D235E 0%, #07193D 100%) !important;
    box-shadow: 0 4px 14px rgba(13, 35, 94, 0.35);
  }

  .mobile-sticky-bar.nextgen-mobile-dock .sticky-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  }
}

/* Ortak Mikro Animasyonlar */
.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.wp-radar-halo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  border: 2px solid rgba(37, 211, 102, 0.6);
  pointer-events: none;
  animation: wpRadarWave 2.8s infinite cubic-bezier(0.24, 0, 0.38, 1);
}

@keyframes wpRadarWave {
  0% { transform: scale(0.98); opacity: 0.8; }
  50% { opacity: 0.4; }
  100% { transform: scale(1.15, 1.35); opacity: 0; }
}

.dock-desktop-call:hover .dock-icon-phone {
  animation: phoneRing 0.6s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0); }
  20%, 60% { transform: rotate(-14deg); }
  40%, 80% { transform: rotate(14deg); }
}

@keyframes dockBubbleIn {
  from { opacity: 0; transform: translateY(16px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* İletişim Sayfası Bölünmüş Izgara */
.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-split-grid {
    grid-template-columns: 1.25fr 1fr;
  }
}

/* Hizmet Hero Izgarası */
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .service-hero-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

/* Hakkımızda Izgarası */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

/* Blog Editöryal Izgara */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .blog-featured-card {
    grid-template-columns: 1fr 1.2fr;
  }
}

/* Fiyatlandırma Tablosu (Dual-Tier) */
.price-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.price-tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: white;
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.price-tab-btn.active, .price-tab-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.price-table-wrapper, .price-table-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.price-table th {
  background: var(--bg-muted);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--border);
}

.price-table td {
  padding: 1.15rem 1.25rem;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-main);
}

.price-table tbody tr:hover {
  background: var(--bg-subtle);
}

.price-tag {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .price-table-wrapper, .price-table-wrap {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
  }
  .price-table thead {
    display: none !important;
  }
  .price-table, .price-table tbody, .price-table tr, .price-table td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .price-table tr {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 14px !important;
    padding: 1rem 1.15rem !important;
    margin-bottom: 0.85rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease !important;
  }
  .price-table td {
    padding: 0.35rem 0 !important;
    border: none !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  .price-table td:first-child {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #0D235E !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 1px solid #F1F5F9 !important;
    margin-bottom: 0.45rem !important;
    display: block !important;
  }
  .price-table td:nth-child(2) {
    font-size: 0.88rem !important;
    color: #475569 !important;
  }
  .price-table td:nth-child(2)::before {
    content: "Hesaplama Birimi:" !important;
    font-size: 0.82rem !important;
    color: #64748B !important;
    font-weight: 600 !important;
  }
  .price-table td:last-child {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    padding: 0.55rem 0.85rem !important;
    border-radius: 10px !important;
    margin-top: 0.65rem !important;
    border-top: none !important;
  }
  .price-table td:last-child::before {
    content: "Yıkama Ücreti:" !important;
    font-size: 0.84rem !important;
    font-weight: 700 !important;
    color: inherit !important;
  }
  #tableStandard .price-table td:last-child {
    background: #DCFCE7 !important;
    color: #166534 !important;
  }
  #tableSpecial .price-table td:last-child {
    background: #FEF3C7 !important;
    color: #92400E !important;
  }
}

/* ==========================================================================
   Footer (#AED1EF Arka Plan & Yüksek Kontrastlı Keskin Tipografi)
   ========================================================================== */
.site-footer {
  background: #AED1EF !important; /* Kullanıcının belirlediği resmi arka plan */
  color: #0D235E !important;      /* Net, okunaklı, silikliği önleyen derin lacivert */
  padding: 4.5rem 0 2rem;
  font-size: 0.9rem;
  border-top: 3px solid #8ABEE8;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  }
}

.footer-brand-logo {
  display: inline-block;
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.footer-brand-logo:hover .footer-logo-img {
  transform: scale(1.02);
}

.footer-col h4 {
  color: #08163D !important;
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
  font-weight: 800;
  position: relative;
  padding-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: #0D235E;
  border-radius: 2px;
}

.footer-desc {
  color: #122856 !important;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(13, 35, 94, 0.18);
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-md);
  color: #08163D !important;
  font-size: 0.825rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(13, 35, 94, 0.06);
}

.footer-badge svg {
  stroke: #059669;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #0D235E !important;
  font-weight: 700;
  font-size: 0.925rem;
  display: inline-block;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #0284C7 !important;
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
  color: #122856 !important;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(13, 35, 94, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D235E;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-icon svg {
  stroke: #0D235E;
}

.footer-phone-main {
  color: #08163D !important;
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-block;
  transition: var(--transition);
}

.footer-phone-main:hover {
  color: #0284C7 !important;
}

.footer-phone-sub {
  font-size: 0.825rem;
  color: #1E3A8A !important;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1.5px solid rgba(13, 35, 94, 0.18);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #0D235E !important;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom-links a {
  color: #0D235E !important;
  font-weight: 700;
  margin-left: 1rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: #0284C7 !important;
  text-decoration: underline;
}

/* ==========================================================================
   MOBİL UYGULAMA (APP-LIKE) & DETAYLI KIRILIM KURALLARI
   ========================================================================== */

/* 1. TOPBAR MOBİL DÜZELTMESİ: Yan Yana Tek Satır Modern ve Temiz Görünüm */
@media (max-width: 1023px) {
  .top-bar, .site-topbar {
    padding: 5px 8px !important;
    font-size: 0.70rem !important;
    line-height: 1.25 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .top-bar .container {
    padding-left: 6px !important;
    padding-right: 6px !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .top-bar-inner, .topbar-inner {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .top-bar-left {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    overflow: hidden !important;
  }

  .top-bar-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-size: 0.70rem !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    color: #0D235E !important;
  }

  .top-bar-item svg {
    width: 11px !important;
    height: 11px !important;
    flex-shrink: 0 !important;
    stroke: #0D235E !important;
  }

  .top-bar-sep {
    display: inline-block !important;
    opacity: 0.4 !important;
    font-weight: 900 !important;
    font-size: 0.68rem !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    color: #0D235E !important;
  }

  .hours-text-desktop,
  .area-text-desktop {
    display: none !important;
  }

  .hours-text-mobile,
  .area-text-mobile {
    display: inline !important;
    white-space: nowrap !important;
  }

  .top-status-badge {
    padding: 1px 5px !important;
    font-size: 0.62rem !important;
    gap: 3px !important;
    flex-shrink: 0 !important;
  }
  .top-status-badge .status-dot {
    width: 5px !important;
    height: 5px !important;
  }

  .top-bar-mobile-sep,
  .top-bar-mobile-trust {
    display: none !important;
  }

  .top-bar-right {
    display: none !important;
  }
}

@media (max-width: 374px) {
  .top-bar, .site-topbar {
    font-size: 0.64rem !important;
    padding: 4px 4px !important;
  }
  .top-bar-item {
    font-size: 0.64rem !important;
    gap: 3px !important;
  }
  .top-bar-left {
    gap: 4px !important;
  }
  .top-status-badge {
    padding: 0.5px 3.5px !important;
    font-size: 0.58rem !important;
  }
}

@media (min-width: 1024px) {
  .hours-text-desktop,
  .area-text-desktop {
    display: inline !important;
  }
  .hours-text-mobile,
  .area-text-mobile {
    display: none !important;
  }
  .top-bar-mobile-sep,
  .top-bar-mobile-trust {
    display: none !important;
  }
  .top-bar-sep {
    display: none !important;
  }
}

/* 2. HERO MOBİL SIRALAMASI: Video 1. sırada, İçerik 2. sırada */
@media (max-width: 1023px) {
  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  .hero-visual {
    order: 1 !important;
    width: 100% !important;
    margin-bottom: 0.5rem !important;
  }
  .hero-content {
    order: 2 !important;
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .hero-badge {
    margin: 0 auto 1.25rem auto !important;
  }
  .hero-title {
    text-align: center !important;
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }
  .hero-desc {
    text-align: center !important;
    margin: 0 auto 1.5rem auto !important;
    font-size: 0.95rem !important;
  }
  .hero-actions {
    width: 100% !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  .hero-btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* 3. HERO GÜVEN MADDELERİ: Mobilde Kesintisiz Kayan Sonsuz Döngü (Marquee Loop) */
  .hero-trust-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.9rem 0 0.5rem 0 !important;
    border-top: 1px solid rgba(13, 35, 94, 0.1) !important;
    position: relative !important;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%) !important;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%) !important;
    user-select: none !important;
    -webkit-user-select: none !important;
  }
  .hero-trust-track {
    display: flex !important;
    flex-shrink: 0 !important;
    align-items: center !important;
    white-space: nowrap !important;
    gap: 0.65rem !important;
    padding-right: 0.65rem !important;
    animation: heroTrustLoop 12s linear infinite !important;
    will-change: transform !important;
  }
  .hero-trust-track-clone {
    display: flex !important;
  }
  .hero-trust-list:active .hero-trust-track,
  .hero-trust-list:hover .hero-trust-track {
    animation-play-state: paused !important;
  }
  .hero-trust-point {
    display: inline-flex !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    align-items: center !important;
    gap: 0.35rem !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 0.42rem 0.8rem !important;
    border-radius: 50px !important;
    border: 1px solid rgba(13, 35, 94, 0.12) !important;
    box-shadow: 0 2px 6px rgba(13, 35, 94, 0.04) !important;
    color: var(--text-main) !important;
  }

  /* 4. NEDEN PEKER BÖLÜMÜ: Mobilde Tamamen Ortalı */
  .why-us-content {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .why-us-content .section-tag {
    margin: 0 auto 0.75rem auto !important;
  }
  .why-us-content h2 {
    text-align: center !important;
  }
  .why-us-content p {
    text-align: center !important;
  }
  .why-us-list {
    width: 100% !important;
    max-width: 440px !important;
    margin: 0 auto 2rem auto !important;
    padding: 0 !important;
    list-style: none !important;
  }
  .why-us-list li {
    justify-content: center !important;
    text-align: center !important;
    font-size: 0.92rem !important;
  }
  .why-us-actions {
    justify-content: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem !important;
  }
  .why-us-actions .btn {
    width: 100% !important;
    max-width: 320px !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

/* 5. TÜM BÖLÜM BAŞLIKLARI, AÇIKLAMALARI VE BİLEŞENLER: Mobilde Ortalı & App Havası */
@media (max-width: 768px) {
  .section-header {
    text-align: center !important;
    margin-bottom: 2rem !important;
  }
  .section-tag {
    margin-left: auto !important;
    margin-right: auto !important;
    display: inline-flex !important;
  }
  .section-header h2,
  .section-header p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Hizmet Kartları: Ortalı Başlık, Metin ve Buton */
  .service-card {
    text-align: center !important;
  }
  .service-card-body {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .service-card-title {
    text-align: center !important;
    width: 100% !important;
  }
  .service-card-desc {
    text-align: center !important;
    width: 100% !important;
  }
  .service-card-link {
    justify-content: center !important;
    margin: 0.5rem auto 0 auto !important;
  }

  /* 6 Adımlı Süreç (Timeline): Ortalı Adım No, Başlık ve Açıklama */
  .timeline-card {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .timeline-num {
    margin: 0 auto 0.75rem auto !important;
    text-align: center !important;
  }
  .timeline-card h3 {
    text-align: center !important;
  }
  .timeline-card p {
    text-align: center !important;
  }

  /* Tesis Galerisi Kartları: Ortalı Başlık ve Açıklama */
  .facility-gallery .card {
    text-align: center !important;
  }
  .facility-card-body,
  .facility-gallery .card > div:last-child {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .facility-gallery .card h4,
  .facility-gallery .card p {
    text-align: center !important;
  }

  /* Video Galerisi: Ortalı Metinler */
  .video-gallery-section .section-header {
    text-align: center !important;
  }
  .vg-info {
    text-align: center !important;
  }
  .vg-title,
  .vg-desc {
    text-align: center !important;
  }

  /* 6. FOOTER: Mobilde Tamamen Ortalı */
  .site-footer {
    text-align: center !important;
  }
  .footer-grid {
    text-align: center !important;
    gap: 2.25rem !important;
  }
  .footer-col {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .footer-col h4 {
    text-align: center !important;
  }
  .footer-col h4::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .footer-brand-logo {
    display: inline-block !important;
    margin: 0 auto 1rem auto !important;
  }
  .footer-desc {
    text-align: center !important;
    max-width: 360px !important;
    margin: 0 auto 1.25rem auto !important;
  }
  .footer-badge {
    margin: 0 auto !important;
    justify-content: center !important;
  }
  .footer-links {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    text-align: center !important;
    width: 100% !important;
  }
  .footer-links li {
    text-align: center !important;
  }
  .footer-contact {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    text-align: center !important;
    width: 100% !important;
  }
  .footer-contact li {
    justify-content: center !important;
    text-align: center !important;
  }
  .footer-bottom {
    text-align: center !important;
    justify-content: center !important;
  }
  .footer-copy {
    text-align: center !important;
    width: 100% !important;
  }
}

/* ==========================================================================
   İÇ SAYFALAR MOBİL UYGULAMA (APP-LIKE) & ORTALI TASARIM KURALLARI
   Hizmet Detay (/hali-yikama/), Bölgelerimiz (/bolgelerimiz/), Fiyatlar, İletişim, Hakkımızda
   ========================================================================== */
@media (max-width: 1023px) {
  /* 1. Hizmet Hero Bölümü (Service Detail) */
  .service-hero-section {
    padding: 2.25rem 0 2.5rem !important;
    text-align: center !important;
  }
  .service-hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.75rem !important;
  }
  .service-hero-visual {
    order: 1 !important;
    width: 100% !important;
  }
  .service-hero-img-wrap {
    border-radius: 16px !important;
    max-width: 440px !important;
    margin: 0 auto !important;
    box-shadow: 0 8px 24px rgba(13, 35, 94, 0.1) !important;
  }
  .service-hero-img {
    height: 230px !important;
  }
  .service-hero-content {
    order: 2 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .service-hero-content .section-tag {
    margin: 0 auto 0.75rem auto !important;
  }
  .service-hero-title {
    text-align: center !important;
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.75rem !important;
  }
  .service-hero-desc {
    text-align: center !important;
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    max-width: 480px !important;
    margin: 0 auto 1.5rem auto !important;
  }
  .service-hero-actions {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    align-items: center !important;
    margin-bottom: 1.5rem !important;
  }
  .service-hero-btn {
    width: 100% !important;
    max-width: 360px !important;
    justify-content: center !important;
    min-height: 48px !important;
    font-size: 0.98rem !important;
    border-radius: 14px !important;
  }
  .service-hero-trust-list {
    justify-content: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    flex-wrap: wrap !important;
  }
  .service-trust-chip {
    font-size: 0.78rem !important;
    padding: 0.35rem 0.65rem !important;
    border-radius: 50px !important;
  }

  /* 2. Hizmet Detay İçeriği & Zengin İçerik (.rich-content) */
  .service-content-wrapper {
    text-align: center !important;
  }
  .service-section-title {
    text-align: center !important;
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .service-rich-content,
  .location-rich-content,
  .rich-content {
    text-align: center !important;
  }
  .rich-content h1,
  .rich-content h2,
  .rich-content h3,
  .rich-content h4,
  .rich-content h5 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    color: var(--primary) !important;
  }
  .rich-content h4,
  .rich-content h5 {
    font-size: 1.05rem !important;
    margin: 1.5rem auto 0.75rem auto !important;
    padding: 0.65rem 1rem !important;
    background: #F0F7FD !important;
    border-radius: 12px !important;
    border: 1px solid var(--border) !important;
    display: inline-block !important;
    max-width: 100% !important;
  }
  .rich-content p {
    text-align: center !important;
    font-size: 0.95rem !important;
    line-height: 1.75 !important;
    margin-bottom: 1.25rem !important;
  }
  .rich-content hr {
    margin: 2rem auto !important;
    border: none !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(13, 35, 94, 0.15), transparent) !important;
  }
  .rich-content img {
    margin: 1rem auto !important;
    max-width: 100% !important;
    border-radius: 14px !important;
  }

  /* 3. Tesis Fotoğrafları & Dönüşüm Banner */
  .service-facility-box {
    text-align: center !important;
    margin-bottom: 3rem !important;
  }
  .service-box-title {
    text-align: center !important;
    font-size: 1.35rem !important;
    margin-bottom: 1.25rem !important;
  }
  .service-facility-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    max-width: 400px !important;
    margin: 0 auto !important;
  }
  .service-facility-card {
    height: 200px !important;
    border-radius: 14px !important;
  }
  .service-cta-banner {
    padding: 2rem 1.25rem !important;
    border-radius: 18px !important;
    text-align: center !important;
    margin-bottom: 3rem !important;
  }
  .service-cta-banner h3 {
    font-size: 1.4rem !important;
    text-align: center !important;
  }
  .service-cta-banner p {
    text-align: center !important;
    font-size: 0.92rem !important;
    margin-bottom: 1.5rem !important;
  }
  .service-cta-actions {
    flex-direction: column !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }
  .service-cta-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 48px !important;
    border-radius: 14px !important;
  }
  .service-locations-box {
    text-align: center !important;
  }
  .service-box-desc {
    text-align: center !important;
  }

  /* 4. Bölge Detay (/bayrampasa-hali-yikama/ vb.) */
  .location-detail-container {
    text-align: center !important;
  }
  .location-detail-title {
    text-align: center !important;
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
  }
  .location-badge-box {
    text-align: center !important;
    border-radius: 14px !important;
    padding: 1.15rem 1rem !important;
    border: 1px solid var(--border) !important;
    border-left: 1px solid var(--border) !important;
    margin-bottom: 2rem !important;
  }
  .location-badge-box p {
    text-align: center !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }
  .location-cta-card {
    padding: 1.75rem 1.25rem !important;
    border-radius: 16px !important;
    text-align: center !important;
    margin-bottom: 2.5rem !important;
  }
  .location-cta-card h3 {
    text-align: center !important;
    font-size: 1.35rem !important;
  }
  .location-cta-card p {
    text-align: center !important;
    font-size: 0.92rem !important;
  }
  .location-cta-buttons {
    flex-direction: column !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }
  .location-cta-buttons .btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 48px !important;
    border-radius: 14px !important;
  }
  .location-other-box {
    text-align: center !important;
  }
  .location-other-title,
  .location-other-desc {
    text-align: center !important;
  }

  /* 5. Bölgelerimiz Listesi (/bolgelerimiz/) */
  .locations-grid {
    grid-template-columns: 1fr !important;
    gap: 0.6rem !important;
  }
  .location-pill {
    padding: 0.85rem 1rem !important;
    font-size: 0.92rem !important;
    border-radius: 14px !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .location-pill-info {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }
  .loc-badge {
    display: none !important;
  }

  /* 6. Fiyat Listesi (/fiyat-listesi/) & Ana Sayfa Tarifeler */
  .price-tabs,
  .home-price-tabs {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.6rem !important;
    margin-bottom: 2rem !important;
    padding: 0 !important;
  }
  .price-tab-btn,
  .home-tariff-btn {
    width: 100% !important;
    text-align: center !important;
    padding: 0.85rem 1rem !important;
    border-radius: 14px !important;
    font-size: 0.90rem !important;
    min-height: 48px !important;
    white-space: normal !important;
    line-height: 1.35 !important;
    box-sizing: border-box !important;
  }
  .tariff-desktop-text {
    display: none !important;
  }
  .tariff-mobile-text {
    display: inline !important;
  }
  #tableStandard h3,
  #tableSpecial h3 {
    text-align: center !important;
    justify-content: center !important;
  }

  /* Fabrika CTA Butonu (Mobil Uyum) */
  .facility-cta-wrapper {
    width: 100% !important;
    padding: 0 0.5rem !important;
    box-sizing: border-box !important;
  }
  .facility-cta-btn {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.92rem !important;
    line-height: 1.35 !important;
    display: flex !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  .facility-cta-btn .desktop-text {
    display: none !important;
  }
  .facility-cta-btn .mobile-text {
    display: inline !important;
  }

  /* Fabrikadan Videolar Lightbox Modal (Mobil Uyum) */
  .vg-modal {
    padding: 0.75rem 0.5rem !important;
  }
  .vg-modal-close {
    position: fixed !important;
    top: 10px !important;
    right: 10px !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 1.5rem !important;
    z-index: 1000002 !important;
  }
  .vg-modal-inner {
    gap: 0.65rem !important;
    max-width: 100% !important;
    margin: auto !important;
  }
  .vg-modal-video {
    max-height: 64vh !important;
    max-height: 64dvh !important;
    max-width: min(85vw, 360px) !important;
    width: auto !important;
    aspect-ratio: 9 / 16 !important;
    object-fit: contain !important;
    border-radius: 12px !important;
  }
  .vg-modal-info strong {
    font-size: 0.95rem !important;
  }
  .vg-modal-info span {
    font-size: 0.8rem !important;
  }

  /* 7. İletişim (/iletisim/) */
  .contact-split-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .contact-split-grid .card {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    border-radius: 16px !important;
    padding: 1.5rem !important;
  }
  .contact-split-grid .card h3,
  .contact-split-grid .card p {
    text-align: center !important;
  }

  /* 8. Hakkımızda (/hakkimizda/) */
  .about-hero-section {
    text-align: center !important;
    padding: 2.5rem 0 !important;
  }
  .about-hero-inner {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .about-hero-inner h1,
  .about-hero-lead {
    text-align: center !important;
  }
  .about-hero-badges {
    justify-content: center !important;
  }
  .about-split-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  .about-split-text {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .about-split-text h2,
  .about-split-text p {
    text-align: center !important;
  }
  .about-stat-row {
    justify-content: center !important;
  }

  /* 9. Blog Detay & Makaleler (/antibakteriyel-hali-yikama-ile-saglikli-yasam/ vb.) */
  .blog-detail-wrapper {
    padding: 1.25rem 0 3.5rem !important;
  }
  .blog-detail-container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .blog-detail-header {
    text-align: center !important;
    margin-bottom: 1.75rem !important;
  }
  .blog-detail-meta {
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-bottom: 0.85rem !important;
  }
  .blog-cat-badge {
    font-size: 0.75rem !important;
    padding: 0.3rem 0.75rem !important;
  }
  .blog-detail-date,
  .blog-detail-read {
    font-size: 0.78rem !important;
    background: #F1F5F9 !important;
    padding: 0.25rem 0.65rem !important;
    border-radius: 9999px !important;
    color: #475569 !important;
    font-weight: 600 !important;
  }
  .blog-detail-title {
    text-align: center !important;
    font-size: 1.55rem !important;
    line-height: 1.3 !important;
    margin: 0.6rem 0 0.85rem !important;
  }
  .blog-detail-summary {
    text-align: center !important;
    background: #F0F7FF !important;
    border: 1px solid #BFDBFE !important;
    border-left: 1px solid #BFDBFE !important;
    border-radius: 14px !important;
    padding: 1rem 1.15rem !important;
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
  }
  .blog-detail-hero-img {
    height: auto !important;
    aspect-ratio: 16/9 !important;
    max-height: 230px !important;
    border-radius: 16px !important;
    margin-bottom: 1.75rem !important;
    box-shadow: 0 8px 24px -6px rgba(13,35,94,0.12) !important;
  }
  .rich-content > h1:first-child,
  .rich-content h1 {
    display: none !important;
  }
  .rich-content h2 {
    text-align: center !important;
    font-size: 1.3rem !important;
    line-height: 1.35 !important;
    margin: 2rem 0 1rem !important;
    padding-bottom: 0.4rem !important;
    border-bottom: none !important;
    position: relative !important;
  }
  .rich-content h2::after {
    content: '' !important;
    display: block !important;
    width: 48px !important;
    height: 3px !important;
    background: #AED1EF !important;
    margin: 0.5rem auto 0 !important;
    border-radius: 2px !important;
  }
  .rich-content h3 {
    text-align: center !important;
    font-size: 1.15rem !important;
    margin: 1.5rem 0 0.75rem !important;
  }
  .rich-content p {
    font-size: 0.98rem !important;
    line-height: 1.75 !important;
    color: #334155 !important;
    margin-bottom: 1.25rem !important;
    text-align: left !important;
  }
  .rich-content ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 1.25rem 0 1.75rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.65rem !important;
  }
  .rich-content ul li {
    position: relative !important;
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 12px !important;
    padding: 0.85rem 1rem 0.85rem 2.6rem !important;
    font-size: 0.93rem !important;
    line-height: 1.55 !important;
    color: #1E293B !important;
    box-shadow: 0 2px 6px rgba(13,35,94,0.03) !important;
    margin-bottom: 0 !important;
  }
  .rich-content ul li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 0.95rem !important;
    top: 0.85rem !important;
    color: #10B981 !important;
    font-weight: 900 !important;
    font-size: 1.05rem !important;
    line-height: 1 !important;
  }
  .rich-content ul li p {
    margin: 0 !important;
    font-size: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
  }
  .rich-content blockquote {
    text-align: center !important;
    border-radius: 12px !important;
    border: 1px solid #BFDBFE !important;
    border-left: 4px solid #0369A1 !important;
    background: #F0F7FF !important;
    padding: 1.1rem 1.25rem !important;
    margin: 1.5rem 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }
  .blog-detail-cta {
    flex-direction: column !important;
    text-align: center !important;
    padding: 1.75rem 1.25rem !important;
    border-radius: 18px !important;
    gap: 1.25rem !important;
    margin-bottom: 2.5rem !important;
  }
  .blog-cta-text {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }
  .blog-cta-icon {
    font-size: 2.2rem !important;
    margin-bottom: 0.25rem !important;
  }
  .blog-cta-text h3 {
    text-align: center !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.35rem !important;
  }
  .blog-cta-text p {
    text-align: center !important;
    font-size: 0.92rem !important;
  }
  .blog-cta-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.75rem !important;
  }
  .blog-cta-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 48px !important;
    border-radius: 14px !important;
    font-size: 0.95rem !important;
  }
  .blog-related {
    padding-top: 2rem !important;
  }
  .blog-related h3 {
    text-align: center !important;
    font-size: 1.3rem !important;
    margin-bottom: 1.25rem !important;
  }
  .blog-related-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }
  .blog-related-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 0.75rem !important;
    gap: 0.85rem !important;
    border-radius: 14px !important;
    background: white !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 2px 8px rgba(13,35,94,0.05) !important;
  }
  .blog-related-img {
    width: 84px !important;
    height: 84px !important;
    min-width: 84px !important;
    border-radius: 10px !important;
    flex-shrink: 0 !important;
  }
  .blog-related-body {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
    flex: 1 !important;
    min-width: 0 !important;
    text-align: left !important;
  }
  .blog-related-title {
    font-size: 0.88rem !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .blog-detail-sidebar {
    position: static !important;
    margin-top: 2rem !important;
    gap: 1.25rem !important;
    width: 100% !important;
  }

  /* 10. Blog Listesi (/blog/) */
  .blog-list-hero {
    padding: 2rem 1rem !important;
  }
  .blog-list-hero h1 {
    font-size: 1.55rem !important;
    text-align: center !important;
    margin: 0.5rem 0 0.85rem !important;
    line-height: 1.3 !important;
  }
  .blog-list-lead {
    font-size: 0.92rem !important;
    text-align: center !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.6 !important;
  }
  .blog-cat-pills {
    justify-content: center !important;
    gap: 0.45rem !important;
  }
  .blog-cat-pill {
    padding: 0.35rem 0.85rem !important;
    font-size: 0.8rem !important;
  }
  .blog-list-container {
    padding-top: 1.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .blog-featured {
    grid-template-columns: 1fr !important;
    border-radius: 16px !important;
    margin-bottom: 2rem !important;
    box-shadow: 0 6px 20px -6px rgba(13,35,94,0.1) !important;
  }
  .blog-featured-img {
    height: 200px !important;
    min-height: 200px !important;
  }
  .blog-featured-body {
    padding: 1.5rem 1.25rem !important;
    text-align: center !important;
    align-items: center !important;
  }
  .blog-meta-row {
    justify-content: center !important;
  }
  .blog-featured-title {
    font-size: 1.3rem !important;
    text-align: center !important;
    margin: 0.6rem 0 0.75rem !important;
  }
  .blog-featured-excerpt {
    font-size: 0.9rem !important;
    text-align: center !important;
    line-height: 1.6 !important;
    margin-bottom: 1.25rem !important;
  }
  .blog-featured-btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 48px !important;
    border-radius: 14px !important;
    font-size: 0.95rem !important;
  }
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    margin-bottom: 2.5rem !important;
  }
  .blog-card {
    border-radius: 16px !important;
  }
  .blog-card-img {
    height: 180px !important;
  }
  .blog-card-body {
    padding: 1.25rem !important;
    text-align: center !important;
    align-items: center !important;
  }
  .blog-card-title {
    font-size: 1.1rem !important;
    text-align: center !important;
  }
  .blog-card-excerpt {
    font-size: 0.88rem !important;
    text-align: center !important;
    line-height: 1.6 !important;
  }
  .blog-card-link {
    width: 100% !important;
    justify-content: center !important;
    font-size: 0.92rem !important;
    padding-top: 0.5rem !important;
    border-top: 1px solid var(--border) !important;
  }

  /* 11. Genel Breadcrumbs & Tipografi */
  .breadcrumb-bar {
    padding: 0.75rem 0 !important;
  }
  .breadcrumb-nav {
    justify-content: center !important;
    text-align: center !important;
    font-size: 0.80rem !important;
    gap: 0.4rem !important;
  }
  .breadcrumb-current {
    max-width: 200px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: inline-block !important;
    vertical-align: middle !important;
  }
}

/* ==========================================================================
   HALI TÜRLERİ SAYFASI VE ÖZEL YIKAMA REHBERİ STİLLERİ
   ========================================================================== */
.carpet-hero-section {
  background: linear-gradient(135deg, #0D235E 0%, #08163D 100%);
  color: white;
  padding: 3.5rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.carpet-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.carpet-hero-section h1 {
  font-size: 2.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0.75rem 0 1rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.carpet-hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #CBD5E1;
  margin-bottom: 2rem;
}

.carpet-hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #F8FAFC;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.45rem 0.95rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

/* Halı Filtre Sticky Barı */
.carpet-filter-sticky {
  position: sticky;
  top: 72px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #E2E8F0;
  z-index: 99;
  padding: 0.75rem 0;
  box-shadow: 0 4px 12px rgba(13, 35, 94, 0.04);
}

.carpet-filter-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 2px 4px;
}

.carpet-filter-nav::-webkit-scrollbar {
  display: none;
}

.carpet-nav-btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.carpet-nav-btn:hover {
  background: #E0F2FE;
  border-color: #38BDF8;
  color: #0369A1;
  transform: translateY(-1px);
}

.carpet-nav-btn.cta-nav-btn {
  background: #FEF3C7;
  border-color: #FCD34D;
  color: #92400E;
}

/* Halı Türleri Detay Kartları */
.carpet-types-section {
  padding-top: 2.5rem;
}

.carpet-type-card {
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(13, 35, 94, 0.05);
  overflow: hidden;
  margin-bottom: 2.5rem;
  scroll-margin-top: 140px;
  transition: box-shadow 0.25s ease;
}

.carpet-type-card:hover {
  box-shadow: 0 16px 40px rgba(13, 35, 94, 0.08);
}

.carpet-card-header {
  padding: 1.75rem 2rem 1.5rem;
  color: white;
}

.carpet-card-header.header-silk {
  background: linear-gradient(135deg, #4C1D95 0%, #6D28D9 100%);
}

.carpet-card-header.header-viscose {
  background: linear-gradient(135deg, #0369A1 0%, #0284C7 100%);
}

.carpet-card-header.header-bamboo {
  background: linear-gradient(135deg, #065F46 0%, #059669 100%);
}

.carpet-card-header.header-handmade {
  background: linear-gradient(135deg, #92400E 0%, #B45309 100%);
}

.carpet-card-header.header-wool {
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
}

.carpet-card-header.header-machine {
  background: linear-gradient(135deg, #3730A3 0%, #4F46E5 100%);
}

.carpet-card-header.header-shaggy {
  background: linear-gradient(135deg, #155E75 0%, #0891B2 100%);
}

.card-badge-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
}

.type-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.type-pill {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.carpet-card-header h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
}

.carpet-card-body {
  padding: 2rem;
}

.carpet-info-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}

.info-block {
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
}

.danger-block {
  background: #FFF1F2;
  border: 1px solid #FECDD3;
}

.danger-block h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #BE123C;
  margin: 0 0 0.65rem;
}

.danger-block p {
  font-size: 0.9rem;
  color: #4C0519;
  line-height: 1.6;
  margin: 0;
}

.solution-block {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}

.solution-block h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #15803D;
  margin: 0 0 0.65rem;
}

.carpet-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.carpet-steps-list li {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #14532D;
  position: relative;
  padding-left: 1.35rem;
}

.carpet-steps-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #16A34A;
  font-weight: 800;
}

.carpet-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid #F1F5F9;
  flex-wrap: wrap;
}

.guarantee-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  font-size: 0.84rem;
  color: #065F46;
  flex: 1;
  min-width: 280px;
}

.card-cta-group {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

/* Fotoğraflı Danışma Kartı */
.carpet-help-card {
  background: linear-gradient(135deg, #0D235E 0%, #1E3A8A 100%);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  color: white;
  margin: 3rem 0;
  box-shadow: 0 16px 36px rgba(13, 35, 94, 0.2);
}

.help-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
}

.help-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #38BDF8;
}

.help-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #38BDF8;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.help-content h3 {
  color: white;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.65rem;
}

.help-content p {
  color: #E2E8F0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.35rem;
  max-width: 780px;
}

.help-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn-consult-white {
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-consult-white:hover {
  color: #0D235E !important;
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* Karşılaştırmalı Tablo */
.carpet-summary-table-section {
  margin: 3.5rem 0;
}

.table-desktop-view {
  display: block;
}

.cards-mobile-view {
  display: none;
}

.carpet-summary-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid #E2E8F0;
}

.carpet-summary-table th {
  background: #F8FAFC;
  padding: 1rem 1.15rem;
  text-align: left;
  font-size: 0.84rem;
  font-weight: 800;
  color: #475569;
  border-bottom: 2px solid #E2E8F0;
}

.carpet-summary-table td {
  padding: 1rem 1.15rem;
  font-size: 0.88rem;
  color: #1E293B;
  border-bottom: 1px solid #F1F5F9;
  vertical-align: middle;
}

.sens-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  border-radius: 50px;
}

.sens-extreme { background: #FFE4E6; color: #E11D48; }
.sens-high    { background: #FEF3C7; color: #D97706; }
.sens-med     { background: #E0F2FE; color: #0284C7; }
.sens-norm    { background: #F1F5F9; color: #475569; }

/* Mobil Karşılaştırma Kartları */
.summary-mobile-card {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.sm-card-header {
  padding: 0.9rem 1.1rem;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.sm-carpet-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0D235E;
}

.sm-card-body {
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sm-detail-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.86rem;
  gap: 0.75rem;
}

.sm-label {
  font-weight: 700;
  color: #64748B;
  white-space: nowrap;
  flex-shrink: 0;
}

.sm-val {
  font-weight: 600;
  color: #1E293B;
  text-align: right;
  line-height: 1.4;
}

.sm-val.guarantee-val {
  color: #059669;
  font-weight: 800;
}

/* FAQ List */
.carpet-faq-section {
  margin: 3.5rem 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-card {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.faq-card-header {
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #0D235E;
  user-select: none;
}

.faq-toggle-icon {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0284C7;
  transition: transform 0.2s ease;
}

.faq-card[open] .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-card-body {
  padding: 0 1.25rem 1.25rem;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Halı Türleri Alt Banner */
.carpet-bottom-cta {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(5, 150, 105, 0.25);
  margin-top: 2rem;
}

.carpet-bottom-cta h3 {
  color: white;
  font-size: 1.65rem;
  font-weight: 800;
  margin: 0 0 0.65rem;
}

.carpet-bottom-cta p {
  color: #D1FAE5;
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 1.75rem;
}

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

/* Halı Yıkama Detay Sayfasındaki Geçiş Bannerı */
.carpet-types-detail-banner {
  background: linear-gradient(135deg, #EFF6FF 0%, #E0F2FE 100%);
  border: 1.5px solid #BAE6FD;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.06);
}

.ct-banner-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ct-banner-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: #0284C7;
  letter-spacing: 0.5px;
}

.ct-banner-left h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0D235E;
  margin: 0;
}

.ct-banner-left p {
  font-size: 0.88rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

.ct-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.ct-tag {
  font-size: 0.76rem;
  font-weight: 700;
  color: #0369A1;
  background: white;
  border: 1px solid #BAE6FD;
  padding: 0.35rem 0.65rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.ct-tag:hover {
  background: #0284C7;
  color: white;
  border-color: #0284C7;
}

/* ==========================================================================
   Hizmet Detay Sayfası — SEO Odaklı Süreç ve Aşama Kartları
   ========================================================================== */

.service-seo-intro {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-left: 4px solid var(--primary);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  text-align: left;
}

.service-seo-intro h2,
.service-seo-intro h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.35;
  text-align: left;
}

.service-seo-intro p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #334155;
  margin: 0;
  text-align: left;
}

.service-process-wrapper {
  margin: 2.75rem 0;
  text-align: left;
}

.process-section-title {
  text-align: left;
  margin-bottom: 1.75rem;
}

.process-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  color: #0284C7;
  background: #E0F2FE;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.process-section-title h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0D235E;
  margin: 0 0 0.5rem;
  text-align: left;
}

.process-section-title p {
  font-size: 0.94rem;
  color: #64748B;
  margin: 0;
  text-align: left;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: left;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: #BAE6FD;
}

.step-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #F1F5F9;
  text-align: left;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.25);
}

.step-card-header h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0D235E;
  margin: 0;
  line-height: 1.35;
  text-align: left;
}

.step-card-body p {
  font-size: 0.91rem;
  line-height: 1.65;
  color: #334155;
  margin: 0;
  text-align: left;
}

/* Neden Peker Kartları */
.service-features-wrapper {
  margin: 3rem 0;
  text-align: left;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: left;
}

.feature-item-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.35rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
  text-align: left;
}

.feature-item-card:hover {
  border-color: #059669;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.08);
}

.feature-icon-badge {
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
  text-align: left;
}

.feature-item-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0D235E;
  margin: 0 0 0.45rem;
  text-align: left;
}

.feature-item-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
  text-align: left;
}

/* ==========================================================================
   42+2 Fırçalı Dev Parkur Vurgu Bölümleri (Hakkımızda & Ana Sayfa)
   ========================================================================== */

/* 1. Hakkımızda Sayfasındaki Dev Sistem Kartı (Ortalı & Modern) */
.giant-system-hero-card {
  background: linear-gradient(135deg, #0D235E 0%, #0F3482 60%, #0369A1 100%);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  color: #FFFFFF;
  box-shadow: 0 16px 36px rgba(13, 35, 94, 0.18);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.giant-system-hero-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.gsc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.75px;
  color: #FEF3C7;
  background: rgba(245, 158, 11, 0.25);
  border: 1px solid rgba(245, 158, 11, 0.45);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin: 0 auto 1rem auto;
  max-width: 100%;
  line-height: 1.35;
  text-align: center;
}

.giant-system-hero-card h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 auto 0.65rem auto;
  line-height: 1.35;
  text-align: center;
  max-width: 900px;
}

.gsc-lead {
  font-size: 1.15rem;
  font-weight: 700;
  color: #38BDF8;
  margin: 0 auto 0.95rem auto;
  text-align: center;
  max-width: 850px;
}

.gsc-subtext {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #E2E8F0;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

/* 2. Ana Sayfadaki Dev Parkur Showcase Bölümü */
.giant-parkur-showcase-section {
  padding: 3rem 0;
  background: #F8FAFC;
}

.giant-parkur-box {
  background: linear-gradient(135deg, #0A192F 0%, #0D235E 60%, #1E3A8A 100%);
  border-radius: 24px;
  padding: 2.75rem 2.25rem;
  color: #FFFFFF;
  box-shadow: 0 20px 48px rgba(10, 25, 47, 0.22);
  position: relative;
  overflow: hidden;
}

.giant-parkur-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F59E0B 0%, #38BDF8 50%, #10B981 100%);
}

.gpb-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.75px;
  color: #FEF3C7;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}

.gpb-header h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.gpb-lead {
  font-size: 1.15rem;
  font-weight: 700;
  color: #38BDF8;
  margin: 0 0 1rem;
}

.gpb-desc {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #CBD5E1;
  max-width: 900px;
  margin: 0 0 2rem;
}

.gpb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.gpb-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.25rem 1.1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gpb-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.gpb-icon {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.gpb-text strong {
  display: block;
  font-size: 0.98rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
  font-weight: 800;
}

.gpb-text span {
  font-size: 0.84rem;
  color: #94A3B8;
  line-height: 1.5;
}

.gpb-footer-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.gpb-trust-text {
  font-size: 0.95rem;
  color: #E2E8F0;
  max-width: 650px;
}

.gpb-trust-text strong {
  color: #FCD34D;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .gpb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .carpet-hero-section {
    padding: 2.25rem 0 2rem;
  }
  .carpet-hero-section h1 {
    font-size: 1.65rem;
  }
  .carpet-hero-lead {
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
  }
  .carpet-card-header {
    padding: 1.25rem 1.15rem 1rem;
  }
  .carpet-card-header h2 {
    font-size: 1.15rem;
  }
  .carpet-card-body {
    padding: 1.25rem 1.15rem;
  }
  .carpet-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .carpet-card-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .card-cta-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .help-card-inner {
    flex-direction: column;
    gap: 1rem;
  }
  .help-actions {
    flex-direction: column;
    width: 100%;
  }
  .help-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .carpet-types-detail-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .carpet-types-detail-banner .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .table-desktop-view {
    display: none !important;
  }
  .cards-mobile-view {
    display: flex !important;
    flex-direction: column;
    gap: 0.85rem;
  }
  .service-seo-intro {
    padding: 1.25rem 1rem !important;
    text-align: left !important;
  }
  .service-seo-intro h2,
  .service-seo-intro h3 {
    font-size: 1.15rem !important;
    text-align: left !important;
  }
  .service-seo-intro p {
    font-size: 0.89rem !important;
    text-align: left !important;
  }
  .process-section-title {
    text-align: left !important;
  }
  .process-section-title h3 {
    font-size: 1.25rem !important;
    text-align: left !important;
  }
  .process-section-title p {
    text-align: left !important;
  }
  .process-steps-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .step-card {
    padding: 1.15rem !important;
    text-align: left !important;
  }
  .step-card-header {
    text-align: left !important;
    justify-content: flex-start !important;
  }
  .step-card-header h4 {
    text-align: left !important;
    font-size: 0.98rem !important;
  }
  .step-card-body p {
    text-align: left !important;
    font-size: 0.88rem !important;
  }
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }
  .feature-item-card {
    padding: 1.15rem !important;
    text-align: left !important;
  }
  .feature-item-card h4,
  .feature-item-card p {
    text-align: left !important;
  }
  /* Hakkımızda Dev Sistem Kartı (Ortalı & Mobil Uyumlu) */
  .giant-system-hero-card {
    padding: 1.65rem 1.15rem !important;
    border-radius: 16px !important;
    text-align: center !important;
  }
  .gsc-badge {
    font-size: 0.70rem !important;
    padding: 0.35rem 0.75rem !important;
    margin: 0 auto 0.75rem auto !important;
    white-space: normal !important;
    line-height: 1.35 !important;
    text-align: center !important;
    display: inline-flex !important;
  }
  .giant-system-hero-card h2 {
    font-size: clamp(1.18rem, 4.6vw, 1.4rem) !important;
    line-height: 1.35 !important;
    margin: 0 auto 0.5rem auto !important;
    text-align: center !important;
  }
  .gsc-lead {
    font-size: 1.02rem !important;
    line-height: 1.45 !important;
    margin: 0 auto 0.75rem auto !important;
    text-align: center !important;
  }
  .gsc-subtext {
    font-size: 0.91rem !important;
    line-height: 1.65 !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  /* Ana Sayfa Dev Parkur Showcase (Mobil Uyumlu) */
  .giant-parkur-showcase-section {
    padding: 2rem 0 !important;
  }
  .giant-parkur-box {
    padding: 1.65rem 1.15rem !important;
    border-radius: 16px !important;
  }
  .gpb-badge {
    font-size: 0.70rem !important;
    padding: 0.35rem 0.75rem !important;
    letter-spacing: 0.5px !important;
    white-space: normal !important;
    line-height: 1.35 !important;
    text-align: center !important;
    display: inline-block !important;
    margin-bottom: 0.75rem !important;
  }
  .gpb-header h2 {
    font-size: clamp(1.2rem, 4.8vw, 1.45rem) !important;
    line-height: 1.35 !important;
    margin-bottom: 0.5rem !important;
  }
  .gpb-lead {
    font-size: 1.02rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.75rem !important;
  }
  .gpb-desc {
    font-size: 0.91rem !important;
    line-height: 1.65 !important;
    margin-bottom: 1.5rem !important;
  }
  .gpb-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    margin-bottom: 1.5rem !important;
  }
  .gpb-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.85rem !important;
    padding: 0.9rem 1rem !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
  }
  .gpb-icon {
    font-size: 1.6rem !important;
    line-height: 1 !important;
    width: 44px !important;
    height: 44px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    margin-bottom: 0 !important;
  }
  .gpb-text {
    flex: 1 !important;
    min-width: 0 !important;
  }
  .gpb-text strong {
    font-size: 0.95rem !important;
    margin-bottom: 0.2rem !important;
    color: #FFFFFF !important;
    font-weight: 800 !important;
    display: block !important;
  }
  .gpb-text span {
    font-size: 0.83rem !important;
    line-height: 1.45 !important;
    color: #CBD5E1 !important;
    display: block !important;
  }
  .gpb-footer-trust {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1rem !important;
    padding-top: 1.25rem !important;
    text-align: center !important;
  }
  .gpb-trust-text {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    text-align: center !important;
  }
  .gpb-footer-trust .btn-whatsapp {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.85rem 1.25rem !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
}

/* Hero Trust Marquee Desktop Defaults & Keyframes */
.hero-trust-track {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-trust-track-clone {
  display: none !important;
}

@keyframes heroTrustLoop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-trust-track {
    animation: none !important;
  }
  .hero-trust-list {
    overflow-x: auto !important;
  }
}

/* ==========================================================================
   MOBİL BUTON & VİDEO MODAL EK STANDARTLARI (2026 GÜNCELLEMESİ)
   ========================================================================== */
.facility-cta-btn {
  white-space: normal !important;
  text-align: center !important;
  line-height: 1.4 !important;
  max-width: 100% !important;
  display: inline-flex !important;
}
.facility-cta-btn .mobile-text {
  display: none;
}
.facility-cta-btn .desktop-text {
  display: inline;
}

.home-tariff-btn {
  white-space: normal !important;
  text-align: center !important;
  line-height: 1.35 !important;
  max-width: 100% !important;
}
.tariff-mobile-text {
  display: none;
}
.tariff-desktop-text {
  display: inline;
}

/* Lightbox Video Modal */
.vg-modal {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 22, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 1.5rem 1rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.vg-modal.open {
  opacity: 1;
  pointer-events: all;
}

.vg-modal-close {
  position: fixed;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 1000002;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.vg-modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}

.vg-modal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin: auto;
  width: 100%;
  max-width: 420px;
  padding: 0.5rem 0;
  box-sizing: border-box;
}

.vg-modal-video {
  max-height: 72vh;
  max-height: 72dvh;
  width: auto;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: 14px;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.vg-modal-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
  padding: 0 0.5rem;
}

.vg-modal-info strong {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.vg-modal-info span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  line-height: 1.4;
}
