/* =====================================================
   HAWTHORNE PUBLISHERS — contact.css
   Page: Contact Us (contact.php)
===================================================== */

/* ── HERO (bookshelf, text centered) ── */
.con-hero {
  background: url('../images/pkg-banner.png') center/cover no-repeat;
  padding: 8.5rem 0 3.5rem;
  text-align: center;
}

.con-hero-badge {
  display: inline-block;
  border: 1px solid rgba(40, 167, 69, .45);
  background: rgba(40, 167, 69, .12);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: SF Pro Display;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: .28rem .9rem;
  margin-bottom: .9rem;
}

.con-hero-h {
  font-family: "Alyamama", serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 56px;
  max-width: 760px;
  margin: 0 auto 1rem;
}

.con-hero-sub {
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.con-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.con-stat-num {
  font-family: "Quincy CF", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 26px;
}

.con-stat-label {
  font-size: 11px;
  font-family: SF Pro Display, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-top: .2rem;
}

.con-stat-sup {
  font-size: .7rem;
  vertical-align: sub;
  font-family: var(--ff-sans);
  font-weight: 400;
  position: relative;
  left: -6px;
}

.con-stat-star {
  font-size: 1.2rem;
  color: #FFA500;
  vertical-align: sub;
  position: relative;
  left: -6px;
}

/* ── CONTACT BODY ── */
.con-body {
  background: #fff;
  padding: 4rem 0 5rem;
}

/* Left: info block */
.con-reach-h {
  font-family: "Alyamama", serif;
  font-size: 50px;
  /* font-weight: 700; */
  color: #333333;
}

.con-reach-p {
  font-size: 20px;
  font-family: Sf Pro Display, sans-serif;
  color: #0B0B0B;
  line-height: 31px;
  margin-bottom: 1.5rem;
}

.con-info-label {
  font-size: 30px;
  font-weight: 400;
  color: #333333;
  margin-bottom: .2rem !important;
}

.con-info-value {
  font-size: 20px;
  font-family: Sf Pro Display, sans-serif;
  color: #0B0B0B;
  margin-bottom: 1rem;
}

.con-info-value a {
  font-size: 20px;
  font-family: Sf Pro Display, sans-serif;
  color: #0B0B0B;
  margin-bottom: 1rem;
  text-decoration: none;
}

.con-info-value a:hover {
  color: var(--c-green-btn);
}

/* Trust logos row */
.con-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.con-trust-item {
  text-align: center;
}

.con-trust-name {
  font-size: .78rem;
  font-weight: 700;
  color: var(--c-text);
}

.con-trust-stars {
  color: #f59e0b;
  font-size: .7rem;
  display: block;
}

/* Right: form block */
.con-form-h {
  font-family: Alyamama, serif;
  font-size: 53px;
  /* font-weight: 700; */
  color: #333333;
  margin-bottom: .5rem;
  max-width: 599px;
  line-height: 70px;
}

.con-form-sub {
  font-size: 18px;
  font-family: Sf Pro Display, sans-serif;
  color: #333333;
  line-height: 24px;
  margin-bottom: 1.5rem;
  max-width: 599px;
}

.con-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: .75rem;
}

.con-form-input,
.con-form-select,
.con-form-textarea {
  width: 100%;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: .72rem 1rem;
  font-size: .88rem;
  font-family: var(--ff-sans);
  color: var(--c-text);
  background: #fff;
  transition: var(--tr);
}

.con-form-input:focus,
.con-form-select:focus,
.con-form-textarea:focus {
  outline: none;
  border-color: var(--c-green-btn);
}

.con-form-input::placeholder,
.con-form-textarea::placeholder {
  color: #aaa;
}

.con-form-select {
  appearance: none;
  color: #aaa;
}

.con-form-select.has-value {
  color: var(--c-text);
}

.con-form-textarea {
  resize: vertical;
  min-height: 110px;
  margin-bottom: .75rem;
}

.con-form-submit {
  display: block;
  width: 100%;
  background: #F45A28;
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  padding: 1rem;
  font-size: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--tr);
  letter-spacing: .02em;
}

.con-form-submit:hover {
  background: #c94e17;
}

@media (max-width: 576px) {
  .con-form-row {
    grid-template-columns: 1fr;
  }
}