/* ==========================================================================
   Profesyonel Hizmetler — hangi işletmeler için uygun (3D coverflow carousel)
   sw-uygun.css ile aynı yapı. Gerçek sektör fotoğrafları eklenene kadar
   var(--grad-slot) yer tutucu olarak kullanılıyor.
   ========================================================================== */

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

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

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

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

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

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

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

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

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

.phuygun__lede {
  max-width: 560px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .7);
}

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

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

.phuygun__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;
}

.phuygun__slide-img {
  position: absolute;
  inset: 0;
  background: var(--grad-slot);
  background-size: cover;
  background-position: center;
}

.phuygun__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%);
}

.phuygun__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;
}

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

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

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

.phuygun__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;
}

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

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

.phuygun__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;
}

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

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

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

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