{"id":3628,"date":"2025-08-11T10:13:01","date_gmt":"2025-08-11T10:13:01","guid":{"rendered":"https:\/\/quintaproperty.com\/?page_id=3628"},"modified":"2026-05-27T10:31:36","modified_gmt":"2026-05-27T10:31:36","slug":"contact-old","status":"publish","type":"page","link":"https:\/\/quintaproperty.com\/fr\/contact\/","title":{"rendered":"Contact"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"3628\" class=\"elementor elementor-3628\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ef60489 e-con-full e-flex e-con e-parent\" data-id=\"ef60489\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-21fbf58 elementor-widget elementor-widget-template\" data-id=\"21fbf58\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"container\" data-elementor-id=\"9186\" class=\"elementor elementor-9186\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a5891d8 container-custom-width e-flex e-con-boxed e-con e-parent\" data-id=\"a5891d8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;sticky&quot;:&quot;top&quot;,&quot;sticky_offset&quot;:150,&quot;sticky_on&quot;:[&quot;widescreen&quot;,&quot;desktop&quot;,&quot;laptop&quot;],&quot;sticky_offset_tablet_extra&quot;:150,&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a439b65 elementor-widget elementor-widget-html\" data-id=\"a439b65\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\n\/* default hidden *\/\n.my-form-filter.djasdjf .frymo-checkboxes-wrapper {\n  display: none;\n}\n.my-form-filter.djasdjf * {\n  font-family: Lato, Helvetica, sans-serif !important;\n  font-size: 16px!important;\n}\n.my-form-filter.djasdjf legend {\n    margin: 0!important;\n    padding: 0!important;\n    display: flex!important;\n    align-items: center!important;\n    height: 39.5px!important;\n    padding-left: 10px!important;\n    cursor: pointer!important;\n}\n.my-form-filter.djasdjf .frymo-checkboxes-wrapper input {\n  display: none;\n}\n.my-form-filter.djasdjf .frymo-checkboxes-wrapper label {\n  width: 100%!important;\n}\n\/* show when fieldset is open *\/\n.my-form-filter .frymo-custom-fieldset.is-open .frymo-checkboxes-wrapper {\n  display: flex!important;\n}\n.my-form-filter .frymo-custom-fieldset.is-open .frymo-checkboxes-wrapper span:hover{\n  color: white;\n  background-color: rgba(1, 24, 65, 0.1)!important;\n}\n.my-form-filter .frymo-custom-fieldset.is-open .frymo-checkboxes-wrapper span:hover label{\n  color: rgba(1, 24, 65, 1);\n}\n.active-span:before {\n    content: \"\\2713\";\n    color: #031841;\n    position: absolute;\n    right: 10px;\n}\n.my-form-filter.djasdjf .active-span {\n}\n.my-form-filter.djasdjf .active-span label{\n}\n\n\n\/* keep your existing styles (specificity preserved) *\/\n.my-form-filter.djasdjf.kfgh23d.i23408sadh .frymo-checkboxes-wrapper {\n  flex-direction: column !important;\n  gap: 1px !important;\n  position: absolute !important;\n  background-color: white !important;\n  z-index: 100 !important;\n  width: 100% !important;\n}\n.my-form-filter.djasdjf.kfgh23d.i23408sadh .frymo-checkboxes-wrapper span {\n  padding: 0 !important;\n  padding-left: 10px !important;\n  padding-right: 10px !important;\n}\n\n<\/style>\n\n<script>\ndocument.addEventListener(\"DOMContentLoaded\", () => {\n  const container = document.querySelector(\".my-form-filter\");\n  if (!container) return;\n\n  const closeAll = () => {\n    container.querySelectorAll(\".frymo-custom-fieldset.is-open\")\n      .forEach(fs => fs.classList.remove(\"is-open\"));\n  };\n\n  \/\/ \u2705 click handler (unchanged logic)\n  container.addEventListener(\"click\", (event) => {\n    const legend      = event.target.closest(\".frymo-custom-fieldset > legend\");\n    const spanItem    = event.target.closest(\".frymo-checkboxes-wrapper span\");\n    const inDropdown  = event.target.closest(\".frymo-checkboxes-wrapper\");\n    const inFieldset  = event.target.closest(\".frymo-custom-fieldset\");\n\n    \/\/ 1) click on a span \u2192 toggle checkbox\n    if (spanItem) {\n      const input = spanItem.querySelector(\"input[type='checkbox']\");\n      const clickedLabel = event.target.closest(\"label\");\n      if (input && !input.disabled && event.target !== input && !clickedLabel) {\n        input.click();\n      }\n      return;\n    }\n\n    \/\/ 2) click on legend \u2192 toggle dropdown\n    if (legend) {\n      const fs = legend.closest(\".frymo-custom-fieldset\");\n      const dd = fs?.querySelector(\".frymo-checkboxes-wrapper\");\n\n      container.querySelectorAll(\".frymo-custom-fieldset.is-open\")\n        .forEach(other => { if (other !== fs) other.classList.remove(\"is-open\"); });\n\n      fs.classList.toggle(\"is-open\");\n\n      if (dd) {\n        const w = legend.getBoundingClientRect().width + \"px\";\n        dd.style.setProperty(\"width\", w, \"important\");\n      }\n      return;\n    }\n\n    \/\/ 3) clicks inside dropdown \u2192 do nothing\n    if (inDropdown) return;\n\n    \/\/ 4) clicks inside fieldset (but not legend) \u2192 close\n    if (inFieldset) { closeAll(); return; }\n  });\n\n  \/\/ click outside \u2192 close all\n  document.addEventListener(\"click\", (event) => {\n    if (!event.target.closest(\".my-form-filter\")) closeAll();\n  });\n\n  \/\/ ESC key closes all\n  document.addEventListener(\"keydown\", (event) => {\n    if (event.key === \"Escape\") closeAll();\n  });\n\n  \/\/ \u2705 fix for mobile: forward touchstart \u2192 click\n  document.querySelectorAll('.frymo-custom-fieldset > legend').forEach(legend => {\n    legend.style.cursor = 'pointer'; \/\/ ensures iOS treats it clickable\n    legend.addEventListener('touchstart', function(e) {\n      e.preventDefault(); \/\/ prevents double firing\n      legend.click();     \/\/ manually trigger click\n    }, { passive: false });\n  });\n\n  \/\/ active-span sync\n  const setSpanActiveFromInput = (input) => {\n    const span = input.closest(\".frymo-checkboxes-wrapper span\");\n    if (!span) return;\n    span.classList.toggle(\"active-span\", input.checked);\n  };\n\n  container.querySelectorAll(\".frymo-checkboxes-wrapper input[type='checkbox']\")\n    .forEach(setSpanActiveFromInput);\n\n  container.addEventListener(\"change\", (event) => {\n    const input = event.target.closest(\".frymo-checkboxes-wrapper input[type='checkbox']\");\n    if (!input) return;\n    setSpanActiveFromInput(input);\n  });\n\n  container.addEventListener(\"reset\", () => {\n    setTimeout(() => {\n      container.querySelectorAll(\".frymo-checkboxes-wrapper input[type='checkbox']\")\n        .forEach(setSpanActiveFromInput);\n    }, 0);\n  });\n});\n<\/script>\n\n<script>\ndocument.addEventListener(\"DOMContentLoaded\", function () {\n  \/\/ Translation map: German -> English\n  const translations = {\n    \"All Object Types\": \"All Object Types\", \/\/ already English\n    \"Grundst\u00fcck\": \"Plot\",\n    \"Haus\": \"Villa\",\n    \"\u2014 Bauernhaus\": \"\u2014 Farmhouse\",\n    \"\u2014 Doppelhaush\u00e4lfte\": \"\u2014 Semi-detached House\",\n    \"\u2014 Einfamilienhaus\": \"\u2014 Single-family House\",\n    \"\u2014 Mehrfamilienhaus\": \"\u2014 Multi-family House\",\n    \"\u2014 Reihenmittelhaus\": \"\u2014 Terraced House\",\n    \"\u2014 Stadthaus\": \"\u2014 Townhouse\",\n    \"\u2014 Villa\": \"\u2014 Villa\",\n    \"\u2014 Zweifamilienhaus\": \"\u2014 Two-family House\",\n    \"Wohnung\": \"Apartment\",\n    \"\u2014 Dachgeschosswohnung\": \"\u2014 Attic Apartment\",\n    \"\u2014 Erdgeschosswohnung\": \"\u2014 Ground Floor Apartment\",\n    \"\u2014 Etagenwohnung\": \"\u2014 Floor Apartment\",\n    \"\u2014 Penthousewohnung\": \"\u2014 Penthouse Apartment\"\n  };\n\n  \/\/ Find all labels inside the wrapper\n  document.querySelectorAll(\".frymo-checkboxes-wrapper label\").forEach(label => {\n    const text = label.textContent.trim();\n    if (translations[text]) {\n      label.textContent = translations[text];\n    }\n  });\n});\n<\/script>\n<script>\ndocument.addEventListener('DOMContentLoaded', function () {\n  \/\/ 1) Try the most reliable hook: the label tied to the \"type-all\" checkbox\n  var label = document.querySelector('label[for$=\"type-all\"]');\n\n  \/\/ 2) Fallback: find a label whose text is exactly \"All Object Types\"\n  if (!label) {\n    label = Array.from(document.querySelectorAll('label'))\n      .find(function (el) { return el.textContent.trim().toLowerCase() === 'all object types'; });\n  }\n\n  if (label) {\n    label.textContent = 'All Property Types';\n  }\n});\n<\/script>\n\n<!--script that helps to close the dropdowns when search is clicked-->\n<script>\n    document.addEventListener('DOMContentLoaded', () => {\n  \/\/ Replace 'your-form-class' with the actual class name of your form\n  const forms = document.querySelectorAll('form.your-form-class');\n\n  forms.forEach(form => {\n    \/\/ Find the search button inside this form (adjust selector if needed)\n    const searchButton = form.querySelector('button[type=\"submit\"], button.search-button');\n\n    if (searchButton) {\n      searchButton.addEventListener('click', () => {\n        \/\/ Find all fieldsets that are currently open\n        const openFieldsets = form.querySelectorAll('fieldset.is-open');\n        \n        openFieldsets.forEach(fieldset => {\n          fieldset.classList.remove('is-open');\n        });\n\n        console.log('All open fieldsets closed.');\n      });\n    }\n  });\n});\n\n\n<\/script>\n\n\n<!--update the legends -->\n\n<script>\ndocument.addEventListener(\"DOMContentLoaded\", () => {\n  const container = document.querySelector(\".my-form-filter\");\n  if (!container) return;\n\n  \/\/ Store original legend text so we can restore it cleanly\n  container.querySelectorAll(\".frymo-custom-fieldset > legend\").forEach(legend => {\n    if (!legend.dataset.baseText) {\n      legend.dataset.baseText = legend.textContent.trim();\n    }\n  });\n\n  const getSelectedLabels = (fieldset) => {\n    return Array.from(fieldset.querySelectorAll(\".frymo-checkboxes-wrapper input[type='checkbox']:checked\"))\n      .map(input => {\n        const label = fieldset.querySelector(`label[for=\"${CSS.escape(input.id)}\"]`);\n        return (label ? label.textContent : \"\").trim();\n      })\n      .filter(Boolean);\n  };\n\n  const updateLegend = (fieldset) => {\n    const legend = fieldset.querySelector(\":scope > legend\");\n    if (!legend) return;\n\n    const base = legend.dataset.baseText || legend.textContent.trim();\n    const selected = getSelectedLabels(fieldset);\n\n    \/\/ Show: \"Location: Vale do Lobo, Loul\u00e9\" (truncate nicely if long)\n    if (selected.length === 0) {\n      legend.textContent = base;\n      return;\n    }\n\n    const maxItems = 3; \/\/ tweak if you want more\/less\n    const shown = selected.slice(0, maxItems);\n    const extra = selected.length - shown.length;\n\n    legend.textContent = `${shown.join(\", \")}${extra > 0 ? ` +${extra}` : \"\"}`;\n  };\n\n  const updateAllLegends = () => {\n    container.querySelectorAll(\".frymo-custom-fieldset\").forEach(updateLegend);\n  };\n\n  \/\/ Initial paint (handles pre-checked defaults)\n  updateAllLegends();\n\n  \/\/ Update when any checkbox changes (covers clicks\/taps\/label clicks\/programmatic changes)\n  container.addEventListener(\"change\", (e) => {\n    const input = e.target.closest(\".frymo-checkboxes-wrapper input[type='checkbox']\");\n    if (!input) return;\n    const fieldset = input.closest(\".frymo-custom-fieldset\");\n    if (fieldset) updateLegend(fieldset);\n  });\n\n  \/\/ If your form can be reset\n  container.addEventListener(\"reset\", () => {\n    setTimeout(updateAllLegends, 0);\n  });\n});\n<\/script>\n\n<!--\/all-->\n<script>\ndocument.addEventListener(\"DOMContentLoaded\", () => {\n  const container = document.querySelector(\".my-form-filter\");\n  if (!container) return;\n\n  \/\/ Find the Location fieldset (you already have data-base-text=\"Location\" in your markup)\n  const locationFieldset =\n    container.querySelector('.frymo-custom-fieldset > legend[data-base-text=\"Location\"]')?.closest(\".frymo-custom-fieldset\") ||\n    Array.from(container.querySelectorAll(\".frymo-custom-fieldset\")).find(fs => {\n      const lg = fs.querySelector(\":scope > legend\");\n      return (lg?.textContent || \"\").trim().toLowerCase() === \"location\";\n    });\n\n  if (!locationFieldset) return;\n\n  const wrapper = locationFieldset.querySelector(\".frymo-checkboxes-wrapper\");\n  if (!wrapper) return;\n\n  \/\/ avoid duplicates\n  if (wrapper.querySelector('[data-all-locations=\"1\"]')) return;\n\n  const allId = \"all-locations-\" + Math.random().toString(36).slice(2, 10);\n\n  \/\/ Create row\n  const span = document.createElement(\"span\");\n  span.setAttribute(\"data-all-locations\", \"1\");\n\n  const allCb = document.createElement(\"input\");\n  allCb.type = \"checkbox\";\n  allCb.id = allId;\n  allCb.name = \"udft_Location_Web_New_all\";\n  allCb.value = \"all\";\n\n  const label = document.createElement(\"label\");\n  label.htmlFor = allId;\n  label.textContent = \"All Locations\";\n\n  span.appendChild(allCb);\n  span.appendChild(label);\n  wrapper.appendChild(span);\n\n  const setActiveSpan = (cb) => {\n    const sp = cb.closest(\"span\");\n    if (!sp) return;\n    sp.classList.toggle(\"active-span\", cb.checked);\n  };\n\n  const getOtherCbs = () =>\n    Array.from(wrapper.querySelectorAll('input[type=\"checkbox\"]'))\n      .filter(cb => cb !== allCb && !cb.disabled);\n\n  \/\/ IMPORTANT: toggle by CLICKING (not by setting .checked)\n  const clickToState = (cb, desired) => {\n    if (cb.checked === desired) return;\n    cb.click(); \/\/ triggers whatever internal listeners Frymo\/Elementor has\n  };\n\n  \/\/ When All Locations toggles: click all others into same state\n  allCb.addEventListener(\"change\", () => {\n    const desired = allCb.checked;\n    getOtherCbs().forEach(cb => clickToState(cb, desired));\n    setActiveSpan(allCb);\n  });\n\n  \/\/ Sync All Locations when user changes individual options\n  wrapper.addEventListener(\"change\", (e) => {\n    const cb = e.target.closest('input[type=\"checkbox\"]');\n    if (!cb || cb === allCb) return;\n\n    const others = getOtherCbs();\n    const allChecked = others.length > 0 && others.every(x => x.checked);\n\n    \/\/ If all checked -> All Locations checked, else unchecked\n    \/\/ (No indeterminate since inputs are hidden anyway)\n    if (allCb.checked !== allChecked) {\n      allCb.checked = allChecked;\n      allCb.dispatchEvent(new Event(\"change\", { bubbles: true })); \/\/ keep your other scripts in sync\n    }\n\n    setActiveSpan(allCb);\n  });\n\n  \/\/ initial sync (if defaults are pre-checked)\n  {\n    const others = getOtherCbs();\n    const allChecked = others.length > 0 && others.every(x => x.checked);\n    allCb.checked = allChecked;\n    setActiveSpan(allCb);\n  }\n});\n<\/script>\n\n\t\t\t\t<\/div>\n\t\t\t\t<div data-frymo-query-id=\"\" data-initial-settings=\"{&quot;marketing_type&quot;:&quot;&quot;,&quot;use_types&quot;:&quot;&quot;,&quot;type&quot;:&quot;&quot;,&quot;country&quot;:&quot;&quot;,&quot;location&quot;:&quot;&quot;,&quot;agent&quot;:&quot;&quot;,&quot;radius&quot;:&quot;&quot;,&quot;search_string&quot;:&quot;&quot;,&quot;price_from&quot;:&quot;&quot;,&quot;price_to&quot;:&quot;&quot;,&quot;rooms_from&quot;:&quot;&quot;,&quot;rooms_to&quot;:&quot;&quot;,&quot;rooms_exact&quot;:&quot;&quot;,&quot;bedrooms_from&quot;:&quot;&quot;,&quot;bedrooms_to&quot;:&quot;&quot;,&quot;bedrooms_exact&quot;:&quot;&quot;,&quot;bathrooms_from&quot;:&quot;&quot;,&quot;bathrooms_to&quot;:&quot;&quot;,&quot;bathrooms_exact&quot;:&quot;&quot;,&quot;area_from&quot;:&quot;&quot;,&quot;area_to&quot;:&quot;&quot;,&quot;area_type&quot;:&quot;&quot;,&quot;features&quot;:&quot;&quot;,&quot;form_action&quot;:&quot;reload&quot;,&quot;redirect_url&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/quintaproperty.com\\\/your-search-results\\\/&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;,&quot;custom_attributes&quot;:&quot;&quot;},&quot;query_id&quot;:&quot;&quot;}\" class=\"elementor-element elementor-element-a8531e0 my-form-filter djasdjf kfgh23d i23408sadh elementor-widget__width-initial elementor-widget elementor-widget-frymo-advanced-search-bar\" data-id=\"a8531e0\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"ddownMenuFilter\" data-widget_type=\"frymo-advanced-search-bar.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<form class=\"frymo-form frymo-advanced-search-bar\"><fieldset class=\"elementor-repeater-item-a59a53f frymo-fieldset frymo-custom-fieldset\"><legend>Location<\/legend><div class=\"frymo-checkboxes-wrapper udft_Location_Web_New-wrapper\"><span><input type=\"checkbox\" id=\"a8531e0-a59a53f-udft-Location-Web-New-370\" name=\"udft_Location_Web_New\" value=\"370\" ><label for=\"a8531e0-a59a53f-udft-Location-Web-New-370\">Central Algarve<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-a59a53f-udft-Location-Web-New-371\" name=\"udft_Location_Web_New\" value=\"371\" ><label for=\"a8531e0-a59a53f-udft-Location-Web-New-371\">Quinta do Lago<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-a59a53f-udft-Location-Web-New-372\" name=\"udft_Location_Web_New\" value=\"372\" ><label for=\"a8531e0-a59a53f-udft-Location-Web-New-372\">Loul\u00e9<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-a59a53f-udft-Location-Web-New-373\" name=\"udft_Location_Web_New\" value=\"373\" ><label for=\"a8531e0-a59a53f-udft-Location-Web-New-373\">Vale do Lobo<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-a59a53f-udft-Location-Web-New-389\" name=\"udft_Location_Web_New\" value=\"389\" ><label for=\"a8531e0-a59a53f-udft-Location-Web-New-389\">Around QDL &amp; VDL<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-a59a53f-udft-Location-Web-New-390\" name=\"udft_Location_Web_New\" value=\"390\" ><label for=\"a8531e0-a59a53f-udft-Location-Web-New-390\">East Algarve<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-a59a53f-udft-Location-Web-New-391\" name=\"udft_Location_Web_New\" value=\"391\" ><label for=\"a8531e0-a59a53f-udft-Location-Web-New-391\">Outside Algarve<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-a59a53f-udft-Location-Web-New-392\" name=\"udft_Location_Web_New\" value=\"392\" ><label for=\"a8531e0-a59a53f-udft-Location-Web-New-392\">Vilamoura<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-a59a53f-udft-Location-Web-New-393\" name=\"udft_Location_Web_New\" value=\"393\" ><label for=\"a8531e0-a59a53f-udft-Location-Web-New-393\">West Algarve<\/label><\/span><\/div><\/fieldset><fieldset class=\"elementor-repeater-item-124e4fe frymo-fieldset frymo-custom-fieldset\"><legend>Property Type<\/legend><div class=\"frymo-checkboxes-wrapper udft_qp_property_type-wrapper\"><span><input type=\"checkbox\" id=\"a8531e0-124e4fe-udft-qp-property-type-394\" name=\"udft_qp_property_type\" value=\"394\" ><label for=\"a8531e0-124e4fe-udft-qp-property-type-394\">Villa<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-124e4fe-udft-qp-property-type-395\" name=\"udft_qp_property_type\" value=\"395\" ><label for=\"a8531e0-124e4fe-udft-qp-property-type-395\">Townhouse<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-124e4fe-udft-qp-property-type-397\" name=\"udft_qp_property_type\" value=\"397\" ><label for=\"a8531e0-124e4fe-udft-qp-property-type-397\">Apartment<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-124e4fe-udft-qp-property-type-398\" name=\"udft_qp_property_type\" value=\"398\" ><label for=\"a8531e0-124e4fe-udft-qp-property-type-398\">Investment Opportunity<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-124e4fe-udft-qp-property-type-400\" name=\"udft_qp_property_type\" value=\"400\" ><label for=\"a8531e0-124e4fe-udft-qp-property-type-400\">Building Plot \/ Project<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-124e4fe-udft-qp-property-type-403\" name=\"udft_qp_property_type\" value=\"403\" ><label for=\"a8531e0-124e4fe-udft-qp-property-type-403\">New Homes<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-124e4fe-udft-qp-property-type-492\" name=\"udft_qp_property_type\" value=\"492\" ><label for=\"a8531e0-124e4fe-udft-qp-property-type-492\">Exclusive Listings<\/label><\/span><\/div><\/fieldset><fieldset class=\"elementor-repeater-item-2799810 frymo-fieldset frymo-custom-fieldset\"><legend>Bedrooms<\/legend><div class=\"frymo-checkboxes-wrapper udft_bed_band-wrapper\"><span><input type=\"checkbox\" id=\"a8531e0-2799810-udft-bed-band-323\" name=\"udft_bed_band\" value=\"323\" ><label for=\"a8531e0-2799810-udft-bed-band-323\">1<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-2799810-udft-bed-band-324\" name=\"udft_bed_band\" value=\"324\" ><label for=\"a8531e0-2799810-udft-bed-band-324\">2<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-2799810-udft-bed-band-327\" name=\"udft_bed_band\" value=\"327\" ><label for=\"a8531e0-2799810-udft-bed-band-327\">3<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-2799810-udft-bed-band-328\" name=\"udft_bed_band\" value=\"328\" ><label for=\"a8531e0-2799810-udft-bed-band-328\">4<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-2799810-udft-bed-band-336\" name=\"udft_bed_band\" value=\"336\" ><label for=\"a8531e0-2799810-udft-bed-band-336\">5<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-2799810-udft-bed-band-337\" name=\"udft_bed_band\" value=\"337\" ><label for=\"a8531e0-2799810-udft-bed-band-337\">More<\/label><\/span><\/div><\/fieldset><fieldset class=\"elementor-repeater-item-88d39da frymo-fieldset frymo-custom-fieldset\"><legend>Price<\/legend><div class=\"frymo-checkboxes-wrapper udft_price_band-wrapper\"><span><input type=\"checkbox\" id=\"a8531e0-88d39da-udft-price-band-329\" name=\"udft_price_band\" value=\"329\" ><label for=\"a8531e0-88d39da-udft-price-band-329\">\u20ac 1,000,000 \u2013 2,000,000<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-88d39da-udft-price-band-331\" name=\"udft_price_band\" value=\"331\" ><label for=\"a8531e0-88d39da-udft-price-band-331\">\u20ac 2,000,000 - 3,000,000<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-88d39da-udft-price-band-332\" name=\"udft_price_band\" value=\"332\" ><label for=\"a8531e0-88d39da-udft-price-band-332\">\u20ac 3,000,000 - 4,000,000<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-88d39da-udft-price-band-333\" name=\"udft_price_band\" value=\"333\" ><label for=\"a8531e0-88d39da-udft-price-band-333\">\u20ac 4,000,000 - 5,000,000<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-88d39da-udft-price-band-334\" name=\"udft_price_band\" value=\"334\" ><label for=\"a8531e0-88d39da-udft-price-band-334\">\u20ac 5,000,000 - 10,000,000<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-88d39da-udft-price-band-335\" name=\"udft_price_band\" value=\"335\" ><label for=\"a8531e0-88d39da-udft-price-band-335\">Over \u20ac 10,000,000<\/label><\/span><span><input type=\"checkbox\" id=\"a8531e0-88d39da-udft-price-band-409\" name=\"udft_price_band\" value=\"409\" ><label for=\"a8531e0-88d39da-udft-price-band-409\">Up to \u20ac 1,000,000<\/label><\/span><\/div><\/fieldset><fieldset class=\"elementor-repeater-item-30bb3cb frymo-fieldset frymo-search-string-fieldset\"><legend><\/legend><label><input type=\"text\" name=\"search_string\" class=\"frymo-input\" placeholder=\"Reference Code\" \/><\/label><input type=\"hidden\" name=\"s_fields\" value=\"external_id,internal_id\" \/><\/fieldset><fieldset class=\"elementor-repeater-item-0410092 frymo-submit-button-fieldset frymo-button-fieldset button-align-justify frymo-submit-mobile-bottom\"><label><button class=\"frymo-submit\" type=\"submit\">Search<\/button><\/label><\/fieldset><\/form>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8427481 e-flex e-con-boxed e-con e-parent\" data-id=\"8427481\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-0f87f71 e-con-full e-flex e-con e-child\" data-id=\"0f87f71\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e3e647f elementor-widget elementor-widget-heading\" data-id=\"e3e647f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Get in Touch with Our Property Specialists<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a2f3789 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"a2f3789\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_mouse&quot;:&quot;yes&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>We\u2019d be delighted to assist you in finding your ideal property. Simply share your details below, and a member of our expert team will be in touch promptly. Once we understand your requirements, we will provide you with tailored options and dedicated support at every step.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-81d7718 elementor-widget elementor-widget-image\" data-id=\"81d7718\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"600\" height=\"600\" src=\"https:\/\/quintaproperty.com\/wp-content\/uploads\/2026\/01\/IMG_2428-600x600.jpeg\" class=\"attachment-ocean-thumb-m size-ocean-thumb-m wp-image-33070\" alt=\"Contact\" srcset=\"https:\/\/quintaproperty.com\/wp-content\/uploads\/2026\/01\/IMG_2428-600x600.jpeg 600w, https:\/\/quintaproperty.com\/wp-content\/uploads\/2026\/01\/IMG_2428-150x150.jpeg 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-40a8580 e-flex e-con-boxed e-con e-parent\" data-id=\"40a8580\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1a92775 elementor-widget elementor-widget-form\" data-id=\"1a92775\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;step_next_label&quot;:&quot;Next&quot;,&quot;step_previous_label&quot;:&quot;Previous&quot;,&quot;button_width_laptop&quot;:&quot;100&quot;,&quot;button_width&quot;:&quot;100&quot;,&quot;step_type&quot;:&quot;number_text&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;}\" data-widget_type=\"form.default\">\n\t\t\t\t\t\t\t<form class=\"elementor-form\" method=\"post\" name=\"New Form\" aria-label=\"New Form\">\n\t\t\t<input type=\"hidden\" name=\"post_id\" value=\"3628\"\/>\n\t\t\t<input type=\"hidden\" name=\"form_id\" value=\"1a92775\"\/>\n\t\t\t<input type=\"hidden\" name=\"referer_title\" value=\"Contact QP Savills | Algarve Property Experts\" \/>\n\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"queried_id\" value=\"3628\"\/>\n\t\t\t\n\t\t\t<div class=\"elementor-form-fields-wrapper elementor-labels-above\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-f_name elementor-col-50 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-f_name\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tFirst Name *\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[f_name]\" id=\"form-field-f_name\" class=\"elementor-field elementor-size-md  elementor-field-textual\" placeholder=\"First Name *\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-l_name elementor-col-50 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-l_name\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tLast Name *\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[l_name]\" id=\"form-field-l_name\" class=\"elementor-field elementor-size-md  elementor-field-textual\" placeholder=\"Last Name *\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-select elementor-field-group elementor-column elementor-field-group-country elementor-col-50\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-country\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tCountry\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field elementor-select-wrapper remove-before \">\n\t\t\t<div class=\"select-caret-down-wrapper\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-caret-down\" viewBox=\"0 0 571.4 571.4\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M571 393Q571 407 561 418L311 668Q300 679 286 679T261 668L11 418Q0 407 0 393T11 368 36 357H536Q550 357 561 368T571 393Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t<select name=\"form_fields[country]\" id=\"form-field-country\" class=\"elementor-field-textual elementor-size-md\">\n\t\t\t\t\t\t\t\t\t<option value=\"Portugal\">Portugal<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"United Kingdom\">United Kingdom<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"United States of America\">United States of America<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Ireland\">Ireland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"France\">France<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Spain\">Spain<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Netherlands\">Netherlands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Germany\">Germany<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Afghanistan\">Afghanistan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Albania\">Albania<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Algeria\">Algeria<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Andorra\">Andorra<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Angola\">Angola<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Antigua and Barbuda\">Antigua and Barbuda<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Argentina\">Argentina<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Armenia\">Armenia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Australia\">Australia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Austria\">Austria<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Azerbaijan\">Azerbaijan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Bahamas\">Bahamas<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Bahrain\">Bahrain<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Bangladesh\">Bangladesh<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Barbados\">Barbados<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Belarus\">Belarus<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Belgium\">Belgium<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Belize\">Belize<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Benin\">Benin<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Bhutan\">Bhutan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Bolivia\">Bolivia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Bosnia and Herzegovina\">Bosnia and Herzegovina<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Botswana\">Botswana<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Brazil\">Brazil<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Brunei\">Brunei<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Bulgaria\">Bulgaria<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Burkina Faso\">Burkina Faso<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Burundi\">Burundi<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Cabo Verde\">Cabo Verde<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Cambodia\">Cambodia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Cameroon\">Cameroon<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Canada\">Canada<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Central African Republic\">Central African Republic<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Chad\">Chad<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Chile\">Chile<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"China\">China<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Colombia\">Colombia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Comoros\">Comoros<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Congo (Congo-Brazzaville)\">Congo (Congo-Brazzaville)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Costa Rica\">Costa Rica<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Croatia\">Croatia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Cuba\">Cuba<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Cyprus\">Cyprus<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Czechia (Czech Republic)\">Czechia (Czech Republic)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Democratic Republic of the Congo\">Democratic Republic of the Congo<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Denmark\">Denmark<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Djibouti\">Djibouti<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Dominica\">Dominica<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Dominican Republic\">Dominican Republic<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Ecuador\">Ecuador<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Egypt\">Egypt<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"El Salvador\">El Salvador<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Equatorial Guinea\">Equatorial Guinea<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Eritrea\">Eritrea<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Estonia\">Estonia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Eswatini\">Eswatini<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Ethiopia\">Ethiopia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Fiji\">Fiji<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Finland\">Finland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Gabon\">Gabon<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Gambia\">Gambia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Georgia\">Georgia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Ghana\">Ghana<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Greece\">Greece<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Grenada\">Grenada<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Guatemala\">Guatemala<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Guinea\">Guinea<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Guinea-Bissau\">Guinea-Bissau<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Guyana\">Guyana<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Haiti\">Haiti<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Holy See\">Holy See<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Honduras\">Honduras<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Hungary\">Hungary<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Iceland\">Iceland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"India\">India<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Indonesia\">Indonesia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Iran\">Iran<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Iraq\">Iraq<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Israel\">Israel<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Italy\">Italy<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Jamaica\">Jamaica<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Japan\">Japan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Jordan\">Jordan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Kazakhstan\">Kazakhstan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Kenya\">Kenya<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Kiribati\">Kiribati<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Kuwait\">Kuwait<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Kyrgyzstan\">Kyrgyzstan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Laos\">Laos<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Latvia\">Latvia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Lebanon\">Lebanon<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Lesotho\">Lesotho<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Liberia\">Liberia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Libya\">Libya<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Liechtenstein\">Liechtenstein<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Lithuania\">Lithuania<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Luxembourg\">Luxembourg<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Madagascar\">Madagascar<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Malawi\">Malawi<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Malaysia\">Malaysia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Maldives\">Maldives<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Mali\">Mali<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Malta\">Malta<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Marshall Islands\">Marshall Islands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Mauritania\">Mauritania<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Mauritius\">Mauritius<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Mexico\">Mexico<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Micronesia\">Micronesia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Moldova\">Moldova<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Monaco\">Monaco<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Mongolia\">Mongolia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Montenegro\">Montenegro<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Morocco\">Morocco<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Mozambique\">Mozambique<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Myanmar (Burma)\">Myanmar (Burma)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Namibia\">Namibia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Nauru\">Nauru<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Nepal\">Nepal<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"New Zealand\">New Zealand<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Nicaragua\">Nicaragua<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Niger\">Niger<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Nigeria\">Nigeria<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"North Korea\">North Korea<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"North Macedonia\">North Macedonia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Norway\">Norway<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Oman\">Oman<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Pakistan\">Pakistan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Palau\">Palau<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Palestine State\">Palestine State<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Panama\">Panama<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Papua New Guinea\">Papua New Guinea<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Paraguay\">Paraguay<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Peru\">Peru<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Philippines\">Philippines<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Poland\">Poland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Qatar\">Qatar<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Romania\">Romania<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Russia\">Russia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Rwanda\">Rwanda<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Saint Kitts and Nevis\">Saint Kitts and Nevis<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Saint Lucia\">Saint Lucia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Saint Vincent and the Grenadines\">Saint Vincent and the Grenadines<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Samoa\">Samoa<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"San Marino\">San Marino<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Sao Tome and Principe\">Sao Tome and Principe<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Saudi Arabia\">Saudi Arabia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Senegal\">Senegal<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Serbia\">Serbia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Seychelles\">Seychelles<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Sierra Leone\">Sierra Leone<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Singapore\">Singapore<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Slovakia\">Slovakia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Slovenia\">Slovenia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Solomon Islands\">Solomon Islands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Somalia\">Somalia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"South Africa\">South Africa<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"South Korea\">South Korea<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"South Sudan\">South Sudan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Sri Lanka\">Sri Lanka<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Sudan\">Sudan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Suriname\">Suriname<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Sweden\">Sweden<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Switzerland\">Switzerland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Syria\">Syria<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Tajikistan\">Tajikistan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Tanzania\">Tanzania<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Thailand\">Thailand<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Timor-Leste\">Timor-Leste<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Togo\">Togo<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Tonga\">Tonga<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Trinidad and Tobago\">Trinidad and Tobago<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Tunisia\">Tunisia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Turkey\">Turkey<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Turkmenistan\">Turkmenistan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Tuvalu\">Tuvalu<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Uganda\">Uganda<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Ukraine\">Ukraine<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"United Arab Emirates\">United Arab Emirates<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Uruguay\">Uruguay<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Uzbekistan\">Uzbekistan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Vanuatu\">Vanuatu<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Venezuela\">Venezuela<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Vietnam\">Vietnam<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Yemen\">Yemen<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Zambia\">Zambia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Zimbabwe\">Zimbabwe<\/option>\n\t\t\t\t\t\t\t<\/select>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-prefix elementor-col-50\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-prefix\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tMobile\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[prefix]\" id=\"form-field-prefix\" class=\"elementor-field elementor-size-md  elementor-field-textual\" placeholder=\"Mobile\" value=\"+351\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-email elementor-field-group elementor-column elementor-field-group-f_email elementor-col-100 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-f_email\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tEmail *\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"email\" name=\"form_fields[f_email]\" id=\"form-field-f_email\" class=\"elementor-field elementor-size-md  elementor-field-textual\" placeholder=\"Email *\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-message elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-message\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tMessage *\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t<textarea class=\"elementor-field-textual elementor-field  elementor-size-md\" name=\"form_fields[message]\" id=\"form-field-message\" rows=\"4\" placeholder=\"Message *\"><\/textarea>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-radio elementor-field-group elementor-column elementor-field-group-f_method_contact elementor-col-100 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-f_method_contact\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tPreferred method of contact\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t<div class=\"elementor-field-subgroup  elementor-subgroup-inline\"><span class=\"elementor-field-option\"><input type=\"radio\" value=\"Mobile\" id=\"form-field-f_method_contact-0\" name=\"form_fields[f_method_contact]\" required=\"required\"> <label for=\"form-field-f_method_contact-0\">Mobile<\/label><\/span><span class=\"elementor-field-option\"><input type=\"radio\" value=\"Email\" id=\"form-field-f_method_contact-1\" name=\"form_fields[f_method_contact]\" required=\"required\"> <label for=\"form-field-f_method_contact-1\">Email<\/label><\/span><span class=\"elementor-field-option\"><input type=\"radio\" value=\"WhatsApp\" id=\"form-field-f_method_contact-2\" name=\"form_fields[f_method_contact]\" required=\"required\"> <label for=\"form-field-f_method_contact-2\">WhatsApp<\/label><\/span><\/div>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-acceptance elementor-field-group elementor-column elementor-field-group-field_c298421 elementor-col-100 elementor-field-required\">\n\t\t\t\t\t\t\t<div class=\"elementor-field-subgroup\">\n\t\t\t<span class=\"elementor-field-option\">\n\t\t\t\t<input type=\"checkbox\" name=\"form_fields[field_c298421]\" id=\"form-field-field_c298421\" class=\"elementor-field elementor-size-md  elementor-acceptance-field\" required=\"required\">\n\t\t\t\t<label for=\"form-field-field_c298421\">To enable you to communicate with me, I agree to the terms in your <a href='\/privacy-policy'>Privacy Policy<\/a> which comply with GDPR.<\/label>\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-acceptance elementor-field-group elementor-column elementor-field-group-f_newsletter elementor-col-100\">\n\t\t\t\t\t\t\t<div class=\"elementor-field-subgroup\">\n\t\t\t<span class=\"elementor-field-option\">\n\t\t\t\t<input type=\"checkbox\" name=\"form_fields[f_newsletter]\" id=\"form-field-f_newsletter\" class=\"elementor-field elementor-size-md  elementor-acceptance-field\">\n\t\t\t\t<label for=\"form-field-f_newsletter\">Yes, I would like to receive the QP Savills newsletter with exclusive property updates, market insights, and news. I understand that I can unsubscribe at any time.<\/label>\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-recaptcha_v3 elementor-field-group elementor-column elementor-field-group-recaptcha_v3 elementor-col-100 recaptcha_v3-bottomright\">\n\t\t\t\t\t<div class=\"elementor-field\" id=\"form-field-recaptcha_v3\"><div class=\"elementor-g-recaptcha\" data-sitekey=\"6LdVI34sAAAAAAkntR74fwsqD5NRhPoUn4MAzVef\" data-type=\"v3\" data-action=\"Form\" data-badge=\"bottomright\" data-size=\"invisible\"><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text\">\n\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[field_72dde3d]\" id=\"form-field-field_72dde3d\" class=\"elementor-field elementor-size-md \" style=\"display:none !important;\">\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text\">\n\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[field_1a2b787]\" id=\"form-field-field_1a2b787\" class=\"elementor-field elementor-size-md \" style=\"display:none !important;\">\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text\">\n\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[field_d3953e2]\" id=\"form-field-field_d3953e2\" class=\"elementor-field elementor-size-md \" style=\"display:none !important;\">\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons\">\n\t\t\t\t\t<button class=\"elementor-button elementor-size-md\" type=\"submit\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Send<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/form>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-64b2fb7 elementor-widget elementor-widget-html\" data-id=\"64b2fb7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\r\ndocument.addEventListener('DOMContentLoaded', function() {\r\n  \/\/ \u0442\u043e\u0447\u043d\u0438\u0442\u0435 IDs \u043e\u0434 \u0442\u0432\u043e\u0458\u0430\u0442\u0430 \u0444\u043e\u0440\u043c\u0430\r\n  const countrySelect = document.querySelector('#form-field-country');\r\n  const phoneInput = document.querySelector('#form-field-prefix');\r\n\r\n  const countryPrefixes = {\r\n    'Portugal': '+351',\r\n    'United Kingdom': '+44',\r\n    'United States of America': '+1',\r\n    'Ireland': '+353',\r\n    'France': '+33',\r\n    'Spain': '+34',\r\n    'Netherlands': '+31',\r\n    'Germany': '+49',\r\n    'Afghanistan': '+93',\r\n    'Albania': '+355',\r\n    'Algeria': '+213',\r\n    'Andorra': '+376',\r\n    'Angola': '+244',\r\n    'Antigua and Barbuda': '+1268',\r\n    'Argentina': '+54',\r\n    'Armenia': '+374',\r\n    'Australia': '+61',\r\n    'Austria': '+43',\r\n    'Azerbaijan': '+994',\r\n    'Bahamas': '+1242',\r\n    'Bahrain': '+973',\r\n    'Bangladesh': '+880',\r\n    'Barbados': '+1246',\r\n    'Belarus': '+375',\r\n    'Belgium': '+32',\r\n    'Belize': '+501',\r\n    'Benin': '+229',\r\n    'Bhutan': '+975',\r\n    'Bolivia': '+591',\r\n    'Bosnia and Herzegovina': '+387',\r\n    'Botswana': '+267',\r\n    'Brazil': '+55',\r\n    'Brunei': '+673',\r\n    'Bulgaria': '+359',\r\n    'Burkina Faso': '+226',\r\n    'Burundi': '+257',\r\n    'Cabo Verde': '+238',\r\n    'Cambodia': '+855',\r\n    'Cameroon': '+237',\r\n    'Canada': '+1',\r\n    'Central African Republic': '+236',\r\n    'Chad': '+235',\r\n    'Chile': '+56',\r\n    'China': '+86',\r\n    'Colombia': '+57',\r\n    'Comoros': '+269',\r\n    'Congo (Congo-Brazzaville)': '+242',\r\n    'Costa Rica': '+506',\r\n    'Croatia': '+385',\r\n    'Cuba': '+53',\r\n    'Cyprus': '+357',\r\n    'Czechia (Czech Republic)': '+420',\r\n    'Democratic Republic of the Congo': '+243',\r\n    'Denmark': '+45',\r\n    'Djibouti': '+253',\r\n    'Dominica': '+1767',\r\n    'Dominican Republic': '+1',\r\n    'Ecuador': '+593',\r\n    'Egypt': '+20',\r\n    'El Salvador': '+503',\r\n    'Equatorial Guinea': '+240',\r\n    'Eritrea': '+291',\r\n    'Estonia': '+372',\r\n    'Eswatini': '+268',\r\n    'Ethiopia': '+251',\r\n    'Fiji': '+679',\r\n    'Finland': '+358',\r\n    'Gabon': '+241',\r\n    'Gambia': '+220',\r\n    'Georgia': '+995',\r\n    'Ghana': '+233',\r\n    'Greece': '+30',\r\n    'Grenada': '+1473',\r\n    'Guatemala': '+502',\r\n    'Guinea': '+224',\r\n    'Guinea-Bissau': '+245',\r\n    'Guyana': '+592',\r\n    'Haiti': '+509',\r\n    'Holy See': '+379',\r\n    'Honduras': '+504',\r\n    'Hungary': '+36',\r\n    'Iceland': '+354',\r\n    'India': '+91',\r\n    'Indonesia': '+62',\r\n    'Iran': '+98',\r\n    'Iraq': '+964',\r\n    'Israel': '+972',\r\n    'Italy': '+39',\r\n    'Jamaica': '+1876',\r\n    'Japan': '+81',\r\n    'Jordan': '+962',\r\n    'Kazakhstan': '+7',\r\n    'Kenya': '+254',\r\n    'Kiribati': '+686',\r\n    'Kuwait': '+965',\r\n    'Kyrgyzstan': '+996',\r\n    'Laos': '+856',\r\n    'Latvia': '+371',\r\n    'Lebanon': '+961',\r\n    'Lesotho': '+266',\r\n    'Liberia': '+231',\r\n    'Libya': '+218',\r\n    'Liechtenstein': '+423',\r\n    'Lithuania': '+370',\r\n    'Luxembourg': '+352',\r\n    'Madagascar': '+261',\r\n    'Malawi': '+265',\r\n    'Malaysia': '+60',\r\n    'Maldives': '+960',\r\n    'Mali': '+223',\r\n    'Malta': '+356',\r\n    'Marshall Islands': '+692',\r\n    'Mauritania': '+222',\r\n    'Mauritius': '+230',\r\n    'Mexico': '+52',\r\n    'Micronesia': '+691',\r\n    'Moldova': '+373',\r\n    'Monaco': '+377',\r\n    'Mongolia': '+976',\r\n    'Montenegro': '+382',\r\n    'Morocco': '+212',\r\n    'Mozambique': '+258',\r\n    'Myanmar (Burma)': '+95',\r\n    'Namibia': '+264',\r\n    'Nauru': '+674',\r\n    'Nepal': '+977',\r\n    'New Zealand': '+64',\r\n    'Nicaragua': '+505',\r\n    'Niger': '+227',\r\n    'Nigeria': '+234',\r\n    'North Korea': '+850',\r\n    'North Macedonia': '+389',\r\n    'Norway': '+47',\r\n    'Oman': '+968',\r\n    'Pakistan': '+92',\r\n    'Palau': '+680',\r\n    'Palestine State': '+970',\r\n    'Panama': '+507',\r\n    'Papua New Guinea': '+675',\r\n    'Paraguay': '+595',\r\n    'Peru': '+51',\r\n    'Philippines': '+63',\r\n    'Poland': '+48',\r\n    'Qatar': '+974',\r\n    'Romania': '+40',\r\n    'Russia': '+7',\r\n    'Rwanda': '+250',\r\n    'Saint Kitts and Nevis': '+1869',\r\n    'Saint Lucia': '+1758',\r\n    'Saint Vincent and the Grenadines': '+1784',\r\n    'Samoa': '+685',\r\n    'San Marino': '+378',\r\n    'Sao Tome and Principe': '+239',\r\n    'Saudi Arabia': '+966',\r\n    'Senegal': '+221',\r\n    'Serbia': '+381',\r\n    'Seychelles': '+248',\r\n    'Sierra Leone': '+232',\r\n    'Singapore': '+65',\r\n    'Slovakia': '+421',\r\n    'Slovenia': '+386',\r\n    'Solomon Islands': '+677',\r\n    'Somalia': '+252',\r\n    'South Africa': '+27',\r\n    'South Korea': '+82',\r\n    'South Sudan': '+211',\r\n    'Sri Lanka': '+94',\r\n    'Sudan': '+249',\r\n    'Suriname': '+597',\r\n    'Sweden': '+46',\r\n    'Switzerland': '+41',\r\n    'Syria': '+963',\r\n    'Tajikistan': '+992',\r\n    'Tanzania': '+255',\r\n    'Thailand': '+66',\r\n    'Timor-Leste': '+670',\r\n    'Togo': '+228',\r\n    'Tonga': '+676',\r\n    'Trinidad and Tobago': '+1868',\r\n    'Tunisia': '+216',\r\n    'Turkey': '+90',\r\n    'Turkmenistan': '+993',\r\n    'Tuvalu': '+688',\r\n    'Uganda': '+256',\r\n    'Ukraine': '+380',\r\n    'United Arab Emirates': '+971',\r\n    'Uruguay': '+598',\r\n    'Uzbekistan': '+998',\r\n    'Vanuatu': '+678',\r\n    'Venezuela': '+58',\r\n    'Vietnam': '+84',\r\n    'Yemen': '+967',\r\n    'Zambia': '+260',\r\n    'Zimbabwe': '+263'\r\n  };\r\n\r\n  if (countrySelect && phoneInput) {\r\n    countrySelect.addEventListener('change', function() {\r\n      const selected = this.options[this.selectedIndex].text.trim();\r\n      phoneInput.value = countryPrefixes[selected] || '';\r\n    });\r\n  }\r\n});\r\n<\/script>\r\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Prenez contact avec nos sp\u00e9cialistes de l'immobilier Nous serions ravis de vous aider \u00e0 trouver la propri\u00e9t\u00e9 id\u00e9ale. Il vous suffit de nous communiquer vos coordonn\u00e9es ci-dessous et un membre de notre \u00e9quipe d'experts vous contactera rapidement. Une fois que nous aurons compris vos besoins, nous vous proposerons des options sur mesure et un soutien d\u00e9vou\u00e9 \u00e0 chaque \u00e9tape.<\/p>","protected":false},"author":4,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_testimonial_rating":0,"ocean_post_layout":"","ocean_both_sidebars_style":"","ocean_both_sidebars_content_width":0,"ocean_both_sidebars_sidebars_width":0,"ocean_sidebar":"","ocean_second_sidebar":"","ocean_disable_margins":"enable","ocean_add_body_class":"","ocean_shortcode_before_top_bar":"","ocean_shortcode_after_top_bar":"","ocean_shortcode_before_header":"","ocean_shortcode_after_header":"","ocean_has_shortcode":"","ocean_shortcode_after_title":"","ocean_shortcode_before_footer_widgets":"","ocean_shortcode_after_footer_widgets":"","ocean_shortcode_before_footer_bottom":"","ocean_shortcode_after_footer_bottom":"","ocean_display_top_bar":"off","ocean_display_header":"on","ocean_header_style":"","ocean_center_header_left_menu":"","ocean_custom_header_template":"","ocean_custom_logo":0,"ocean_custom_retina_logo":0,"ocean_custom_logo_max_width":0,"ocean_custom_logo_tablet_max_width":0,"ocean_custom_logo_mobile_max_width":0,"ocean_custom_logo_max_height":0,"ocean_custom_logo_tablet_max_height":0,"ocean_custom_logo_mobile_max_height":0,"ocean_header_custom_menu":"","ocean_menu_typo_font_family":"","ocean_menu_typo_font_subset":"","ocean_menu_typo_font_size":0,"ocean_menu_typo_font_size_tablet":0,"ocean_menu_typo_font_size_mobile":0,"ocean_menu_typo_font_size_unit":"px","ocean_menu_typo_font_weight":"","ocean_menu_typo_font_weight_tablet":"","ocean_menu_typo_font_weight_mobile":"","ocean_menu_typo_transform":"","ocean_menu_typo_transform_tablet":"","ocean_menu_typo_transform_mobile":"","ocean_menu_typo_line_height":0,"ocean_menu_typo_line_height_tablet":0,"ocean_menu_typo_line_height_mobile":0,"ocean_menu_typo_line_height_unit":"","ocean_menu_typo_spacing":0,"ocean_menu_typo_spacing_tablet":0,"ocean_menu_typo_spacing_mobile":0,"ocean_menu_typo_spacing_unit":"","ocean_menu_link_color":"","ocean_menu_link_color_hover":"","ocean_menu_link_color_active":"","ocean_menu_link_background":"","ocean_menu_link_hover_background":"","ocean_menu_link_active_background":"","ocean_menu_social_links_bg":"","ocean_menu_social_hover_links_bg":"","ocean_menu_social_links_color":"","ocean_menu_social_hover_links_color":"","ocean_disable_title":"default","ocean_disable_heading":"default","ocean_post_title":"","ocean_post_subheading":"","ocean_post_title_style":"","ocean_post_title_background_color":"","ocean_post_title_background":0,"ocean_post_title_bg_image_position":"","ocean_post_title_bg_image_attachment":"","ocean_post_title_bg_image_repeat":"","ocean_post_title_bg_image_size":"","ocean_post_title_height":0,"ocean_post_title_bg_overlay":0.5,"ocean_post_title_bg_overlay_color":"","ocean_disable_breadcrumbs":"default","ocean_breadcrumbs_color":"","ocean_breadcrumbs_separator_color":"","ocean_breadcrumbs_links_color":"","ocean_breadcrumbs_links_hover_color":"","ocean_display_footer_widgets":"default","ocean_display_footer_bottom":"default","ocean_custom_footer_template":"","footnotes":""},"class_list":["post-3628","page","type-page","status-publish","hentry","entry"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.8 - aioseo.com -->\n\t<meta name=\"google-site-verification\" content=\"6nvDzyG7S6Dd8Bjw5lnlxomkGGH0XRuNFOCcGoub36Y\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/quintaproperty.com\/fr\/?post_type=frymo_queries&#038;p=3199\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"fr_FR\" \/>\n\t\t<meta property=\"og:site_name\" content=\"QP Savills \u2013 QP Savills\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Similar Properties by Location - QP Savills\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/quintaproperty.com\/fr\/?post_type=frymo_queries&#038;p=3199\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/quintaproperty.com\/wp-content\/uploads\/2025\/07\/qp-savills-logo-3-1.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/quintaproperty.com\/wp-content\/uploads\/2025\/07\/qp-savills-logo-3-1.png\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2025-08-07T11:25:08+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-01-09T08:37:05+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/QPSavills\/\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Similar Properties by Location - QP Savills\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/quintaproperty.com\/wp-content\/uploads\/2025\/07\/qp-savills-logo-3-1.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/quintaproperty.com\\\/fr\\\/?post_type=frymo_queries&p=3199#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/quintaproperty.com\\\/fr\\\/#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/quintaproperty.com\\\/fr\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/quintaproperty.com\\\/fr\\\/contact\\\/#listItem\",\"name\":\"Contact\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/quintaproperty.com\\\/fr\\\/contact\\\/#listItem\",\"position\":2,\"name\":\"Contact\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/quintaproperty.com\\\/fr\\\/#listItem\",\"name\":\"Home\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/quintaproperty.com\\\/fr\\\/#organization\",\"name\":\"QP Savills\",\"description\":\"QP Savills\",\"url\":\"https:\\\/\\\/quintaproperty.com\\\/fr\\\/\",\"telephone\":\"+351289396073\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/quintaproperty.com\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/cropped-qp-savills-logo-3-1.png\",\"@id\":\"https:\\\/\\\/quintaproperty.com\\\/fr\\\/?post_type=frymo_queries&p=3199\\\/#organizationLogo\",\"width\":600,\"height\":231,\"caption\":\"quinta properties\"},\"image\":{\"@id\":\"https:\\\/\\\/quintaproperty.com\\\/fr\\\/?post_type=frymo_queries&p=3199\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.instagram.com\\\/qpsavills\\\/\",\"https:\\\/\\\/www.facebook.com\\\/QPSavills\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/qp-savills\\\/\",\"https:\\\/\\\/www.youtube.com\\\/@qpsavills\",\"https:\\\/\\\/www.savills.com\\\/\"],\"knowsLanguage\":[\"en\",\"pt\",\"fr\",\"de\"],\"areaServed\":{\"@type\":\"Place\",\"name\":\"Algarve, Portugal\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/quintaproperty.com\\\/fr\\\/?post_type=frymo_queries&p=3199#webpage\",\"url\":\"https:\\\/\\\/quintaproperty.com\\\/fr\\\/?post_type=frymo_queries&p=3199\",\"name\":\"Similar Properties by Location - QP Savills\",\"inLanguage\":\"fr-FR\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quintaproperty.com\\\/fr\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/quintaproperty.com\\\/fr\\\/?post_type=frymo_queries&p=3199#breadcrumblist\"},\"datePublished\":\"2025-08-07T11:25:08+00:00\",\"dateModified\":\"2026-01-09T08:37:05+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/quintaproperty.com\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/quintaproperty.com\\\/fr\\\/\",\"name\":\"QP Savills\",\"description\":\"QP Savills\",\"inLanguage\":\"fr-FR\",\"publisher\":{\"@id\":\"https:\\\/\\\/quintaproperty.com\\\/fr\\\/#organization\"},\"potentialAction\":{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/quintaproperty.com\\\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>Similar Properties by Location - QP Savills<\/title>\n\n","aioseo_head_json":{"title":"Propri\u00e9t\u00e9s similaires par lieu - QP Savills","description":"","canonical_url":"https:\/\/quintaproperty.com\/fr\/?post_type=frymo_queries&p=3199","robots":"","keywords":"","webmasterTools":{"google-site-verification":"6nvDzyG7S6Dd8Bjw5lnlxomkGGH0XRuNFOCcGoub36Y","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/quintaproperty.com\/fr\/?post_type=frymo_queries&p=3199#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/quintaproperty.com\/fr\/#listItem","position":1,"name":"Home","item":"https:\/\/quintaproperty.com\/fr\/","nextItem":{"@type":"ListItem","@id":"https:\/\/quintaproperty.com\/fr\/contact\/#listItem","name":"Contact"}},{"@type":"ListItem","@id":"https:\/\/quintaproperty.com\/fr\/contact\/#listItem","position":2,"name":"Contact","previousItem":{"@type":"ListItem","@id":"https:\/\/quintaproperty.com\/fr\/#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/quintaproperty.com\/fr\/#organization","name":"QP Savills","description":"QP Savills","url":"https:\/\/quintaproperty.com\/fr\/","telephone":"+351289396073","logo":{"@type":"ImageObject","url":"https:\/\/quintaproperty.com\/wp-content\/uploads\/2025\/07\/cropped-qp-savills-logo-3-1.png","@id":"https:\/\/quintaproperty.com\/fr\/?post_type=frymo_queries&p=3199\/#organizationLogo","width":600,"height":231,"caption":"quinta properties"},"image":{"@id":"https:\/\/quintaproperty.com\/fr\/?post_type=frymo_queries&p=3199\/#organizationLogo"},"sameAs":["https:\/\/www.instagram.com\/qpsavills\/","https:\/\/www.facebook.com\/QPSavills\/","https:\/\/www.linkedin.com\/company\/qp-savills\/","https:\/\/www.youtube.com\/@qpsavills","https:\/\/www.savills.com\/"],"knowsLanguage":["en","pt","fr","de"],"areaServed":{"@type":"Place","name":"Algarve, Portugal"}},{"@type":"WebPage","@id":"https:\/\/quintaproperty.com\/fr\/?post_type=frymo_queries&p=3199#webpage","url":"https:\/\/quintaproperty.com\/fr\/?post_type=frymo_queries&p=3199","name":"Similar Properties by Location - QP Savills","inLanguage":"fr-FR","isPartOf":{"@id":"https:\/\/quintaproperty.com\/fr\/#website"},"breadcrumb":{"@id":"https:\/\/quintaproperty.com\/fr\/?post_type=frymo_queries&p=3199#breadcrumblist"},"datePublished":"2025-08-07T11:25:08+00:00","dateModified":"2026-01-09T08:37:05+00:00"},{"@type":"WebSite","@id":"https:\/\/quintaproperty.com\/fr\/#website","url":"https:\/\/quintaproperty.com\/fr\/","name":"QP Savills","description":"QP Savills","inLanguage":"fr-FR","publisher":{"@id":"https:\/\/quintaproperty.com\/fr\/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/quintaproperty.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}}]},"og:locale":"fr_FR","og:site_name":"QP Savills \u2013 QP Savills","og:type":"article","og:title":"Similar Properties by Location - QP Savills","og:url":"https:\/\/quintaproperty.com\/fr\/?post_type=frymo_queries&#038;p=3199","og:image":"https:\/\/quintaproperty.com\/wp-content\/uploads\/2025\/07\/qp-savills-logo-3-1.png","og:image:secure_url":"https:\/\/quintaproperty.com\/wp-content\/uploads\/2025\/07\/qp-savills-logo-3-1.png","article:published_time":"2025-08-07T11:25:08+00:00","article:modified_time":"2026-01-09T08:37:05+00:00","article:publisher":"https:\/\/www.facebook.com\/QPSavills\/","twitter:card":"summary_large_image","twitter:title":"Similar Properties by Location - QP Savills","twitter:image":"https:\/\/quintaproperty.com\/wp-content\/uploads\/2025\/07\/qp-savills-logo-3-1.png"},"aioseo_meta_data":{"post_id":"3628","title":"Contactez QP Savills | Experts immobiliers en Algarve","description":"Contactez QP Savills, vos experts immobiliers de confiance en Algarve. Nous vous aiderons \u00e0 trouver la maison de luxe id\u00e9ale en vous accompagnant \u00e0 chaque \u00e9tape avec des conseils personnalis\u00e9s.","keywords":null,"keyphrases":{"focus":{"keyphrase":"Contact","score":60,"analysis":{"keyphraseInTitle":{"score":9,"maxScore":9,"error":0},"keyphraseInDescription":{"score":9,"maxScore":9,"error":0},"keyphraseLength":{"score":9,"maxScore":9,"error":0,"length":1},"keyphraseInURL":{"score":5,"maxScore":5,"error":0},"keyphraseInIntroduction":{"score":3,"maxScore":9,"error":1},"keyphraseInSubHeadings":{"score":3,"maxScore":9,"error":1},"keyphraseInImageAlt":{"score":3,"maxScore":9,"error":1},"keywordDensity":{"score":0,"type":"low","maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"WebPage","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"seo_analyzer_scan_date":"2026-05-27 10:32:06","breadcrumb_settings":null,"limit_modified_date":false,"open_ai":null,"ai":{"faqs":[],"keyPoints":[],"titles":[],"descriptions":[],"socialPosts":{"email":[],"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2025-10-14 12:40:16","updated":"2026-05-27 10:58:23"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/quintaproperty.com\/fr\/\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\tContact\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/quintaproperty.com\/fr\/"},{"label":"Contact","link":"https:\/\/quintaproperty.com\/fr\/contact\/"}],"acf":[],"_links":{"self":[{"href":"https:\/\/quintaproperty.com\/fr\/wp-json\/wp\/v2\/pages\/3628","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/quintaproperty.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/quintaproperty.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/quintaproperty.com\/fr\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/quintaproperty.com\/fr\/wp-json\/wp\/v2\/comments?post=3628"}],"version-history":[{"count":3,"href":"https:\/\/quintaproperty.com\/fr\/wp-json\/wp\/v2\/pages\/3628\/revisions"}],"predecessor-version":[{"id":35648,"href":"https:\/\/quintaproperty.com\/fr\/wp-json\/wp\/v2\/pages\/3628\/revisions\/35648"}],"wp:attachment":[{"href":"https:\/\/quintaproperty.com\/fr\/wp-json\/wp\/v2\/media?parent=3628"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}