.contact-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.contact-form .form-label {
  font-weight: 500;
}
.contact-form .form-control {
  border-radius: 8px;
  border-color: rgba(0,0,0,0.12);
}
.contact-form .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(171,27,22,0.12);
  border-color: var(--color-pw-1);
}

/* Contact info boxes */
.contact-info-row .info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  background: rgba(255,255,255,0.9);
}
.contact-info-row .info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-pw-1);
  color: #fff;
  font-size: 20px;
}
.contact-info-row .info-text {
  text-align: left;
}