/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/


.cta-form {
  padding: 32px;
  background: #f8f8f8;
  border-radius: 0px;
  box-sizing: border-box;
}

.cta-form__title {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #222;
}

.cta-form__text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

.cta-form__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-form__field input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #dcdcdc;
  border-radius: 0px;
  background: #fff;
  font-size: 16px;
  color: #222;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cta-form__field input:focus {
  border-color: #999;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.cta-form__field input::placeholder {
  color: #999;
}

.cta-form__button .wpcf7-submit {
    width: 200px;
    height: 54px;
    border: none;
    border-radius: 10px;
    background: #222;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    margin: 0 auto;
    display: block;
}

.cta-form__button .wpcf7-submit:hover {
  background: #000;
}

.cta-form__button .wpcf7-submit:active {
  transform: translateY(1px);
}

.cta-form .wpcf7-spinner {
  margin: 12px 0 0;
}

.cta-form .wpcf7-response-output {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .cta-form {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .cta-form__title {
    font-size: 24px;
  }

  .cta-form__text {
    font-size: 15px;
  }

  .cta-form__field input,
  .cta-form__button .wpcf7-submit {
    height: 50px;
    font-size: 15px;
  }
}