.hero-section {
  position: relative;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* Her slide tam ekran genişliği alsın */
.hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  height: 80vh;
  max-height: 620px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.6), rgba(0,0,0,0.25));
  display: flex;
  align-items: center;
}

.hero-content {
  color: #fff;
}

/* Masaüstü başlık/metin */
.hero-content h1 {
  font-size: clamp(2.2rem, 4.4vw, 3rem);
  margin: 0 0 12px;
  max-width: 620px;
}

.hero-content p {
  margin: 0 0 18px;
  max-width: 520px;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Slider okları */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(198,40,40,0.9);
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 10;
}

.hero-arrow:hover {
  background-color: #b71c1c;
}

.hero-prev { left: 18px; }
.hero-next { right: 18px; }

/* Nokta göstergeleri */
.hero-dots {
  position: absolute;
  bottom: 14px;
  width: 100%;
  text-align: center;
}

.hero-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.hero-dots .active {
  background-color: #c62828;
}

/* =========================
   TABLET (<= 768px)
========================= */
@media (max-width: 768px) {

  .hero-slide {
    height: 65vh;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    max-width: 90%;
  }

  .hero-content p {
    font-size: 0.95rem;
    max-width: 90%;
  }

  /* Okları alta al */
  .hero-arrow {
    top: auto;
    bottom: 20px;
    transform: none;
    width: 38px;
    height: 38px;
    font-size: 18px;
    padding: 0;
  }

  .hero-prev { left: 20px; }
  .hero-next { right: 20px; }
}

/* =========================
   KÜÇÜK MOBİL (<= 480px)
========================= */
@media (max-width: 480px) {

  .hero-slide {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .hero-actions .btn {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}
