/* =========================
   Overall wrap
========================= */
.cf7-quote-wrap{
  max-width: 900px;
  margin: 0 auto;
  font-family: inherit;
}

/* =========================
   Header (Centered)
========================= */
.cf7-header{
  max-width: 900px;
  margin: 0 auto 24px auto;
  padding: 0 12px;
  text-align: center;
}

/* Title + subtitle */
.cf7-title{
  font-size: 34px;
  letter-spacing: .2px;
  margin: 0 0 8px;
}
.cf7-subtitle{
  margin: 0 0 18px;
  opacity: .85;
  line-height: 1.6;
}

/* =========================
   Sections
========================= */
.cf7-section{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 22px;
  margin: 18px 0;
}

/* Section titles */
.cf7-section-title{
  margin: 0 0 14px;
  font-size: 20px;
  letter-spacing: .2px;
}

/* Small helper text */
.cf7-hint{
  margin: -6px 0 14px;
  opacity: .8;
  font-size: 14px;
}

/* =========================
   Layout rows
========================= */
.cf7-row{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.cf7-col{ flex:1 1 280px; }
.cf7-col-full{ flex:1 1 100%; }

/* =========================
   Labels
========================= */
.cf7-label{
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: .2px;
  opacity: .9;
}
.cf7-required{
  opacity: .8;
}

/* =========================
   Inputs (text, select, textarea)
========================= */
.cf7-quote-wrap input[type="text"],
.cf7-quote-wrap input[type="email"],
.cf7-quote-wrap input[type="tel"],
.cf7-quote-wrap input[type="date"],
.cf7-quote-wrap input[type="number"],
.cf7-quote-wrap select,
.cf7-quote-wrap textarea{
  width:100%;
  padding: 12px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  box-sizing: border-box;
  outline: none;
  color: #000;
  background-color: #fff;
}

/* Dropdown text + options (fix blue text) */
.cf7-quote-wrap select{
  color: #000;
  -webkit-text-fill-color: #000;
}
.cf7-quote-wrap select option{
  color: #000;
}

/* =========================
   Checkboxes
========================= */
.cf7-quote-wrap .wpcf7-list-item{
  margin: 0 14px 8px 0;
}
.cf7-quote-wrap .wpcf7-list-item-label{
  font-size: 14px;
}

/* =========================
   Textarea
========================= */
.cf7-quote-wrap textarea{
  min-height: 120px;
}

/* =========================
   Acceptance text
========================= */
.cf7-accept{
  font-size: 14px;
  opacity: .9;
}

/* =========================
   Submit button
========================= */
.cf7-submit{
  padding: 14px 22px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
}

/* =========================
   Mobile polish
========================= */
@media (max-width: 600px){
  .cf7-title{
    font-size: 28px;
  }
  .cf7-section{
    padding: 18px;
  }
}

