:root {
  --red: #ff0015;
  --white: #fff;
}

/* ===============================
   1. REPAIR HIGHLIGHT (Hero Alanı)
   =============================== */
   .repair-highlight {
    position: relative;
    margin: 20px 5px 30px;
    min-height: 65vh;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
  
    /* Animasyon başlangıcı */
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  }
  
  .repair-highlight.visible {
    opacity: 1;
    transform: translateY(0);
  }
  

.repair-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px;
}

.repair-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  user-select: none;
  display: block;
  border-radius: 20px;
}

.repair-overlay {
  position: relative;
  z-index: 10;
  max-width: 900px;
  width: 90%;
  padding: 20px 3vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.animate-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--red);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.animate-points {
  list-style: none;
  width: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.animate-points li {
  font-size: clamp(1rem, 3.5vw, 1.6rem);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-content: flex-start;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
  color: var(--white);
}

.animate-points li i {
  color: var(--red);
  font-size: 1.3rem;
  min-width: 28px;
}

.animate-description {
  font-size: clamp(0.9rem, 3vw, 1.3rem);
  font-weight: 300;
  max-width: 700px;
  line-height: 1.6;
  color: var(--white);
  text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
}

/* ===============================
   2. ADVANTAGE SECTION
   =============================== */
/* Desktop - Varsayılan */
.advantage-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding-top: 80px;
  padding-bottom: 60px;
  margin: 0 auto 40px;
  max-width: 1200px;
  width: 100%;

  /* Scroll animasyon başlangıcı */
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.advantage-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.advantage-image {
  flex: 1 1 40%;
  max-width: 50%;
  height: 550px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(255, 0, 21, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.advantage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.advantage-text {
  flex: 1 1 50%;
  max-width: 70%;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
  font-family: 'Orbitron', sans-serif;
  color: white;
}

.advantage-title {
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 3rem);
  margin: 10px 0 20px;
  color: var(--red);
}

.advantage-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advantage-list li {
  font-size: clamp(2rem, 4vw, 1.5rem);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  line-height: 1.6;
}

.advantage-list li i {
  margin-right: 8px;
  color: var(--red);
  font-size: 1.3rem;
}

/* ===============================
   RESPONSIVE TASARIM
   =============================== */

/* Tablet ve küçük masaüstü */
@media (max-width: 1024px) {
  .advantage-section {
    flex-direction: column;
    gap: 30px;
    margin: 20px auto 40px;
    padding: 50px 20px;
    text-align: center;
  }

  .advantage-image,
  .advantage-text {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .advantage-text {
    text-align: center;
    align-items: center;
    padding-left: 0;
  }
}

/* Orta telefonlar */
@media (max-width: 768px) {
  .repair-overlay {
    padding: 15px;
  }

  .advantage-section {
    padding: 40px 15px;
    gap: 25px;
  }

  .advantage-image {
    min-height: 280px;
  }

  .advantage-title {
    font-size: 1.6rem;
  }

  .advantage-list li {
    font-size: 1.1rem;
  }
}

/* Küçük telefonlar */
@media (max-width: 600px) {
  .repair-highlight {
    min-height: auto;
  }

  .repair-bg img {
    height: 260px;
  }

  .repair-overlay {
    position: relative;
    margin-top: -40px;
    border-radius: 12px;
    width: 95%;
  }

  .advantage-section {
    gap: 20px;
    margin: 20px 10px 40px;
    padding: 25px 10px;
  }

  .advantage-image {
    min-height: 220px;
  }

  .advantage-title {
    font-size: 1.4rem;
  }

  .advantage-list li {
    font-size: 1rem;
  }
}

/* Dokunmatik cihazlar (Android + iOS) */
@media (hover: none), (pointer: coarse) {
  .advantage-image:hover {
    transform: none !important;
  }
}
