79785olympia.com Open in urlscan Pro
15.197.234.174  Public Scan

URL: https://79785olympia.com/
Submission: On October 04 via api from BE — Scanned from GB

Form analysis 2 forms found in the DOM

<form @submit.prevent="beforeSubmitForm" id="agent-contact-form" novalidate="" class="mt-4">
  <div class="grid grid-cols-1 md:grid-cols-12 gap-4">
    <div class="hidden col-span-3 md:flex items-center justify-end">
      <label for="name" class="block text-right label text-bg-contrast">NAME:</label>
    </div>
    <div class="md:col-span-9">
      <div class="mt-1">
        <label for="name" class="block md:hidden label text-bg-contrast">NAME</label>
        <input type="text" name="name" id="name" autocomplete="name" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700
                                        focus:outline-none focus:ring-0 focus:border-gray-700">
        <span x-show="!validForm.fields.name.valid" class="error-msg text-bg-contrast">Name cannot be empty</span>
      </div>
    </div>
    <div class="hidden col-span-3 md:flex items-center justify-end">
      <label for="email" class="block text-right label text-bg-contrast">EMAIL:</label>
    </div>
    <div class="md:col-span-9">
      <div class="mt-1">
        <label for="name" class="block md:hidden label text-bg-contrast">EMAIL</label>
        <input id="email" name="email" type="email" autocomplete="email" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Email address must be a valid address">
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'required'" class="error-msg text-bg-contrast">Email cannot be empty</span>
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'email'" class="error-msg text-bg-contrast ">Provide a valid email address</span>
      </div>
    </div>
    <div class="hidden col-span-3 md:flex items-center justify-end">
      <label for="phone-number" class="block text-right label text-bg-contrast">PHONE:</label>
    </div>
    <div class="md:col-span-9">
      <label for="phone-number" class="block md:hidden label text-bg-contrast">PHONE</label>
      <div class="mt-1">
        <input type="text" name="phone" id="phone-number" autocomplete="phone-number" placeholder="(415)555-1234" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Phone number cannot be empty">
        <span x-show="!validForm.fields.phone.valid" class="error-msg text-bg-contrast">Phone number cannot be empty</span>
      </div>
    </div>
    <div class="hidden col-span-3 md:flex items-start justify-end">
      <label for="message" class="block text-right label text-bg-contrast">MESSAGE:</label>
    </div>
    <div class="md:col-span-9">
      <label for="message" class="block md:hidden label text-bg-contrast">MESSAGE</label>
      <div class="mt-1">
        <textarea id="message" name="message" rows="4" placeholder="Write your message here..." class="block w-full rounded border-brand-gray-300 py-2 px-3 text-brand-gray-700 resize-none
                                          focus:outline-none focus:ring-0 focus:border-brand-gray-700" aria-describedby="message-max"></textarea>
        <span x-show="!validForm.fields.message.valid" class="error-msg text-bg-contrast">Message cannot be empty</span>
      </div>
    </div>
    <div class="sm:flex sm:justify-end text-sm my-1 md:col-span-12 text-bg-contrast">
      <p>The site is protected by reCAPTCHA and the <a href="https://policies.google.com/privacy" class="hover:underline" target="_blank">Google Privacy Policy</a> and
        <a href="https://policies.google.com/terms" class="hover:underline" target="_blank">Terms of Service</a> apply. </p>
    </div>
    <div class="hidden md:block col-span-3"></div>
    <div class="md:col-span-9">
      <div class="mt-1 text-right">
        <button type="submit" class="disabled:cursor-not-allowed disabled:opacity-50
                                            button-style uppercase md:tracking-widest text-center max-w-sm mx-auto text-sm
                                            sm:text-base" id="contact-submit" x-bind:disabled="sendingForm"> Send <i class="fa-duotone fa-spinner-third fa-spin ml-2" x-show="sendingForm"></i>
        </button>
      </div>
    </div>
  </div>
</form>

