/* Why Section - Variant 1 (Cambridge Lawn Care) */

.why-1 {
  padding: 80px 0;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
}

/* === LEFT COLUMN: Image + Badge === */

.why-visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-image {
  width: 100%;
  position: relative;
}

.why-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 150px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Badge Section */
.why-badge {
  display: flex;
  align-items: center;
  gap: 20px;
}

.badge-icon {
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  border-radius: 50%;
  padding: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-white);
}

.badge-text {
  font-size: 26px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1.2;
}

/* === RIGHT COLUMN: Content === */

.why-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Eyebrow */
.why-eyebrow {
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.eyebrow-accent {
  color: var(--color-accent);
  margin: 0 4px;
}

.eyebrow-text {
  color: var(--color-primary);
}

/* Heading */
.why-heading {
  font-size: 42px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--color-text-dark);
  margin: 0;
}

/* Description with Watermark */
.why-description-wrapper {
  position: relative;
  margin-top: 10px;
}

.why-watermark {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.why-watermark svg {
  width: 100%;
  height: 100%;
  fill: var(--color-primary);
}

.why-description {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-description p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-body);
  margin: 0;
}

/* CTA Button */
.why-cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: var(--font-weight-bold);
  font-size: 16px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.why-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* === RESPONSIVE === */

/* Tablet (1024px - 1199px) */
@media (max-width: 1199px) {
  .why-1 {
    padding: 60px 0;
  }

  .why-container {
    gap: 40px;
  }

  .why-image img {
    border-radius: 120px;
  }

  .badge-icon {
    width: 70px;
    height: 70px;
    padding: 16px;
  }

  .badge-text {
    font-size: 22px;
  }

  .why-heading {
    font-size: 36px;
  }

  .why-watermark {
    width: 250px;
    height: 250px;
  }
}

/* Mobile (< 1024px) */
@media (max-width: 1023px) {
  .why-1 {
    padding: 50px 0;
  }

  .why-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-visual {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }

  .why-content {
    order: 2;
    text-align: center;
    align-items: center;
  }

  .why-image img {
    border-radius: 100px;
  }

  .badge-icon {
    width: 60px;
    height: 60px;
    padding: 14px;
  }

  .badge-text {
    font-size: 20px;
  }

  .why-heading {
    font-size: 32px;
  }

  .why-description {
    text-align: center;
  }

  .why-watermark {
    width: 200px;
    height: 200px;
  }
}

/* Small Mobile (< 768px) */
@media (max-width: 767px) {
  .why-visual {
    gap: 20px;
  }

  .why-badge {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .badge-icon {
    width: 70px;
    height: 70px;
  }

  .badge-text {
    font-size: 18px;
  }

  .why-heading {
    font-size: 28px;
  }

  .why-description p {
    font-size: 15px;
  }
}
