/* ============================================================
   Güneş Temizlik — Frontend Stil Dosyası
   ============================================================ */

/* ─── 1. CSS Custom Properties ─────────────────────────────── */
:root {
  --navy:        #1e3a5f;
  --navy-dark:   #152d4a;
  --navy-light:  #2d5a9e;
  --gold:        #f59e0b;
  --gold-dark:   #d97706;
  --gold-light:  #fef3c7;

  --white:       #ffffff;
  --bg:          #f8fafc;
  --border:      #e2e8f0;
  --text-dark:   #0f172a;
  --text:        #334155;
  --text-muted:  #64748b;
  --success:     #10b981;

  --container:   1200px;
  --gutter:      24px;
  --section-py:  96px;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.07);
  --shadow-xl:   0 24px 60px rgba(0,0,0,.14);

  --ease:        cubic-bezier(.4,0,.2,1);
  --dur:         .22s;
  --header-h:    72px;
  --mobile-bar:  72px;
}

/* ─── 2. Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── 3. Yardımcılar ───────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section     { padding: var(--section-py) 0; }
.section-alt { background: var(--bg); }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  color: #92400e;
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -.3px;
}
.section-title span { color: var(--gold); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ─── 4. Butonlar ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:active { transform: scale(.97); }
.btn svg    { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg     { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm     { padding: 9px 20px; font-size: .85rem; }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(245,158,11,.35);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,158,11,.45);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-1px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(30,58,95,.3);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,58,95,.4);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}

/* ─── 5. HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
  transition: box-shadow var(--dur);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 40%, #0369A1 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(14,165,233,.40), 0 1px 4px rgba(14,165,233,.20);
  transition: transform .22s ease, box-shadow .22s ease;
  position: relative;
  overflow: hidden;
}
.logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,.22) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}
.site-logo:hover .logo-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 22px rgba(14,165,233,.50), 0 2px 6px rgba(14,165,233,.25);
}
.logo-icon svg { width: 34px; height: 34px; }
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-text strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.25px;
  line-height: 1.2;
  white-space: nowrap;
}
.logo-text strong span.sun  { color: #F59E0B; }
.logo-text strong span.cloud { color: #0EA5E9; }
.logo-text small {
  display: block;
  font-size: .64rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .7px;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Logo: mobil küçültme ────────────────────────────────────── */
@media (max-width: 480px) {
  .logo-icon { width: 40px; height: 40px; border-radius: 10px; }
  .logo-icon svg { width: 28px; height: 28px; }
  .logo-text strong { font-size: .95rem; }
  .logo-text small  { font-size: .60rem; }
}


.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: block;
  padding: 7px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: color var(--dur), background var(--dur);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--bg);
}

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: border-color var(--dur), background var(--dur);
}
.header-phone:hover { border-color: var(--navy); background: var(--bg); }
.header-phone svg { width: 15px; height: 15px; color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: background var(--dur);
  flex-shrink: 0;
}
.hamburger:hover { background: var(--bg); }
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--dur), opacity var(--dur);
}
.hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  z-index: 850;
  padding: 20px var(--gutter);
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav .nav-link {
  font-size: 1rem;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  font-weight: 500;
}
.mobile-nav .btn { margin-top: 10px; width: 100%; justify-content: center; }

