.construction-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1060;
  width: 90%;
  max-width: 500px;
  padding: 25px;
  text-align: center;
}

.construction-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  backdrop-filter: blur(3px);
}

.construction-icon {
  color: #b7d334;
  font-size: 40px;
  margin-bottom: 20px;
}

.construction-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
}

.construction-text {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
}

.contact-info {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
}

.construction-button {
  background-color: #b7d334;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.construction-button:hover {
  background-color: #9ab82b;
}

.close-modal {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s;
  padding: 5px;
}

.close-modal:hover {
  color: #333;
}

.hidden {
  display: none !important;
}