.supply-section {
  padding: 100px 20px;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

.supply-container {
  max-width: 1000px;
  margin: auto;
}

.supply-header {
  text-align: center;
  margin-bottom: 70px;
}

.supply-header h2 {
  font-size: 2.6rem;
  color: #b88a00;
  margin-bottom: 10px;
}

.supply-header p {
  font-size: 1.05rem;
  color: #555;
}

/* ADIMLAR */
.supply-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.supply-step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.step-icon {
  min-width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff8e1;
  color: #b88a00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.step-content h4 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  max-width: 700px;
}

/* HOVER (çok hafif) */
.supply-step:hover .step-icon {
  background: #b88a00;
  color: #fff;
  transition: 0.3s;
}

/* MOBİL */
@media (max-width: 768px) {
  .supply-step {
    flex-direction: row;
    align-items: flex-start;
  }

  .supply-header h2 {
    font-size: 2.1rem;
  }
}

.parallax-uretim {
  height: 420px;
  background-image: url("images/banner_last.png"); /* FOTOĞRAF */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* PARALLAX */
  position: relative;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-icerik {
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 20px;
}

.parallax-icerik h2 {
  font-size: 42px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.parallax-icerik p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.95;
}

/* Mobilde performans için */
@media (max-width: 768px) {
  .parallax-uretim {
    background-attachment: scroll;
    height: 300px;
  }

  .parallax-icerik h2 {
    font-size: 30px;
  }
}

