/*
Theme Name: Salient Child
Theme URI: http://example.com
Description: Child theme pentru Salient Theme
Author: Leo
Author URI: http://example.com
Template: salient
Version: 1.0.0
*/


/* =========================
   FORM BASE (CLEAN SPACING)
========================= */
body .leo-form {
  width: 100%;
}

/* spacing aerisit */
body .leo-form .row {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

/* columns */
body .leo-form .col {
  flex: 1;
  min-width: 240px;
}

body .leo-form .col-full {
  width: 100%;
}

/* =========================
   INPUT STYLE (CLEAN MODERN)
========================= */
body .leo-form input.wpcf7-form-control,
body .leo-form textarea.wpcf7-form-control {
  width: 100%;
  padding: 14px 16px;

  font-size: 16px;
  font-family: inherit;

  background: #fff;

  border: 1px solid #e3e3e3;
  border-radius: 10px;

  color: #1A1A1A;

  transition: all 0.2s ease;

  box-shadow: none;
}

/* hover subtle */
body .leo-form input.wpcf7-form-control:hover,
body .leo-form textarea.wpcf7-form-control:hover {
  border-color: #cfcfcf;
}

/* focus premium (gold accent) */
body .leo-form input.wpcf7-form-control:focus,
body .leo-form textarea.wpcf7-form-control:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

/* =========================
   TEXTAREA
========================= */
body .leo-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* =========================
   SUBMIT
========================= */
body .leo-form .submit-row {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

body .leo-form input.wpcf7-submit {
  width: 220px;
  padding: 12px 0;

  border-radius: 999px;
  border: none;

  background: #D4AF37;
  color: #1A1A1A;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: all 0.2s ease;
}

body .leo-form input.wpcf7-submit:hover {
  background: #1A1A1A;
  color: #D4AF37;
  transform: translateY(-1px);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  body .leo-form .row {
    flex-direction: column;
    gap: 12px;
  }
}