/* ============================================================
   Digital Signage Section Styles
   ============================================================ */

.furnish-signage {
  padding: 80px 0;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}

/* ---------- Left Content ---------- */
.furnish-signage__content {
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
}

.furnish-signage__label {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0 0 24px;
  letter-spacing: 0.5px;
}

.furnish-signage__title {
  font-size: 72px;
  font-weight: 700;
  color: #111;
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -2px;
}

.furnish-signage__subtitle {
  font-size: 28px;
  font-weight: 500;
  color: #333;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.furnish-signage__desc {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 40px;
  max-width: 480px;
}

/* Arrow Button */
.furnish-signage__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.furnish-signage__btn:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  color: #fff;
}

/* ---------- Center Images ---------- */
.furnish-signage__images {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  height: 100%;
  min-height: 500px;
}

.furnish-signage__image-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.furnish-signage__image-link {
  display: inline-block;
  text-decoration: none;
}

.furnish-signage__image {
  width: 220px;
  height: 420px;
  object-fit: contain;
  transition: transform 0.4s ease;
  display: block;
}

.furnish-signage__image-wrap:hover .furnish-signage__image {
  transform: translateY(-8px);
}

.furnish-signage__image-wrap--second .furnish-signage__image {
  width: 200px;
  height: 390px;
}

/* ---------- Right Navigation ---------- */
.furnish-signage__nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  padding-left: 40px;
  border-left: 1px solid #e0e0e0;
}

.furnish-signage__nav-item {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  color: #666;
  padding: 14px 0;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
  display: block;
  border: none;
  background: transparent;
  text-align: left;
}

.furnish-signage__nav-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 90%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #0066ff;
  transition: width 0.3s ease;
}

.furnish-signage__nav-item:hover {
  color: #111;
  text-decoration: none;
}

.furnish-signage__nav-item.active {
  color: #111;
  font-weight: 600;
}

.furnish-signage__nav-item.active::after {
  width: 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .furnish-signage__title {
    font-size: 56px;
  }

  .furnish-signage__image {
    width: 180px;
    height: 360px;
  }

  .furnish-signage__image-wrap--second .furnish-signage__image {
    width: 160px;
    height: 330px;
  }
}

@media (max-width: 959px) {
  .furnish-signage {
    padding: 60px 0;
  }

  .furnish-signage__content {
    padding-right: 0;
    margin-bottom: 40px;
    min-height: auto;
  }

  .furnish-signage__title {
    font-size: 48px;
  }

  .furnish-signage__subtitle {
    font-size: 22px;
  }

  .furnish-signage__images {
    min-height: auto;
    margin-bottom: 40px;
  }

  .furnish-signage__image {
    width: 150px;
    height: 300px;
  }

  .furnish-signage__image-wrap--second .furnish-signage__image {
    width: 130px;
    height: 270px;
  }

  .furnish-signage__nav {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
    min-height: auto;
  }
}

@media (max-width: 639px) {
  .furnish-signage__title {
    font-size: 36px;
  }

  .furnish-signage__subtitle {
    font-size: 18px;
  }

  .furnish-signage__desc {
    font-size: 14px;
  }

  .furnish-signage__images {
    gap: 12px;
  }

  .furnish-signage__image {
    width: 110px;
    height: 220px;
  }

  .furnish-signage__image-wrap--second .furnish-signage__image {
    width: 95px;
    height: 200px;
  }

  .furnish-signage__nav-item {
    font-size: 16px;
    padding: 12px 0;
  }

  .furnish-signage__btn {
    width: 48px;
    height: 48px;
  }
}