/* LED Display Section */
.led-display {
  padding: 120px 20px 80px;
  background-color: #fff;
}

.led-display__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.led-display__image img {
  width: 100%;
  max-width: 400px;
}

.led-display__content {
  max-width: 500px;
}

.led-display__content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 280;
  font-size: 1.8rem;
  color: #1B447F;
  margin-bottom: 15px;
}

.led-display__content p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
  .led-display__container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .led-display__content h2 {
    font-size: 1.6rem;
  }

  .led-display__content p {
    font-size: 0.9rem;
  }
}

/* Section container */
.image-buttons {
  background-color: #f5f5f5;
  padding: 80px 20px;
}

.image-buttons__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Button gambar */
.img-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-btn img {
  width: 280px;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* Animasi hover */
.img-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.img-btn:hover img {
  transform: scale(1.08);
}

.image-buttons__header {
  text-align: center;
  margin-bottom: 40px;
}

.image-buttons__header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 280;
  color: #000;
  margin-bottom: 15px;
}

.image-buttons__header p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .img-btn img {
    width: 220px;
  }
}

.our-products {
  text-align: center;
  padding: 60px 20px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 280;
  color: #1B447F;
  margin-bottom: 50px;
}

.products-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.product-item {
  width: calc(100% / 6);
  max-width: 180px;
  text-align: center;
}

.product-item.up {
  margin-top: -40px;
}

.product-item.down {
  margin-top: 40px;
}

.product-img {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto 15px;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1B447F;
}

.product-desc {
  font-size: 0.55rem;
  color: #000;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .products-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
  }

  .product-item {
    width: 48%;
    max-width: none;
    text-align: center;
    margin: 10px 0;
  }

  .product-img {
    width: 100%;
    max-width: 120px;
    margin: 0 auto 10px;
  }
}
