/* ==========================================================================
   HALI YIKAMA KURUMSAL - MAIN STYLESHEET
   ========================================================================== */

/* Font Awesome 5 & 6 Hibrit Uyumluluk Kuralları */
.fa-solid, .fas {
  font-family: "Font Awesome 5 Pro", "Font Awesome 6 Free", "FontAwesome", sans-serif !important;
  font-weight: 900 !important;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.fa-regular, .far {
  font-family: "Font Awesome 5 Pro", "Font Awesome 6 Free", "FontAwesome", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.fa-brands, .fab {
  font-family: "Font Awesome 5 Brands", "Font Awesome 6 Brands", "FontAwesome", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/* 1. BUTTONS & UI COMPONENTS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1.2;
}

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

.btn-cta {
  background: linear-gradient(135deg, var(--accent-orange), #ea580c);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}
.btn-cta:hover {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

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

/* 2. TOP BAR */
.top-bar {
  background-color: var(--secondary);
  color: #94a3b8;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0;
}

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

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

.top-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-item i {
  color: var(--primary);
}

.top-link {
  color: #cbd5e1;
}
.top-link:hover {
  color: #fff;
}

.top-wa i {
  color: #25d366;
}

/* 3. SITE HEADER */
.site-header {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

.text-logo .logo-title {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
  font-family: var(--font-heading);
}

.text-logo .logo-tagline {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.custom-logo-link img {
  max-height: 52px;
  width: auto;
}

/* 4. DESKTOP NAVIGATION (Çok Katmanlı & Bölgeler Açılır Menü) */
.main-navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.9rem;
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-menu > li:hover > a,
.nav-menu > li.current-menu-item > a {
  color: var(--primary);
  background-color: var(--primary-light);
}

.nav-menu .dropdown-toggle-icon {
  font-size: 0.7rem;
  margin-left: 0.2rem;
  transition: transform 0.2s ease;
}

.nav-menu li:hover > a .dropdown-toggle-icon {
  transform: rotate(180deg);
}

.nav-menu .mobile-toggle-btn {
  display: none;
}

/* 1. Seviye Dropdown (Açılır Menü - Bölgeler vb.) */
.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--border-color);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 1100;
}

.nav-menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .sub-menu li {
  position: relative;
  width: 100%;
}

.nav-menu .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.25rem;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-menu .sub-menu li:last-child a {
  border-bottom: none;
}

.nav-menu .sub-menu li:hover > a {
  background-color: var(--primary-light);
  color: var(--primary);
  padding-left: 1.5rem;
}

/* 2. ve 3. Seviye Dropdown (Marmara Bölgesi -> Bursa, İstanbul vb. / Karadeniz -> İller) */
.nav-menu .sub-menu .sub-menu,
.nav-menu .sub-menu .sub-sub-menu {
  top: 0;
  left: 100%;
  margin-left: 3px;
  max-height: 480px;
  overflow-y: auto; /* İller listesi uzun olduğunda kaydırılabilir */
  transform: translateX(10px);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.2);
}

.nav-menu .sub-menu li:hover > .sub-menu,
.nav-menu .sub-menu li:hover > .sub-sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Alt menüdeki sağa bakan chevron oku */
.nav-menu .sub-menu .has-dropdown > a .dropdown-toggle-icon {
  margin-left: auto;
  padding-left: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  transform: rotate(-90deg) !important;
}
.nav-menu .sub-menu .has-dropdown:hover > a .dropdown-toggle-icon {
  color: var(--primary);
  transform: rotate(-90deg) translateX(2px) !important;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 8px;
  cursor: pointer;
}

.hamburger-bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* 5. MOBILE DRAWER & ACCORDION */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #ffffff;
  z-index: 2001;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  will-change: transform;
}

.mobile-drawer.active {
  transform: translateX(0);
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.drawer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary);
}

.drawer-close-btn {
  background: var(--bg-surface);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--secondary);
  cursor: pointer;
}

.drawer-search {
  padding: 1rem 1.25rem;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.search-input-wrap {
  display: flex;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.search-input-wrap input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  border: none;
  outline: none;
  font-size: 0.88rem;
}

.search-input-wrap button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0 1rem;
  cursor: pointer;
}

/* Mobil Menü Akordeon (Çok Katmanlı Bölgeler ve İller) */
.mobile-nav-container {
  padding: 1rem 0;
  flex: 1;
}

