/* =========================
   Construction Progress Styles (Final Clean Version)
   ========================= */

.construction-progress {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 40px;
  font-family: Arial, sans-serif;
}

.construction-progress h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222;
}

/* Progress Steps */
.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.step {
  flex: 1;
  text-align: center;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.step img {
  width: 28px;
  height: 28px;
  margin-bottom: 5px;
}

.step.completed p,
.step.completed .icon img {
  opacity: 1;
  color: #007bff;
  filter: grayscale(0%);
}

.step.completed p {
  font-weight: 600;
}

/* Progress Bar */
.progress-bar {
  background: #e9ecef;
  border-radius: 20px;
  height: 10px;
  margin: 15px 0;
  overflow: hidden;
  position: relative;
}

.progress-bar .progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #007bff, #00b4ff);
  transition: width 1.5s ease-in-out;
}

.progress-percentage {
  font-weight: 600;
  text-align: right;
  color: #333;
  margin-bottom: 20px;
}

/* Timeline */
.progress-timeline {
  border-left: 3px solid #007bff;
  padding-left: 20px;
  margin-top: 20px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  margin-bottom: 20px;
}

.timeline-dot {
  position: relative;
  left: 0;
  top: 4px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: #007bff;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

.timeline-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #007bff;
  margin: 0;
}

.timeline-content p {
  margin: 0;
  color: #444;
}

.timeline-images img {
  width: 85px;
  height: 65px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.timeline-images img:hover {
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
  .progress-steps {
    flex-direction: column;
    gap: 15px;
  }
}
