/* ============================================
   SÜRME CAM BALKON — ANA STİL DOSYASI
   ============================================ */

:root {
  --blue-900: #0b1f35;
  --blue-800: #0d2137;
  --blue-700: #122d4e;
  --blue-600: #1a3f6b;
  --blue-500: #1e5f8e;
  --blue-400: #2980b9;
  --blue-300: #4a9fd4;
  --blue-200: #a8d4ed;
  --blue-100: #ddf0fa;
  --blue-50:  #f0f8fd;

  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-bg-strong: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: 0.2s ease;

  --container: 1200px;
  --section-py: 100px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── TIPOGRAFI ─── */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue-800);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { font-size: 1.0625rem; color: var(--gray-600); max-width: 68ch; }

/* ─── KONTEYNER ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── YARDIMCI ─── */
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-white p { color: rgba(255,255,255,0.82) !important; }
.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-400);
  background: var(--blue-50);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.section-label.light {
  background: rgba(255,255,255,0.12);
  color: var(--blue-200);
}
.section-title { margin-bottom: 14px; }
.section-sub {
  font-size: 1.0625rem;
  margin: 0 auto 56px;
  text-align: center;
}

.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* ─── DÜĞMELER ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--blue-400);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(41, 128, 185, 0.4);
}
.btn-primary:hover {
  background: var(--blue-300);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(41, 128, 185, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--blue-800);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(13,33,55,0.3);
}
.btn-dark:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0 24px;
}

.site-header.scrolled {
  background: rgba(11, 31, 53, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-300);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue-300);
  transition: width var(--transition-fast);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--blue-400) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: all var(--transition-fast) !important;
}
.nav-cta:hover {
  background: var(--blue-300) !important;
  transform: translateY(-2px);
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: transparent;
  border: 0;
  appearance: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ─── MOBİL MENÜ ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: var(--blue-900);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 1.0625rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue-300);
  outline-offset: 3px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 55%, var(--blue-500) 100%);
}

/* Hero background dekorasyon */
.hero-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-decor::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-bg-decor::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 25%, rgba(41,128,185,0.22) 0%, transparent 52%),
    radial-gradient(ellipse at 15% 75%, rgba(18,45,78,0.35) 0%, transparent 50%);
}

/* Hero iki sütunlu düzen */
.hero-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 24px 60px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-200);
  margin-bottom: 28px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  max-width: 760px;
}

.hero h1 .highlight {
  color: var(--blue-300);
  position: relative;
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--blue-200);
  margin-top: 4px;
}

/* Hero sağ taraf görsel paneli */
.hero-visual {
  position: relative;
  padding: 20px 0 20px 20px;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 36px; bottom: 36px;
  border: 1px solid rgba(74,159,212,0.18);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  animation: heroFloat 8s ease-in-out infinite;
}

.hero-img-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,53,0.08) 45%, rgba(11,31,53,0.72) 100%);
}

.hero-img-badge {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.hero-img-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-img-stat-num {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-img-stat-label {
  font-size: 0.63rem;
  color: rgba(255,255,255,0.62);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.hero-img-divider {
  width: 1px; height: 38px;
  background: rgba(255,255,255,0.14);
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Hero içerik giriş animasyonları */
.hero-content .hero-badge   { animation: fadeSlideUp 0.7s 0.10s ease both; }
.hero-content h1             { animation: fadeSlideUp 0.75s 0.22s ease both; }
.hero-content .hero-desc     { animation: fadeSlideUp 0.7s 0.34s ease both; }
.hero-content .hero-actions  { animation: fadeSlideUp 0.7s 0.44s ease both; }
.hero-content .hero-stats    { animation: fadeSlideUp 0.7s 0.54s ease both; }
.hero-visual                 { animation: fadeSlideRight 0.9s 0.28s ease both; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ─── KAYDIRMA GÖSTERGESİ ─── */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ─── HİZMETLER BÖLÜMÜ ─── */
.services-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-300));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  border-color: var(--blue-200);
  box-shadow: 0 12px 40px rgba(30, 95, 142, 0.12);
  transform: translateY(-6px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue-100);
  line-height: 1;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.1875rem;
  margin-bottom: 12px;
  color: var(--blue-800);
}

.service-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 100%;
}

/* ─── NEDEN BİZ ─── */
.why-section {
  padding: var(--section-py) 0;
  background: var(--blue-50);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 0;
}

.why-visual {
  position: relative;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

.why-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-feature-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--white);
}

.why-feature-text h4 {
  margin-bottom: 6px;
  color: var(--blue-800);
}

.why-feature-text p {
  font-size: 0.9375rem;
  max-width: 100%;
}

/* ─── İLÇELER ─── */
.districts-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.district-card {
  display: block;
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  transition: all var(--transition-fast);
  text-align: center;
}

.district-card:hover {
  border-color: var(--blue-400);
  background: var(--blue-50);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(30,95,142,0.1);
}

.district-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--blue-800);
  display: block;
  margin-bottom: 4px;
}

.district-sub {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ─── SAYAÇLAR ─── */
.stats-section {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-600) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 40px,
    rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px
  );
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--blue-200);
  margin-top: 8px;
  display: block;
}

