/* Match your existing .services styles */
#service-form {
  padding: 80px 20px;
  background-color: var(--gray);
}

#service-form h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

/* Hidden checkboxes */
.checkbox-hidden {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Custom checkbox styling */
.custom-checkbox {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  background: white;
  transition: background 0.3s ease;
}

/* Checked state */
.checkbox-hidden:checked + .service-option .custom-checkbox {
  background: var(--primary-color);

}



/* Service Card Layout */
.service-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-option {
  position: relative;
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.service-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-option svg {
  fill: var(--primary-color);
  margin-bottom: 15px;
}


/* WhatsApp Button */
.whatsapp-button {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 30px auto 0;
}

.whatsapp-button:hover {
  background-color: #0056b3; /* Darker shade for hover */
}

/* Dynamic Questions */
.dynamic-questions {
  margin-top: 30px;
}

.question-group {
  margin-bottom: 20px;
}

.question-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.question-group input,
.question-group select,
.question-group textarea {
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

/* Extra Info */
.extra-info {
  margin-top: 30px;
}

.extra-info label {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.extra-info textarea {
  height: 30vh;
  width: 100%;
  resize: none;
}