/* ===== Değişkenler ===== */
:root {
  --color-primary: #FF7A00;
  --color-primary-light: #FFB74D;
  --color-primary-dark: #E85D00;
  --color-navy: #0B2A3D;
  --color-navy-light: #14425C;
  --color-cream: #FFF8EE;
  --color-white: #FFFFFF;
  --color-gray: #5A6B75;
  --color-border: #EAE0D0;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --container-width: 1140px;
  --radius: 12px;
  --shadow-sm: 0 1px 2px rgba(11, 42, 61, 0.05), 0 3px 10px rgba(11, 42, 61, 0.06);
  --shadow: 0 4px 10px rgba(11, 42, 61, 0.06), 0 14px 32px rgba(11, 42, 61, 0.10);
  --shadow-lg: 0 10px 20px rgba(11, 42, 61, 0.10), 0 28px 56px rgba(11, 42, 61, 0.16);
  --shadow-glow: 0 6px 16px rgba(255, 122, 0, 0.24), 0 2px 6px rgba(232, 93, 0, 0.3);
  --ease-depth: cubic-bezier(.2, .8, .2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-navy);
  background: var(--color-cream);
  line-height: 1.6;
}
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; }

/* ===== Layout ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
@media (max-width: 640px) {
  .section { padding: 52px 0; }
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--color-gray);
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ===== Buton ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: var(--font-heading);
  transition: transform .2s var(--ease-depth), box-shadow .2s var(--ease-depth), filter .2s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn--primary {
  background: linear-gradient(155deg, var(--color-primary-light) 0%, var(--color-primary) 45%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover { box-shadow: 0 10px 24px rgba(255, 122, 0, 0.32), 0 3px 8px rgba(232, 93, 0, 0.35); filter: brightness(1.03); }
.btn--outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-white);
  color: var(--color-white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--outline:hover { background: rgba(255, 255, 255, 0.16); box-shadow: var(--shadow-sm); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 88px;
}
.site-logo {
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.site-logo-img { height: 64px; width: auto; display: block; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.site-nav a {
  font-weight: 500;
  color: var(--color-navy);
  white-space: nowrap;
  font-size: 0.94rem;
}
.site-nav a.is-active,
.site-nav a:hover { color: var(--color-primary); }
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-actions .btn { white-space: nowrap; }
.header-actions .btn--primary { padding: 12px 20px; font-size: 0.92rem; }
.header-actions .btn--outline { display: none; }
@media (min-width: 1400px) {
  .header-actions .btn--outline { display: inline-flex; }
}
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--color-navy);
  white-space: nowrap;
  padding: 0;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.is-active { color: var(--color-primary); }
.nav-dropdown-toggle svg { width: 13px; height: 13px; transition: transform .2s ease; flex-shrink: 0; }
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.is-open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translate(-50%, -6px);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 50;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--color-navy);
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active { background: var(--color-cream); color: var(--color-primary); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--color-navy);
  border-radius: 2px;
}

@media (max-width: 1180px) {
  .site-nav {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .site-nav.is-open { max-height: 480px; overflow-y: auto; }
  .site-nav a { display: block; padding: 16px 24px; width: 100%; border-top: 1px solid var(--color-border); white-space: normal; }
  .nav-toggle { display: flex; }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 16px 24px;
    border-top: 1px solid var(--color-border);
    font-size: 1rem;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--color-cream);
    padding: 0;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav-dropdown.is-open .nav-dropdown-menu { max-height: 200px; }
  .nav-dropdown-menu a { padding: 14px 24px 14px 44px; border-radius: 0; }
}

@media (max-width: 480px) {
  .header-actions .btn--primary { padding: 12px 16px; font-size: 0.85rem; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 { color: var(--color-white); margin-bottom: 16px; }
.footer-grid a:hover { color: var(--color-primary-light); }
.footer-grid li + li { margin-top: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* ===== Hero ===== */
.hero { padding: 64px 0 96px; background: linear-gradient(180deg, var(--color-cream) 0%, #fff 100%); }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 20px; }
.hero-copy p { color: var(--color-gray); font-size: 1.1rem; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn--outline { color: var(--color-navy); border-color: var(--color-border); }
.hero-visual {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle, rgba(255, 183, 77, 0.35) 0%, rgba(255, 122, 0, 0.12) 45%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: hero-glow-pulse 4s ease-in-out infinite;
}
.hero-visual svg { width: 100%; height: auto; }
.hero-visual > svg { position: relative; z-index: 1; }

/* ===== Hero Giriş Animasyonu ===== */
.hero-copy h1,
.hero-copy p,
.hero-copy .hero-actions,
.hero-visual {
  opacity: 0;
  animation: hero-fade-up 0.7s ease forwards;
}
.hero-copy h1 { animation-delay: 0.05s; }
.hero-copy p { animation-delay: 0.2s; }
.hero-copy .hero-actions { animation-delay: 0.35s; }
.hero-visual { animation-delay: 0.15s; }

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-glow-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual::before { animation: none; }
  .hero-copy h1,
  .hero-copy p,
  .hero-copy .hero-actions,
  .hero-visual {
    animation: none;
    opacity: 1;
  }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-copy p { margin-inline: auto; }
}

/* ===== Alt Sayfa Başlık İkonu ===== */
.page-header-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 8px;
}

/* ===== İstatistik Şeridi ===== */
.stats-bar { background: var(--color-navy); padding: 48px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 700; color: var(--color-primary-light); }
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-top: 4px; }

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

