/* ===================================================
   CONTACT FORM STYLING
   =================================================== */
.contact-form {
  background: #fff;
  padding: 10px;
  max-width: 100%;
  margin: 0 auto;
}

.contact-form .form-note {
  font-size: 16px;
  margin-bottom: 15px;
  color: #000;
}

.contact-form .required {
  color: #d93025;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 6px;
  color: #000;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
textarea,
select {
  border: 1px solid #C8C8C8;
  border-radius: 6px;
  padding: 13px 12px;
  font-size: 16px;
  color: #5B5B5B;
  outline: none;
  transition: border 0.2s ease;
  background: #fff;
  resize: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #f2b500;
}

textarea {
  min-height: 120px;
  resize: none;
}

/* Country / State dropdown */
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  }
  select:disabled {
	  background-color: #f9f9f9;
	  color: #aaa;
	  cursor: not-allowed;
	}


/* File upload */
/* -------- Custom File Upload -------- */
.file-upload {
  position: relative;
  border: 1px dashed #C8C8C8;
  border-radius: 6px;
  padding: 40px 20px;
  background: #fff;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.file-upload:hover {
  border-color: #f2b500;
}

.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* so clicks go to hidden input */
}

.upload-icon {
  font-size: 22px;
  color: #222;
  margin-bottom: 8px;
}

.upload-text {
  font-size: 16px;
  color: #000;
}

.upload-text strong {
  color: #000;
  font-weight: 600;
}

.upload-text small {
  display: block;
  font-weight: 400;
  margin-top: 5px;
  font-size: 14px;
  color: #5B5B5B;
}

.file-upload.has-file {
  border-color: #f2b500;
  background: #fff;
}

.file-upload.has-file .upload-icon {
  color: #f2b500;
}

.file-upload.has-file #uploadMessage {
  font-weight: 600;
  color: #000;
}


/* Checkbox */
/* ---------- Custom Checkbox ---------- */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #000;
}

.checkbox-group input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  vertical-align: middle;
}

.checkbox-group input[type="checkbox"]:checked {
  background-color: #1e4b77; /* your blue color */
  border-color: #1e4b77;
}

.checkbox-group input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.1s ease;
}

.checkbox-group input[type="checkbox"]:checked::after {
  opacity: 1;
}

.checkbox-group a {
  color: #000;
  text-decoration: underline;
  font-weight: 600;
}



.form-status {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.center {
  text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .btn-send {
    width: 100%;
  }
}
.sell-form {
	background: url('/wp-content/themes/synergy/assets/images/sell.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 60px 100px;
	border-radius: 20px;
}
.sell-form h2 {
	color: #000000;
	font-size: 44px;
	font-weight: 600;
}
.sell-form input[type="text"], .sell-form input[type="email"], .sell-form input[type="tel"], .sell-form input[type="file"], .sell-form textarea, .sell-form select {
	border: 1px solid #E6E6E8;
}
.sell-form .form-grid {
	grid-template-columns: repeat(auto-fit, minmax(344px, 1fr));
	margin-bottom: 20px;
}