/* ─── NASIL ÇALIŞIR ─── */
.process-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--blue-200);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 88px; height: 88px;
  background: var(--white);
  border: 2px solid var(--blue-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-500);
  box-shadow: 0 4px 20px rgba(41,128,185,0.15);
  transition: all var(--transition);
}

.process-step:hover .step-circle {
  background: var(--blue-400);
  color: var(--white);
  border-color: var(--blue-400);
  transform: scale(1.05);
}

.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; max-width: 200px; margin: 0 auto; }

/* ─── MÜŞTERİ YORUMLARI ─── */
.testimonials-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(30,95,142,0.1);
  transform: translateY(-4px);
}

.testimonial-text {
  font-size: 0.9875rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 24px;
  max-width: 100%;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--blue-800);
}

.author-district {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.star {
  width: 14px; height: 14px;
  background: #f59e0b;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* ─── CTA BÖLÜMÜ ─── */
.cta-section {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(41,128,185,0.2) 0%, transparent 70%);
  top: -200px; right: -100px;
  border-radius: 50%;
}

.cta-section h2 { margin-bottom: 16px; color: var(--white); }
.cta-section p  { font-size: 1.0625rem; color: rgba(255,255,255,0.75); margin: 0 auto 40px; }

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
}

.cta-phone-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-phone-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.7);
  padding: 72px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-name { font-size: 1.375rem; }
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 16px 0 24px;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
}

.footer-col h5 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition-fast);
}

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

.footer-contact-item {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 10px;
}

.footer-contact-item strong {
  color: rgba(255,255,255,0.85);
  display: block;
  font-size: 0.875rem;
}

.footer-bottom {
  max-width: var(--container);
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
}
.footer-bottom a:hover { color: var(--white); }

/* ─── WHATSApp DÜĞME ─── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

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

/* ─── İLÇE SAYFASI ─── */
.ilce-hero {
  padding: 160px 24px 80px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  text-align: center;
}

.ilce-hero h1 { color: var(--white); margin-bottom: 16px; }
.ilce-hero p  { color: rgba(255,255,255,0.75); margin: 0 auto; }

.breadcrumb {
  max-width: var(--container);
  margin: 0 auto 24px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.4; }

.ilce-content {
  padding: var(--section-py) 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.ilce-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

.ilce-main h2 { margin-bottom: 20px; font-size: 1.75rem; }
.ilce-main h3 { margin: 36px 0 14px; font-size: 1.25rem; }
.ilce-main p  { margin-bottom: 18px; }

.ilce-sidebar {
  position: sticky;
  top: 100px;
}

.ilce-sidebar-card {
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 24px;
}

.ilce-sidebar-card h4 {
  font-size: 1rem;
  color: var(--blue-800);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue-200);
}

.sidebar-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid var(--blue-100);
}

.sidebar-contact-item:last-child { border-bottom: none; }
.sidebar-label { font-size: 0.75rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.sidebar-value { font-size: 0.9375rem; font-weight: 600; color: var(--blue-800); }

.ilce-services-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ilce-service-item {
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--blue-700);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.ilce-service-item:hover {
  border-color: var(--blue-300);
  background: var(--blue-50);
}

.nearby-districts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.nearby-badge {
  display: inline-block;
  padding: 5px 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.8125rem;
  color: var(--blue-700);
  transition: all var(--transition-fast);
}

.nearby-badge:hover {
  border-color: var(--blue-400);
  background: var(--blue-50);
}

/* ─── İLETİŞİM SAYFASI ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

.contact-form {
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-md);
  padding: 40px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-800);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(41,128,185,0.12);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 6px;
}

.contact-info-item p {
  font-size: 1.0625rem;
  color: var(--gray-800);
  max-width: 100%;
}

/* ─── ANİMASYONLAR ─── */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="up"]    { transform: translateY(40px); }
[data-animate="left"]  { transform: translateX(-40px); }
[data-animate="right"] { transform: translateX(40px); }
[data-animate="scale"] { transform: scale(0.94); }
[data-animate="fade"]  { transform: none; }

[data-animate].animated {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

[data-delay="1"].animated { transition-delay: 0.1s; }
[data-delay="2"].animated { transition-delay: 0.2s; }
[data-delay="3"].animated { transition-delay: 0.3s; }
[data-delay="4"].animated { transition-delay: 0.4s; }
[data-delay="5"].animated { transition-delay: 0.5s; }
[data-delay="6"].animated { transition-delay: 0.6s; }

/* ─── PROJE GALERİSİ ─── */
.gallery-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11,31,53,0.72) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSİVE ─── */
@media (max-width: 1024px) {
  .hero-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual  { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { height: 320px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ilce-content-grid { grid-template-columns: 1fr; }
  .ilce-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gallery-item:first-child { grid-row: auto; grid-column: 1 / 3; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: auto; }
  .hero-wrapper { padding-top: 120px; padding-bottom: 56px; }
  .hero-stats   { gap: 28px; }

  .process-steps::before { display: none; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .ilce-content-grid { grid-template-columns: 1fr; }

  .contact-form [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 180px 180px 180px 180px;
  }
  .gallery-item:first-child { grid-column: auto; }
}

@media (max-width: 480px) {
  .site-header { padding: 0 16px; }
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
  .districts-grid { grid-template-columns: 1fr 1fr; }
  .district-card { padding: 16px 12px; }
  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
}