/* ===== Kartlar ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.card {
  background: linear-gradient(180deg, #fff 0%, #fffdfa 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-depth), box-shadow .25s var(--ease-depth);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 0%, var(--color-cream) 100%);
  border: 1px solid var(--color-border);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8), var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  margin: 0 auto 16px;
  transition: transform .25s var(--ease-depth), background .25s ease, color .25s ease, box-shadow .25s ease;
}
.card-icon svg { width: 30px; height: 30px; }
.card:hover .card-icon,
.contact-card:hover .card-icon {
  transform: scale(1.1);
  background: linear-gradient(155deg, var(--color-primary-light), var(--color-primary));
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.card p { color: var(--color-gray); font-size: 0.95rem; }

/* ===== Neden Gerekli Teaser ===== */
.fact-list li { position: relative; padding-left: 28px; margin-bottom: 16px; color: var(--color-gray); }
.fact-list li::before { content: '✓'; position: absolute; left: 0; color: var(--color-primary); font-weight: 700; }

/* ===== Süreç ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.step { text-align: center; }
.step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--color-primary-light) 0%, var(--color-primary) 60%, var(--color-primary-dark) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: var(--shadow-glow);
}
.step h3 { margin-bottom: 8px; font-size: 1.05rem; }
@media (min-width: 860px) {
  /* connects the step numbers into a single timeline rail across exactly 4 columns */
  .steps { grid-template-columns: repeat(4, 1fr); }
  .step { position: relative; }
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 23px;
    left: calc(50% + 24px);
    width: calc(100% - 16px);
    height: 2px;
    background: var(--color-border);
  }
}
.step p { color: var(--color-gray); font-size: 0.9rem; }

/* ===== Güven Rozetleri ===== */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.badge { display: flex; flex-direction: column; align-items: center; gap: 10px; transition: transform .2s ease; }
.badge:hover { transform: translateY(-4px); }
.badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 0%, var(--color-cream) 100%);
  border: 1px solid var(--color-border);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8), var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  transition: transform .25s var(--ease-depth), background .25s ease, color .25s ease, box-shadow .25s ease;
}
.badge-icon svg { width: 22px; height: 22px; }
.badge:hover .badge-icon { background: linear-gradient(155deg, var(--color-primary-light), var(--color-primary)); color: #fff; box-shadow: var(--shadow-glow); }
.badge span { font-size: 0.9rem; font-family: var(--font-heading); font-weight: 600; color: var(--color-navy); }

/* ===== Kapanış CTA ===== */
.cta-final { background: linear-gradient(155deg, var(--color-primary-light) 0%, var(--color-primary) 55%, var(--color-primary-dark) 100%); }
.cta-final .btn--primary { background: linear-gradient(155deg, var(--color-navy-light) 0%, var(--color-navy) 100%); box-shadow: var(--shadow-lg); }

/* ===== Scroll Reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Hizmet Detay ===== */
.service-detail {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail .card-icon { width: 56px; height: 56px; margin: 0; flex-shrink: 0; }
.service-detail .card-icon svg { width: 26px; height: 26px; }
.service-detail h3 { margin-bottom: 8px; }
.service-detail p { color: var(--color-gray); }

.method-box p { max-width: 720px; margin: 0 auto; color: var(--color-gray); }

/* ===== Bilgi Bloğu ===== */
.info-grid { max-width: 760px; margin: 0 auto; }
.info-block h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin: 12px 0 16px; }
.info-block p { color: var(--color-gray); }
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(180deg, #fff 0%, var(--color-cream) 100%);
  border: 1px solid var(--color-border);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease-depth), box-shadow .2s var(--ease-depth);
}
.stat-pill svg { width: 16px; height: 16px; flex-shrink: 0; }
.stat-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===== Hesaplayıcı ===== */
.calculator-box {
  background: linear-gradient(165deg, #fff 0%, var(--color-cream) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.calculator-box h3 { margin-bottom: 8px; }
.calculator-box p { color: var(--color-gray); margin-bottom: 20px; }
.calculator-form label { display: block; text-align: left; font-weight: 600; margin-bottom: 8px; }
.calculator-input-row { display: flex; gap: 12px; }
.calculator-input-row input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-body);
}
@media (max-width: 400px) {
  .calculator-input-row { flex-direction: column; }
  .calculator-input-row .btn { justify-content: center; }
}
.calculator-result {
  margin-top: 20px;
  font-weight: 600;
  color: var(--color-primary-dark);
  min-height: 24px;
}
.disclaimer {
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--color-gray);
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

