/* ═══════════════════════════════════════════════════════
   MODERN HERO SLIDER — Swiper.js override & enhancements
   ═══════════════════════════════════════════════════════ */

/* Container */
.hero-swiper-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0a1a0e;
}

.hero-swiper {
  width: 100%;
  height: 600px;
}

@media (max-width: 768px) {
  .hero-swiper { height: 420px; }
}
@media (max-width: 480px) {
  .hero-swiper { height: 320px; }
}

/* Slide */
.hero-slide {
  position: relative;
  overflow: hidden;
}

/* Arka plan görseli */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
  will-change: transform;
  transform: scale(1.08);
}
.swiper-slide-active .hero-slide-bg {
  transform: scale(1);
}

/* Video slide */
.hero-slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.65) 0%,
    rgba(10,40,18,0.50) 50%,
    rgba(0,0,0,0.35) 100%
  );
  z-index: 1;
}

/* İçerik */
.hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  gap: 16px;
}

.hero-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #a8f5c2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero-slide-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #a8f5c2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.hero-slide-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.0;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
  max-width: 800px;
}

.hero-slide-sub {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.hero-slide-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.hero-btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2d7a45, #3aab5e);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(45,122,69,0.4);
  letter-spacing: 0.02em;
}
.hero-btn-detail:hover {
  background: linear-gradient(135deg, #25693b, #2d7a45);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(45,122,69,0.5);
}
.hero-btn-detail i { font-size: 1.1rem; }

.hero-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-btn-wa:hover {
  background: rgba(37,211,102,0.25);
  border-color: #25d366;
  color: white;
  transform: translateY(-2px);
}

/* Aktif slide animasyonu tetikle */
.swiper-slide-active .hero-slide-badge,
.swiper-slide-active .hero-slide-brand,
.swiper-slide-active .hero-slide-title,
.swiper-slide-active .hero-slide-sub,
.swiper-slide-active .hero-slide-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation butonları */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.3s ease;
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: rgba(45,122,69,0.7);
  border-color: #2d7a45;
  transform: scale(1.1);
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 900;
  color: white;
}

/* Pagination dots */
.hero-swiper .swiper-pagination {
  bottom: 20px;
}
.hero-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  opacity: 1;
  transition: all 0.3s ease;
}
.hero-swiper .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 4px;
  background: #2d7a45;
}

/* Progress bar */
.hero-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #2d7a45, #5ef79c);
  z-index: 10;
  width: 0%;
  transition: width linear;
}

/* Slide sayacı */
.hero-counter {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  font-family: 'Outfit', monospace;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
}
.hero-counter .current { color: white; font-size: 20px; }
