{"id":4010,"date":"2026-01-02T15:31:23","date_gmt":"2026-01-02T14:31:23","guid":{"rendered":"https:\/\/hotelisolaverde.com\/choose-the-room\/"},"modified":"2026-01-21T11:29:29","modified_gmt":"2026-01-21T10:29:29","slug":"choose-the-room","status":"publish","type":"page","link":"https:\/\/hotelisolaverde.com\/en\/choose-the-room\/","title":{"rendered":"Choose the room"},"content":{"rendered":"<section class=\"l-section wpb_row height_medium\"><div class=\"l-section-h i-cf\"><div class=\"g-cols vc_row via_flex valign_top type_default stacking_default\"><div class=\"vc_col-sm-12 wpb_column vc_column_container\"><div class=\"vc_column-inner\"><div class=\"wpb_wrapper\"><div class=\"w-html\"><!DOCTYPE html><br><html lang=\"en\">\n<head>\n<meta charset=\"UTF-8\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n<title>Find the ideal room<\/title>\n\n<style>\n:root {\n  --primary: #923471;\n  --soft: #f7f5f6;\n}\n\nbody {\n  margin: 0;\n  font-family: inherit;\n  background: #fff;\n  color: #222;\n}\n\n.wrapper {\n  max-width: 720px;\n  margin: 0 auto;\n  padding: 32px 16px;\n}\n\nh1 {\n  text-align: center;\n  font-size: 26px;\n  margin-bottom: 6px;\n}\n\n.subtitle {\n  text-align: center;\n  color: #666;\n  margin-bottom: 32px;\n}\n\n.step {\n  display: none;\n}\n\n.step.active {\n  display: block;\n}\n\n.question {\n  font-size: 20px;\n  text-align: center;\n  margin-bottom: 16px;\n}\n\n.options {\n  display: grid;\n  gap: 12px;\n}\n\n.option {\n  padding: 14px;\n  border: 2px solid #ddd;\n  border-radius: 10px;\n  text-align: center;\n  cursor: pointer;\n}\n\n.option:hover,\n.option.active {\n  border-color: var(--primary);\n  background: var(--soft);\n}\n\n.result {\n  display: none;\n  background: var(--soft);\n  padding: 24px;\n  border-radius: 14px;\n}\n\n.rank {\n  margin-bottom: 20px;\n}\n\n.rank h3 {\n  margin: 0 0 6px;\n}\n\n.rank span {\n  font-size: 14px;\n  color: #555;\n}\n\n.cta {\n  display: block;\n  margin-top: 24px;\n  text-align: center;\n  background: var(--primary);\n  color: #fff;\n  padding: 14px;\n  border-radius: 10px;\n  text-decoration: none;\n  font-weight: 600;\n}\n\n.secondary {\n  margin-top: 16px;\n  text-align: center;\n  font-size: 14px;\n}\n<\/style>\n<\/head>\n\n<body>\n\n<div class=\"wrapper\">\n\n<h1>Let\u2019s find the right room for you<\/h1>\n<p class=\"subtitle\">Answer a few questions and we\u2019ll suggest the best options for your stay.<\/p>\n\n<!-- STEP 0 -->\n<div class=\"step active\" data-step=\"pax\">\n  <div class=\"question\">How many guests will be staying?<\/div>\n  <div class=\"options\">\n    <div class=\"option\" data-value=\"1\">1 guest<\/div>\n    <div class=\"option\" data-value=\"2\">2 guests<\/div>\n    <div class=\"option\" data-value=\"3\">3 guests<\/div>\n    <div class=\"option\" data-value=\"4\">4 guests<\/div>\n  <\/div>\n<\/div>\n\n<!-- STEP 1 -->\n<div class=\"step\" data-step=\"people\">\n  <div class=\"question\">Who are you travelling with?<\/div>\n  <div class=\"options\">\n    <div class=\"option\" data-value=\"couple\">Couple<\/div>\n    <div class=\"option\" data-value=\"family\">Family<\/div>\n    <div class=\"option\" data-value=\"friends\">Friends<\/div>\n  <\/div>\n<\/div>\n\n<!-- STEP 2 -->\n<div class=\"step\" data-step=\"priority\">\n  <div class=\"question\">What matters most to you?<\/div>\n  <div class=\"options\">\n    <div class=\"option\" data-value=\"price\">Price<\/div>\n    <div class=\"option\" data-value=\"comfort\">Comfort \/ space<\/div>\n    <div class=\"option\" data-value=\"experience\">Experience \/ relaxation<\/div>\n  <\/div>\n<\/div>\n\n<!-- STEP 3 -->\n<div class=\"step\" data-step=\"view\">\n  <div class=\"question\">How important is a lake view for you?<\/div>\n  <div class=\"options\">\n    <div class=\"option\" data-value=\"no\">Not essential<\/div>\n    <div class=\"option\" data-value=\"nice\">Nice to have<\/div>\n    <div class=\"option\" data-value=\"must\">Absolutely essential<\/div>\n  <\/div>\n<\/div>\n\n<!-- STEP 4 -->\n<div class=\"step\" data-step=\"duration\">\n  <div class=\"question\">How long will you stay?<\/div>\n  <div class=\"options\">\n    <div class=\"option\" data-value=\"short\">1\u20133 nights<\/div>\n    <div class=\"option\" data-value=\"medium\">4\u20136 nights<\/div>\n    <div class=\"option\" data-value=\"long\">7+ nights<\/div>\n  <\/div>\n<\/div>\n\n<!-- RESULT -->\n<div class=\"result\" id=\"resultBox\">\n  <div class=\"rank\" id=\"rank1\"><\/div>\n  <div class=\"rank\" id=\"rank2\"><\/div>\n  <div class=\"rank\" id=\"rank3\"><\/div>\n\n  <a class=\"cta\" href=\"https:\/\/hotelisolaverde.bookpage.io\">\n    Enter your dates and check availability\n  <\/a>\n\n  <div class=\"secondary\">\n    Have special requirements? You can continue comparing the rooms on the previous page.\n  <\/div>\n<\/div>\n\n<\/div>\n\n<script>\nconst answers = {};\nlet stepIndex = 0;\nconst steps = document.querySelectorAll('.step');\n\ndocument.querySelectorAll('.option').forEach(opt => {\n  opt.addEventListener('click', () => {\n    const step = opt.closest('.step').dataset.step;\n    answers[step] = opt.dataset.value;\n\n    steps[stepIndex].classList.remove('active');\n    stepIndex++;\n\n    if (stepIndex < steps.length) {\n      steps[stepIndex].classList.add('active');\n    } else {\n      buildRanking();\n    }\n  });\n});\n\nfunction buildRanking() {\n  const pax = parseInt(answers.pax);\n\n  \/* === HARD RULE: 4 GUESTS === *\/\n  if (pax === 4) {\n    showRanking([\n      ['\ud83e\udd47 Junior Suite lake view', 'The only suitable option for 4 guests, with maximum space and comfort'],\n      ['\ud83e\udd48 \u2014', ''],\n      ['\ud83e\udd49 \u2014', '']\n    ]);\n    return;\n  }\n\n  \/* === 3 GUESTS === *\/\n  if (pax === 3) {\n\n    \/* === 3 GUESTS + EXPERIENCE === *\/\n    if (answers.priority === 'experience') {\n      showRanking([\n        ['\ud83e\udd47 Junior Suite lake view', 'The most spacious and complete option for 3 guests'],\n        ['\ud83e\udd48 Superior lake view', 'Front lake view and high comfort'],\n        ['\ud83e\udd49 Comfort lake view', 'Great balance between space and price']\n      ]);\n      return;\n    }\n\n    \/* === 3 GUESTS + COMFORT === *\/\n    if (answers.priority === 'comfort') {\n      showRanking([\n        ['\ud83e\udd47 Comfort lake view', 'The best balance for space and comfort for 3 guests'],\n        ['\ud83e\udd48 Superior lake view', 'More comfort with a front lake view'],\n        ['\ud83e\udd49 Junior Suite lake view', 'Premium upgrade with extra space']\n      ]);\n      return;\n    }\n\n    \/* === 3 GUESTS + PRICE === *\/\n    showRanking([\n      ['\ud83e\udd47 Triple Economy', 'The most affordable option for 3 guests'],\n      ['\ud83e\udd48 Comfort lake view', 'Good balance between space and price'],\n      ['\ud83e\udd49 Superior lake view', 'More comfort if the budget allows']\n    ]);\n    return;\n  }\n\n  \/* === EXPERIENCE \/ RELAX (1\u20132 GUESTS) === *\/\n  if (answers.priority === 'experience') {\n\n    if (answers.people === 'couple') {\n      showRanking([\n        ['\ud83e\udd47 Superior with Jacuzzi', 'Private terrace and jacuzzi for a special stay'],\n        ['\ud83e\udd48 Superior lake view', 'Front lake view and more space'],\n        ['\ud83e\udd49 Standard balcony lake view', 'Lake view at a more balanced price']\n      ]);\n      return;\n    } else {\n      showRanking([\n        ['\ud83e\udd47 Superior lake view', 'Front lake view and more space'],\n        ['\ud83e\udd48 Comfort lake view', 'Comfort and style with lake view'],\n        ['\ud83e\udd49 Standard balcony', 'Simple and quiet option']\n      ]);\n      return;\n    }\n  }\n\n  \/* === PRICE (1\u20132 GUESTS) === *\/\n  if (answers.priority === 'price') {\n    showRanking([\n      ['\ud83e\udd47 Economy double', 'The best choice if you want to spend less'],\n      ['\ud83e\udd48 Standard balcony', 'Quieter room with a balcony'],\n      ['\ud83e\udd49 Standard balcony lake view', 'Lake view at a more balanced price']\n    ]);\n    return;\n  }\n\n  \/* === DEFAULT \/ COMFORT (1\u20132 GUESTS) === *\/\n  showRanking([\n    ['\ud83e\udd47 Standard balcony lake view', 'Most chosen for comfort and balance'],\n    ['\ud83e\udd48 Standard balcony', 'Quiet and peaceful'],\n    ['\ud83e\udd49 Economy double', 'Essential and convenient']\n  ]);\n}\n\n\nfunction showRanking(ranking) {\n  document.getElementById('rank1').innerHTML =\n    `<h3>${ranking[0][0]}<\/h3><span>${ranking[0][1]}<\/span>`;\n\n  document.getElementById('rank2').innerHTML =\n    `<h3>${ranking[1][0]}<\/h3><span>${ranking[1][1]}<\/span>`;\n\n  document.getElementById('rank3').innerHTML =\n    `<h3>${ranking[2][0]}<\/h3><span>${ranking[2][1]}<\/span>`;\n\n  document.getElementById('resultBox').style.display = 'block';\n\n  \/\/ GA4 EVENT (optional)\n  \/\/ gtag('event', 'room_selector_complete', { primary_choice: ranking[0][0] });\n}\n<\/script>\n\n<\/body>\n<\/html><br><\/div><\/div><\/div><\/div><\/div><\/div><\/section>\n","protected":false},"excerpt":{"rendered":"Find the ideal room Let\u2019s find the right room for you Answer a few questions and we\u2019ll suggest the best options for your stay. How many guests will be staying? 1 guest 2 guests 3 guests 4 guests Who are you travelling with? Couple Family Friends What matters most to you? Price Comfort \/ space...","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"inline_featured_image":false,"_joinchat":[],"footnotes":""},"class_list":["post-4010","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Choose the room - Hotel Isola Verde<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hotelisolaverde.com\/en\/choose-the-room\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Choose the room - Hotel Isola Verde\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hotelisolaverde.com\/en\/choose-the-room\/\" \/>\n<meta property=\"og:site_name\" content=\"Hotel Isola Verde\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-21T10:29:29+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hotelisolaverde.com\/en\/choose-the-room\/\",\"url\":\"https:\/\/hotelisolaverde.com\/en\/choose-the-room\/\",\"name\":\"Choose the room - Hotel Isola Verde\",\"isPartOf\":{\"@id\":\"https:\/\/hotelisolaverde.com\/#website\"},\"datePublished\":\"2026-01-02T14:31:23+00:00\",\"dateModified\":\"2026-01-21T10:29:29+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/hotelisolaverde.com\/en\/choose-the-room\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hotelisolaverde.com\/en\/choose-the-room\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hotelisolaverde.com\/en\/choose-the-room\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hotelisolaverde.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Choose the room\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hotelisolaverde.com\/#website\",\"url\":\"https:\/\/hotelisolaverde.com\/\",\"name\":\"Hotel Isola Verde\",\"description\":\"Hotel Isola Verde\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hotelisolaverde.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Choose the room - Hotel Isola Verde","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/hotelisolaverde.com\/en\/choose-the-room\/","og_locale":"en_US","og_type":"article","og_title":"Choose the room - Hotel Isola Verde","og_url":"https:\/\/hotelisolaverde.com\/en\/choose-the-room\/","og_site_name":"Hotel Isola Verde","article_modified_time":"2026-01-21T10:29:29+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/hotelisolaverde.com\/en\/choose-the-room\/","url":"https:\/\/hotelisolaverde.com\/en\/choose-the-room\/","name":"Choose the room - Hotel Isola Verde","isPartOf":{"@id":"https:\/\/hotelisolaverde.com\/#website"},"datePublished":"2026-01-02T14:31:23+00:00","dateModified":"2026-01-21T10:29:29+00:00","breadcrumb":{"@id":"https:\/\/hotelisolaverde.com\/en\/choose-the-room\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hotelisolaverde.com\/en\/choose-the-room\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/hotelisolaverde.com\/en\/choose-the-room\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hotelisolaverde.com\/en\/"},{"@type":"ListItem","position":2,"name":"Choose the room"}]},{"@type":"WebSite","@id":"https:\/\/hotelisolaverde.com\/#website","url":"https:\/\/hotelisolaverde.com\/","name":"Hotel Isola Verde","description":"Hotel Isola Verde","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hotelisolaverde.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/hotelisolaverde.com\/en\/wp-json\/wp\/v2\/pages\/4010","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hotelisolaverde.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/hotelisolaverde.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/hotelisolaverde.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/hotelisolaverde.com\/en\/wp-json\/wp\/v2\/comments?post=4010"}],"version-history":[{"count":5,"href":"https:\/\/hotelisolaverde.com\/en\/wp-json\/wp\/v2\/pages\/4010\/revisions"}],"predecessor-version":[{"id":4205,"href":"https:\/\/hotelisolaverde.com\/en\/wp-json\/wp\/v2\/pages\/4010\/revisions\/4205"}],"wp:attachment":[{"href":"https:\/\/hotelisolaverde.com\/en\/wp-json\/wp\/v2\/media?parent=4010"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}