.static-contact-card {
  background: #111;
  border: 1px solid rgba(255, 166, 17, 0.24);
  border-radius: 16px;
  color: #fff;
  padding: 24px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
}

.static-contact-card--light {
  background: #fff;
  color: #202020;
  border-color: rgba(252, 156, 4, 0.2);
}

.static-contact-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.static-contact-card__text,
.static-contact-card__hint {
  margin: 0 0 16px;
  line-height: 1.6;
}

.static-contact-card__hint {
  font-size: 0.95rem;
  opacity: 0.84;
}

.static-contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.static-contact-card .btn {
  display: inline-block;
}

.static-contact-card .btn-alt {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.botdev-form {
  --botdev-form-surface: rgba(255, 255, 255, 0.06);
  --botdev-form-input-text: inherit;
  --botdev-form-input-border: rgba(255, 255, 255, 0.12);
  --botdev-form-placeholder: rgba(255, 255, 255, 0.58);
  display: block;
}

.botdev-form.static-contact-card--light {
  --botdev-form-surface: #fff7ed;
  --botdev-form-input-text: #202020;
  --botdev-form-input-border: rgba(32, 32, 32, 0.12);
  --botdev-form-placeholder: rgba(32, 32, 32, 0.52);
}

.botdev-form--compact .botdev-form__row--two {
  grid-template-columns: 1fr;
}

.botdev-form__row {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.botdev-form__row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.botdev-form__field {
  margin-bottom: 14px;
}

.botdev-form__field label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.botdev-form__field input,
.botdev-form__field select,
.botdev-form__field textarea {
  width: 100%;
  border: 1px solid var(--botdev-form-input-border);
  border-radius: 12px;
  background: var(--botdev-form-surface);
  color: var(--botdev-form-input-text);
  padding: 12px 14px;
  font: inherit;
}

.botdev-form__field textarea {
  min-height: 140px;
  resize: vertical;
}

.botdev-form__field input::placeholder,
.botdev-form__field textarea::placeholder {
  color: var(--botdev-form-placeholder);
}

.botdev-form__field input:focus,
.botdev-form__field select:focus,
.botdev-form__field textarea:focus {
  outline: 2px solid rgba(252, 156, 4, 0.28);
  outline-offset: 0;
  border-color: #fc9c04;
}

.botdev-form__field input[type="file"] {
  padding: 10px 12px;
  background: transparent;
}

.botdev-form__help {
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 8px 0 0;
  opacity: 0.78;
}

.botdev-form__checkbox label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400;
}

.botdev-form__checkbox input {
  width: auto;
  margin-top: 4px;
}

.botdev-form__footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.botdev-form__turnstile {
  min-height: 65px;
}

.botdev-form__status {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  min-height: 1.5em;
}

.botdev-form__status--error {
  color: #ffb4b4;
}

.botdev-form.static-contact-card--light .botdev-form__status--error {
  color: #a11a1a;
}

.botdev-form__status--success {
  color: #8be28b;
}

.botdev-form.static-contact-card--light .botdev-form__status--success {
  color: #1d7a1d;
}

.botdev-form__submit[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.botdev-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.static-search-placeholder {
  display: none !important;
}

@media (min-width: 768px) {
  .site-footer .widget-area > .row {
    align-items: flex-start;
    justify-content: space-between;
  }

  .site-footer .footer-widget-1 {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .site-footer .footer-widget-2 {
    flex: 0 0 12%;
    max-width: 12%;
  }

  .site-footer .footer-widget-3 {
    flex: 0 0 52%;
    max-width: 52%;
  }
}

.site-footer .footer-widget-2 .widget {
  margin-bottom: 0;
}

.site-footer .footer-widget-2 .widget-title {
  margin-bottom: 12px;
}

.site-footer .footer-widget-2 .textwidget p {
  margin-bottom: 0;
}

.site-footer .footer-widget-2 img {
  display: block;
}

.site-footer .footer-widget-3 .widget-title {
  margin-bottom: 14px;
}

.site-footer .footer-widget-3 .static-contact-card {
  padding: 22px;
}

@media (max-width: 767px) {
  .botdev-form__row--two {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-widget-2,
  .site-footer .footer-widget-3 {
    margin-top: 24px;
  }
}
