.guarantee {
  grid-template-columns: repeat(2, 1fr);
  place-items: start;
  gap: 1rem;
  padding: 2rem 0;
}

/* Left */

.left {
  gap: 1rem;
}

.main-img {
  width: 100%;
  height: 18rem;
  & > img {
    width: 100%;
    height: 100%;
    object-fit: fill;
  }
}

.content {
  gap: 1rem;
}
.content .guarantee-main {
  & > h2 {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
  }

  & > h2 > img {
    height: 3rem;
    rotate: -15deg;
  }

  & > p {
    font-size: var(--fs-sm);
    line-height: 1.6;
  }
}

.content .match-guidelines {
  & > h2 {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
  }

  & > p {
    font-size: var(--fs-sm);
    line-height: 1.6;
  }

  & > ul {
    list-style: disc;
    padding: 1rem;
    & > li {
      font-size: var(--fs-sm);
      line-height: 1.6;
      margin-bottom: 0.25rem;
    }
    & > li > span {
      font-weight: var(--fw-semibold);
      line-height: 1.6;
      margin-bottom: 0.25rem;
      color: var(--primary-color);
    }
  }
}


@media (max-width: 768px) {
  .guarantee {
    grid-template-columns: 1fr;
    gap: 0rem;
  }
  .gallery .main-img {
    height: 14rem;
  }
}

/* ===================================
   ON TIME GUARANTEE SECTION
   ================================== */

.on-time-guarantee {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-solid)
  );
  padding: 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.on-time-guarantee h2 {
  color: var(--text-secondary);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.on-time-guarantee p {
  color: var(--text-secondary);
  font-size: var(--fs-base);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.on-time-guarantee .fine-print {
  font-size: var(--fs-sm);
  opacity: 0.9;
  margin-bottom: 2rem;
}

.on-time-guarantee .img {
  text-align: center;
}

.on-time-guarantee .img img {
  width: 100%;
  height: 100%;
}

.why-us {
  grid-template-columns: repeat(2, 1fr);
  padding: 2rem 0;
}

.why-us .image {
  width: 100%;
  height: 100%;
  background-image: url("../asset/images/moving-man.png");
  background-size: cover;
  background-position: top;
}

.why-us .content {
  padding: 3rem;
  background-color: var(--dark-grey);
  color: var(--text-secondary);
}

.why-us .content h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
}

.why-us .content ul {
  list-style: disc;
  padding: 1.5rem;
  & > li {
    font-size: var(--fs-sm);
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 768px) {
  .why-us {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }

  .why-us .image {
    height: 30vh;
  }

  .why-us .content {
    padding: 2rem;
  }

  .why-us .content h2 {
    font-size: var(--fs-xl);
  }
}

@media (max-width: 480px) {
  .why-us {
    padding: 1rem;
  }
  .why-us .content ul {
    padding: 1rem;
    & > li {
      font-size: var(--fs-sm);
      line-height: 1.4;
      margin-bottom: 0.25rem;
    }
  }
}

/* ===================================
   RESPONSIVE DESIGN
   ================================== */

@media (max-width: 992px) {
  .on-time-guarantee {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .on-time-guarantee h2 {
    font-size: var(--fs-xl);
  }

  .guarantee-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .on-time-guarantee {
    padding: 2.5rem 1rem;
  }

  .on-time-guarantee h2 {
    font-size: var(--fs-lg);
  }
}

@media (max-width: 480px) {
  .on-time-guarantee {
    padding: 2rem 0.75rem;
  }

  .on-time-guarantee h2 {
    font-size: var(--fs-base);
    line-height: 1.3;
  }

  .on-time-guarantee p {
    font-size: var(--fs-sm);
  }

  .on-time-guarantee .fine-print {
    font-size: 0.75rem;
  }
}