/* ===== Kaynaklar ===== */
.sources {
  margin-top: 24px;
  max-width: 760px;
  margin-inline: auto;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}
.sources h4 { font-size: 0.9rem; margin-bottom: 10px; color: var(--color-navy); }
.sources ul { display: flex; flex-direction: column; gap: 6px; }
.sources a { font-size: 0.8rem; color: var(--color-primary-dark); text-decoration: underline; }
.sources a:hover { color: var(--color-primary); }

/* ===== Bölge Listesi ===== */
.region-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.region-list li {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 500;
  transition: transform .2s ease, background .2s ease;
}
.region-list li:hover { transform: translateY(-2px); background: var(--color-primary-light); }

/* ===== İletişim ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.contact-card {
  text-align: center;
  padding: 24px;
  background: linear-gradient(180deg, #fff 0%, #fffdfa 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-depth), box-shadow .25s var(--ease-depth);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.contact-card h3 { margin-bottom: 8px; }
.contact-card a { color: var(--color-primary-dark); font-weight: 600; }

/* ===== Bilgi Merkezi ===== */
.hub-teaser {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

/* --- Kirlenme Sebepleri kartları --- */
.soil-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 0%, var(--color-cream) 100%);
  border: 1px solid var(--color-border);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8), var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  margin: 0 auto 16px;
  transition: transform .25s var(--ease-depth), background .25s ease, color .25s ease, box-shadow .25s ease;
}
.soil-icon svg { width: 30px; height: 30px; }
.soil-card:hover .soil-icon { transform: scale(1.1); background: linear-gradient(155deg, var(--color-primary-light), var(--color-primary)); color: #fff; box-shadow: var(--shadow-glow); }

/* --- Göçmen Kuş Rotaları --- */
.flyway {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}
.flyway-map { width: 100%; height: auto; overflow: visible; }
.flyway-path {
  fill: none;
  stroke: var(--color-primary-light);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 7 9;
  animation: flyway-dash 7s linear infinite;
}
.flyway-path--alt {
  stroke: var(--color-navy-light);
  opacity: 0.45;
  animation-duration: 10s;
  animation-direction: reverse;
}
@keyframes flyway-dash { to { stroke-dashoffset: -320; } }
.flyway-point circle { fill: var(--color-white); stroke: var(--color-primary); stroke-width: 2.5; }
.flyway-point text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  fill: var(--color-navy);
  text-anchor: middle;
}
.flyway-legend { display: flex; flex-direction: column; gap: 20px; }
.flyway-legend li { display: flex; gap: 14px; align-items: flex-start; }
.flyway-num {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 0%, var(--color-cream) 100%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.flyway-legend strong { display: block; margin-bottom: 4px; }
.flyway-legend p { color: var(--color-gray); font-size: 0.9rem; }

@media (max-width: 860px) {
  .flyway { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .flyway-path, .flyway-path--alt { animation: none; }
}

/* --- Sıcak Nokta Diyagramı --- */
.hotspot-wrap {
  margin-top: 40px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.hotspot-diagram { width: 100%; min-width: 560px; height: auto; display: block; }
.hotspot-wire { stroke: var(--color-border); stroke-width: 3; }
.hotspot-cell { fill: var(--color-navy-light); stroke: var(--color-navy); stroke-width: 1; }
.hotspot-cell--hot { fill: var(--color-primary); stroke: var(--color-primary-dark); }
.hotspot-bracket {
  fill: none;
  stroke: var(--color-primary-dark);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  opacity: 0.55;
}
.hotspot-glow {
  fill: var(--color-primary);
  opacity: 0.35;
  filter: blur(7px);
  transform-box: fill-box;
  transform-origin: center;
  animation: hotspot-pulse 2.1s ease-in-out infinite;
}
.hotspot-current { fill: var(--color-primary-dark); }
@keyframes hotspot-pulse {
  0%, 100% { transform: scale(1); opacity: 0.32; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.hotspot-callouts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--color-gray);
}
.hotspot-callouts div { display: flex; align-items: center; gap: 8px; }
.hotspot-dot {
  width: 12px; height: 12px;
  border-radius: 3px;
  background: var(--color-navy-light);
  flex-shrink: 0;
}
.hotspot-dot--hot { background: var(--color-primary); }
@media (prefers-reduced-motion: reduce) {
  .hotspot-glow { animation: none; opacity: 0.45; }
  .hotspot-current { display: none; }
}

/* --- Temizlik Periyodu Tablosu --- */
.plan-table-wrap {
  overflow-x: auto;
  margin-top: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.plan-table { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
.plan-table th, .plan-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
}
.plan-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-navy);
  background: var(--color-cream);
}
.plan-table td { color: var(--color-gray); }
.plan-table tbody tr:last-child td { border-bottom: none; }
.risk-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  white-space: nowrap;
}
.risk-badge--med { background: var(--color-cream); color: var(--color-gray); border: 1px solid var(--color-border); }
.risk-badge--med-high { background: rgba(255, 183, 77, 0.3); color: var(--color-primary-dark); }
.risk-badge--high { background: rgba(255, 122, 0, 0.16); color: var(--color-primary-dark); border: 1px solid var(--color-primary); }
.risk-badge--very-high { background: var(--color-primary-dark); color: #fff; }

/* --- GES Saha Verisi Grafiği --- */
.ges-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.ges-toggle-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-cream);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.ges-toggle-btn:hover { transform: translateY(-2px); }
.ges-toggle-btn.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.ges-hero-stat {
  text-align: center;
  max-width: 640px;
  margin: 24px auto 0;
  font-size: 1.15rem;
  color: var(--color-navy);
}
.ges-hero-stat strong { color: var(--color-primary-dark); }
.ges-chart-wrap {
  margin-top: 32px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.ges-chart-inner { position: relative; min-width: 640px; }
#ges-chart-static, #ges-chart-bars {
  width: 100%;
  height: auto;
  display: block;
}
#ges-chart-bars { position: absolute; top: 0; left: 0; }
.ges-grid { stroke: var(--color-border); stroke-width: 1; }
.ges-axis { stroke: var(--color-border); stroke-width: 1.5; }
.ges-axis-label { font-size: 11px; fill: var(--color-gray); text-anchor: end; font-family: var(--font-body); }
.ges-bar {
  fill: var(--color-primary);
  transition: fill .15s ease, opacity .15s ease;
  cursor: pointer;
}
.ges-bar:hover, .ges-bar:focus { fill: var(--color-primary-dark); outline: none; }
.ges-bar-label {
  font-size: 12px;
  font-weight: 600;
  fill: var(--color-navy);
  text-anchor: middle;
  font-family: var(--font-heading);
  pointer-events: none;
}
.ges-bar-month {
  font-size: 12px;
  fill: var(--color-gray);
  text-anchor: middle;
  font-family: var(--font-body);
  pointer-events: none;
}
.ges-tooltip {
  position: absolute;
  background: var(--color-navy);
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .1s ease;
  transform: translate(-50%, -100%);
  z-index: 5;
}
.ges-details { margin-top: 32px; }
.ges-details summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary-dark);
}
.ges-details .plan-table-wrap { margin-top: 16px; }

