/* ============================================================
   ContactForm Component Styles
   Prefix: pz-contact-
   ============================================================ */

.pz-contact-section {
  background-color: #1a1a2e;
  border-radius: 20px;
  padding: 60px 50px;
  display: flex;
  align-items: stretch;
  gap: 50px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* ----- Left Column: Info ----- */
.pz-contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.pz-contact-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px 0;
  color: #ffffff;
}

.pz-contact-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #a0a0b8;
  margin: 0 0 36px 0;
}

/* Trust Signals */
.pz-contact-trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}

.pz-contact-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pz-contact-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(234, 100, 37, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pz-contact-trust-icon svg {
  width: 22px;
  height: 22px;
  color: #ea6425;
  stroke: #ea6425;
  fill: none;
}

.pz-contact-trust-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ea6425;
  line-height: 1.2;
}

.pz-contact-trust-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #c0c0d0;
  line-height: 1.2;
}

/* Divider */
.pz-contact-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 28px 0;
}

/* Quick Contact Info */
.pz-contact-quick-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pz-contact-quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.2s ease;
}

.pz-contact-quick-item:hover {
  color: #ea6425;
  text-decoration: none;
}

.pz-contact-quick-item svg {
  width: 20px;
  height: 20px;
  color: #ea6425;
  stroke: #ea6425;
  fill: none;
  flex-shrink: 0;
}

.pz-contact-quick-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: inherit;
}

/* ----- Right Column: Form Card ----- */
.pz-contact-form-card {
  flex: 1;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pz-contact-form-card-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 6px 0;
  text-align: center;
}

.pz-contact-form-card-subtext {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: #6b6b80;
  margin: 0 0 24px 0;
  text-align: center;
}

/* HubSpot form container overrides */
.pz-contact-form-wrapper {
  width: 100%;
}

.pz-contact-form-wrapper .hs-form-field {
  margin-bottom: 16px;
}

.pz-contact-form-wrapper .hs-form-field label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}

.pz-contact-form-wrapper .hs-form-field input,
.pz-contact-form-wrapper .hs-form-field textarea,
.pz-contact-form-wrapper .hs-form-field select {
  font-family: 'Poppins', sans-serif;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
  width: 100%;
  transition: border-color 0.2s ease;
}

.pz-contact-form-wrapper .hs-form-field input:focus,
.pz-contact-form-wrapper .hs-form-field textarea:focus,
.pz-contact-form-wrapper .hs-form-field select:focus {
  outline: none;
  border-color: #ea6425;
}

.pz-contact-form-wrapper .hs-submit .hs-button {
  font-family: 'Poppins', sans-serif;
  background-color: #ea6425;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.pz-contact-form-wrapper .hs-submit .hs-button:hover {
  background-color: #d45518;
  transform: translateY(-1px);
}

/* ============================================================
   Responsive: stack vertically on mobile
   ============================================================ */
@media (max-width: 768px) {
  .pz-contact-section {
    flex-direction: column;
    padding: 36px 24px;
    gap: 32px;
    border-radius: 16px;
  }

  .pz-contact-title {
    font-size: 1.5rem;
  }

  .pz-contact-description {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }

  .pz-contact-trust-signals {
    gap: 16px;
  }

  .pz-contact-form-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .pz-contact-form-card-heading {
    font-size: 1.15rem;
  }
}
