/* === BLACK HORIZONTAL CONTACT FORM — VERSION 1.0 === */

.atlox-contact.black-bg {
  background: #000;
  color: #fff;
  width: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 40px 0;
  font-family: 'Montserrat', sans-serif;

  --atlox-orange: #f59c00;
  --atlox-orange-dark: #d88200;
}

/* TITLES */
.atlox-contact.black-bg .atlox-hero {
  max-width: 1100px;
  margin: 0 auto 24px;
  text-align: center;
}

.atlox-contact.black-bg .atlox-hero h2 {
  color: var(--atlox-orange) !important;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 6px;
}

.atlox-contact.black-bg .atlox-hero .subtitle {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.atlox-contact.black-bg .atlox-hero .reassurance {
  color: #ffffff;
  font-size: 14px;
  margin-top: 6px;
}

/* FORM STRUCTURE */
.atlox-horizontal-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top row: 1/3 - 1/3 - 1/3 */
.form-row.top-three {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.form-row.top-three .form-field.one-third {
  width: 33.3333%;
  display: flex;
  flex-direction: column;
}

/* Full-width field */
.atlox-horizontal-form .form-field.full {
  width: 100%;
}

/* LABELS */
.atlox-horizontal-form .form-field > label {
  color: var(--atlox-orange);
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}

/* FIELDS */
.atlox-horizontal-form input,
.atlox-horizontal-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #333;
  background: #fff;
  color: #000;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.atlox-horizontal-form input::placeholder,
.atlox-horizontal-form textarea::placeholder {
  color: #888;
}

.atlox-horizontal-form input:focus,
.atlox-horizontal-form textarea:focus {
  border-color: var(--atlox-orange);
  box-shadow: 0 0 0 3px rgba(245,156,0,0.25);
  outline: none;
}

/* Message field */
.atlox-horizontal-form textarea#message {
  min-height: 140px;
}

/* FILE BUTTON */
.atlox-horizontal-form input[type="file"] {
  padding: 8px 12px;
  cursor: pointer;
}

.atlox-horizontal-form input[type="file"]::-webkit-file-upload-button {
  background: var(--atlox-orange);
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
  margin-right: 8px;
  transition: all 0.2s ease;
}

.atlox-horizontal-form input[type="file"]::-webkit-file-upload-button:hover {
  background: var(--atlox-orange-dark);
  color: #fff;
}

/* SUBMIT BUTTON */
.atlox-contact.black-bg .submit-field .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 1100px;
  padding: 14px 22px;
  background: var(--atlox-orange) !important;
  color: #000 !important;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(245,156,0,0.24);
  transition: filter 0.2s ease, transform 0.06s ease;
  cursor: pointer;
}

.atlox-contact.black-bg .submit-field .btn-submit:hover {
  background: var(--atlox-orange-dark) !important;
  color: #fff !important;
}

.atlox-contact.black-bg .submit-field .btn-submit:active {
  transform: translateY(1px);
}

.atlox-contact.black-bg .submit-field .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* CENTERED CAPTCHA */
.recaptcha-field {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* DIRECT CONTACT AREA */
.cta-alt {
  text-align: center;
  margin-top: 30px;
}

.cta-alt p {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  color: #fff;
}

.cta-alt a[href*="wa.me"] {
  color: #25D366;
  font-weight: 700;
}

.cta-alt a[href*="m.me"] {
  color: #0084FF;
  font-weight: 700;
}

/* LOGOS */
.atlox-social-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.atlox-social-logos img {
  height: 60px;
  transition: transform 0.2s ease;
}

.atlox-social-logos img:hover {
  transform: scale(1.05);
}

/* REASSURANCE */
.atlox-contact.black-bg .reassurance-list {
  max-width: 1100px;
  margin: 30px auto 0;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.atlox-contact.black-bg .reassurance-list p {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .form-row.top-three {
    flex-direction: column;
  }

  .form-row.top-three .form-field.one-third {
    width: 100%;
  }

  .btn-submit {
    width: 90%;
  }
}