/* "Khám Phá Dịch Vụ Khác" for:
   dich-vu/van-tai-logistics/dich-vu-chuyen-don/dich-vu-chuyen-don.html
*/

:root {
  --other-services-bg: #f4faf4;
  --other-services-text: #243629;
  --other-services-desc: #607065;
  --other-services-border: #d9eadc;
  --other-services-hover-border: #6ecf86;
  --other-services-divider-start: #22c55e;
  --other-services-divider-end: #14532d;
  --other-services-shadow: rgba(34, 197, 94, 0.08);
  --other-services-hover-shadow: rgba(20, 83, 45, 0.16);
}

.other-services-section {
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--other-services-bg) 100%);
  padding: 60px 0;
}

.other-services-section__heading {
  margin-bottom: 32px;
  text-align: center;
}

.other-services-section__title {
  margin: 0 0 12px;
}

.other-services-section__desc {
  margin: 0;
  color: var(--other-services-desc);
}

.other-services-section__divider {
  width: 56px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--other-services-divider-start),
    var(--other-services-divider-end)
  );
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.other-service-item {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 18px;
  border: 1px solid var(--other-services-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--other-services-text);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 30px var(--other-services-shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.other-service-item:hover {
  transform: translateY(-6px);
  border-color: var(--other-services-hover-border);
  color: #19301f;
  box-shadow: 0 18px 36px var(--other-services-hover-shadow);
}

.other-service-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  font-size: 22px;
  transition: transform 0.25s ease;
}

.other-service-item:hover .other-service-icon {
  transform: rotate(8deg) scale(1.08);
}

.other-service-name {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .other-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .other-services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .other-services-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
