/* HERO (FULL WIDTH - SINGLE SLIDE VIEW) */
.hero{
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Header fixed olduğu için hero üstten boşluk bırakmalı.
   Header yüksekliğin 116px olduğu için aşağıdaki değer çalışır. */
.hero-slider{
  position: relative;
  width: 100%;
  height: 100vh;     /* tam ekran */
  margin-top: 0;     /* <-- 116px kaldırıldı */
  overflow: hidden;
}

/* Her slide full ekran ve üst üste (stack) */
.hero-slide{
  position: absolute;
  inset: 0;               /* top:0 right:0 bottom:0 left:0 */
  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  pointer-events: none;
  transition: opacity .6s ease;
}

.hero-slide::after{
  content:"";
  position:absolute;
  inset:0;
  /* Parlaklık düşükse burada karartmayı azaltacağız */
  background: rgba(5, 13, 28, .08); /* daha parlak: 0.00 - 0.12 arası iyi */
}

.hero-slide.is-active{
  opacity: 1;
  pointer-events: auto;
}

.hero-content,
.hero-rightText,
.hero-controls,
.hero-scroll,
.hero-badges{
  position: absolute;
  z-index: 6;
}

/* koyu overlay */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 28, .0);
}

/* içerikler üstte kalsın */
.hero-content,
.hero-rightText,
.hero-controls{
  position: absolute;
  z-index: 2;
}

/* TIKLANABİLİR ELEMANLAR */
.hero-controls button{
  pointer-events: auto;
}

/* --- BAŞLIK KONUMU: biraz daha ortaya --- */
/* Sol 60px yerine: clamp ile daha “ortaya yakın” bir konum */
.hero-content{
  left: clamp(120px, 12vw, 260px);  /* <-- burası SCT CHEMICALS’ı ortaya çeker */
  top: clamp(140px, 18vh, 220px);
  color: #fff;
}

.hero-kicker{
  margin: 0 0 12px 0;
  font-size: 14px;
  opacity: .95;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-kicker .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #FEC233;
}

.hero-title{
  margin: 0 0 18px 0;
  font-size: 72px;
  line-height: .95;
  letter-spacing: 1px;
   /* yeni */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}

.hero-title-line{
  display: inline-block;
  font-weight: 800;
}
/* ÇAPRAZ ETKİ: 2. satırı sağa kaydır */
.hero-title-line--2{
  margin-left: clamp(60px, 6vw, 140px);
  position: relative;
}

/* SAĞ ALT */
.hero-rightText{
  right: clamp(400px, 12vw, 320px);  /* <-- daha ortaya alır */
  bottom: 80px;
  color: #fff;
  text-align: left;
  font-size: 18px;
  pointer-events: auto;
}

/* Liste satırları */
.hero-supplyList{
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.4;
}

.hero-pointerTarget{
  display: block;
  cursor: pointer;
  transition: color .18s ease, opacity .18s ease;
}

.hero-pointerTarget:hover{
  color: #FEC233;
}

/* JS active verdiğinde */
.hero-pointerTarget.is-active{
  color: #FEC233;
}

/* Okun kendisi: dış kabuk (JS bunun translateY’sini değiştirecek) */
.hero-pointer{
  position: absolute;
  left: -48px;            /* oku metnin soluna taşır */
  top: 10px;
  width: 26px;
  height: 26px;
  pointer-events: none;   /* mouse’a engel olmasın */
  transform: translateY(0px);
}

/* İç kısım: sürekli animasyon burada (outer’ı JS oynatıyor) */
.hero-pointer-inner{
  width: 100%;
  height: 100%;
  display: block;
  animation: heroPointerPulse 1.15s ease-in-out infinite;
  transform-origin: center;
}

/* SVG koymazsan geçici bir “ok” görünsün diye (istersen kaldır) */
.hero-pointer-inner:empty{
  border-left: 10px solid #FEC233;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  width: 0;
  height: 0;
  margin-top: 6px;
}
.hero-pointer-inner img{
  width: 30px;   /* gerekirse 20–26 arası oyna */
  height: auto;
  display: block;
}

/* Sürekli “yaklaş-uzaklaş” hissi */
@keyframes heroPointerPulse{
  0%   { transform: translateX(0px) scale(1); opacity: .95; }
  50%  { transform: translateX(6px) scale(1.06); opacity: 1; }
  100% { transform: translateX(0px) scale(1); opacity: .95; }
}

.hero-rightText .hero-since{ opacity: .95; margin-bottom: 10px; }
.hero-rightText ul{
  margin: 0; padding: 0; list-style: none;
  line-height: 1.4;
}

/* kontrol butonları */
.hero-controls{
  right: 60px;
  bottom: 40px;
  display: flex;
  gap: 10px;
}
.hero-controls button{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.18);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
}


/* SABİT UI katmanı (içindeki absolute elemanların referansı net olsun) */
.hero-ui{
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none; /* butonlara ayrı izin veriyoruz */
}

/* ISO ikonları: sol orta */
.hero-badges{
  position: absolute;
  right: 60px;
  left: auto;         /* isteğe göre 16-40px oynat */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 6;
  pointer-events: auto;
}

/* ikon boyutu zaten var, kalsın */
.hero-badges img{
  width: 96px;
  height: 96px;
  object-fit: contain;
  opacity: .95;
}

/* +30 YEARS rozet */
.hero-years{
  position: absolute;
  left: clamp(140px, 13vw, 320px);
  bottom: 150px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 6;
  pointer-events: none;
}

.hero-years-badge{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #FEC233;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-years-num{
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  line-height: 1;
}

.hero-years-plus{
  position: absolute;
  right: -6px;
  top: -6px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #FEC233;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hero-years-text{
  color: rgba(255,255,255,.92);
  font-size: 18px;
  font-weight: 500;
}

/* MARQUEE / RUNNING TEXT */
.marquee-section{
  width: 100%;
  overflow: hidden;
  background: #0b1f3a; /* hero ile uyumlu koyu mavi */
  padding: 28px 0;
}

.marquee-track{
  display: flex;
  width: max-content;
  animation: marqueeMove 22s linear infinite;
}

.marquee-track span{
  font-size: clamp(28px, 3.5vw, 56px);
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  padding-right: 80px;

  /* sarı outline yazı efekti */
  color: transparent;
  -webkit-text-stroke: 1.5px #FEC233;
  text-transform: uppercase;
}

/* Animasyon */
@keyframes marqueeMove{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}


/* Responsive */
@media (max-width: 1024px){
  .hero-content{
    left: 20px;
    top: calc(var(--header-h, 116px) + 20px);
  }
  .hero-title{ font-size: 44px; gap: 6px; }
  .hero-title-line--2{ margin-left: clamp(28px, 6vw, 70px); }
  .hero-rightText{ right: 20px; bottom: 20px; }
  .hero-controls{ right: 20px; }
  .hero-badges{ right: 14px; left: auto; }
  .hero-years{left: 20px; bottom: 90px; }
}
