/* ==========================================================================
   MENDERES ÇİLİNGİR - ULTRA RESPONSIVE & SEO ODAKLI STİL SİSTEMİ
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  --primary: #0f172a;        /* Derin Gece Mavisi */
  --primary-light: #1e293b;
  --accent: #f59e0b;         /* Güven Veren Altın Sarı */
  --accent-hover: #d97706;
  --accent-glow: rgba(245, 158, 11, 0.25);
  --emergency: #ef4444;      /* Acil Arama Kırmızısı */
  --emergency-hover: #dc2626;
  --emergency-glow: rgba(239, 68, 68, 0.35);
  --whatsapp: #25d366;       /* WhatsApp Yeşili */
  --whatsapp-hover: #1ebc57;
  --success: #10b981;
  
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #090d16;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --border-color: #e2e8f0;
  --border-dark: #1e293b;
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -5px rgba(15, 23, 42, 0.12), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.4);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sıfırlama ve Temel */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  padding-bottom: 75px; /* Mobilde sabit alt bar boşluğu */
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
  touch-action: manipulation;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* ==========================================================================
   ÜST BİLGİ BARI (TOPBAR)
   ========================================================================== */
.top-bar {
  background: var(--bg-dark);
  color: #94a3b8;
  font-size: 0.85rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.top-badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--emergency);
  animation: pulse-dot 1.5s infinite;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-links a:hover {
  color: var(--accent);
}

@media (max-width: 767px) {
  .top-bar-info span:not(.top-badge) {
    display: none;
  }
  .top-bar .container {
    justify-content: space-between;
  }
}

/* ==========================================================================
   ANA NAVİGASYON (HEADER & NAVBAR)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent), #eab308);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.35rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
  flex-shrink: 0;
}

.logo-text h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.1;
}

.logo-text span {
  color: var(--accent);
}

.logo-text p {
  font-size: 0.7rem;
  color: #94a3b8;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 275px;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition-smooth);
  z-index: 100;
}

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

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: #e2e8f0;
  font-size: 0.93rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  margin-bottom: 3px;
}

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

.dropdown-item i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  color: var(--accent);
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(245, 158, 11, 0.16);
  color: #ffffff;
  transform: translateX(3px);
}

.dropdown-item:hover i {
  transform: scale(1.15);
}
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--emergency), #dc2626);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
  animation: pulse-border 2.5s infinite;
}

.btn-nav-call:hover {
  background: var(--emergency-hover);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.mobile-toggle:active {
  background: rgba(255, 255, 255, 0.2);
}

/* Menü Karartma Katmanı (Backdrop Overlay) */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.menu-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   HERO / GİRİŞ ALANI (CONVERSION VE SEO ODAKLI)
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #090d16 0%, #0f172a 60%, #1e293b 100%);
  color: #ffffff;
  padding: 45px 0 65px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 992px) {
  .hero-section {
    padding: 70px 0 90px;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
  }
}

.hero-badge-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-content h1 {
  font-size: clamp(1.85rem, 5.5vw, 3.1rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 800;
}

.hero-content h1 span.highlight {
  color: var(--accent);
  background: linear-gradient(120deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: #94a3b8;
  margin-bottom: 25px;
  line-height: 1.65;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.stat-text strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 700;
}

.stat-text span {
  font-size: 0.75rem;
  color: #94a3b8;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary-call {
  background: linear-gradient(135deg, var(--emergency), #dc2626);
  color: #ffffff;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 800;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.45);
  transition: var(--transition-smooth);
  text-align: center;
  min-height: 48px;
}

.btn-primary-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(239, 68, 68, 0.6);
}

.btn-primary-call:active {
  transform: scale(0.98);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), #16a34a);
  color: #ffffff;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  font-weight: 700;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
  text-align: center;
  min-height: 48px;
}

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

@media (max-width: 640px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary-call, .btn-whatsapp {
    width: 100%;
  }
}

/* Hero Kartı */
.hero-card {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .hero-card {
    padding: 30px;
  }
}

.hero-card-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 14px;
  margin-bottom: 18px;
  text-align: center;
}

.hero-card-header h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.hero-card-header p {
  color: #94a3b8;
  font-size: 0.82rem;
}

.quick-service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.quick-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(15, 23, 42, 0.6);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.quick-service-item:hover, .quick-service-item:active {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateX(3px);
}

.quick-service-item i {
  color: var(--accent);
  font-size: 1.15rem;
}

.quick-service-item span {
  color: #f1f5f9;
  font-weight: 600;
  font-size: 0.92rem;
}

.guarantee-box {
  background: rgba(245, 158, 11, 0.1);
  border: 1px dashed rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-md);
  padding: 10px;
  text-align: center;
  font-size: 0.82rem;
  color: #fcd34d;
  font-weight: 600;
}

/* ==========================================================================
   ACİL ÇAĞRI ŞERİDİ (EMERGENCY BANNER)
   ========================================================================== */
