chesterfield-va.naturaltestosterone.biz Open in urlscan Pro
2606:4700:3033::ac43:b06c  Public Scan

URL: https://chesterfield-va.naturaltestosterone.biz/
Submission: On March 17 via api from US — Scanned from US

Form analysis 1 forms found in the DOM

<form id="form" class="white-popup-block mfp-hide">
  <div class="popup_box ">
    <div class="popup_inner">
      <style>
        .header-mobile .nav-links {
          display: none;
        }

        .header-mobile input[type=checkbox]:checked~.nav-links {
          display: block !important;
        }

        /*.cf .cf-input:hover {
                     opacity: 0.7;
                 }
                 .cf .cf-input:focus {
                     opacity: 1;
                     outline: none;
                     border: 1px solid #ccc;
                 }*/
        .cf .cf-button:hover {
          background-color: transparent;
          color: #0c75fb
        }

        .cf {
          margin: 0 auto !important;
          max-width: 400px;
          background-color: rgba(255, 255, 255, .5);
          border-radius: 25px;
          padding: 25px;
        }

        /*  .cf p {
                 margin: 0;
                 }
                 .cf .cf-title {
                     font-size: 27px;
                     margin: 0 0 15px;
                     color: #0c75fb;
                     font-weight: 700;
                 }
                 .cf .cf-input {
                     transition: .3s;
                     font-size: 16px;
                     border: 1px solid #ccc;
                     border-radius: 5px;
                     padding: 10px 15px;
                     width: 100%;
                     margin-bottom: 15px;
                     box-sizing: border-box;
                 }*/
        .cf .cf-button {
          transition: .3s;
          background-color: #0c75fb;
          color: #fff;
          padding: 10px 15px;
          border: 1px solid #1261c4;
          border-radius: 15px;
          cursor: pointer;
        }

        .cf label {
          margin-bottom: 25px;
          position: relative;
          display: block;
          border-bottom: 1px solid #ddd;
          width: 100%;
          margin-top: 25px;
        }

        .cf input {
          width: 100%;
          box-sizing: border-box;
          padding: 10px 15px;
          border: none;
          outline: none;
          line-height: 16px;
          margin: 0;
          background-color: transparent;
        }

        .cf input::placeholder {
          opacity: 0;
        }

        .cf span {
          position: absolute;
          top: 0;
          left: 15px;
          transform: translateY(10px);
          font-size: 16px;
          color: #000;
          transition-duration: 300ms;
          cursor: text;
        }

        .cf label:focus-within>span,
        .cf input:not(:placeholder-shown)+span {
          color: #000;
          transform: translateY(-15px);
          font-weight: 500;
        }
      </style>
      <div id="cf-97" class="cf">
        <h2 class="cf-title">Get Free Consultation</h2>
        <label>
          <input type="text" id="cf-name" class="cf-name" placeholder="
                    Your Name">
          <span>Your Name</span>
        </label>
        <label>
          <input type="email" id="cf-email" class="cf-email" placeholder="
                    Your Email">
          <span>Your Email</span>
        </label>
        <label>
          <input type="text" id="cf-phone" inputmode="decimal" class="cf-phone" placeholder="Your Phone">
          <span>Your Phone</span>
        </label>
        <label>
          <input type="number" id="cf-age" pattern="[0-9]*" inputmode="decimal" class="cf-age" maxlength="3" placeholder="Your Age">
          <span>Your Age</span>
        </label>
        <button onclick="if (!window.__cfRLUnblockHandlers) return false; cfSend($(this).parent().attr('id'));" class="cf-button" type="button">Send</button>
      </div>
      <script src="/import1/assets/jquery-3.4.1-dist/js/jquery-3.4.1.min.js" type="text/javascript"></script>
      <script type="text/javascript">
        $("#cf-97 .cf-email").blur(function() {
          const validateEmail = (email) => {
            return String(email).toLowerCase().match(/^(([^<>()[\]\.,;:\s@"]+(\.[^<>()[\]\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/);
          };
          let cf_email = $("#cf-97 .cf-email").val();
          if (!validateEmail(cf_email)) {
            $("#cf-97 .cf-email").css("border-bottom", "1px solid red");
          } else {
            $("#cf-97 .cf-email").css("border-bottom", "unset");
          }
        });
        $("#cf-97 .cf-phone").blur(function() {
          const validatePhone = (phone) => {
            phone = phone.replace(/[^0-9]/g, "");
            if (phone.length >= 10 && phone[0] != "1") {
              return true;
            } else {
              if (phone[0] == "1" && phone.length >= 11) {
                return true;
              } else {
                return false;
              }
            }
            /*return true;
              return String(phone).toLowerCase().match(
                  /^[\+]?[(]?[0-9]{3}[)]?[-\s\.]?[0-9]{3}[-\s\.]?[0-9]{4,6}$/
              );*/
          };
          let cf_phone = $("#cf-97 .cf-phone").val();
          if (!validatePhone(cf_phone)) {
            $("#cf-97 .cf-phone").css("border-bottom", "1px solid red");
          } else {
            $("#cf-97 .cf-phone").css("border-bottom", "unset");
          }
        });

        function cfSend(idForm) {
          let cf_name = $("#" + idForm + " .cf-name").val();
          let cf_phone = $("#" + idForm + " .cf-phone").val();
          let cf_email = $("#" + idForm + " .cf-email").val();
          let cf_age = $("#" + idForm + " .cf-age").val();
          let cf_message = $("#" + idForm + " .cf-message").val();
          const validateEmail = (email) => {
            return String(email).toLowerCase().match(/^(([^<>()[\]\.,;:\s@"]+(\.[^<>()[\]\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/);
          };
          const validatePhone = (phone) => {
            phone = phone.replace(/[^0-9]/g, "");
            if (phone.length >= 10 && phone[0] != "1") {
              return true;
            } else {
              if (phone[0] == "1" && phone.length >= 11) {
                return true;
              } else {
                return false;
              }
            }
          };
          if (!cf_name) {
            $("#" + idForm + " .cf-name").css("border-bottom", "1px solid red");
          }
          if (!cf_phone) {
            $("#" + idForm + " .cf-phone").css("border-bottom", "1px solid red");
          }
          if (!cf_email) {
            $("#" + idForm + " .cf-email").css("border-bottom", "1px solid red");
          }
          if (!cf_age) {
            $("#" + idForm + " .cf-age").css("border-bottom", "1px solid red");
          }
          if (!cf_message) {
            $("#" + idForm + " .cf-message").css("border-bottom", "1px solid red");
          }
          if (!validateEmail(cf_email)) {
            $("#" + idForm + " .cf-email").css("border-bottom", "1px solid red");
          }
          if (!validatePhone(cf_phone)) {
            $("#" + idForm + " .cf-phone").css("border-bottom", "1px solid red");
          }
          if (!cf_name || !validatePhone(cf_phone) || !cf_email || !cf_age || !validateEmail(cf_email)) {
            $("html, body").animate({
              scrollTop: $("#" + idForm).offset().top
            }, 2000);
          } else {
            $.post("/", {
              cf_name: cf_name,
              cf_phone: cf_phone,
              cf_email: cf_email,
              cf_age: cf_age,
              cf_message: cf_message
            }).done(function() {
              $("#" + idForm).html(" <h2>Thank you\n" + "    </h2>  \n" + "    <p>\n" +
                "    We received your initial inquiry. In keeping with our Privacy Policy, your information will be held in the strictest confidence. No one will ever see this information except our local doctors and their assistants.\n" +
                "    </p>");
            }).fail(function() {
              alert("error");
            });
          }
        }
      </script>
    </div>
  </div>
</form>

Text Content

 * info@naturaltestosterone.biz

Hormone therapy
 * Our Blog
 * Our Services
   * Menopause treatment
   * HGH injections
   * Testosterone replacement therapy
   * Hormone replacement therapy
   * Peptide injections
   * Bioidentical Hormone doctors
 * Contact us

Get Free Consultation
MENU
 * Our Blog
 * Our Services +
   * Menopause treatment
   * HGH injections
   * Testosterone replacement therapy
   * Hormone replacement therapy
   * Peptide injections
   * Bioidentical Hormone doctors
 * Contact us +


BIOIDENTICAL HORMONES REPLACEMENT CHESTERFIELD, VA - HORMONE HARMONY CLINIC


TABLE OF CONTENTS

 * Introduction to Bioidentical Hormones
 * Age-Related Hormone Decline
 * What Are Bioidentical Hormones?
 * Symptoms of Hormone Imbalance
 * Customized Treatment Plans
 * Bioidentical Hormone Replacement Benefits
 * Hormone Testing is Critical
 * Our Exceptional Care Sets Us Apart


INTRODUCTION TO BIOIDENTICAL HORMONES

Bioidentical hormones are identical in molecular structure to the hormones
naturally produced in the human body. As we age, our hormone levels decline
causing various symptoms. Replacing deficient hormones with bioidentical ones
can help alleviate symptoms and promote better health.

At Hormone Harmony Clinic in Chesterfield, our physicians specialize in
customized bioidentical hormone therapy to restore hormone balance. We offer
high quality care, using state of the art diagnostics and only pharmaceutical
quality hormones.


AGE-RELATED HORMONE DECLINE

As we get older, hormone levels fall in both men and women leading to unpleasant
symptoms. In women, perimenopause and menopause causes estrogen and progesterone
levels to drop dramatically. In men, testosterone declines about 1% per year
from the 30s onward.

Failing hormone output from the ovaries, testes and hormone-producing glands
causes system-wide disruption leading to:



 * Hot flashes
 * Night sweats
 * Vaginal dryness
 * Loss of sex drive
 * Erectile dysfunction
 * Weight gain
 * Muscle loss
 * Low energy and endurance
 * Mood changes
 * Poor concentration and memory
 * Sleep disruption



Not everyone experiences severe symptoms, but most have at least some impact
from age-related hormone decline. Restoring balance with bioidentical hormones
provides welcome relief.


OUR SERVICES


MENOPAUSE TREATMENT

Learn More


HGH INJECTIONS

Learn More


TESTOSTERONE REPLACEMENT THERAPY

Learn More


HORMONE REPLACEMENT THERAPY

Learn More


PEPTIDE INJECTIONS

Learn More


BIOIDENTICAL HORMONE DOCTORS

Learn More


RESTORE YOUR HORMONE BALANCE WITH BIOIDENTICAL THERAPY TODAY.

Get Free Consultation


WHAT ARE BIOIDENTICAL HORMONES?

Bioidentical hormone replacements are man-made forms of hormones that are
molecularly identical to those your body produces. This allows them to bind to
receptors and mimic the action of your natural hormones.

Common bioidentical hormones include:



 * Estradiol
 * Progesterone
 * Testosterone
 * DHEA



These are generally derived from plant sources and made bioidentical through
laboratory processing.

Because bioidentical hormones match the body’s own hormones molecule for
molecule, they are ideal for replacement therapy compared to synthetic or
non-human versions. Bioidentical hormones have the same effects in the body,
interact optimally at cellular levels, and avoid side effects caused by
mismatched hormones.


SYMPTOMS OF HORMONE IMBALANCE

Imbalances in key hormones like estrogen, progesterone and testosterone can
cause wide-ranging symptoms including:



 * Fatigue - Low hormones reduce cellular energy production
 * Weight gain - Hormone imbalance disrupts appetite signals and metabolism
 * Night sweats - Falling estrogen thickens blood vessels causing sweating
 * Brain fog - Hormones affect multiple brain regions impacting cognition
 * Mood changes - Reproductive hormones modulate mood; low levels increase
   anxiety and depression



If you are experiencing any of these disruptive symptoms, bioidentical hormone
replacement may help provide considerable relief by restoring optimal balance.


CUSTOMIZED TREATMENT PLANS

Every patient is biochemically unique with differing deficiency levels and
sensitivities to hormones. At Hormone Harmony Clinic, initial blood, saliva and
symptom testing determines your individual hormone levels and personalized
needs.

Your treatment plan is then fully customized with bioidentical hormones matching
what your body naturally produced in your youth. The route of administration –
oral, topical cream, pellet implant – is also tailored to your lifestyle and
preferences for ease of use.

Custom compounded bioidentical hormones are prepared specifically for you in our
on-site pharmacy. This allows very precise dosing meeting your individual needs
now, which may fluctuate over time. Follow up testing tracks your hormone levels
to ensure optimal balance is maintained long-term.


RESTORE YOUR HORMONE BALANCE WITH BIOIDENTICAL THERAPY TODAY!

Get Free Consultation


BIOIDENTICAL HORMONE REPLACEMENT BENEFITS

Restoring optimal hormone balance with bioidentical hormones offers wide-ranging
benefits including:


PHYSICAL BENEFITS



 * Increased energy and endurance
 * Enhanced physical strength and mobility
 * Reduced body fat; increased lean muscle mass
 * Healthier cholesterol profiles
 * Improved sleep quality
 * Alleviation of menopausal symptoms
 * Better heart health; resilient blood vessels
 * Healthier weight regulation; balanced appetite signals
 * Improved skin thickness, texture and appearance
 * Enhanced sexual health – desire, function, lubrication




MENTAL & EMOTIONAL BENEFITS



 * Improved mood – reduced anxiety and depression
 * Confident sense of wellbeing
 * Clear cognitive function; sharp focus & memory
 * Greater stress resilience; reduced irritability
 * Renewed motivation and engagement



In short, properly balanced hormone levels produced by bioidentical hormone
therapy helps you look, feel and function at your absolute best!


HORMONE TESTING IS CRITICAL

Since all symptoms of hormone imbalance are common and relatively non-specific,
testing is essential to determine if declining hormone production is causing
your issues. This establishes a deficiency diagnosis guiding precision
treatment.

Comprehensive lab testing allows Hormone Harmony Clinic physicians to tailor
bioidentical hormone regimens specific to your deficiencies. Follow up testing
also verifies treatment efficacy and appropriate dosing adjustments.

We utilize advanced saliva and blood testing for a complete hormone level
analysis including:

Male Panels - Testosterone - Free Testosterone - Estradiol - DHEA/DHEAS -
Cortisol - Pregnenolone - Thyroid (T3, T4) - PSA

Female Panels - Estradiol - Estrone - Progesterone - DHEA/DHEAS - Cortisol -
Pregnenolone - Testosterone - Thyroid (T3, T4)

Testing is performed through regular venous blood draws. Saliva testing is also
extremely useful for certain hormones, as levels closely parallel free
circulating concentrations.

Hormone Harmony Clinic physicians are experts in interpreting comprehensive
hormone testing data to diagnose specific imbalances and customize appropriate
bioidentical hormone restoration regimens.


OUR EXCEPTIONAL CARE SETS US APART

With over 20 years serving Chesterfield, the physicians at Hormone Harmony
Clinic offer exceptional care with bioidentical hormone replacement therapy
including:


CUTTING-EDGE DIAGNOSTIC TESTING



 * Comprehensive hormone blood & saliva testing
 * Genetic risk analysis
 * Metabolic laboratory assessments
 * Nutrient/mineral evaluations
 * Food sensitivity panels




CUSTOMIZED TREATMENT PLANS



 * Bioidentical hormones matched to your needs
 * Hormone administration method tailored for you
 * Supportive nutrient therapies




CONVENIENCE & QUALITY



 * On-site blood draw & saliva lab
 * PCAB-accredited on-site compounding pharmacy
 * Highest quality bioidentical hormones
 * Specialized hormone prescriptions




ONGOING FINE-TUNING & MONITORING



 * Follow up testing to ensure optimal levels
 * Adjustments as needed over time
 * Routine medical oversight for the long term




LIFESTYLE GUIDANCE



 * Diet & nutrition consulting
 * Exercise programming tuned to your needs
 * Stress management techniques
 * Counseling for transition stages



We also provide lifestyle guidance regarding nutrition, fitness and stress
management for optimal results.

If you suspect a hormone imbalance, contact Hormone Harmony Clinic today to see
how we can help you regain your vitality with bioidentical hormone replacement!
We look forward to helping you address frustrating symptoms and restore your
energetic, healthy self once again!


RELATED BLOG POSTS

View all blog posts


GET FREE CONSULTATION

Your Name Your Email Your Phone Your Age Send


CITIES NEAR CHESTERFIELD

 * Beverly Hills
 * New Windsor
 * Chesterfield
 * Southgate
 * Bethesda
 * Goodlettsville

Hormone therapy


LINKS

 * Terms of Service
 * Privacy policy
 * Our Glossary
 * Our Blog
 * Our Services
 * Menopause treatment
 * HGH injections
 * Testosterone replacement therapy
 * Hormone replacement therapy
 * Peptide injections
 * Bioidentical Hormone doctors
 * Our Locations
 * Contact us



Copyright © Hormone Harmony Clinic 2024 - All rights reserved


GET FREE CONSULTATION

Your Name Your Email Your Phone Your Age Send
Get Free Consultation