.mobile-nav-menu li {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mobile-nav-menu li a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.95rem;
  padding-right: 48px;
}

.mobile-nav-menu .mobile-toggle-btn {
  display: flex;
  position: absolute;
  right: 10px;
  top: 6px;
  width: 36px;
  height: 36px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
  z-index: 5;
}

.mobile-nav-menu li.open > .mobile-toggle-btn {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* 1. Seviye Alt Menü (Marmara, Karadeniz...) */
.mobile-nav-menu .sub-menu {
  display: none;
  background: var(--bg-light);
  padding: 0.25rem 0 0.25rem 0.75rem;
  border-left: 3px solid var(--primary-light);
}

.mobile-nav-menu li.open > .sub-menu {
  display: block;
}

.mobile-nav-menu .sub-menu a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.55rem 1rem;
}

/* 2. Seviye Alt Menü (Bursa, İstanbul, Yalova, Artvin, vb. İller) */
.mobile-nav-menu .sub-menu .sub-sub-menu {
  background: #ffffff;
  padding: 0.25rem 0 0.25rem 0.75rem;
  border-left: 3px solid var(--primary);
  margin: 0.35rem 0;
  border-radius: var(--radius-sm);
}

.mobile-nav-menu .sub-menu .sub-sub-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.45rem 0.75rem;
}

.mobile-nav-menu .sub-menu .sub-sub-menu a:hover {
  color: var(--primary);
}

.drawer-contact-box {
  padding: 1.25rem;
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border-color);
}

.btn-call-drawer {
  background: var(--primary);
  color: #fff;
  width: 100%;
}

.btn-wa-drawer {
  background: #25d366;
  color: #fff;
  width: 100%;
}

/* 6. HERO SLIDER (Mobil & Masaüstü Uyumlu) */
.hero-slider-section {
  position: relative;
  background: var(--secondary);
  overflow: hidden;
}

.hero-slider-container {
  position: relative;
  min-height: 520px;
  display: flex;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.slide-bg-1 {
  background-image: linear-gradient(135deg, rgba(2, 132, 199, 0.94), rgba(15, 23, 42, 0.90)), url('https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=1920&q=80');
}
.slide-bg-2 {
  background-image: linear-gradient(135deg, rgba(16, 185, 129, 0.94), rgba(15, 23, 42, 0.90)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1920&q=80');
}
.slide-bg-3 {
  background-image: linear-gradient(135deg, rgba(249, 115, 22, 0.94), rgba(15, 23, 42, 0.90)), url('https://images.unsplash.com/photo-1584820927498-cfe5211fd8bf?auto=format&fit=crop&w=1920&q=80');
}

.slide-content-wrapper {
  position: relative;
  z-index: 3;
  padding: 4rem 1.25rem;
}

.slide-content {
  max-width: 680px;
  color: #ffffff;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.slide-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.slide-title .highlight {
  color: #fde047;
}

.slide-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #e2e8f0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.slide-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-slider-primary {
  background: #25d366;
  color: #fff;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.btn-slider-primary:hover {
  background: #20ba59;
  color: #fff;
  transform: translateY(-2px);
}

.btn-slider-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
}
.btn-slider-secondary:hover {
  background: #fff;
  color: var(--secondary);
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: #fff;
  color: var(--secondary);
}

.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  width: 32px;
  background: #fff;
}

/* 7. TRUST STATS SECTION */
.trust-stats-section {
  background: #ffffff;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.stat-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.stat-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 8. SERVICES SECTION */
.services-section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section-desc {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light), #bae6fd);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-features {
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.service-features li i {
  color: var(--accent);
}

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

/* =========================================================================
   8.4. POPÜLER ÖZEL YIKAMA VE TEMİZLİK HİZMETLERİ SHOWCASE (MODERN UI)
   ========================================================================= */
.niche-services-showcase {
  margin-top: 4rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 3rem 3rem 2.25rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04), 0 20px 25px -5px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.niche-services-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0284c7 0%, #10b981 50%, #f59e0b 75%, #8b5cf6 100%);
}

.niche-showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.niche-header-left {
  max-width: 720px;
}

.niche-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eff6ff;
  color: #0284c7;
  border: 1px solid #bfdbfe;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.niche-main-title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.niche-main-desc {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.niche-order-btn {
  padding: 0.75rem 1.5rem !important;
  font-size: 0.92rem !important;
  border-radius: var(--radius-full) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