.emergency-strip {
  background: linear-gradient(90deg, #b91c1c, #dc2626, #b91c1c);
  color: #ffffff;
  padding: 12px 0;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.emergency-strip-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.emergency-strip a {
  background: #ffffff;
  color: #dc2626;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* ==========================================================================
   HİZMETLER & KARTLAR BÖLÜMÜ
   ========================================================================== */
.section-padding {
  padding: 50px 0;
}

@media (min-width: 992px) {
  .section-padding {
    padding: 80px 0;
  }
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 35px;
}

.section-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: #d97706;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: clamp(0.92rem, 2vw, 1.05rem);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
  }
}

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

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 26px 20px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-card {
    padding: 34px 28px;
  }
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #eab308);
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrapper {
  width: 54px;
  height: 54px;
  background: #f1f5f9;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-wrapper {
  background: var(--accent);
  color: #ffffff;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-features {
  margin-bottom: 20px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-color);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 8px;
}

.service-features li i {
  color: var(--success);
  font-size: 0.9rem;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
  min-height: 44px;
}

.service-card:hover .service-card-btn {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* ==========================================================================
   NEDEN BİZ? / AVANTAJLAR (WHY CHOOSE US)
   ========================================================================== */
.why-us-section {
  background: var(--primary);
  color: #ffffff;
  position: relative;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
  align-items: center;
}

@media (min-width: 992px) {
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

.why-us-content .section-badge {
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent);
}

.why-us-content h2 {
  color: #ffffff;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  margin-bottom: 16px;
}

.why-us-content p {
  color: #94a3b8;
  margin-bottom: 24px;
  font-size: 0.98rem;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .feature-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.feature-item {
  display: flex;
  gap: 12px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.15rem;
}

.feature-info h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 3px;
}

.feature-info p {
  color: #94a3b8;
  font-size: 0.82rem;
  margin: 0;
}

.why-us-card-box {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
}

@media (min-width: 768px) {
  .why-us-card-box {
    padding: 35px;
  }
}

.timer-highlight {
  text-align: center;
  padding: 18px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(245, 158, 11, 0.15));
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 158, 11, 0.3);
  margin-bottom: 20px;
}

.timer-highlight .time-number {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.timer-highlight p {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 6px;
}

/* ==========================================================================
   HİZMET BÖLGELERİ & PILL ROZETLERİ (SEO ALANI)
   ========================================================================== */
.regions-section {
  background: #f1f5f9;
}

.regions-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .regions-pills {
    gap: 12px;
    margin-bottom: 35px;
  }
}

.region-pill {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  min-height: 38px;
}

.region-pill:hover, .region-pill:active {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
  border-color: var(--accent);
}

.region-pill i {
  color: var(--emergency);
}

/* ==========================================================================
   TÜM 44 MAHALLE LİSTESİ & DİZİNİ (SEO ALANI)
   ========================================================================== */
.all-neighborhoods-box {
  margin-top: 50px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .all-neighborhoods-box {
    padding: 45px 35px;
  }
}

.all-neighborhoods-box .section-header {
  margin-bottom: 35px;
}

.neighborhoods-category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

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

.neighborhood-cat-card {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.neighborhood-cat-card:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.neighborhood-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e2e8f0;
}

.neighborhood-cat-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.neighborhood-cat-title h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.neighborhood-cat-title span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.neighborhood-items-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.neighborhood-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition-fast);
}

.neighborhood-badge.has-page {
  background: #fffbeb;
  border-color: #fde68a;
  color: #92400e;
}

.neighborhood-badge.has-page:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.25);
}

.neighborhood-badge i {
  font-size: 0.75rem;
  color: var(--emergency);
}

.neighborhood-badge.has-page i {
  color: #d97706;
}

.neighborhood-info-banner {
  margin-top: 35px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.neighborhood-info-banner p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.92rem;
}

.neighborhood-info-banner strong {
  color: #ffffff;
}

.neighborhood-info-banner .btn-banner-call {
  background: var(--accent);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.neighborhood-info-banner .btn-banner-call:hover {
  background: #ffffff;
  color: var(--primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   SIKÇA SORULAN SORULAR (FAQ ACCORDION)
   ========================================================================== */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-question {
  padding: 16px 18px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  user-select: none;
}

@media (min-width: 768px) {
  .faq-question {
    padding: 20px 24px;
    font-size: 1.05rem;
  }
}

.faq-question:hover {
  background-color: #f8fafc;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--primary);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--accent);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .faq-answer {
    padding: 0 24px;
    font-size: 0.96rem;
  }
}

.faq-item.active .faq-answer {
  padding-bottom: 18px;
}

/* ==========================================================================
   ALT BİLGİ (FOOTER)
   ========================================================================== */
.site-footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 50px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 992px) {
  .site-footer {
    padding: 70px 0 25px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
  }
}

.footer-col h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-contact-info i {
  color: var(--accent);
  margin-top: 3px;
}

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

/* ==========================================================================
   MOBİL SABİT HIZLI AKSİYON BARI (STICKY BOTTOM BAR)
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 12px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 9999;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.4);
}

.mobile-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.bar-btn-call {
  background: linear-gradient(135deg, var(--emergency), #dc2626);
  color: #ffffff;
  padding: 11px 8px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  white-space: nowrap;
}

.bar-btn-call:active {
  transform: scale(0.96);
}

.bar-btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), #16a34a);
  color: #ffffff;
  padding: 11px 8px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  white-space: nowrap;
}

.bar-btn-whatsapp:active {
  transform: scale(0.96);
}

/* ==========================================================================
   RESİM GÖNDER FİYAT AL (WHATSAPP CONVERSION BANNER & BOX)
   ========================================================================== */
.photo-price-banner,
.content-box .photo-price-banner {
  background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #059669 100%);
  border: 2px solid rgba(52, 211, 153, 0.6);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  color: #ffffff !important;
  margin: 30px 0;
  box-shadow: 0 12px 35px rgba(4, 120, 87, 0.35);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .photo-price-banner,
  .content-box .photo-price-banner {
    padding: 32px 28px;
    margin: 40px 0;
  }
}

.photo-price-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.photo-price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 860px) {
  .photo-price-grid {
    grid-template-columns: auto 1fr auto;
    gap: 25px;
  }
}

