.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* RESMİ SÖNÜK YAPAN EFEKT */
  filter: brightness(70%) blur(2px);
  transform: scale(1.0);

}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
  animation: fadeUp 1s ease;
}

.slide-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.slide-content span {
  color: var(--yellow);
}

.slide-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

/* Oklar */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  z-index: 3;
  user-select: none;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dot */
.dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dots span {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.6;
}

.dots span.active {
  background: var(--yellow);
  opacity: 1;
}

@keyframes fadeUp {
  from {opacity:0; transform: translateY(20px);}
  to {opacity:1; transform: translateY(0);}
}

@media(max-width:768px){
  .slide-content h1 { font-size:28px; }
  .slide-content p { font-size:16px; }
}
.whatsapp{
  animation: pulse 2s infinite;
font-size:12px;
z-index:9999;   /* ÖNE ÇIKARIR */
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,0.7);}
  70%{box-shadow:0 0 0 15px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}