
/* Super Blank */

/* Spacing for mobile menu */
.ast-mobile-header-content {
	padding: 8px 0 16px 0;
}

/* No border on X close button */
.ast-mobile-popup-drawer.active .menu-toggle-close:focus {
	border-width: 0;
}

/* X close button position */
.ast-mobile-popup-inner .ast-mobile-popup-header button#menu-toggle-close {
	padding: 34px;
}

/* Nested mobile arrows */
button.ast-menu-toggle {
	box-shadow: none;
}

.ast-menu-toggle:focus {
	outline: 0;
}

.ast-header-break-point .main-navigation li.menu-item-has-children ul.sub-menu li.menu-item a.menu-link span.ast-icon.icon-arrow {
	display: none;
}

.ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item > .ast-menu-toggle {
	/* Cannot avoid !important because Elementor already unsets the color with !important by itself */
	color: var(--ast-global-color-3) !important;
}
    

/* Main form wrapper */
.ghm-contact-form {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Labels */
.ghm-contact-form .wpforms-field-label {
  font-size: 15px;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 8px !important;
}

/* Inputs, selects, textarea */
.ghm-contact-form input[type="text"],
.ghm-contact-form input[type="email"],
.ghm-contact-form input[type="tel"],
.ghm-contact-form input[type="url"],
.ghm-contact-form input[type="number"],
.ghm-contact-form select,
.ghm-contact-form textarea {
  width: 100% !important;
  background: #f8f8f8 !important;
  border: 1px solid #dcdcdc !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  font-size: 15px !important;
  color: #222222 !important;
  transition: all 0.25s ease;
  box-shadow: none !important;
}

/* Textarea */
.ghm-contact-form textarea {
  min-height: 140px !important;
  resize: vertical;
}

/* Placeholder text */
.ghm-contact-form input::placeholder,
.ghm-contact-form textarea::placeholder {
  color: #8a8a8a;
}

/* Focus state */
.ghm-contact-form input:focus,
.ghm-contact-form select:focus,
.ghm-contact-form textarea:focus {
  background: #ffffff !important;
  border-color: #111111 !important;
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.08) !important;
}

/* Field spacing */
.ghm-contact-form .wpforms-field {
  margin-bottom: 20px !important;
}

/* Submit button */
.ghm-contact-form button[type="submit"],
.ghm-contact-form .wpforms-submit {
  background: #111111 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 24px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
  width: 100%;
}

/* Button hover */
.ghm-contact-form button[type="submit"]:hover,
.ghm-contact-form .wpforms-submit:hover {
  background: #2a2a2a !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Description/helper text */
.ghm-contact-form .wpforms-field-description {
  font-size: 13px;
  color: #6f6f6f;
  margin-top: 6px;
}

/* Error messages */
.ghm-contact-form .wpforms-error {
  font-size: 13px !important;
  color: #c0392b !important;
  margin-top: 6px !important;
}

/* Error field */
.ghm-contact-form input.wpforms-error,
.ghm-contact-form select.wpforms-error,
.ghm-contact-form textarea.wpforms-error {
  border-color: #c0392b !important;
}

/* Checkbox and radio labels */
.ghm-contact-form .wpforms-field-checkbox ul li label,
.ghm-contact-form .wpforms-field-radio ul li label {
  color: #333333;
  font-size: 14px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .ghm-contact-form {
    padding: 22px;
    border-radius: 14px;
  }

  .ghm-contact-form button[type="submit"],
  .ghm-contact-form .wpforms-submit {
    padding: 14px 20px !important;
  }
}