/* ===== ÜRETİM AŞAMALARI BÖLÜMÜ ===== */
.uretim-hero-container {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.uretim-page-header {
  position: relative;
  width: 100%;
  height: 280px;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 15;
}

.uretim-page-header::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 70%;
  background: rgb(13, 17, 24);
  z-index: 1;
}

.uretim-page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(13, 17, 24);
  clip-path: polygon(0 70%, 100% 70%, 50% 100%);
  z-index: 1;
}

.uretim-header-content {
  position: relative;
  z-index: 2;
}

.uretim-header-subtitle {
  display: block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 16px;
  opacity: 0.8;
  text-transform: uppercase;
}

.uretim-header-title {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
}

.uretim-header-highlight {
  font-weight: 600;
  display: block;
  color: rgb(250 176 42 / 1);
}

/* Üretim Arkaplan */
.uretim-background-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.65)),
    url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=1200');
  background-size: cover;
  background-position: center;
  transition: background-image 0.6s ease;
}

.uretim-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.6) 45%,
    rgba(0, 0, 0, 0) 70%
  );
  pointer-events: none;
}

/* Üretim Slide Animasyonları */
@keyframes uretimFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes uretimFadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: translateY(-30px) scale(0.98);
    filter: blur(3px);
  }
}

.uretim-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
}

.uretim-slide-active {
  opacity: 1;
  pointer-events: auto;
  animation: uretimFadeInUp 0.6s ease forwards;
}

.uretim-slide-exit {
  animation: uretimFadeOutUp 0.45s ease forwards;
  pointer-events: none;
}

.uretim-slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1400px;
  padding: 0 7vw;
  margin-left: 20px;
  margin-top: 200px;
}

.uretim-product-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.uretim-product-image img {
  max-width: 100%;
  max-height: 450px;
  object-fit: contain;
  border-radius: 12px;
}

.uretim-product-text {
  color: white;
}

.uretim-product-title {
  font-size: clamp(28px, 3.5vw, 42px);
  margin: 0 0 20px;
  font-weight: 700;
  color: #fab02a;
  letter-spacing: 0.5px;
}

.uretim-product-description {
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.8;
  color: #c9c9c9;
  margin: 0 0 30px;
  max-width: 600px;
}

.uretim-product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(250, 176, 42, 0.1);
  border: 1px solid rgba(250, 176, 42, 0.3);
  border-radius: 999px;
  color: #fab02a;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.uretim-product-link:hover {
  background: #fab02a;
  color: #13171f;
  transform: translateX(5px);
}

.uretim-product-link i {
  transition: transform 0.3s ease;
}

.uretim-product-link:hover i {
  transform: translateX(3px);
}

.uretim-slide-title {
  font-size: clamp(28px, 4vw, 48px);
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.uretim-slide-description {
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.6;
  color: #c9c9c9;
  margin: 0 0 24px;
}

.uretim-cta-button {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.06)
  );
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: filter 0.3s ease;
}

.uretim-cta-button:hover {
  filter: brightness(1.05);
  border: 1px solid var(--primary-color);
}

/* Üretim Navigasyonu */
.uretim-navigation-controls {
  position: absolute;
  left: 70%;
  top: 70%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 7;
}

.uretim-nav-button {
  /* Eski stil gizlendi, yeni Tailwind sınıfları kullanılıyor */
}

/* Üretim Aşamaları */
.uretim-steps-navigation {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 420px;
  z-index: 8;
  padding-right: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.uretim-steps-container {
  position: relative;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.uretim-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.uretim-step-item {
  position: relative;
  width: 420px;
  height: 150px;
  opacity: 0.6;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.uretim-step-active {
  opacity: 1;
  transform: scale(1.02);
}

.uretim-step-link {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 800;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease,
    border 0.3s ease;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}

.uretim-step-item:not(.uretim-step-active) .uretim-step-link:hover {
  color: rgb(250 176 42 / 1);
  transform: translateX(-4px);
}

.uretim-step-active .uretim-step-link {
  color: rgb(250 176 42 / 1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.06)
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.uretim-slide-content img {
  max-width: 80%;
  max-height: 450px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.uretim-slide-content a:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
  .uretim-slide-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-left: 0;
    margin-top: 150px;
    padding: 0 30px;
  }

  .uretim-product-image img {
    max-height: 350px;
  }

  .uretim-product-description {
    max-width: 100%;
  }

  .uretim-product-text {
    text-align: center;
  }

  .uretim-product-link {
    margin: 0 auto;
  }

  .uretim-steps-navigation {
    position: relative;
    width: 100%;
    height: auto;
    padding: 30px 0;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .uretim-steps-container {
    position: relative;
    transform: none !important;
  }

  .uretim-steps-list {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 20px;
  }

  .uretim-step-item {
    width: auto;
    height: auto;
    min-width: 150px;
  }

  .uretim-step-link {
    padding: 10px 18px;
    font-size: 13px;
    clip-path: none;
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .uretim-step-item {
    min-width: 120px;
  }

  .uretim-step-link {
    padding: 8px 12px;
    font-size: 12px;
  }
}
