/* ============================================
   ANASAYFA ÖZEL STİLLER
   ============================================ */

/* Hero Slider */
#hero { margin-top: 74px; }
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 580px;
  max-height: 780px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-content {
  max-width: 680px;
}
.hero-label { margin-bottom: 18px; }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.text-accent { color: var(--accent); }
.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 34px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-prev, .hero-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
.hero-prev:hover, .hero-next:hover { background: var(--accent); border-color: var(--accent); }

.hero-dots {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 5;
  display: flex; gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid transparent;
  transition: var(--transition);
}
.hero-dot.active { background: var(--accent); width: 28px; border-radius: 5px; }

/* Neden Biz Kartlar */
.why-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(232,80,10,0.12), rgba(232,80,10,0.06));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 12px;
}
.why-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.why-card p { font-size: 0.82rem; line-height: 1.6; }

/* Gerçekler Bölümü */
.fact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}
.fact-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.fact-icon {
  width: 48px; height: 48px;
  background: rgba(232,80,10,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.fact-card h4 { font-size: 1rem; color: var(--white); margin-bottom: 10px; }
.fact-card p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

@media (max-width: 768px) {
  .hero-slider { height: 90vh; max-height: 700px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}