/* 12 Hizmet Kartı Grid (Modern Card Layout) */
.niche-services-grid-12 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.niche-service-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
}

.niche-service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: background 0.3s ease;
}

.niche-service-item:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: 0 14px 28px -10px rgba(0, 0, 0, 0.1);
}

.niche-service-item:hover::before {
  background: var(--primary);
}

.niche-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.niche-service-item:hover .niche-item-icon {
  transform: scale(1.1) rotate(-3deg);
}

/* Renk Çeşitleri */
.icon-blue    { background: #eff6ff; color: #2563eb; }
.icon-emerald { background: #ecfdf5; color: #059669; }
.icon-purple  { background: #faf5ff; color: #9333ea; }
.icon-sky     { background: #f0f9ff; color: #0284c7; }
.icon-amber   { background: #fffbeb; color: #d97706; }
.icon-rose    { background: #fff1f2; color: #e11d48; }
.icon-teal    { background: #f0fdfa; color: #0d9488; }
.icon-indigo  { background: #eef2ff; color: #4f46e5; }
.icon-gold    { background: #fefce8; color: #ca8a04; }
.icon-cyan    { background: #ecfeff; color: #0891b2; }
.icon-violet  { background: #f5f3ff; color: #7c3aed; }
.icon-orange  { background: #fff7ed; color: #ea580c; }

.niche-item-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.niche-item-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.4rem;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.niche-service-item:hover .niche-item-title {
  color: var(--primary);
}

.niche-item-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.niche-item-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap 0.2s ease;
}

.niche-service-item:hover .niche-item-link {
  gap: 0.65rem;
  color: var(--primary-dark);
}

/* Alt Destek Şeridi */
.niche-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.niche-footer-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 500;
}

.niche-footer-info i {
  color: #0284c7;
  font-size: 1.15rem;
}

.niche-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #ffffff;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.niche-wa-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .niche-services-showcase {
    padding: 2rem 1.25rem;
  }
  .niche-showcase-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .niche-footer-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .niche-footer-info {
    justify-content: center;
  }
  .niche-wa-btn {
    justify-content: center;
  }
}

/* 8.5. LEKE SEPETİ MOBİL UYGULAMA SHOWCASE */
.app-showcase-section {
  padding: 4rem 0;
  background: var(--bg-surface);
}

.app-showcase-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  padding: 3rem 3.5rem;
}

.app-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: center;
}

.app-image-wrap {
  position: relative;
  text-align: center;
}

.app-promo-img {
  max-width: 100%;
  max-height: 480px;
  width: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.app-promo-img:hover {
  transform: scale(1.02);
}

.app-content-wrap {
  display: flex;
  flex-direction: column;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.app-title {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  color: var(--secondary);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.app-title .highlight {
  color: var(--accent-orange);
}

.app-desc {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.app-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.app-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.app-features-list li i {
  color: var(--accent);
  font-size: 1.15rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.app-features-list strong {
  color: var(--secondary);
}

.app-download-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #0f172a;
  color: #ffffff !important;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.btn-store i {
  font-size: 1.8rem;
}

.btn-store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.btn-store-text small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.btn-store-text span {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.btn-store:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
  color: #ffffff !important;
}

/* 9. PROCESS SECTION */
.process-section {
  background: #ffffff;
  padding: 5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.process-step-item {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.process-step-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.step-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(2, 132, 199, 0.2);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.step-icon {
  width: 52px;
  height: 52px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0 auto 1rem;
}

.process-step-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.process-step-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 10. REGIONS EXPLORER (DÜZENLİ BÖLGE VE ŞEHİR SERVİS AĞI) */
.regions-explorer-section {
  padding: 5rem 0;
  background: #ffffff;
}

.regions-grid-clean {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.region-card-clean {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  position: relative;
}

.region-card-clean:hover {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.reg-card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.region-card-clean:hover .reg-card-icon {
  background: var(--primary);
  color: #ffffff;
}

.reg-card-info {
  flex: 1;
  min-width: 0;
}

.reg-card-title {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reg-card-title a {
  color: var(--secondary);
}

.reg-card-title a:hover {
  color: var(--primary);
}

.reg-card-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.reg-badge-free {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #15803d;
  background: #dcfce7;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.reg-badge-count {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.reg-card-btn {
  width: 32px;
  height: 32px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.region-card-clean:hover .reg-card-btn {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateX(2px);
}

/* Alt Servis Çağrı Şeridi (CTA Strip) */
.regions-cta-strip {
  background: linear-gradient(135deg, var(--secondary), #1e293b);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  color: #ffffff;
}

.cta-strip-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  min-width: 260px;
}

.cta-strip-icon {
  font-size: 2.2rem;
  color: var(--primary-light);
  flex-shrink: 0;
}

.cta-strip-content h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.cta-strip-content p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
}

.cta-strip-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* 11. BLOG & ARTICLES SECTION (971 Makale Grid) */
.posts-section {
  padding: 5rem 0;
  background: var(--bg-surface);
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.post-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.post-thumb-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--bg-surface);
}

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

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

.post-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.post-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff !important;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

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

.post-meta-mini {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.post-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.post-card-title a {
  color: var(--secondary);
}
.post-card-title a:hover {
  color: var(--primary);
}

.post-card-excerpt {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.post-card-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 0.9rem;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
}
.read-more-link:hover {
  gap: 0.65rem;
}

/* 12. FAQ ACCORDION */
.faq-section {
  padding: 5rem 0;
  background: #ffffff;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

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

.faq-item.active {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

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

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--text-main);
  font-size: 0.92rem;
  line-height: 1.6;
}

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

/* 13. SINGLE POST & ARCHIVE LAYOUT */
.page-header-single,
.page-header-archive,
.page-header-standard {
  background: linear-gradient(135deg, var(--secondary), #1e293b);
  color: #fff;
  padding: 3.5rem 0 2.5rem;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.25rem;
}

.breadcrumbs a {
  color: #cbd5e1;
}
.breadcrumbs a:hover {
  color: #fff;
}

.breadcrumbs .sep {
  margin: 0 0.5rem;
  font-size: 0.7rem;
  color: #64748b;
}

.breadcrumbs .current {
  color: #fff;
  font-weight: 600;
}

.badge-cat-single {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary);
  color: #fff !important;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.single-post-title,
.archive-title,
.page-title {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.single-post-meta-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #94a3b8;
  font-size: 0.88rem;
  flex-wrap: wrap;
}

.single-post-meta-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.archive-desc {
  color: #94a3b8;
  font-size: 1rem;
}

.content-sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  padding: 3.5rem 0;
}

.single-article-content,
.archive-posts-area,
.page-content-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.single-featured-image {
  margin-bottom: 2.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 460px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
}

.single-featured-image img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

/* Typography for Single & Pages */
.typography {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
}

.typography p {
  margin-bottom: 1.5rem;
}

.typography h2, .typography h3, .typography h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.typography ul, .typography ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.typography ul { list-style: disc; }
.typography ol { list-style: decimal; }

.typography li {
  margin-bottom: 0.5rem;
}

/* Custom Article Lists & Elements */
.article-features-list,
.article-areas-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 1.25rem 0 1.75rem !important;
}

.article-features-list li,
.article-areas-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.65rem !important;
  margin-bottom: 0.85rem !important;
  line-height: 1.6 !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.article-features-list li i,
.article-areas-list li i {
  color: var(--primary) !important;
  margin-top: 0.25rem !important;
  font-size: 1.05rem !important;
  flex-shrink: 0 !important;
}

/* Table of Contents (TOC) Responsive Fix */
#ez-toc-container,
.ez-toc-container,
.ez-toc-v2_0_4,
.table-of-contents,
.toc-container {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  background: #f8fafc !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-md) !important;
  padding: 1.25rem !important;
  margin: 1.75rem 0 !important;
  overflow-x: hidden !important;
}

#ez-toc-container ul,
#ez-toc-container ol,
.ez-toc-container ul,
.ez-toc-container ol {
  padding-left: 1.25rem !important;
  margin-left: 0 !important;
  margin-bottom: 0.5rem !important;
}

#ez-toc-container li,
.ez-toc-container li {
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
  margin-bottom: 0.35rem !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

#ez-toc-container a,
.ez-toc-container a {
  color: var(--secondary) !important;
  text-decoration: none !important;
}

#ez-toc-container a:hover,
.ez-toc-container a:hover {
  color: var(--primary) !important;
  text-decoration: underline !important;
}

/* FAQ Item Box in Articles */
.faq-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.faq-item-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-sizing: border-box;
  transition: var(--transition);
}

.faq-item-box:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-item-box h4 {
  font-size: 1.05rem;
  color: var(--secondary);
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
  word-break: break-word;
}

.faq-item-box h4 i {
  color: var(--primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.faq-item-box p {
  margin-bottom: 0 !important;
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.6;
  word-break: break-word;
}

/* Article CTA Box */
.article-cta-box {
  background: linear-gradient(135deg, var(--primary-light), #bae6fd);
  border: 1px solid #7dd3fc;
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  margin: 2.5rem 0;
  align-items: center;
}

.article-cta-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.article-cta-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.article-cta-info p {
  font-size: 0.92rem;
  color: #0369a1;
  margin-bottom: 1rem;
}

.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-wa-box {
  background: #25d366;
  color: #fff !important;
}

.btn-call-box {
  background: var(--secondary);
  color: #fff !important;
}

/* Article Tags */
.article-tags-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.tags-label {
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.9rem;
}

.post-tag-item {
  background: var(--bg-surface);
  color: var(--text-main);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
}
.post-tag-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* Social Share */
.social-share-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.share-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--secondary);
}

.share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1rem;
  transition: var(--transition);
}

.share-wa { background: #25d366; }
.share-fb { background: #1877f2; }
.share-tw { background: #0f172a; }

.share-btn:hover {
  transform: translateY(-3px);
}

/* Related Posts */
.related-posts-block {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 2px dashed var(--border-color);
}

.related-title {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.related-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}

.related-thumb {
  height: 120px;
  display: block;
  overflow: hidden;
  background: var(--bg-surface);
}

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

.related-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2rem;
}

.related-info {
  padding: 0.9rem;
}

.related-info h4 {
  font-size: 0.95rem;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.related-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* 14. SIDEBAR STYLES */
.single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.widget-app-banner {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  text-align: center;
  border: 1px solid var(--border-color);
  padding: 1.5rem;
}

.sidebar-app-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin: 0 auto 1rem;
  display: block;
}

.app-banner-title {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 0.35rem;
}

.app-banner-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.sidebar-app-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn-app-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #0f172a;
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

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

.widget-cta {
  background: linear-gradient(135deg, var(--secondary), #1e293b);
  color: #fff;
  border: none;
}

.widget-cta-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.widget-cta-header i {
  color: #fde047;
  font-size: 1.3rem;
}

.widget-cta-header h4 {
  color: #fff;
  font-size: 1.25rem;
}

.widget-cta p {
  color: #cbd5e1;
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.btn-widget-call {
  background: var(--accent-orange);
  color: #fff !important;
  width: 100%;
  margin-bottom: 0.6rem;
}

.btn-widget-wa {
  background: #25d366;
  color: #fff !important;
  width: 100%;
}

.sidebar-search-form {
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.sidebar-search-form input {
  flex: 1;
  padding: 0.65rem 0.9rem;
  border: none;
  outline: none;
  font-size: 0.88rem;
}

.sidebar-search-form button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0 1rem;
  cursor: pointer;
}

.sidebar-cat-list li {
  margin-bottom: 0.5rem;
}

.sidebar-cat-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.sidebar-cat-list a:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 1rem;
}

.cat-count {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.mini-post-item {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1rem;
  align-items: center;
}

.mini-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

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

.mini-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-surface);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-content h5 {
  font-size: 0.88rem;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.mini-content h5 a {
  color: var(--secondary);
}
.mini-content h5 a:hover {
  color: var(--primary);
}

.mini-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* 15. ARCHIVE 2-COL GRID & PAGINATION */
.posts-grid-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.pagination-wrapper {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.pagination-wrapper ul {
  display: flex;
  gap: 0.4rem;
}

.pagination-wrapper li span,
.pagination-wrapper li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: #ffffff;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

.pagination-wrapper li .current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pagination-wrapper li a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* 16. FOOTER STYLES */
.site-footer {
  background: var(--secondary);
  color: #94a3b8;
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 3rem 0;
  box-shadow: var(--shadow-lg);
}

.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.cta-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  color: #fde047;
}

.cta-title {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.cta-desc {
  color: #e0f2fe;
  max-width: 600px;
  font-size: 0.95rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-cta-phone {
  background: var(--secondary);
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-cta-phone i {
  font-size: 1.5rem;
  color: var(--primary);
}

.btn-cta-phone small {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
}

.btn-cta-phone strong {
  display: block;
  font-size: 1.1rem;
  color: #fff;
}

.btn-cta-wa {
  background: #25d366;
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  font-size: 1.05rem;
}

.footer-main {
  padding: 4.5rem 1.25rem 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.footer-logo .logo-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.footer-about-text {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  color: #cbd5e1;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: #cbd5e1;
}

.badge-item i {
  color: var(--primary);
}

.footer-title {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
}

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

.footer-links a {
  color: #cbd5e1;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 0.4rem;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--primary);
}

.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
}

.footer-contact-list li > i {
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-list strong {
  display: block;
  color: #fff;
  font-size: 0.82rem;
}

.footer-contact-list a {
  color: #cbd5e1;
}
.footer-contact-list a:hover {
  color: #fff;
}

.text-success {
  color: #4ade80 !important;
  font-weight: 600;
  font-size: 0.82rem;
}

.footer-bottom {
  background: #090d16;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-badges {
  display: flex;
  gap: 1rem;
}

/* 17. FLOATING MOBILE BOTTOM ACTION BAR (MOBİL SABİT BUTONLAR) */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1500;
  padding: 0.5rem 0.75rem;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0));
  gap: 0.75rem;
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff !important;
  text-decoration: none;
}

.sticky-call {
  background: linear-gradient(135deg, var(--accent-orange), #ea580c);
}

.sticky-wa {
  background: linear-gradient(135deg, #25d366, #16a34a);
}

/* 18. BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* 19. RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .content-sidebar-layout {
    grid-template-columns: 1fr;
  }
  .single-sidebar {
    margin-top: 2rem;
  }
}

@media (max-width: 900px) {
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  body {
    padding-bottom: 60px; /* Mobil sabit bar payı */
  }
  .top-bar {
    display: none !important; /* Mobilde taşmayı önlemek için gizle */
  }
  .mobile-sticky-bar {
    display: flex;
  }
  .d-none-mobile {
    display: none !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-slider-container {
    min-height: 440px;
    overflow: hidden;
  }
  .slide-content-wrapper {
    padding: 2.5rem 1rem;
    max-width: 100%;
  }
  .slider-arrow {
    display: none; /* Mobilde touch swipe kullan */
  }
  .cta-card {
    flex-direction: column;
    text-align: center;
  }
  .cta-buttons {
    width: 100%;
    justify-content: center;
  }
  .single-article-content,
  .archive-posts-area,
  .page-content-box {
    padding: 1.25rem;
  }
  .back-to-top {
    bottom: 75px;
    right: 15px;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .section-desc {
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .stat-card {
    padding: 1rem;
  }
  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .stat-info h4 {
    font-size: 0.95rem;
  }
  .stat-info p {
    font-size: 0.75rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .process-step-item {
    padding: 1.25rem 0.75rem;
  }
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .posts-grid-2col {
    grid-template-columns: 1fr;
  }
  .slide-title {
    font-size: 1.55rem;
    line-height: 1.25;
  }
  .slide-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }
  .slide-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.6rem;
  }
  .slide-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  .regions-grid-clean {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .niche-services-grid-12 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .niche-service-item {
    padding: 1.25rem 1rem;
    border-radius: 12px;
  }
  .niche-item-icon {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    border-radius: 10px;
  }
  .niche-item-title {
    font-size: 1rem;
  }
  .niche-item-desc {
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
  }
  .region-card-clean {
    padding: 0.85rem;
  }
  .reg-card-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .reg-card-title {
    font-size: 0.95rem;
  }
  .regions-cta-strip {
    padding: 1.5rem 1rem;
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
  .cta-strip-content {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
  }
  .cta-strip-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.6rem;
  }
  .cta-strip-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Mobil Uygulama Showcase Responsive (Tablet & Mobil) */
  .app-showcase-section {
    padding: 3rem 0;
    overflow: hidden;
  }
  .app-showcase-card {
    padding: 2.25rem 1.25rem;
    border-radius: 20px;
  }
  .app-showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .app-image-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .app-promo-img {
    max-height: 280px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }
  .app-content-wrap {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .app-badge {
    align-self: center;
    margin-bottom: 0.75rem;
  }
  .app-title {
    font-size: clamp(1.35rem, 4.5vw, 1.65rem);
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }
  .app-desc {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
  }
  .app-features-list {
    text-align: left;
    width: 100%;
    max-width: 440px;
    margin: 0 auto 1.75rem auto;
    gap: 0.65rem;
  }
  .app-features-list li {
    font-size: 0.88rem;
    line-height: 1.45;
  }
  .app-download-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  .btn-store {
    flex: 1 1 150px;
    max-width: 210px;
    padding: 0.65rem 0.85rem;
    gap: 0.5rem;
    justify-content: center;
  }
  .btn-store i {
    font-size: 1.5rem;
  }
  .btn-store-text small {
    font-size: 0.6rem;
  }
  .btn-store-text span {
    font-size: 0.92rem;
  }

  /* Makale & Yazı Detay Sayfaları Mobil Uyumluluk */
  .single-main-section,
  .archive-main-section,
  .page-main-section {
    padding: 1.25rem 0 3.5rem !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  .content-sidebar-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .single-article-content,
  .archive-posts-area,
  .page-content-box {
    padding: 1.25rem 1rem !important;
    border-radius: var(--radius-md) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .single-featured-image {
    margin-bottom: 1.25rem !important;
    border-radius: var(--radius-md) !important;
    max-height: 250px !important;
  }

  .single-featured-image img {
    max-height: 250px !important;
    object-fit: cover !important;
  }

  .typography {
    font-size: 0.95rem !important;
    line-height: 1.68 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .typography p {
    margin-bottom: 1.15rem !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .typography h1,
  .typography h2,
  .typography h3,
  .typography h4 {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    line-height: 1.35 !important;
  }

  .typography h1 { font-size: 1.45rem !important; margin-bottom: 0.75rem !important; }
  .typography h2 { font-size: 1.25rem !important; margin-top: 1.5rem !important; margin-bottom: 0.65rem !important; }
  .typography h3 { font-size: 1.1rem !important; margin-top: 1.25rem !important; margin-bottom: 0.5rem !important; }

  .typography ul,
  .typography ol {
    padding-left: 1.1rem !important;
    margin-bottom: 1.15rem !important;
    box-sizing: border-box !important;
  }

  .typography li {
    margin-bottom: 0.45rem !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .article-features-list,
  .article-areas-list {
    padding-left: 0 !important;
    margin: 1rem 0 1.25rem !important;
  }

  .article-features-list li,
  .article-areas-list li {
    font-size: 0.92rem !important;
    gap: 0.5rem !important;
    margin-bottom: 0.65rem !important;
    line-height: 1.5 !important;
  }

  .article-cta-box {
    flex-direction: column !important;
    padding: 1.25rem 1rem !important;
    text-align: center !important;
    gap: 1rem !important;
    margin: 1.5rem 0 !important;
    box-sizing: border-box !important;
  }

  .article-cta-icon {
    width: 46px !important;
    height: 46px !important;
    font-size: 1.3rem !important;
    margin: 0 auto !important;
  }

  .article-cta-info h4 {
    font-size: 1.1rem !important;
    margin-bottom: 0.35rem !important;
  }

  .article-cta-info p {
    font-size: 0.86rem !important;
    margin-bottom: 0.85rem !important;
  }

  .article-cta-actions {
    width: 100% !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
  }

  .article-cta-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.75rem 1rem !important;
  }

  .faq-accordion-wrap {
    gap: 0.75rem !important;
    margin: 1.25rem 0 1.5rem !important;
  }

  .faq-item-box {
    padding: 0.9rem !important;
    border-radius: var(--radius-sm) !important;
  }

  .faq-item-box h4 {
    font-size: 0.96rem !important;
    margin-bottom: 0.35rem !important;
  }

  .faq-item-box p {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
  }

  /* Table of Contents (TOC) Responsive Box */
  #ez-toc-container,
  .ez-toc-container,
  .ez-toc-v2_0_4,
  .table-of-contents,
  .toc-container {
    padding: 0.85rem !important;
    margin: 1.25rem 0 !important;
    border-radius: var(--radius-sm) !important;
  }

  #ez-toc-container ul,
  #ez-toc-container ol,
  .ez-toc-container ul,
  .ez-toc-container ol {
    padding-left: 0.9rem !important;
  }

  #ez-toc-container li,
  .ez-toc-container li {
    font-size: 0.86rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.3rem !important;
  }
}

@media (max-width: 480px) {
  .header-main-row {
    padding: 0.6rem 0;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  .text-logo .logo-title {
    font-size: 1.15rem;
  }
  .text-logo .logo-tagline {
    font-size: 0.68rem;
  }
  .header-actions .btn-header-call {
    display: none;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .process-steps-grid {
    grid-template-columns: 1fr;
  }
  .regions-grid-clean {
    grid-template-columns: 1fr;
  }
  .niche-services-grid-12 {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .hero-slider-container {
    min-height: 420px;
  }
  .slide-content-wrapper {
    padding: 2rem 0.75rem;
  }
  .drawer-header {
    padding: 1rem;
  }
  .mobile-drawer {
    width: 290px;
  }

  /* Mobil Uygulama Showcase Küçük Ekran */
  .app-showcase-section {
    padding: 2rem 0;
  }
  .app-showcase-card {
    padding: 1.5rem 0.85rem;
    border-radius: 16px;
  }
  .app-promo-img {
    max-height: 220px;
  }
  .app-title {
    font-size: 1.25rem;
  }
  .app-features-list {
    padding: 0 0.25rem;
  }
  .app-download-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-store {
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
    padding: 0.75rem 1rem;
  }

  .single-article-content,
  .archive-posts-area,
  .page-content-box {
    padding: 1rem 0.75rem !important;
  }

  .typography {
    font-size: 0.92rem !important;
    line-height: 1.62 !important;
  }

  .typography h1 {
    font-size: 1.35rem !important;
  }

  .typography h2 {
    font-size: 1.18rem !important;
  }

  .typography h3 {
    font-size: 1.05rem !important;
  }
}

/* =========================================================================
   8.6. VİDEO GALERİ & YOUTUBE SECTION (@lekesepeti)
   ========================================================================= */
.video-gallery-section {
  padding: 5.5rem 0;
  background: var(--bg-surface);
}

.video-badge {
  background: #fef2f2 !important;
  color: #dc2626 !important;
  border-color: #fecaca !important;
}

.btn-youtube {
  background: #ff0000;
  color: #ffffff !important;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.3);
  transition: all 0.25s ease;
}

.btn-youtube:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.4);
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.video-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e1;
}

.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #0f172a;
  cursor: pointer;
}

.video-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

.video-facade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: #0f172a;
  transition: opacity 0.3s ease;
}

.video-thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.video-card:hover .video-thumb-img {
  transform: scale(1.04);
  filter: brightness(0.88);
}

.video-play-btn {
  position: relative;
  z-index: 3;
  width: 64px;
  height: 44px;
  background: rgba(255, 0, 0, 0.95);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  border: none;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.45);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.video-play-btn i {
  color: #ffffff;
  line-height: 1;
}

.video-card:hover .video-play-btn {
  transform: scale(1.15);
  background: #ff0000;
  box-shadow: 0 10px 28px rgba(255, 0, 0, 0.65);
}

.video-watch-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.video-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.video-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  width: fit-content;
}

.video-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0;
  line-height: 1.35;
}

.video-card-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.video-card-footer {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.btn-card-play {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.btn-card-play:hover {
  color: var(--primary-dark);
}

.btn-card-yt {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #dc2626;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-card-yt:hover {
  color: #991b1b;
  text-decoration: underline;
}

/* YouTube Kanal Şeridi */
.youtube-channel-strip {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 20px;
  padding: 2.25rem 2.75rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.yt-strip-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 680px;
}

.yt-play-icon {
  width: 60px;
  height: 60px;
  background: #ff0000;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.yt-strip-left h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.yt-strip-left p {
  color: #94a3b8;
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.5;
}

.btn-youtube-glow {
  background: linear-gradient(135deg, #ff0000 0%, #dc2626 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-youtube-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .video-gallery-grid {
    grid-template-columns: 1fr;
  }
  .youtube-channel-strip {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.25rem;
  }
  .yt-strip-left {
    flex-direction: column;
    text-align: center;
  }
  .btn-youtube-glow {
    width: 100%;
    justify-content: center;
  }
}

/* Galeri Sayfası Özel Stilleri */
.galeri-page-section {
  padding: 4.5rem 0;
  background: var(--bg-surface);
}

.galeri-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 2.25rem 2.75rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.galeri-top-info {
  max-width: 680px;
}

.galeri-top-info h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--secondary);
  margin: 0.5rem 0;
}

.galeri-top-info p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .galeri-top-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
  .galeri-top-action .btn-youtube {
    width: 100%;
    justify-content: center;
  }
}

