/* Construction Services Section - Minimal */
.construction-services-section {
  padding: 6rem 0;
  background: #fafafa;
}

.construction-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #2d3e2e;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

/* Construction Overview */
.construction-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
  align-items: center;
}

.overview-content h3 {
  font-size: 2rem;
  color: #2d3e2e;
  margin-bottom: 1.5rem;
}

.overview-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 2rem;
}

/* Construction Stats */
.construction-stats {
  display: flex;
  gap: 1.5rem;
}

.construction-stats .stat-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  border-left: 4px solid #d2691e;
  flex: 1;
}

.construction-stats .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #8b4513;
  margin-bottom: 0.5rem;
}

.construction-stats .stat-text {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Construction Highlights */
.construction-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.highlight-item {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
}

.highlight-item i {
  font-size: 2rem;
  color: #d2691e;
  margin-bottom: 1rem;
}

.highlight-item h4 {
  color: #2d3e2e;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.highlight-item p {
  color: #666;
  font-size: 0.9rem;
}

/* Completed Projects */
.completed-projects {
  margin-bottom: 6rem;
}

.completed-projects h3 {
  font-size: 2rem;
  color: #2d3e2e;
  text-align: center;
  margin-bottom: 3rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
}

.project-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(139, 69, 19, 0.1);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

/* Image Comparison */
.project-images {
  height: 300px;
  position: relative;
}

.image-comparison {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.before-after-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.before-image img,
.after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.after-image {
  clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
  transition: clip-path 0.3s ease;
}

/* Image Labels */
.image-label {
  position: absolute;
  top: 15px;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.image-label.before {
  left: 15px;
  background: rgba(231, 76, 60, 0.9);
  color: white;
}

.image-label.after {
  right: 15px;
  background: rgba(39, 174, 96, 0.9);
  color: white;
}

/* Comparison Slider */
.comparison-slider {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  z-index: 3;
}

.slider {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d2691e;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 2px solid white;
}

/* Project Info */
.project-info {
  padding: 2rem;
}

.project-info h4 {
  color: #2d3e2e;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature {
  background: rgba(210, 105, 30, 0.1);
  color: #8b4513;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-status-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-badge {
  padding: 0.4rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-badge.sold {
  background: #27ae60;
  color: white;
}

.status-badge.available {
  background: #3498db;
  color: white;
}

.completion-date {
  color: #666;
  font-size: 0.9rem;
}

/* Services Grid */
.construction-services {
  margin-bottom: 6rem;
}

.construction-services h3 {
  font-size: 2rem;
  color: #2d3e2e;
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.services-grid .service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  transition: transform 0.3s ease;
}

.services-grid .service-card:hover {
  transform: translateY(-5px);
}

.services-grid .service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #8b4513, #d2691e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.services-grid .service-card h4 {
  color: #2d3e2e;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.services-grid .service-card p {
  color: #666;
  font-size: 0.95rem;
}

/* CTA Section */
.construction-cta {
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
  border-radius: 20px;
  padding: 4rem;
  text-align: center;
  color: white;
}

.construction-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.construction-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: white;
  color: #8b4513;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #8b4513;
}

/* View Details Button */
/* .view-details-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #8b4513;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-details-btn:hover {
  background-color: #d2691e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
} */

/* Responsive Design */
@media (max-width: 768px) {
  .construction-overview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .construction-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .construction-highlights {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .project-features {
    justify-content: center;
  }

  .project-status-info {
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .construction-services-section {
    padding: 4rem 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .overview-content h3 {
    font-size: 1.5rem;
  }

  .project-images {
    height: 250px;
  }

  .construction-cta {
    padding: 3rem 2rem;
  }

  .construction-cta h3 {
    font-size: 1.5rem;
  }
}
