{"id":127,"date":"2026-06-22T06:56:37","date_gmt":"2026-06-22T06:56:37","guid":{"rendered":"https:\/\/w786.pk\/?page_id=127"},"modified":"2026-09-01T13:55:53","modified_gmt":"2026-09-01T13:55:53","slug":"contact","status":"publish","type":"page","link":"https:\/\/w786.pk\/contact\/","title":{"rendered":"Contact Us"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\">Contact Us<\/h1>\n\n\n\n<p class=\"wp-block-paragraph\">Have a question about <a href=\"https:\/\/w786.pk\/download\/\" data-type=\"post\" data-id=\"153\">Win 786<\/a> that is not covered on the site? Found information that needs updating? Want to share your personal experience with the app?<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We are always looking to improve this resource for Pakistani players. Every message helps us keep the content accurate and useful.<\/p>\n\n\n\n<style>\n.w786-contact {\n  font-family: inherit;\n  max-width: 560px;\n  margin: 0 auto;\n  padding: 16px;\n  box-sizing: border-box;\n}\n\n.w786-contact h2 {\n  font-family: inherit;\n  color: #0DB66C;\n  font-size: 22px;\n  font-weight: 700;\n  letter-spacing: 2px;\n  text-transform: uppercase;\n  margin: 0 0 4px;\n}\n\n.w786-contact .subtitle {\n  font-size: 13px;\n  color: #8ab09a;\n  margin: 0 0 22px;\n}\n\n.w786-contact .field {\n  margin-bottom: 14px;\n}\n\n.w786-contact label {\n  display: block;\n  font-size: 11px;\n  font-weight: 700;\n  letter-spacing: 1.2px;\n  text-transform: uppercase;\n  color: #0DB66C;\n  margin-bottom: 5px;\n  opacity: 0.85;\n}\n\n.w786-contact input,\n.w786-contact textarea,\n.w786-contact select {\n  width: 100%;\n  background: transparent;\n  border: 1.5px solid rgba(13, 182, 108, 0.35);\n  border-radius: 8px;\n  padding: 10px 13px;\n  font-family: inherit;\n  font-size: 13.5px;\n  color: inherit;\n  box-sizing: border-box;\n  outline: none;\n  transition: border-color 0.2s;\n}\n\n.w786-contact input:focus,\n.w786-contact textarea:focus,\n.w786-contact select:focus {\n  border-color: #0DB66C;\n  box-shadow: 0 0 0 3px rgba(13, 182, 108, 0.1);\n}\n\n.w786-contact textarea {\n  resize: vertical;\n  min-height: 110px;\n}\n\n.w786-contact select option {\n  background: #ffffff;\n  color: #222222;\n}\n\n.w786-contact button {\n  width: 100%;\n  background: #0DB66C;\n  color: #fff;\n  border: none;\n  border-radius: 8px;\n  padding: 12px;\n  font-family: inherit;\n  font-size: 15px;\n  font-weight: 700;\n  letter-spacing: 1.5px;\n  text-transform: uppercase;\n  cursor: pointer;\n  margin-top: 4px;\n  transition: opacity 0.2s, box-shadow 0.2s;\n}\n\n.w786-contact button:hover {\n  opacity: 0.88;\n  box-shadow: 0 0 20px rgba(13, 182, 108, 0.4);\n}\n\n.w786-contact button:disabled {\n  opacity: 0.5;\n  cursor: not-allowed;\n}\n\n.w786-contact .toast {\n  display: none;\n  border-radius: 8px;\n  padding: 12px 16px;\n  font-size: 13px;\n  text-align: center;\n  margin-top: 12px;\n}\n\n.w786-contact .toast.success {\n  background: rgba(13, 182, 108, 0.12);\n  border: 1px solid rgba(13, 182, 108, 0.4);\n  color: #0DB66C;\n}\n\n.w786-contact .toast.error {\n  background: rgba(220, 60, 60, 0.1);\n  border: 1px solid rgba(220, 60, 60, 0.35);\n  color: #e07070;\n}\n<\/style>\n\n<div class=\"w786-contact\">\n  <h2>Contact Us<\/h2>\n  <p class=\"subtitle\">We reply within 24&ndash;48 hours.<\/p>\n\n  <div class=\"field\">\n    <label for=\"cf-name\">Your Name<\/label>\n    <input type=\"text\" id=\"cf-name\" placeholder=\"e.g. Ali Hassan\" required>\n  <\/div>\n\n  <div class=\"field\">\n    <label for=\"cf-email\">Email Address<\/label>\n    <input type=\"email\" id=\"cf-email\" placeholder=\"you@example.com\" required>\n  <\/div>\n\n  <div class=\"field\">\n    <label for=\"cf-subject\">Subject<\/label>\n    <select id=\"cf-subject\">\n      <option value=\"Content Correction\">Content Correction<\/option>\n      <option value=\"Missing Topic\">Missing Topic<\/option>\n      <option value=\"Share My Experience\">Share My Experience<\/option>\n      <option value=\"App Version Update\">App Version Update<\/option>\n      <option value=\"Press \/ Media\">Press &amp; Media<\/option>\n      <option value=\"Other\">Other<\/option>\n    <\/select>\n  <\/div>\n\n  <div class=\"field\">\n    <label for=\"cf-message\">Message<\/label>\n    <textarea id=\"cf-message\" placeholder=\"Write your message here...\" required><\/textarea>\n  <\/div>\n\n  <button id=\"cf-btn\" onclick=\"sendMessage()\">Send Message<\/button>\n  <div class=\"toast\" id=\"cf-toast\"><\/div>\n<\/div>\n\n<script>\nasync function sendMessage() {\n  const name    = document.getElementById('cf-name').value.trim();\n  const email   = document.getElementById('cf-email').value.trim();\n  const subject = document.getElementById('cf-subject').value;\n  const message = document.getElementById('cf-message').value.trim();\n  const btn     = document.getElementById('cf-btn');\n\n  if (!name || !email || !message) {\n    showToast('Please fill in all fields.', 'error');\n    return;\n  }\n\n  const emailRegex = \/^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$\/;\n  if (!emailRegex.test(email)) {\n    showToast('Please enter a valid email address.', 'error');\n    return;\n  }\n\n  btn.disabled = true;\n  btn.textContent = 'Sending...';\n\n  try {\n    const res = await fetch('https:\/\/formspree.io\/f\/mzdlbzbz', {\n      method: 'POST',\n      headers: { 'Content-Type': 'application\/json', 'Accept': 'application\/json' },\n      body: JSON.stringify({ name, email, subject, message })\n    });\n\n    if (res.ok) {\n      showToast('Message sent! We will get back to you within 24-48 hours.', 'success');\n      document.getElementById('cf-name').value    = '';\n      document.getElementById('cf-email').value   = '';\n      document.getElementById('cf-message').value = '';\n      document.getElementById('cf-subject').selectedIndex = 0;\n    } else {\n      const data = await res.json();\n      showToast(data?.errors?.[0]?.message || 'Something went wrong. Please try again.', 'error');\n    }\n  } catch (err) {\n    showToast('Network error. Please check your connection and try again.', 'error');\n  }\n\n  btn.disabled = false;\n  btn.textContent = 'Send Message';\n}\n\nfunction showToast(msg, type) {\n  const toast = document.getElementById('cf-toast');\n  toast.textContent = msg;\n  toast.className = 'toast ' + type;\n  toast.style.display = 'block';\n  setTimeout(() => { toast.style.display = 'none'; }, 6000);\n}\n<\/script>\n\n\n\n<h2 class=\"wp-block-heading\">How to Reach Us<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Email:<\/strong>&nbsp;contact@w786.pk<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Response time:<\/strong>&nbsp;We typically respond within 24 to 48 hours.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What We Can Help With<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Content corrections:<\/strong>&nbsp;If you notice any information on the site that is outdated or incorrect, let us know, and we will update it<\/li>\n\n\n\n<li><strong>Missing topics:<\/strong>&nbsp;If there is a W786-related question you cannot find an answer to on this site, tell us, and we will cover it<\/li>\n\n\n\n<li><strong>User experiences:<\/strong>&nbsp;If you want to share your personal experience with W786 (positive or negative), we read every submission and use them to keep our reviews accurate<\/li>\n\n\n\n<li><strong>App version updates:<\/strong>&nbsp;If a new W786 version has been released with changes we have not covered yet, drop us a line<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">What We Cannot Help With<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>W786 technical support:<\/strong>\u00a0We are not affiliated with <a href=\"https:\/\/w786.pk\/\">W786<\/a>. If you are experiencing issues with your <a href=\"https:\/\/w786.pk\/win786-login\/\" data-type=\"page\" data-id=\"260\">win786 login<\/a>, failed withdrawals, or account deposit errors, please contact W786\u2019s in-app support directly.<\/li>\n\n\n\n<li><strong>Money recovery:<\/strong>&nbsp;If you have lost money on W786 or any gaming app, we cannot help you recover it. We are an informational site, not a payment platform<\/li>\n\n\n\n<li><strong>Referral codes or bonus codes:<\/strong>&nbsp;We do not distribute or promote referral codes for W786 or any other app<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">For Press and Media<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If you are a journalist, blogger, or media professional looking for commentary or data on real-money gaming apps in Pakistan, reach out via email with your publication name and query. We are happy to provide an expert perspective on the earning apps landscape in Pakistan.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Contact Us Have a question about Win 786 that is not covered on the site? Found information that needs updating? Want to share your personal experience with the app? We are always looking to improve this resource for Pakistani players. Every message helps us keep the content accurate and useful. Contact Us We reply within&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"class_list":["post-127","page","type-page","status-publish","hentry"],"taxonomy_info":[],"featured_image_src_large":false,"author_info":{"display_name":"newhostinger470@gmail.com","author_link":"https:\/\/w786.pk\/author\/newhostinger470gmail-com\/"},"comment_info":0,"_links":{"self":[{"href":"https:\/\/w786.pk\/wp-json\/wp\/v2\/pages\/127","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/w786.pk\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/w786.pk\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/w786.pk\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/w786.pk\/wp-json\/wp\/v2\/comments?post=127"}],"version-history":[{"count":5,"href":"https:\/\/w786.pk\/wp-json\/wp\/v2\/pages\/127\/revisions"}],"predecessor-version":[{"id":267,"href":"https:\/\/w786.pk\/wp-json\/wp\/v2\/pages\/127\/revisions\/267"}],"wp:attachment":[{"href":"https:\/\/w786.pk\/wp-json\/wp\/v2\/media?parent=127"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}