/* ==========================================================================
   Sağlık & Wellness — hangi işletmeler için uygun (3D coverflow carousel)
   Koyu zeminde ortadaki kart öne çıkar, yanlardakiler perspektifle
   küçülüp uzaklaşır. Ok/nokta ile veya kart tıklayarak gezilir.
   ========================================================================== */

.swuygun {
  position: relative;
  overflow: hidden;
  background: #100D3A;
  padding: 64px 0;
}

.swuygun__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.swuygun__bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.3) blur(38px);
  transform: scale(1.15);
  transition: opacity .8s ease;
}

.swuygun__bg-fade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(16, 13, 58, .35) 0%, rgba(16, 13, 58, .96) 100%);
}

.swuygun__inner {
  position: relative;
  z-index: 1;
}

.swuygun__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 36px;
}

.swuygun__eyebrow-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--indigo));
}

.swuygun__eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--indigo), transparent);
}

.swuygun__eyebrow-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
}

.swuygun__stage {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
}

.swuygun__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.swuygun__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 480px;
  margin: -240px 0 0 -160px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #171340;
  border: 1px solid rgba(255, 255, 255, .12);
  transition: transform .8s cubic-bezier(.25, 1, .5, 1), opacity .8s cubic-bezier(.25, 1, .5, 1), filter .8s cubic-bezier(.25, 1, .5, 1);
  transform-origin: center center;
}

.swuygun__slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.swuygun__slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 13, 58, .35) 0%, rgba(16, 13, 58, .1) 25%, rgba(16, 13, 58, .72) 60%, rgba(16, 13, 58, .97) 100%);
}

.swuygun__slide-content {
  position: relative;
  height: 100%;
  padding: 20px 20px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}

.swuygun__slide.is-active .swuygun__slide-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.swuygun__slide-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.swuygun__slide-title {
  font-weight: 800;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0;
}

.swuygun__slide-rule {
  width: 34px;
  height: 1px;
  border-radius: 1px;
  background: var(--indigo);
  box-shadow: 0 0 10px rgba(108, 99, 255, .7);
  margin: 6px 0 4px;
}

.swuygun__slide-text {
  max-width: 260px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .85);
  margin: 0 0 12px;
}

.swuygun__slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--indigo) 0%, var(--pink-deep) 100%);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(46, 37, 156, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}

.swuygun__slide-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(46, 37, 156, .55);
}

.swuygun__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  cursor: pointer;
  z-index: 40;
  transition: background .2s ease, transform .2s ease;
}

.swuygun__nav:hover {
  background: rgba(255, 255, 255, .16);
}

.swuygun__nav--prev { left: calc(50% - 680px); }
.swuygun__nav--next { right: calc(50% - 680px); }

.swuygun__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.swuygun__dots button {
  height: 8px;
  width: 8px;
  padding: 0;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .25);
  border: none;
  cursor: pointer;
  transition: width .3s ease, background .3s ease;
}

.swuygun__dots button.is-active {
  width: 26px;
  background: var(--indigo);
  box-shadow: 0 0 10px rgba(108, 99, 255, .7);
}

@media (max-width: 860px) {
  .swuygun {
    padding: 44px 0;
  }

  .swuygun__stage {
    height: 500px;
    perspective: 900px;
  }

  .swuygun__slide {
    width: 300px;
    height: 460px;
    margin: -230px 0 0 -150px;
  }

  .swuygun__nav {
    display: none;
  }
}