/* --- Pano İçi Temizlik Bonus --- */
.pano-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(165deg, #fff 0%, var(--color-cream) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  max-width: 880px;
  margin: 0 auto;
}
.pano-box-icon { font-size: 2.5rem; flex-shrink: 0; }
.pano-box h3 { margin-bottom: 12px; }
.pano-box p { color: var(--color-gray); }

@media (max-width: 640px) {
  .pano-box { flex-direction: column; text-align: center; }
  .pano-box-icon { margin: 0 auto; }
}

/* ===== Fotoğraf Bileşenleri ===== */
.photo-band {
  position: relative;
  background-size: cover;
  background-position: center;
}
.photo-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,42,61,0.82) 0%, rgba(11,42,61,0.9) 100%);
}
.photo-band .container { position: relative; z-index: 1; }

.hero-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 90px 0 72px;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,42,61,0.6) 0%, rgba(11,42,61,0.88) 100%);
}
.hero-photo .container { position: relative; z-index: 1; }
.hero-photo .section-title, .hero-photo .section-subtitle { color: #fff; }
.hero-photo .section-subtitle { color: rgba(255,255,255,0.85); }
@media (max-width: 640px) {
  .hero-photo { padding: 56px 0 44px; }
}

.info-photo-grid, .why-teaser {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.info-photo-grid .info-photo { order: 2; }
.info-photo-grid--reverse .info-photo { order: -1; }
.info-photo-grid img, .why-teaser img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
@media (max-width: 860px) {
  .info-photo-grid, .why-teaser { grid-template-columns: 1fr; }
}

.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.photo-split-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  transition: box-shadow .25s var(--ease-depth), transform .25s var(--ease-depth);
}
.photo-split-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.photo-split-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.photo-split-card:hover img { transform: scale(1.06); }
.photo-split-card span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(0deg, rgba(11,42,61,0.88) 0%, transparent 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}
@media (max-width: 700px) {
  .photo-split { grid-template-columns: 1fr; }
}
