/* Basic styles for enhancements */
.wizard-btn {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  background: #f5f5f5;
  border: 1px dashed #4CAF50;
  padding: 12px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wizard-btn:hover {
  background: #e8f5e9;
}

.wizard-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5);
  align-items: center;
  justify-content: center;
}

.wizard-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  margin: 10% auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.wizard-content h3 {
  color: #4CAF50;
  margin-top: 0;
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.wizard-options {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wizard-option {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wizard-option:hover {
  background: #f9f9f9;
  border-color: #ddd;
}

.wizard-option input {
  margin-right: 10px;
}

.wizard-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.location-checker {
  margin-bottom: 20px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 5px;
}

#service-map, #contact-map {
  width: 100%;
  height: 300px;
  border-radius: 5px;
  margin-bottom: 20px;
}

/* Service buttons that are disabled */
.btn-secondary.disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background-color: #f0f0f0;
  color: #999;
  border: 1px solid #ddd;
}

.btn-secondary.disabled:hover {
  background-color: #f0f0f0;
}

/* Testimonial Carousel Styles */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
}

.testimonial-slide {
  display: none;
  padding: 20px;
  animation-duration: 0.5s;
}

.testimonial-slide:first-child {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-20px); }
}

.testimonial-slide.active {
  display: block;
  animation-name: fadeIn;
}

.testimonial-slide.inactive {
  display: none;
  animation-name: fadeOut;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.prev-btn, .next-btn {
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.prev-btn:hover, .next-btn:hover {
  background-color: #388E3C;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin: 0 20px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  border-radius: 50%;
  border: none;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-indicator.active {
  background-color: #4CAF50;
}

/* Image Testimonial Styles */
.image-testimonial {
  text-align: center;
}

.before-after-image {
  margin: 15px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.before-after-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-controls {
    margin-top: 15px;
  }
  
  .prev-btn, .next-btn {
    width: 30px;
    height: 30px;
  }
  
  .carousel-indicator {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
  
  .testimonial-slide {
    padding: 10px;
  }
}