/* ─── 6. HERO ──────────────────────────────────────────────── */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3356 40%, #243d6b 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(45,90,158,.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.3);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -.5px;
  margin-bottom: 22px;
}
.hero-title .highlight { color: var(--gold); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-phone-icon {
  width: 42px; height: 42px;
  background: rgba(245,158,11,.18);
  border: 1px solid rgba(245,158,11,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-phone-icon svg { width: 18px; height: 18px; color: var(--gold); }
.hero-phone-info small {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
  margin-bottom: 2px;
}
.hero-phone-info a {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .5px;
  transition: color var(--dur);
}
.hero-phone-info a:hover { color: var(--gold); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-img-box {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.hero-img-box img,
.hero-img-box iframe {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}

/* Google Maps Bilgi Kartı */
.map-info-popup {
  display: none; /* masaüstünde gizli, mobilden görünür */
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  padding: 12px 14px;
  margin-top: 10px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--dur);
  cursor: pointer;
}
.map-info-popup:hover { box-shadow: 0 4px 20px rgba(0,0,0,.22); }

.map-popup-left { flex: 1; min-width: 0; }

.map-popup-name {
  font-size: .9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.map-popup-address {
  font-size: .75rem;
  color: #5f6368;
  margin-bottom: 5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.map-popup-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.map-popup-score {
  font-size: .82rem;
  font-weight: 700;
  color: #1a1a1a;
}
.map-popup-stars {
  font-size: .78rem;
  color: #f59e0b;
  letter-spacing: -1px;
}
.map-popup-count {
  font-size: .75rem;
  color: #70757a;
}

.map-popup-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.map-popup-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #f1f3f4;
  display: flex; align-items: center; justify-content: center;
  color: #5f6368;
  transition: background var(--dur);
  flex-shrink: 0;
}
.map-popup-btn:hover { background: #e8eaed; }
.map-popup-btn--blue { background: #e8f0fe; color: #1a73e8; }
.map-popup-btn--blue:hover { background: #d2e3fc; }

/* Mobilde kartı göster */
@media (max-width: 900px) {
  .map-info-popup { display: flex; }
}

/* Görsel yokken placeholder */

.hero-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  background: linear-gradient(145deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%);
  padding: 40px;
  text-align: center;
}
.hero-img-placeholder .ph-icon {
  width: 90px; height: 90px;
  background: var(--navy);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
}
.hero-img-placeholder .ph-icon svg { width: 44px; height: 44px; color: var(--white); }
.hero-img-placeholder h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}
.hero-img-placeholder p {
  font-size: .85rem;
  color: var(--navy-light);
  line-height: 1.6;
}

/* Yüzen rozetler */
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.hero-badge-1 { bottom: 40px; left: -28px; animation-delay: 0s; }
.hero-badge-2 { top: 40px; right: -28px; animation-delay: 2s; }
.hero-badge-3 { bottom: 140px; right: -20px; animation-delay: 1s; }

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

.badge-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.badge-icon.gold  { background: var(--gold-light); }
.badge-icon.green { background: #dcfce7; }
.badge-icon.blue  { background: #dbeafe; }
.badge-icon svg   { width: 20px; height: 20px; }
.badge-icon.gold  svg { color: #d97706; }
.badge-icon.green svg { color: #16a34a; }
.badge-icon.blue  svg { color: #2563eb; }
.badge-info strong {
  display: block;
  font-size: .92rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}
.badge-info small {
  font-size: .7rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── 7. GÜVEN BARESI ───────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid var(--border);
  transition: background var(--dur);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--bg); }
.trust-icon {
  width: 46px; height: 46px;
  background: var(--gold-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur);
}
.trust-icon svg { width: 22px; height: 22px; color: #d97706; transition: color var(--dur); }
.trust-item:hover .trust-icon { background: var(--navy); }
.trust-item:hover .trust-icon svg { color: var(--white); }
.trust-text strong { display: block; font-size: .9rem; font-weight: 700; color: var(--text-dark); }
.trust-text small  { font-size: .78rem; color: var(--text-muted); }

/* ─── 8. HİZMETLER ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

/* Üst renkli çizgi */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--dur);
}
.service-card:hover::before         { opacity: 1; }
.service-card:nth-child(1)::before  { background: #3b82f6; }
.service-card:nth-child(2)::before  { background: var(--success); }
.service-card:nth-child(3)::before  { background: var(--gold); }

.service-img {
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.service-card:hover .service-img img { transform: scale(1.05); }

/* CSS placeholder görsel */
.service-img-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.service-img-bg.ev     { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.service-img-bg.ofis   { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.service-img-bg.insaat { background: linear-gradient(135deg, #fef3c7, #fde68a); }

.service-img-icon {
  width: 72px; height: 72px;
  background: var(--white);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.service-img-icon svg { width: 36px; height: 36px; }
.service-img-bg.ev     .service-img-icon svg { color: #2563eb; }
.service-img-bg.ofis   .service-img-icon svg { color: #059669; }
.service-img-bg.insaat .service-img-icon svg { color: #d97706; }

.service-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.service-features { margin-bottom: 22px; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .83rem;
  color: var(--text);
  padding: 4px 0;
  font-weight: 500;
}
.service-features li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── 9. NEDEN GÜNEŞ TEMİZLİK ──────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  transition: all var(--dur) var(--ease);
}
.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.why-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: background var(--dur);
}
.why-card:hover .why-card-icon { background: var(--navy); }
.why-card-icon svg { width: 24px; height: 24px; color: #d97706; transition: color var(--dur); }
.why-card:hover .why-card-icon svg { color: var(--white); }
.why-card h3 { font-size: .95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.why-card p  { font-size: .82rem; color: var(--text-muted); line-height: 1.65; }

.why-visual { position: relative; }

.why-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  max-height: 520px;
  background: linear-gradient(145deg, #e0f2fe, #bae6fd, #7dd3fc);
  display: flex; align-items: center; justify-content: center;
}
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.why-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px; padding: 40px; text-align: center;
  background: linear-gradient(145deg, #e0f2fe, #bae6fd, #7dd3fc);
}
.why-img-placeholder .ph-icon {
  width: 80px; height: 80px;
  background: var(--navy);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
}
.why-img-placeholder .ph-icon svg { width: 40px; height: 40px; color: var(--white); }
.why-img-placeholder p { font-size: .9rem; color: var(--navy); font-weight: 600; }

.why-stat {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  min-width: 160px;
}
.why-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.why-stat span { font-size: .82rem; color: rgba(255,255,255,.7); }

/* ─── 10. CTA ───────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3356 50%, #243d6b 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(45,90,158,.3) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.22;
  letter-spacing: -.4px;
  margin-bottom: 18px;
}
.cta-title span { color: var(--gold); }
.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
  line-height: 1.75;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cta-note { margin-top: 22px; font-size: .8rem; color: rgba(255,255,255,.35); }

/* ─── 11. FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: #0c1f35;
  color: rgba(255,255,255,.65);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 22px; height: 22px; color: var(--white); }
.footer-logo strong { font-size: 1.1rem; font-weight: 800; color: var(--white); }
.footer-desc {
  font-size: .88rem;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 280px;
}

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur), border-color var(--dur);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); }
.social-link svg   { width: 16px; height: 16px; color: var(--white); }

.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--dur);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '›'; font-size: 1rem; color: var(--gold); opacity: .7; }
.footer-links a:hover   { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.footer-contact-icon svg { width: 15px; height: 15px; color: var(--gold); }
.footer-contact-info small {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(255,255,255,.35);
  font-weight: 600;
  margin-bottom: 3px;
}
.footer-contact-info a,
.footer-contact-info span { font-size: .88rem; color: rgba(255,255,255,.7); transition: color var(--dur); }
.footer-contact-info a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.45); transition: color var(--dur); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── 12. MOBİL SABİT ÇUBUK ────────────────────────────────── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-bar .btn {
  flex: 1;
  padding: 13px;
  font-size: .88rem;
  justify-content: center;
}

/* ─── 13. Animasyonlar ──────────────────────────────────────── */
.animate-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.animate-up.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ─── 14. Responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --section-py: 72px; }
  .hero-inner  { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-item  { padding: 20px 18px; }
}

@media (max-width: 900px) {
  :root { --section-py: 60px; }
  .site-nav     { display: none; }
  .header-phone { display: none; }
  .hamburger    { display: flex; }

  /* Header WhatsApp butonu mobilde kısalt */
  .header-actions .btn-whatsapp span.wa-label { display: none; }

  .hero       { padding: 60px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-badge-1 { left: 12px; bottom: 20px; }
  .hero-badge-2 { right: 12px; top: 20px; }
  .hero-badge-3 { display: none; }

  .trust-list { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }

  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

  .why-grid   { grid-template-columns: 1fr; }
  .why-visual { order: -1; }
  .why-img-wrap { aspect-ratio: 16/9; max-height: 320px; }
  .why-stat   { bottom: -16px; left: 16px; }
  .why-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --section-py: 52px; --gutter: 16px; }

  /* Header: sadece logo + hamburger görünsün, WA butonu da gizle */
  .header-actions .btn-whatsapp { display: none; }

  .hero         { padding: 48px 0 80px; }
  .hero-title   { font-size: 1.75rem; letter-spacing: -.3px; }
  .hero-desc    { font-size: 1rem; }
  .hero-eyebrow { font-size: .72rem; }
  .hero-cta     { flex-direction: column; gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-phone   { flex-direction: column; align-items: flex-start; gap: 8px; }

  .trust-item   { border-right: none !important; padding: 16px; gap: 10px; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border) !important; }

  .why-features { grid-template-columns: 1fr; }

  .cta-buttons  { flex-direction: column; }
  .cta-buttons .btn { width: 100%; max-width: 340px; margin: 0 auto; }

  /* İletişim kutusu mobilde alt alta */
  .contact-grid { grid-template-columns: 1fr !important; }

  .footer-grid   { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Mobil alt çubuk aktif */
  .mobile-bar { display: flex; }
  .site-footer { padding-bottom: calc(var(--mobile-bar) + 8px); }

  /* Kart grid'leri mobilde tek sütun */
  .services-grid { grid-template-columns: 1fr !important; max-width: 100%; }
  .trust-list    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  :root { --gutter: 14px; }
  .hero-badge { display: none; }
  .hero-title { font-size: 1.55rem; }
}



/* ─── 15. HARİTA BÖLÜMÜ ─────────────────────────────────── */
.map-section {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.map-header {
  margin-bottom: 48px;
}

.map-wrapper {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: stretch;
  min-height: 440px;
}

/* İletişim kartları sütunu */
.map-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.map-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.map-info-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.map-info-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  background: var(--gold-light);
  color: #d97706;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.map-info-icon svg { width: 22px; height: 22px; }
.map-info-icon--green {
  background: #dcfce7;
  color: #16a34a;
}

.map-info-body h4 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.map-info-body p,
.map-info-body a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}
.map-info-body a:hover { color: var(--gold); }

.map-directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  padding: 14px 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--dur) var(--ease);
  box-shadow: 0 4px 14px rgba(30,58,95,.25);
}
.map-directions-btn:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,58,95,.35);
}
.map-directions-btn svg { flex-shrink: 0; }

/* Harita iframe kutusu */
.map-embed-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-height: 440px;
  position: relative;
}
.map-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Responsive harita */
@media (max-width: 900px) {
  .map-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .map-embed-wrap {
    min-height: 340px;
    position: relative;
  }
}
@media (max-width: 600px) {
  .map-header { margin-bottom: 32px; }
  .map-wrapper { gap: 20px; }
  .map-embed-wrap { min-height: 280px; }
  .map-info-card { padding: 14px 16px; }
  .map-directions-btn { font-size: .88rem; }
}

/* ─── 16. İÇ SAYFALAR / HİZMET DETAY STİLLERİ ──────────────── */


/* Sayfa Hero & Breadcrumb */
.page-hero {
  padding: 60px 0 72px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3356 40%, #243d6b 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(245,158,11,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,.8); transition: color var(--dur); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,.4); }
.breadcrumb .current { color: var(--gold); font-weight: 600; }

/* Hizmet Kapsamı Grid */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.scope-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.scope-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.scope-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background var(--dur);
}
.scope-card:hover .scope-icon-wrap { background: var(--navy); }
.scope-icon-wrap svg { width: 26px; height: 26px; color: #d97706; transition: color var(--dur); }
.scope-card:hover .scope-icon-wrap svg { color: var(--white); }
.scope-card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.scope-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}
.scope-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.scope-tag {
  font-size: .75rem;
  background: var(--bg);
  color: var(--text);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid var(--border);
}

/* Neler Dahil Checklist Kartları */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.checklist-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.checklist-card:hover {
  border-color: var(--success);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.check-badge {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check-badge svg { width: 18px; height: 18px; }
.checklist-info h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.checklist-info p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* 3 Adımlı Süreç */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  position: relative;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.step-num {
  position: absolute;
  top: -16px; left: 28px;
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(245,158,11,.4);
}
.step-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--navy);
}
.step-icon svg { width: 24px; height: 24px; }
.step-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.step-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* SSS Accordion */
.faq-wrap {
  max-width: 820px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur);
}
.faq-item[open], .faq-item:hover { border-color: var(--gold); }
.faq-summary {
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  user-select: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-toggle-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: transform var(--dur), background var(--dur);
}
.faq-item[open] .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--gold);
  color: var(--white);
}
.faq-answer {
  padding: 0 24px 20px;
  font-size: .92rem;
  color: var(--text);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* Responsive Service Page */
@media (max-width: 990px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .scope-grid { grid-template-columns: 1fr 1fr; }
  .checklist-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .page-hero { padding: 40px 0 52px; }
  .scope-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .faq-summary { padding: 16px 18px; font-size: .92rem; }
  .faq-answer { padding: 14px 18px 18px; font-size: .88rem; }
}