<form @submit.prevent="beforeSubmitForm" id="agent-contact-form" novalidate="" class="mt-4">
  <div class="grid grid-cols-1 md:grid-cols-12 gap-4">
    <div class="hidden col-span-3 md:flex items-center justify-end">
      <label for="name" class="block text-right label text-bg-contrast">NAME:</label>
    </div>
    <div class="md:col-span-9">
      <div class="mt-1">
        <label for="name" class="block md:hidden label text-bg-contrast">NAME</label>
        <input type="text" name="name" id="name" autocomplete="name" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700
                                        focus:outline-none focus:ring-0 focus:border-gray-700">
        <span x-show="!validForm.fields.name.valid" class="error-msg text-bg-contrast" style="display: none;">Name cannot be empty</span>
      </div>
    </div>
    <div class="hidden col-span-3 md:flex items-center justify-end">
      <label for="email" class="block text-right label text-bg-contrast">EMAIL:</label>
    </div>
    <div class="md:col-span-9">
      <div class="mt-1">
        <label for="name" class="block md:hidden label text-bg-contrast">EMAIL</label>
        <input id="email" name="email" type="email" autocomplete="email" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Email address must be a valid address">
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'required'" class="error-msg text-bg-contrast" style="display: none;">Email cannot be empty</span>
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'email'" class="error-msg text-bg-contrast " style="display: none;">Provide a valid email address</span>
      </div>
    </div>
    <div class="hidden col-span-3 md:flex items-center justify-end">
      <label for="phone-number" class="block text-right label text-bg-contrast">PHONE:</label>
    </div>
    <div class="md:col-span-9">
      <label for="phone-number" class="block md:hidden label text-bg-contrast">PHONE</label>
      <div class="mt-1">
        <input type="text" name="phone" id="phone-number" autocomplete="phone-number" placeholder="(415)555-1234" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Phone number cannot be empty">
        <span x-show="!validForm.fields.phone.valid" class="error-msg text-bg-contrast" style="display: none;">Phone number cannot be empty</span>
      </div>
    </div>
    <div class="hidden col-span-3 md:flex items-start justify-end">
      <label for="message" class="block text-right label text-bg-contrast">MESSAGE:</label>
    </div>
    <div class="md:col-span-9">
      <label for="message" class="block md:hidden label text-bg-contrast">MESSAGE</label>
      <div class="mt-1">
        <textarea id="message" name="message" rows="4" placeholder="Write your message here..." class="block w-full rounded border-brand-gray-300 py-2 px-3 text-brand-gray-700 resize-none
                                          focus:outline-none focus:ring-0 focus:border-brand-gray-700" aria-describedby="message-max"></textarea>
        <span x-show="!validForm.fields.message.valid" class="error-msg text-bg-contrast" style="display: none;">Message cannot be empty</span>
      </div>
    </div>
    <div class="sm:flex sm:justify-end text-sm my-1 md:col-span-12 text-bg-contrast">
      <p>The site is protected by reCAPTCHA and the <a href="https://policies.google.com/privacy" class="hover:underline" target="_blank">Google Privacy Policy</a> and
        <a href="https://policies.google.com/terms" class="hover:underline" target="_blank">Terms of Service</a> apply. </p>
    </div>
    <div class="hidden md:block col-span-3"></div>
    <div class="md:col-span-9">
      <div class="mt-1 text-right">
        <button type="submit" class="disabled:cursor-not-allowed disabled:opacity-50
                                            button-style uppercase md:tracking-widest text-center max-w-sm mx-auto text-sm
                                            sm:text-base" id="contact-submit" x-bind:disabled="sendingForm"> Send <i class="fa-duotone fa-spinner-third fa-spin ml-2" x-show="sendingForm" aria-hidden="true" style="display: none;"></i>
        </button>
      </div>
    </div>
  </div>
</form>

Text Content

JOHN LEPAGE PRESENTS


3BR/2.5BA TOWNHOME HOME W/ STUNNING LAKE & MOUNTAIN VIEWS


79785 OLYMPIA FIELDS, LA QUINTA

|


$625,000


79785 OLYMPIA FIELDS, LA QUINTA

 * Home
 * Gallery
 * Features
 * Neighborhood
 * Maps
 * Agent Info
 * Schedule
 * Contact

Toggle navigation
 * Home
 * Gallery
 * Features
 * Neighborhood
 * Maps
 * Agent Info
 * Schedule
 * Contact


ALL PROPERTY PHOTOS


View more


PROPERTY DETAILS

Bedrooms 3
Bathrooms 2.5
Square Feet 1,621 sq ft
Neighborhood PGA West


OWN A LA QUINTA GEM

Welcome to this stunning remodeled townhouse in the exclusive PGA West community
of La Quinta. This 3-bedroom, 2.5-bathroom gem boasts magnificent views of the
serene lake and the majestic Santa Rosa Mountains. The dramatic living room,
with its double-height ceiling and expansive floor-to-ceiling windows, floods
the space with natural light, seamlessly connecting to a private patio through
two sets of sliding glass doors—perfect for indoor/outdoor living and
entertaining.

Culinary enthusiasts will adore the remodeled chef's kitchen, equipped with
granite countertops and stainless steel appliances, including a 4-burner gas
range. Host family and friends in the spacious formal dining room. A cozy den
and a remodeled half bath complete the main level.

Upstairs, the primary bedroom features an attached deck, walk-in closet, and a
luxurious remodeled en-suite bath. Two additional bedrooms and a fully remodeled
guest bath provide ample space for family or guests.

