/* ═══════════════════════════════════════
   WHY CHOOSE US SECTION — Premium
═══════════════════════════════════════ */

.why-section {
  position: relative;
  padding: 90px 0;
  color: #fff;
  background-color: #0d0d0d;
  background-image: url('../images/restBack.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

/* Dark overlay so text stays readable if image loads */
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.78);
  z-index: 0;
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.why-section > .container > h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.why-section > .container > .section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

/* Alternating rows */
.service-row {
  margin-bottom: 70px;
  align-items: center;
}

.service-row:last-of-type {
  margin-bottom: 0;
}

/* Image side */
.service-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(32, 194, 14, 0.18);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-image img:hover {
  transform: scale(1.02);
}

/* Text side */
.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1.5rem;
}

.service-content h3 {
  color: #20C20E;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.service-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

/* CTA button */
.whatsapp-btn {
  text-align: center;
  margin-top: 3.5rem;
}

/* ── Mobile ── */
@media (max-width: 767.98px) {
  .why-section {
    padding: 60px 0;
    background-attachment: scroll; /* fixed doesn't work well on mobile */
  }

  .service-row {
    margin-bottom: 50px;
  }

  .service-image {
    margin-bottom: 1.5rem;
  }

  .service-content {
    padding: 0 0.5rem;
  }

  .service-content h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .why-section > .container > .section-subtitle {
    margin-bottom: 2.5rem;
  }
}