.photo-icon-badge {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  margin: 0 auto;
  animation: pulse-dot 2.5s infinite ease-in-out;
}

.photo-price-content {
  text-align: center;
}

@media (min-width: 860px) {
  .photo-price-content {
    text-align: left;
  }
}

.photo-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.photo-price-content h3,
.content-box .photo-price-content h3,
.content-box .photo-price-banner h3 {
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.photo-price-content p,
.content-box .photo-price-content p,
.content-box .photo-price-banner p {
  color: #f0fdf4 !important;
  font-size: 0.98rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.photo-price-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

@media (min-width: 860px) {
  .photo-price-features {
    justify-content: flex-start;
  }
}

.photo-price-features span,
.content-box .photo-price-features span {
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 14px;
  border-radius: 8px;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.photo-price-banner .text-accent,
.content-box .photo-price-banner .text-accent {
  color: #facc15 !important;
  font-size: 0.95rem;
}

.btn-photo-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  font-weight: 800;
  padding: 13px 22px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  transition: var(--transition-smooth);
  text-align: center;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-photo-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7);
  color: #ffffff;
}

/* Floating WhatsApp Button with Tooltip for Desktop */
.floating-whatsapp-wrap {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-whatsapp-tooltip {
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(37, 211, 102, 0.45);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.floating-whatsapp-tooltip i {
  color: #25d366;
  font-size: 0.95rem;
}

.floating-whatsapp {
  position: static;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.floating-whatsapp-wrap:hover .floating-whatsapp {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.75);
}

.floating-whatsapp-wrap:hover .floating-whatsapp-tooltip {
  background: #1e293b;
  border-color: #25d366;
}

/* ==========================================================================
   DETAY / ALT SAYFA BAŞLIKLARI (PAGE HERO & CONTENT BOX)
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #090d16 0%, #0f172a 70%, #1e293b 100%);
  color: #ffffff;
  padding: 35px 0 45px;
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 50px 0 60px;
  }
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.82rem;
  color: #94a3b8;
  margin-bottom: 12px;
}

.breadcrumbs a {
  color: var(--accent);
}

.page-hero h1 {
  color: #ffffff;
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  margin-bottom: 10px;
}

.page-hero p {
  color: #94a3b8;
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  max-width: 680px;
  margin: 0 auto;
}

.content-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 20px 16px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

@media (min-width: 768px) {
  .content-box {
    padding: 40px;
    margin-bottom: 40px;
  }
}

.content-box h2 {
  font-size: clamp(1.35rem, 3.5vw, 1.8rem);
  margin-bottom: 16px;
  color: var(--primary);
}

.content-box h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.3rem);
  margin: 22px 0 10px;
  color: var(--primary-light);
}

.content-box p {
  color: #475569;
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.content-box ul {
  margin-bottom: 18px;
  padding-left: 6px;
}

.content-box ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: #475569;
  font-size: 0.93rem;
}

.content-box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

/* ==========================================================================
   ANİMASYONLAR
   ========================================================================== */
@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* ==========================================================================
   MOBİL & TABLET MENÜ DÜZENLEMESİ (RESPONSIVE BREAKPOINTS)
   ========================================================================== */
@media (max-width: 991px) {
  .mobile-sticky-bar {
    display: block;
  }

  .floating-whatsapp {
    display: none; /* Mobilde alt barda yer aldığı için kapatılır */
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    background: #0f172a;
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 20px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 10px 0 35px rgba(0,0,0,0.6);
    overflow-y: auto;
    z-index: 1000;
    gap: 8px;
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-link {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    display: block;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    margin-top: 6px;
    padding: 6px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
  }

  .nav-dropdown .dropdown-item {
    padding: 11px 14px;
    font-size: 0.92rem;
    border-radius: 6px;
  }

  .btn-nav-call {
    display: none; /* Mobilde alt barda yer alır */
  }
}