Additional features include a 2-car private garage and access to a picturesque
resort-style gated community with pools, a spa, and the option for a golf club
membership. Don't miss the opportunity to make this breathtaking townhouse your
new home. Schedule a viewing today!

Less than a mile to the Coachella Festival and Stagecoach.

HOA dues: $734/mo. (includes 24hr gated security, internet, cable, building
maintenance, landscaping and pest control)




NEIGHBORHOOD

PGA WEST Residential Association HOA is a gated, guarded community nestled in
the shadows of the Santa Rosa Mountains of Southern California’s picturesque
Coachella Valley. Our homeowners enjoy spectacular views of manicured fairways
and rugged mountains – often both! And colorful sunsets over the mountains are
breathtaking.

Our Association is large and diverse. It includes 1,354 condominiums and 68
custom homes surrounding the PGA WEST Palmer and Stadium courses. The
Association is responsible for the upkeep of the condominiums as well as the
common area inside the perimeter wall, which includes five private lakes, 54
pools with spas and all landscaping, irrigation and ambient lighting throughout
the property.
Keep reading
PGA WEST Residential Association HOA is a gated, guarded community nestled in
the shadows of the Santa Rosa Mountains of Southern California’s picturesque
Coachella Valley. Our homeowners enjoy spectacular views of manicured fairways
and rugged mountains – often both! And colorful sunsets over the mountains are
breathtaking.

Our Association is large and diverse. It includes 1,354 condominiums and 68
custom homes surrounding the PGA WEST Palmer and Stadium courses. The
Association is responsible for the upkeep of the condominiums as well as the
common area inside the perimeter wall, which includes five private lakes, 54
pools with spas and all landscaping, irrigation and ambient lighting throughout
the property.
View more


John LePage

Corcoran Icon Properties

Broker Associate, CPA, CLHMS

DRE: #01474495 Cell: 415.846.4074



johnlepageRE@gmail.com



www.johnlepage.com

2012 - 2023 Top Producer, Over $440M Sold


SCHEDULE

Upcoming Events

Saturday

Oct 5

Open House Tours

10:00 AM - 12:00 PM

Sunday

Oct 6

Open House Tours

10:00 AM - 12:00 PM



Request an appointment


GET IN TOUCH

NAME:
NAME Name cannot be empty
EMAIL:
EMAIL Email cannot be empty Provide a valid email address
PHONE:
PHONE
Phone number cannot be empty
MESSAGE:
MESSAGE
Message cannot be empty

The site is protected by reCAPTCHA and the Google Privacy Policy and Terms of
Service apply.


Send


GET IN TOUCH

NAME:
NAME Name cannot be empty
EMAIL:
EMAIL Email cannot be empty Provide a valid email address
PHONE:
PHONE
Phone number cannot be empty
MESSAGE:
MESSAGE
Message cannot be empty

The site is protected by reCAPTCHA and the Google Privacy Policy and Terms of
Service apply.


Send


THANK YOU!

Your message has been received. We will reply using one of the contact methods
provided in your submission.


SORRY, THERE WAS A PROBLEM

Your message could not be sent. Please refresh the page and try again in a few
minutes, or reach out directly using the agent contact information below.

John LePage

Corcoran Icon Properties

Broker Associate, CPA, CLHMS

DRE: #01474495 Cell: 415.846.4074

johnlepageRE@gmail.com

www.johnlepage.com
Email Us Email Us Email Us
Home
Agent Login

Disclaimers

Floor Plans:. All square footage is approximate. Floor plans, dimensions and
square footage are for marketing purposes only.

Schools:. Interested parties should independently verify school district
availability. School attendance is not guaranteed.

Information Accuracy:. Open Homes has not investigated or verified the accuracy
of information on this website. Buyers are responsible for verifying all
information they deem important.

Contact Us
Privacy Policy
Terms of Use
Accessibility Policy
Enable High-Contrast Mode

Follow us:

Facebook
Instagram
Vimeo
Twitter

© 2024 Open Homes Photography
Made with in California

1 / 47

PGA WEST Residential Association HOA is a gated, guarded community nestled in
the shadows of the Santa Rosa Mountains of Southern California’s picturesque
Coachella Valley. Our homeowners enjoy spectacular views of manicured fairways
and rugged mountains – often both! And colorful sunsets over the mountains are
breathtaking.

Our Association is large and diverse. It includes 1,354 condominiums and 68
custom homes surrounding the PGA WEST Palmer and Stadium courses. The
Association is responsible for the upkeep of the condominiums as well as the
common area inside the perimeter wall, which includes five private lakes, 54
pools with spas and all landscaping, irrigation and ambient lighting throughout
the property.
1 / 0