/* === Custom Contact Form Styles === */

.gvf-form {
  max-width: 600px;
  margin: 0 auto;
  font-family: inherit;
}

.gvf-form label {
  display: block;
  font-weight: 500;
}

.gvf-form input[type="text"],
.gvf-form input[type="email"],
.gvf-form input[type="tel"],
.gvf-form input[type="number"],
.gvf-form select,
.gvf-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  margin-top: 4px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
}

/* Checkboxes and Radios */
.gvf-form input[type="checkbox"],
.gvf-form input[type="radio"] {
  width: auto;
  margin-right: 8px;
}

/* "Other" input beside checkbox */
#interest-other-input {
  margin-left: 8px;
  width: calc(100% - 24px);
}

/* Request Type Switcher Tabs */
.gvf-intent-switcher {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.gvf-tab-btn {
  flex: 1;
  padding: 10px 14px;
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.2s ease-in-out;
}

.gvf-tab-btn:hover {
  background-color: #e5e7eb;
}

.gvf-tab-btn.active {
  background-color: #215a31 !important;
  color: #ffffff !important;
  border-color: #215a31 !important;
}

/* Demo Mode Lock Notice */
.gvf-notice {
  background-color: #f0fdf4;
  border-left: 4px solid #67a543;
  color: #166534;
  padding: 8px 12px;
  font-size: 14px;
  margin-bottom: 10px;
  border-radius: 0 4px 4px 0;
  display: none; /* Hide by default */
}

/* Buttons */
.gvf-form button[type="submit"] {
  display: inline-block;
  background-color: #215a31;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  width: 100%;
  margin-top: 12px;
}

.gvf-form button[type="submit"]:hover {
  background-color: #67a543;
}

.gvf-form-mt-6 {
  margin-top: 20px;
}

/* Fieldsets */
.gvf-form fieldset {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.gvf-form legend {
  font-weight: 600;
  margin-bottom: 6px;
}

.gvf-form textarea::placeholder {
  color: #6b7280;
}

#interest-other-input::placeholder,
#referral-other-input::placeholder {
  color: #888;
  opacity: 1;
}