.cab-form-wrapper {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,247,241,0.96));
  border: 1px solid #ddd5c8;
  border-radius: 28px;
  padding: 1.45rem;
  box-shadow: 0 18px 42px rgba(20, 33, 43, 0.06);
}
.cab-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.cab-field { display: grid; gap: 0.45rem; }
.cab-field-full { grid-column: 1 / -1; }
.cab-field label {
  font-weight: 700;
  color: #16212b;
  font-size: 0.96rem;
}
.cab-field input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.cab-field select,
.cab-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d9e1e5;
  border-radius: 16px;
  padding: 0.88rem 0.95rem;
  font: inherit;
  background: #fff;
  color: #16212b;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.cab-field input[type="file"] {
  width: 100%;
  min-height: 56px;
  border: 1px solid #d9e1e5;
  border-radius: 16px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: #fff;
  color: #16212b;
}
.cab-field input[type="file"]::file-selector-button {
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #20685f, #18343a);
  color: #fff;
  padding: 0.72rem 0.95rem;
  margin-right: 0.85rem;
  cursor: pointer;
  font-weight: 700;
}
.cab-field textarea { min-height: 120px; resize: vertical; }
.cab-field input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
.cab-field select:focus,
.cab-field textarea:focus,
.cab-field input[type="file"]:focus {
  outline: none;
  border-color: #20685f;
  box-shadow: 0 0 0 4px rgba(32, 104, 95, 0.10);
}
.cab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.25rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #20685f, #18343a);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  margin-top: 1rem;
  box-shadow: 0 16px 30px rgba(32, 104, 95, 0.22);
}
.cab-message {
  border-radius: 18px;
  padding: 0.95rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.cab-message-success { background: #eef8f4; border: 1px solid #b5dacd; color: #15352f; }
.cab-message-error { background: #fef2f2; border: 1px solid #fecaca; color: #7f1d1d; }
.cab-honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.cab-checkboxes {
  gap: 0.95rem;
  padding-top: 0.25rem;
}
.cab-checkboxes label {
  font-weight: 600;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: #16212b;
  line-height: 1.55;
}
.cab-checkboxes input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin: 0.1rem 0 0;
  border-radius: 7px;
  border: 1.5px solid #b7c7cb;
  background: #fff;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.cab-checkboxes input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #20685f, #18343a);
  border-color: #20685f;
  box-shadow: 0 8px 18px rgba(32, 104, 95, 0.18);
}
.cab-checkboxes input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.cab-slot-status { color: #60707c; font-size: 0.88rem; min-height: 1.2em; }
.cab-cta {
  background: linear-gradient(135deg, rgba(32,104,95,0.08), rgba(255,255,255,0.96));
  border: 1px solid #ddd5c8;
  border-radius: 28px;
  padding: 1.4rem;
}
.cab-services-list {
  display: grid;
  gap: 0.55rem;
  padding-left: 1rem;
}
@media (max-width: 700px) {
  .cab-form-grid { grid-template-columns: 1fr; }
}
