@keyframes fadeInWhyUsContent {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInWhyUsMedia {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.whyus-content-animate {
  opacity: 0;
}

.whyus-content-animate.animate {
  animation: fadeInWhyUsContent 1s 0.1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.whyus-media-animate {
  opacity: 0;
}

.whyus-media-animate.animate {
  animation: fadeInWhyUsMedia 1s 0.1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* ========== WHY CHOOSE US / FEATURES ========== */
#why-us {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  background: #1A1510;
}

@media (max-width: 1023px) {
  #why-us {
    background: transparent;
  }
}

#why-us .container {
  padding-top: 4vh;
  padding-bottom: 4vh;
}

#why-us .two-column {
  align-items: center;
}

@media (min-width: 1024px) {
  #why-us .two-column {
    grid-template-columns: 2fr 3fr;
  }
}

.features-content {
  order: 1;
  padding: 3vh 0 3vh 4vw;
}

.features-content .section-header h2 {
  font-size: clamp(2.2rem, 5vmin, 3.2rem);
  line-height: 1.1;
  margin-bottom: 4vh;
}

.features-timeline {
  max-width: 560px;
  margin: 0;
  padding: 0;
}

.timeline-item {
  margin-bottom: 4vh;
}

.timeline-item:last-child,
.timeline-item.last-item {
  margin-bottom: 0;
}

.timeline-dot,
.timeline-connector {
  display: none;
}

.feature-item {
  display: grid;
  grid-template-columns: 7vh 1fr;
  column-gap: 2vw;
  align-items: start;
}

.feature-icon {
  width: 9vh;
  height: 9vh;
  border-radius: 16px;
  background: #f5f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 5vh;
  height: 5vh;
}

.feature-text h3 {
  font-size: clamp(1.2rem, 3vmin, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-left: 2vw;
  margin-bottom: 1vh;
  color: #ffffff;
}

.feature-text p {
  margin: 0;
  margin-left: 2vw;
  max-width: 27ch;
  font-size: clamp(0.9rem, 2vmin, 1.02rem);
  line-height: 1.45;
  color: #8b8782;
}

.divider-below {
  width: 9vh;
  height: 6vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3vh 0 2vh 0;
}

.divider-below img {
  height: 8vh;
  width: auto;
}

.timeline-item:last-child .divider-below,
.timeline-item.last-item .divider-below {
  display: none;
}

.features-media {
  order: 2;
<<<<<<< HEAD
  display: grid;
  place-items: center;
  position: relative;
  width: calc(100% + (50vw - 50%));
  min-height: 50vh;
  margin: 0;
  padding: 0;
  margin-right: calc(50% - 46vw);
=======
  position: relative;
  width: 714px;
  height: 620px;
  margin: 0;
  padding: 0;
>>>>>>> ed5ee8b (Design: Finalized 'Why Choose Us' image dimensions (714x620) and fixed layout alignment)
  justify-self: end;
  overflow: hidden;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 560px;
}

.features-media::before {
  content: "";
<<<<<<< HEAD
  grid-area: 1 / 1;
  position: absolute;
  border: 1px solid #e0b973;
  border-right: 0;
  border-radius: 400px 0 0 400px;
=======
  position: absolute;
  inset: 0;
  border: 1px solid #e0b973;
  border-right: 0;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 560px;
>>>>>>> ed5ee8b (Design: Finalized 'Why Choose Us' image dimensions (714x620) and fixed layout alignment)
  pointer-events: none;
  z-index: 2;
}

.features-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 1023px) {
  .features-content {
    padding: 1rem 0;
  }

  .features-content .section-header h2 {
    margin-bottom: 1.4rem;
  }

  .feature-item {
    grid-template-columns: 60px 1fr;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .divider-below {
    width: 60px;
    height: 2.2rem;
  }

  .divider-below img {
    height: 1.8rem;
  }

  .feature-text p {
    font-size: 1rem;
    max-width: 100%;
  }

  .features-media {
    width: 100%;
    margin-right: 0;
    min-height: 420px;
    justify-self: stretch;
  }

  .features-media::before,
  .features-media::after {
    display: none;
  }

  .features-image {
    border-radius: 2rem;
    min-height: 420px;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .features-media {
    display: none;
  }

  .features-content {
    padding: 0;
  }

  .feature-item {
    column-gap: 1rem;
  }

  .feature-text h3 {
    font-size: 1.5rem;
  }

  .feature-text p {
    font-size: 0.98rem;
  }
}