{"id":612,"date":"2024-11-08T21:46:07","date_gmt":"2024-11-08T19:46:07","guid":{"rendered":"https:\/\/thebestcars.gr\/book-test\/"},"modified":"2025-01-20T14:21:32","modified_gmt":"2025-01-20T12:21:32","slug":"booking","status":"publish","type":"page","link":"https:\/\/thebestcars.gr\/de\/booking\/","title":{"rendered":"Reservieren"},"content":{"rendered":"<div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-1 fusion-flex-container has-pattern-background has-mask-background hundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-sizes-left:0px;--awb-border-sizes-right:0px;--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-padding-bottom:0px;--awb-padding-right-small:0px;--awb-padding-left-small:0px;--awb-margin-bottom:0px;--awb-margin-top-small:5px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-0 fusion_builder_column_1_1 1_1 fusion-flex-column fusion-no-small-visibility\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:150px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:0px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-margin-top-small:20px;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-1 fusion-sep-none fusion-title-text fusion-title-size-four\" style=\"--awb-text-color:var(--awb-custom_color_1);--awb-margin-top:0px;--awb-margin-bottom:0px;--awb-font-size:20px;\"><h4 class=\"fusion-title-heading title-heading-left\" style=\"font-family:&quot;Ubuntu&quot;;font-style:normal;font-weight:700;margin:0;font-size:1em;\">DER BESTE MIETWAGEN F\u00dcR IHREN URLAUB<\/h4><\/div><div class=\"fusion-title title fusion-title-2 fusion-no-small-visibility fusion-sep-none fusion-title-text fusion-title-size-four\" style=\"--awb-text-color:var(--awb-color8);--awb-margin-top:0px;--awb-margin-bottom:0px;--awb-font-size:70px;\"><h4 class=\"fusion-title-heading title-heading-left\" style=\"font-family:&quot;Ubuntu&quot;;font-style:normal;font-weight:300;margin:0;font-size:1em;\">Starten Sie eine Reservierung<\/h4><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-1 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-color:rgba(25,143,217,0);--awb-bg-color-hover:rgba(25,143,217,0);--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-1 fusion-text-no-margin\" style=\"--awb-margin-bottom:30px;\">\n<\/div><script>\ndocument.addEventListener('DOMContentLoaded', function() {\n  \/\/ Regex to find parentheses substring in the model title\n  const parenthesesRegex = \/\\([^()]*\\)\/;\n\n  \/\/ All .iosrt_model_title elements\n  const modelTitleElems = document.querySelectorAll('.iosrt_model_title');\n\n  \/\/ A) Helpers to get and set URL parameters\n  function getQueryParams() {\n    const urlParams = new URLSearchParams(window.location.search);\n    const obj = {};\n    for (const [key, val] of urlParams.entries()) {\n      obj[key] = val;\n    }\n    return obj;\n  }\n\n  function buildURLKeepParams(paramsObj) {\n    \/\/ Return the same base + ? + all existing keys in any order\n    \/\/ If you want them in a specific order, you can do so (like in the previous snippet).\n    const base = window.location.origin + window.location.pathname;\n    const sp = new URLSearchParams();\n    for (const k in paramsObj) {\n      sp.set(k, paramsObj[k]);\n    }\n    return base + '?' + sp.toString();\n  }\n\n  \/\/ B) parseDateTime(\"25-08-25 10:00\") => { date:\"25-08-2025\", hour:\"10\", min:\"00\" }\n  function parseDateTime(str) {\n    const re = \/(\\d{2}-\\d{2}-(\\d{2}|\\d{4}))\\s+(\\d{2}):(\\d{2})\/;\n    const m = str.match(re);\n    if (!m) return null;\n\n    let dmy   = m[1];   \/\/ \"25-08-25\" or \"25-08-2025\"\n    const hour = m[3];  \/\/ \"10\"\n    const min  = m[4];  \/\/ \"00\"\n\n    const parts = dmy.split('-'); \n    if (parts[2].length === 2) {\n      parts[2] = '20' + parts[2]; \/\/ \"25\" -> \"2025\"\n    }\n    dmy = parts.join('-'); \/\/ \"25-08-2025\"\n\n    return { date: dmy, hour, min };\n  }\n\n  modelTitleElems.forEach((titleElem) => {\n    const textContent = titleElem.textContent;\n    const match = textContent.match(parenthesesRegex);\n    if (!match) return;\n\n    \/\/ e.g. \"(Sie k\u00f6nnten es buchen nach 22-08-25 10:00)\"\n    const rawParens = match[0];\n    const rawText   = rawParens.replace(\/^\\(|\\)$\/g, '').trim();\n    const newTitle  = textContent.replace(parenthesesRegex, '').trim();\n    titleElem.textContent = newTitle;\n\n    \/\/ Create the clickable suggestion\n    const ribbonDiv = document.createElement('div');\n    ribbonDiv.className = 'my-suggestion-ribbon';\n    ribbonDiv.textContent = rawText;\n\n    const modelContainer = titleElem.closest('.iosrt_model');\n    if (!modelContainer) return;\n    modelContainer.style.position = 'relative';\n    modelContainer.appendChild(ribbonDiv);\n\n    \/\/ We'll build an anchor #iosrt_model_XX so the page scrolls there\n    \/\/ e.g. \"iosrt_model_26\"\n    let anchorID = modelContainer.id || '';\n    \/\/ anchorID might be \"iosrt_model_26\"\n\n    ribbonDiv.style.cursor = 'pointer';\n    ribbonDiv.addEventListener('click', () => {\n      const params = getQueryParams();\n      const textLower = rawText.toLowerCase();\n\n      \/\/ CASE 1: \"until\"\/\"bis\" => set drop date\/time\n      if (\n        textLower.includes('until') ||\n        (textLower.includes('bis') && !textLower.includes('von') && !textLower.includes(' to '))\n      ) {\n        let dtStr = '';\n        if (textLower.includes('until')) {\n          dtStr = rawText.split(\/until\/i)[1].trim();\n        } else {\n          dtStr = rawText.split(\/bis\/i)[1].trim();\n        }\n        const dt = parseDateTime(dtStr);\n        if (dt) {\n          params.dropdate = dt.date;\n          params.drophour = dt.hour;\n          params.dropmin  = dt.min;\n        }\n      }\n      \/\/ CASE 2: \"after\"\/\"nach\" => set pick date\/time\n      else if (textLower.includes('after') || textLower.includes('nach')) {\n        let dtStr = '';\n        if (textLower.includes('after')) {\n          dtStr = rawText.split(\/after\/i)[1].trim();\n        } else {\n          dtStr = rawText.split(\/nach\/i)[1].trim();\n        }\n        const dt = parseDateTime(dtStr);\n        if (dt) {\n          params.pickdate = dt.date;\n          params.pickhour = dt.hour;\n          params.pickmin  = dt.min;\n        }\n      }\n      \/\/ CASE 3: \"from..to\" or \"von..bis\"\n      else if (\n        (textLower.includes('from') && textLower.includes('to')) ||\n        (textLower.includes('von') && textLower.includes('bis'))\n      ) {\n        let fromWord = 'from';\n        let toWord   = 'to';\n        if (textLower.includes('von') && textLower.includes('bis')) {\n          fromWord = 'von';\n          toWord   = 'bis';\n        }\n        const afterFrom = rawText.split(new RegExp(fromWord,'i'))[1];\n        if (afterFrom) {\n          const splitted = afterFrom.split(new RegExp(toWord,'i'));\n          if (splitted.length === 2) {\n            const dtStart = parseDateTime(splitted[0].trim());\n            const dtEnd   = parseDateTime(splitted[1].trim());\n            if (dtStart && dtEnd) {\n              params.pickdate = dtStart.date;\n              params.pickhour = dtStart.hour;\n              params.pickmin  = dtStart.min;\n              params.dropdate = dtEnd.date;\n              params.drophour = dtEnd.hour;\n              params.dropmin  = dtEnd.min;\n            }\n          }\n        }\n      }\n\n      \/\/ Build final link\n      let newURL = buildURLKeepParams(params);\n\n      \/\/ Add anchor => #iosrt_model_26 or whatever the container is\n      if (anchorID) {\n        newURL += '#' + encodeURIComponent(anchorID);\n      }\n\n      window.location.href = newURL;\n    });\n  });\n});\n<\/script>\n\n<style>\n.my-suggestion-ribbon {\n  position: absolute;\n  top: 10px;\n  right: 10px;\n  background: #7CFC00; \n  color: #000;\n  padding: 8px 12px;\n  font-weight: bold;\n  border-radius: 10px;\n  font-size: 0.85rem;\n  box-shadow: 0 2px 4px rgba(0,0,0,0.15);\n  z-index: 999;\n  cursor: pointer;\n}\n<\/style>\n<div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-0 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\" style=\"--awb-overflow:hidden;--awb-bg-color:var(--awb-custom_color_2);--awb-bg-color-hover:var(--awb-custom_color_2);--awb-bg-size:cover;--awb-border-radius:50px 50px 50px 50px;--awb-width-large:50%;--awb-margin-top-large:0px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:0px;--awb-spacing-left-large:15px;--awb-width-medium:50%;--awb-order-medium:0;--awb-spacing-right-medium:3.84%;--awb-spacing-left-medium:15px;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" id=\"reviewsbox\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-center fusion-content-layout-column\"><div class=\"fusion-text fusion-text-2\" style=\"--awb-content-alignment:justify;--awb-margin-right:10%;\"><p style=\"text-align: center;\">        <div class=\"wp-gr wpac\" style=\"margin:0 auto!important;\" data-id=\"137\" data-layout=\"slider\" data-exec=\"false\" data-options='{\"text_size\":\"100\",\"trans\":{\"read more\":\"weiterlesen\"}}'><div class=\"grw-row grw-row-m\" data-count=\"10\" data-offset=\"10\" data-options='{\"speed\":3,\"autoplay\":\"1\",\"mousestop\":\"1\"}'><div class=\"grw-header\"><div class=\"grw-header-inner\"><div class=\"wp-google-place\"><div class=\"wp-google-right\"><div class=\"wp-google-name\"><a href=\"https:\/\/maps.google.com\/?cid=16794544588212404582\" target=\"_blank\" rel=\"nofollow noopener\"><span>The Best Cars - car rentals<\/span><\/a><\/div><div><span class=\"wp-google-rating\">4.9<\/span><span class=\"wp-google-stars\"><span class=\"wp-stars\"><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1250 957l257-250-356-52-66-10-30-60-159-322v963l59 31 318 168-60-355-12-66zm452-262l-363 354 86 500q5 33-6 51.5t-34 18.5q-17 0-40-12l-449-236-449 236q-23 12-40 12-23 0-34-18.5t-6-51.5l86-500-364-354q-32-32-23-59.5t54-34.5l502-73 225-455q20-41 49-41 28 0 49 41l225 455 502 73q45 7 54 34.5t-24 59.5z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><\/span><\/span><\/div><div class=\"wp-google-powered\">Basierend auf 745 Bewertungen<\/div><div class=\"wp-google-powered\"><img decoding=\"async\" src=\"https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/powered_by_google_on_white.png\" alt=\"powered by Google\" width=\"144\" height=\"18\" title=\"powered by Google\"><\/div><div class=\"wp-google-wr\"><a href=\"https:\/\/search.google.com\/local\/writereview?placeid=ChIJHwAAB-9bmhQRZgHcWFI1Euk\" target=\"_blank\" rel=\"nofollow noopener\" onclick=\"return rplg_leave_review_window.call(this)\">bewerte uns auf<svg viewBox=\"0 0 512 512\" height=\"18\" width=\"18\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M482.56 261.36c0-16.73-1.5-32.83-4.29-48.27H256v91.29h127.01c-5.47 29.5-22.1 54.49-47.09 71.23v59.21h76.27c44.63-41.09 70.37-101.59 70.37-173.46z\" fill=\"#4285f4\"\/><path d=\"M256 492c63.72 0 117.14-21.13 156.19-57.18l-76.27-59.21c-21.13 14.16-48.17 22.53-79.92 22.53-61.47 0-113.49-41.51-132.05-97.3H45.1v61.15c38.83 77.13 118.64 130.01 210.9 130.01z\" fill=\"#34a853\"\/><path d=\"M123.95 300.84c-4.72-14.16-7.4-29.29-7.4-44.84s2.68-30.68 7.4-44.84V150.01H45.1C29.12 181.87 20 217.92 20 256c0 38.08 9.12 74.13 25.1 105.99l78.85-61.15z\" fill=\"#fbbc05\"\/><path d=\"M256 113.86c34.65 0 65.76 11.91 90.22 35.29l67.69-67.69C373.03 43.39 319.61 20 256 20c-92.25 0-172.07 52.89-210.9 130.01l78.85 61.15c18.56-55.78 70.59-97.3 132.05-97.3z\" fill=\"#ea4335\"\/><path d=\"M20 20h472v472H20V20z\"\/><\/g><\/svg><\/a><\/div><\/div><\/div><\/div><\/div><div class=\"grw-content\"><div class=\"grw-content-inner\"><div class=\"grw-reviews\"><div class=\"grw-review\"><div class=\"grw-review-inner grw-round\"><div class=\"wp-google-left\"><img decoding=\"async\" src=\"https:\/\/thebestcars.gr\/wp-content\/uploads\/2026\/07\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_86d705d21093d7dd451436a8a1b9bf46.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"Jeremy Richman\" width=\"50\" height=\"50\" title=\"Jeremy Richman\" onerror=\"if(this.src!='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png')this.src='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png';\" ><a href=\"https:\/\/www.google.com\/maps\/contrib\/102195609357541913477\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">Jeremy Richman<\/a><div class=\"wp-google-time\" data-time=\"1782952955\">00:42 02 Jul 26<\/div><\/div><div class=\"wp-google-stars\"><span class=\"wp-stars\"><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><\/span><\/div><div><div class=\"wp-google-feedback\"  style=\"height:100!important\"><span class=\"wp-google-text\">We had a great experience renting a car here. Martin was extremely helpful and accommodating which we really appreciated! We were also able to pick the car up in Heraklion and return it in Chania which made things very easy for us. We\u2019d definitely recommend them if you\u2019re renting a car on Crete.<\/span><\/div><\/div><svg viewBox=\"0 0 512 512\" height=\"18\" width=\"18\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M482.56 261.36c0-16.73-1.5-32.83-4.29-48.27H256v91.29h127.01c-5.47 29.5-22.1 54.49-47.09 71.23v59.21h76.27c44.63-41.09 70.37-101.59 70.37-173.46z\" fill=\"#4285f4\"\/><path d=\"M256 492c63.72 0 117.14-21.13 156.19-57.18l-76.27-59.21c-21.13 14.16-48.17 22.53-79.92 22.53-61.47 0-113.49-41.51-132.05-97.3H45.1v61.15c38.83 77.13 118.64 130.01 210.9 130.01z\" fill=\"#34a853\"\/><path d=\"M123.95 300.84c-4.72-14.16-7.4-29.29-7.4-44.84s2.68-30.68 7.4-44.84V150.01H45.1C29.12 181.87 20 217.92 20 256c0 38.08 9.12 74.13 25.1 105.99l78.85-61.15z\" fill=\"#fbbc05\"\/><path d=\"M256 113.86c34.65 0 65.76 11.91 90.22 35.29l67.69-67.69C373.03 43.39 319.61 20 256 20c-92.25 0-172.07 52.89-210.9 130.01l78.85 61.15c18.56-55.78 70.59-97.3 132.05-97.3z\" fill=\"#ea4335\"\/><path d=\"M20 20h472v472H20V20z\"\/><\/g><\/svg><\/div><\/div><div class=\"grw-review\"><div class=\"grw-review-inner grw-round\"><div class=\"wp-google-left\"><img decoding=\"async\" src=\"https:\/\/thebestcars.gr\/wp-content\/uploads\/2026\/07\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_54d6f4a6740ca42eb593324ad75a2fdc.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"Alex Shcherbak\" width=\"50\" height=\"50\" title=\"Alex Shcherbak\" onerror=\"if(this.src!='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png')this.src='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png';\" ><a href=\"https:\/\/www.google.com\/maps\/contrib\/118341913300282049577\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">Alex Shcherbak<\/a><div class=\"wp-google-time\" data-time=\"1782737546\">12:52 29 Jun 26<\/div><\/div><div class=\"wp-google-stars\"><span class=\"wp-stars\"><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><\/span><\/div><div><div class=\"wp-google-feedback\"  style=\"height:100!important\"><span class=\"wp-google-text\">Excellent service! The car was clean and exactly as described. Friendly staff, quick pick-up and drop-off. Full insurance gave us complete peace of mind during our trip<\/span><\/div><\/div><svg viewBox=\"0 0 512 512\" height=\"18\" width=\"18\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M482.56 261.36c0-16.73-1.5-32.83-4.29-48.27H256v91.29h127.01c-5.47 29.5-22.1 54.49-47.09 71.23v59.21h76.27c44.63-41.09 70.37-101.59 70.37-173.46z\" fill=\"#4285f4\"\/><path d=\"M256 492c63.72 0 117.14-21.13 156.19-57.18l-76.27-59.21c-21.13 14.16-48.17 22.53-79.92 22.53-61.47 0-113.49-41.51-132.05-97.3H45.1v61.15c38.83 77.13 118.64 130.01 210.9 130.01z\" fill=\"#34a853\"\/><path d=\"M123.95 300.84c-4.72-14.16-7.4-29.29-7.4-44.84s2.68-30.68 7.4-44.84V150.01H45.1C29.12 181.87 20 217.92 20 256c0 38.08 9.12 74.13 25.1 105.99l78.85-61.15z\" fill=\"#fbbc05\"\/><path d=\"M256 113.86c34.65 0 65.76 11.91 90.22 35.29l67.69-67.69C373.03 43.39 319.61 20 256 20c-92.25 0-172.07 52.89-210.9 130.01l78.85 61.15c18.56-55.78 70.59-97.3 132.05-97.3z\" fill=\"#ea4335\"\/><path d=\"M20 20h472v472H20V20z\"\/><\/g><\/svg><\/div><\/div><div class=\"grw-review\"><div class=\"grw-review-inner grw-round\"><div class=\"wp-google-left\"><img decoding=\"async\" src=\"https:\/\/thebestcars.gr\/wp-content\/uploads\/2026\/07\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_ddab39a4471ee71a0b9faeb94a2ed828.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"Maus & Hase\" width=\"50\" height=\"50\" title=\"Maus & Hase\" onerror=\"if(this.src!='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png')this.src='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png';\" ><a href=\"https:\/\/www.google.com\/maps\/contrib\/101588445185251002822\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">Maus & Hase<\/a><div class=\"wp-google-time\" data-time=\"1782644975\">11:09 28 Jun 26<\/div><\/div><div class=\"wp-google-stars\"><span class=\"wp-stars\"><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><\/span><\/div><div><div class=\"wp-google-feedback\"  style=\"height:100!important\"><span class=\"wp-google-text\">**Absolutely perfect \u2013 we wholeheartedly recommend The Best Cars!**The handover directly at Heraklion Airport was incredibly straightforward and completed in just 5 minutes, including a thorough briefing. The car was clean, in top condition, and thanks to the LPG system (in addition to gasoline), refueling was a real plus. As a nice touch, they even provided two bottles of water for the journey. Returning the car was also completely hassle-free. A particularly pleasant aspect was that the entire service was German-speaking. We would definitely book with The Best Cars again!<\/span><\/div><\/div><svg viewBox=\"0 0 512 512\" height=\"18\" width=\"18\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M482.56 261.36c0-16.73-1.5-32.83-4.29-48.27H256v91.29h127.01c-5.47 29.5-22.1 54.49-47.09 71.23v59.21h76.27c44.63-41.09 70.37-101.59 70.37-173.46z\" fill=\"#4285f4\"\/><path d=\"M256 492c63.72 0 117.14-21.13 156.19-57.18l-76.27-59.21c-21.13 14.16-48.17 22.53-79.92 22.53-61.47 0-113.49-41.51-132.05-97.3H45.1v61.15c38.83 77.13 118.64 130.01 210.9 130.01z\" fill=\"#34a853\"\/><path d=\"M123.95 300.84c-4.72-14.16-7.4-29.29-7.4-44.84s2.68-30.68 7.4-44.84V150.01H45.1C29.12 181.87 20 217.92 20 256c0 38.08 9.12 74.13 25.1 105.99l78.85-61.15z\" fill=\"#fbbc05\"\/><path d=\"M256 113.86c34.65 0 65.76 11.91 90.22 35.29l67.69-67.69C373.03 43.39 319.61 20 256 20c-92.25 0-172.07 52.89-210.9 130.01l78.85 61.15c18.56-55.78 70.59-97.3 132.05-97.3z\" fill=\"#ea4335\"\/><path d=\"M20 20h472v472H20V20z\"\/><\/g><\/svg><\/div><\/div><div class=\"grw-review\"><div class=\"grw-review-inner grw-round\"><div class=\"wp-google-left\"><img decoding=\"async\" src=\"https:\/\/thebestcars.gr\/wp-content\/uploads\/2026\/07\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_5b790f2f4fc94beff5508f49298b3ed1.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"Malik Gandaev\" width=\"50\" height=\"50\" title=\"Malik Gandaev\" onerror=\"if(this.src!='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png')this.src='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png';\" ><a href=\"https:\/\/www.google.com\/maps\/contrib\/103961119234053908456\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">Malik Gandaev<\/a><div class=\"wp-google-time\" data-time=\"1782589283\">19:41 27 Jun 26<\/div><\/div><div class=\"wp-google-stars\"><span class=\"wp-stars\"><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><\/span><\/div><div><div class=\"wp-google-feedback\"  style=\"height:100!important\"><span class=\"wp-google-text\">I'm very satisfied with this car rental company. The contract was straightforward and well explained. The vehicle was clean and in good condition. We'd gladly use them again :)A big thank you to Martin!<\/span><\/div><\/div><svg viewBox=\"0 0 512 512\" height=\"18\" width=\"18\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M482.56 261.36c0-16.73-1.5-32.83-4.29-48.27H256v91.29h127.01c-5.47 29.5-22.1 54.49-47.09 71.23v59.21h76.27c44.63-41.09 70.37-101.59 70.37-173.46z\" fill=\"#4285f4\"\/><path d=\"M256 492c63.72 0 117.14-21.13 156.19-57.18l-76.27-59.21c-21.13 14.16-48.17 22.53-79.92 22.53-61.47 0-113.49-41.51-132.05-97.3H45.1v61.15c38.83 77.13 118.64 130.01 210.9 130.01z\" fill=\"#34a853\"\/><path d=\"M123.95 300.84c-4.72-14.16-7.4-29.29-7.4-44.84s2.68-30.68 7.4-44.84V150.01H45.1C29.12 181.87 20 217.92 20 256c0 38.08 9.12 74.13 25.1 105.99l78.85-61.15z\" fill=\"#fbbc05\"\/><path d=\"M256 113.86c34.65 0 65.76 11.91 90.22 35.29l67.69-67.69C373.03 43.39 319.61 20 256 20c-92.25 0-172.07 52.89-210.9 130.01l78.85 61.15c18.56-55.78 70.59-97.3 132.05-97.3z\" fill=\"#ea4335\"\/><path d=\"M20 20h472v472H20V20z\"\/><\/g><\/svg><\/div><\/div><div class=\"grw-review\"><div class=\"grw-review-inner grw-round\"><div class=\"wp-google-left\"><img decoding=\"async\" src=\"https:\/\/thebestcars.gr\/wp-content\/uploads\/2026\/06\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_3d3988f4cd059342e0b91ddf2bd30e1b.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"Lisa\" width=\"50\" height=\"50\" title=\"Lisa\" onerror=\"if(this.src!='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png')this.src='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png';\" ><a href=\"https:\/\/www.google.com\/maps\/contrib\/112767478555749293507\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">Lisa<\/a><div class=\"wp-google-time\" data-time=\"1782507936\">21:05 26 Jun 26<\/div><\/div><div class=\"wp-google-stars\"><span class=\"wp-stars\"><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><\/span><\/div><div><div class=\"wp-google-feedback\"  style=\"height:100!important\"><span class=\"wp-google-text\">Booked with \"The Best Cars\" for the second time and was once again extremely satisfied. Right at the airport, friendly staff, cars in excellent condition, everything was straightforward and went smoothly. If we visit Crete again, we will definitely rent a car here again! Highly recommended!<\/span><\/div><\/div><svg viewBox=\"0 0 512 512\" height=\"18\" width=\"18\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M482.56 261.36c0-16.73-1.5-32.83-4.29-48.27H256v91.29h127.01c-5.47 29.5-22.1 54.49-47.09 71.23v59.21h76.27c44.63-41.09 70.37-101.59 70.37-173.46z\" fill=\"#4285f4\"\/><path d=\"M256 492c63.72 0 117.14-21.13 156.19-57.18l-76.27-59.21c-21.13 14.16-48.17 22.53-79.92 22.53-61.47 0-113.49-41.51-132.05-97.3H45.1v61.15c38.83 77.13 118.64 130.01 210.9 130.01z\" fill=\"#34a853\"\/><path d=\"M123.95 300.84c-4.72-14.16-7.4-29.29-7.4-44.84s2.68-30.68 7.4-44.84V150.01H45.1C29.12 181.87 20 217.92 20 256c0 38.08 9.12 74.13 25.1 105.99l78.85-61.15z\" fill=\"#fbbc05\"\/><path d=\"M256 113.86c34.65 0 65.76 11.91 90.22 35.29l67.69-67.69C373.03 43.39 319.61 20 256 20c-92.25 0-172.07 52.89-210.9 130.01l78.85 61.15c18.56-55.78 70.59-97.3 132.05-97.3z\" fill=\"#ea4335\"\/><path d=\"M20 20h472v472H20V20z\"\/><\/g><\/svg><\/div><\/div><div class=\"grw-review\"><div class=\"grw-review-inner grw-round\"><div class=\"wp-google-left\"><img decoding=\"async\" src=\"https:\/\/thebestcars.gr\/wp-content\/uploads\/2026\/06\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_08c379b037852cea00800c4e6b297e4b.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"Christian Wyss\" width=\"50\" height=\"50\" title=\"Christian Wyss\" onerror=\"if(this.src!='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png')this.src='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png';\" ><a href=\"https:\/\/www.google.com\/maps\/contrib\/101149727789077641113\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">Christian Wyss<\/a><div class=\"wp-google-time\" data-time=\"1782422607\">21:23 25 Jun 26<\/div><\/div><div class=\"wp-google-stars\"><span class=\"wp-stars\"><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><\/span><\/div><div><div class=\"wp-google-feedback\"  style=\"height:100!important\"><span class=\"wp-google-text\">We've booked rental cars with The Best Cars Crete several times and have always been very satisfied. Booking through their website is simple, clear, and straightforward. The prices are fair and transparent \u2013 \u200b\u200bwith no hidden costs. We especially appreciate that all essential insurance is included, so you don't have to worry about additional fees.We also really like their \"full to full\" fuel policy, which unfortunately isn't standard practice with many Greek car rental companies.On our last trip, we arrived after midnight and therefore arranged to pick up the car ourselves. This also worked perfectly: the handover was extremely well-organized and completely seamless.Overall, we've had consistently positive experiences with The Best Cars. The service is reliable, uncomplicated, and customer-friendly. We will definitely book with them again in the future and can wholeheartedly recommend The Best Cars Crete! &#x1f697;&#x1f60a;<\/span><\/div><\/div><svg viewBox=\"0 0 512 512\" height=\"18\" width=\"18\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M482.56 261.36c0-16.73-1.5-32.83-4.29-48.27H256v91.29h127.01c-5.47 29.5-22.1 54.49-47.09 71.23v59.21h76.27c44.63-41.09 70.37-101.59 70.37-173.46z\" fill=\"#4285f4\"\/><path d=\"M256 492c63.72 0 117.14-21.13 156.19-57.18l-76.27-59.21c-21.13 14.16-48.17 22.53-79.92 22.53-61.47 0-113.49-41.51-132.05-97.3H45.1v61.15c38.83 77.13 118.64 130.01 210.9 130.01z\" fill=\"#34a853\"\/><path d=\"M123.95 300.84c-4.72-14.16-7.4-29.29-7.4-44.84s2.68-30.68 7.4-44.84V150.01H45.1C29.12 181.87 20 217.92 20 256c0 38.08 9.12 74.13 25.1 105.99l78.85-61.15z\" fill=\"#fbbc05\"\/><path d=\"M256 113.86c34.65 0 65.76 11.91 90.22 35.29l67.69-67.69C373.03 43.39 319.61 20 256 20c-92.25 0-172.07 52.89-210.9 130.01l78.85 61.15c18.56-55.78 70.59-97.3 132.05-97.3z\" fill=\"#ea4335\"\/><path d=\"M20 20h472v472H20V20z\"\/><\/g><\/svg><\/div><\/div><div class=\"grw-review\"><div class=\"grw-review-inner grw-round\"><div class=\"wp-google-left\"><img decoding=\"async\" src=\"https:\/\/thebestcars.gr\/wp-content\/uploads\/2026\/06\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_1c63208f59a5813545126c5dc774cb25.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"Reinhard Weisse\" width=\"50\" height=\"50\" title=\"Reinhard Weisse\" onerror=\"if(this.src!='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png')this.src='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png';\" ><a href=\"https:\/\/www.google.com\/maps\/contrib\/107967532310787808317\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">Reinhard Weisse<\/a><div class=\"wp-google-time\" data-time=\"1782396038\">14:00 25 Jun 26<\/div><\/div><div class=\"wp-google-stars\"><span class=\"wp-stars\"><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><\/span><\/div><div><div class=\"wp-google-feedback\"  style=\"height:100!important\"><span class=\"wp-google-text\">Hello, we, B\u00e4rbel and Reinhard, rented our car from bestcars again this year and had a fantastic experience. We've been customers of bestcars for 14 years now. We highly recommend this company, with Martin and his colleagues, to all Crete vacationers!<\/span><\/div><\/div><svg viewBox=\"0 0 512 512\" height=\"18\" width=\"18\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M482.56 261.36c0-16.73-1.5-32.83-4.29-48.27H256v91.29h127.01c-5.47 29.5-22.1 54.49-47.09 71.23v59.21h76.27c44.63-41.09 70.37-101.59 70.37-173.46z\" fill=\"#4285f4\"\/><path d=\"M256 492c63.72 0 117.14-21.13 156.19-57.18l-76.27-59.21c-21.13 14.16-48.17 22.53-79.92 22.53-61.47 0-113.49-41.51-132.05-97.3H45.1v61.15c38.83 77.13 118.64 130.01 210.9 130.01z\" fill=\"#34a853\"\/><path d=\"M123.95 300.84c-4.72-14.16-7.4-29.29-7.4-44.84s2.68-30.68 7.4-44.84V150.01H45.1C29.12 181.87 20 217.92 20 256c0 38.08 9.12 74.13 25.1 105.99l78.85-61.15z\" fill=\"#fbbc05\"\/><path d=\"M256 113.86c34.65 0 65.76 11.91 90.22 35.29l67.69-67.69C373.03 43.39 319.61 20 256 20c-92.25 0-172.07 52.89-210.9 130.01l78.85 61.15c18.56-55.78 70.59-97.3 132.05-97.3z\" fill=\"#ea4335\"\/><path d=\"M20 20h472v472H20V20z\"\/><\/g><\/svg><\/div><\/div><div class=\"grw-review\"><div class=\"grw-review-inner grw-round\"><div class=\"wp-google-left\"><img decoding=\"async\" src=\"https:\/\/thebestcars.gr\/wp-content\/uploads\/2026\/06\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_f2f1b6f37b24b6424919d7ca631ed610.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"Rolf Rose\" width=\"50\" height=\"50\" title=\"Rolf Rose\" onerror=\"if(this.src!='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png')this.src='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png';\" ><a href=\"https:\/\/www.google.com\/maps\/contrib\/110119953097260502265\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">Rolf Rose<\/a><div class=\"wp-google-time\" data-time=\"1782392722\">13:05 25 Jun 26<\/div><\/div><div class=\"wp-google-stars\"><span class=\"wp-stars\"><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><\/span><\/div><div><div class=\"wp-google-feedback\"  style=\"height:100!important\"><span class=\"wp-google-text\">It worked perfectly, as always. Everything was great \u2013 thank you so much!Rolf<\/span><\/div><\/div><svg viewBox=\"0 0 512 512\" height=\"18\" width=\"18\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M482.56 261.36c0-16.73-1.5-32.83-4.29-48.27H256v91.29h127.01c-5.47 29.5-22.1 54.49-47.09 71.23v59.21h76.27c44.63-41.09 70.37-101.59 70.37-173.46z\" fill=\"#4285f4\"\/><path d=\"M256 492c63.72 0 117.14-21.13 156.19-57.18l-76.27-59.21c-21.13 14.16-48.17 22.53-79.92 22.53-61.47 0-113.49-41.51-132.05-97.3H45.1v61.15c38.83 77.13 118.64 130.01 210.9 130.01z\" fill=\"#34a853\"\/><path d=\"M123.95 300.84c-4.72-14.16-7.4-29.29-7.4-44.84s2.68-30.68 7.4-44.84V150.01H45.1C29.12 181.87 20 217.92 20 256c0 38.08 9.12 74.13 25.1 105.99l78.85-61.15z\" fill=\"#fbbc05\"\/><path d=\"M256 113.86c34.65 0 65.76 11.91 90.22 35.29l67.69-67.69C373.03 43.39 319.61 20 256 20c-92.25 0-172.07 52.89-210.9 130.01l78.85 61.15c18.56-55.78 70.59-97.3 132.05-97.3z\" fill=\"#ea4335\"\/><path d=\"M20 20h472v472H20V20z\"\/><\/g><\/svg><\/div><\/div><div class=\"grw-review\"><div class=\"grw-review-inner grw-round\"><div class=\"wp-google-left\"><img decoding=\"async\" src=\"https:\/\/thebestcars.gr\/wp-content\/uploads\/2026\/06\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_3aaedd97b20e62f3bf92db306360b4a1.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"Marco Menino\" width=\"50\" height=\"50\" title=\"Marco Menino\" onerror=\"if(this.src!='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png')this.src='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png';\" ><a href=\"https:\/\/www.google.com\/maps\/contrib\/115062773555931811313\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">Marco Menino<\/a><div class=\"wp-google-time\" data-time=\"1782308091\">13:34 24 Jun 26<\/div><\/div><div class=\"wp-google-stars\"><span class=\"wp-stars\"><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><\/span><\/div><div><div class=\"wp-google-feedback\"  style=\"height:100!important\"><span class=\"wp-google-text\">The team is very friendly and nice guys. The car it is in very good conticions and very clean. All process is very easy and calm. I super recomend. Thank you<\/span><\/div><\/div><svg viewBox=\"0 0 512 512\" height=\"18\" width=\"18\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M482.56 261.36c0-16.73-1.5-32.83-4.29-48.27H256v91.29h127.01c-5.47 29.5-22.1 54.49-47.09 71.23v59.21h76.27c44.63-41.09 70.37-101.59 70.37-173.46z\" fill=\"#4285f4\"\/><path d=\"M256 492c63.72 0 117.14-21.13 156.19-57.18l-76.27-59.21c-21.13 14.16-48.17 22.53-79.92 22.53-61.47 0-113.49-41.51-132.05-97.3H45.1v61.15c38.83 77.13 118.64 130.01 210.9 130.01z\" fill=\"#34a853\"\/><path d=\"M123.95 300.84c-4.72-14.16-7.4-29.29-7.4-44.84s2.68-30.68 7.4-44.84V150.01H45.1C29.12 181.87 20 217.92 20 256c0 38.08 9.12 74.13 25.1 105.99l78.85-61.15z\" fill=\"#fbbc05\"\/><path d=\"M256 113.86c34.65 0 65.76 11.91 90.22 35.29l67.69-67.69C373.03 43.39 319.61 20 256 20c-92.25 0-172.07 52.89-210.9 130.01l78.85 61.15c18.56-55.78 70.59-97.3 132.05-97.3z\" fill=\"#ea4335\"\/><path d=\"M20 20h472v472H20V20z\"\/><\/g><\/svg><\/div><\/div><div class=\"grw-review\"><div class=\"grw-review-inner grw-round\"><div class=\"wp-google-left\"><img decoding=\"async\" src=\"https:\/\/thebestcars.gr\/wp-content\/uploads\/2026\/06\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_88719aa0397ff838083025dc45d04e77.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"Thomas Schlueter\" width=\"50\" height=\"50\" title=\"Thomas Schlueter\" onerror=\"if(this.src!='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png')this.src='https:\/\/thebestcars.gr\/wp-content\/plugins\/widget-google-reviews\/assets\/img\/guest.png';\" ><a href=\"https:\/\/www.google.com\/maps\/contrib\/103498678372938571526\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">Thomas Schlueter<\/a><div class=\"wp-google-time\" data-time=\"1782294279\">09:44 24 Jun 26<\/div><\/div><div class=\"wp-google-stars\"><span class=\"wp-stars\"><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><span class=\"wp-star\"><svg width=\"17\" height=\"17\" viewBox=\"0 0 1792 1792\"><path d=\"M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z\" fill=\"#fb8e28\"><\/path><\/svg><\/span><\/span><\/div><div><div class=\"wp-google-feedback\"  style=\"height:100!important\"><span class=\"wp-google-text\">We rented a car from The Best Cars again this year, for two months. We never had any problems with the process or the car; everything always went perfectly. The cars were great, and the staff was incredibly friendly. Thank you for everything! We're looking forward to next year.Lisa and Thomas<\/span><\/div><\/div><svg viewBox=\"0 0 512 512\" height=\"18\" width=\"18\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M482.56 261.36c0-16.73-1.5-32.83-4.29-48.27H256v91.29h127.01c-5.47 29.5-22.1 54.49-47.09 71.23v59.21h76.27c44.63-41.09 70.37-101.59 70.37-173.46z\" fill=\"#4285f4\"\/><path d=\"M256 492c63.72 0 117.14-21.13 156.19-57.18l-76.27-59.21c-21.13 14.16-48.17 22.53-79.92 22.53-61.47 0-113.49-41.51-132.05-97.3H45.1v61.15c38.83 77.13 118.64 130.01 210.9 130.01z\" fill=\"#34a853\"\/><path d=\"M123.95 300.84c-4.72-14.16-7.4-29.29-7.4-44.84s2.68-30.68 7.4-44.84V150.01H45.1C29.12 181.87 20 217.92 20 256c0 38.08 9.12 74.13 25.1 105.99l78.85-61.15z\" fill=\"#fbbc05\"\/><path d=\"M256 113.86c34.65 0 65.76 11.91 90.22 35.29l67.69-67.69C373.03 43.39 319.61 20 256 20c-92.25 0-172.07 52.89-210.9 130.01l78.85 61.15c18.56-55.78 70.59-97.3 132.05-97.3z\" fill=\"#ea4335\"\/><path d=\"M20 20h472v472H20V20z\"\/><\/g><\/svg><\/div><\/div><\/div><div class=\"grw-controls\"><div class=\"grw-btns grw-prev\"><svg viewBox=\"0 0 24 24\"><path d=\"M14.6,18.4L8.3,12l6.4-6.4l0.7,0.7L9.7,12l5.6,5.6L14.6,18.4z\"><\/path><\/svg><\/div><div class=\"grw-btns grw-next\"><svg viewBox=\"0 0 24 24\"><path d=\"M9.4,18.4l-0.7-0.7l5.6-5.6L8.6,6.4l0.7-0.7l6.4,6.4L9.4,18.4z\"><\/path><\/svg><\/div><\/div><\/div><div class=\"rpi-dots-wrap\"><div class=\"rpi-dots\"><\/div><\/div><\/div><\/div><img decoding=\"async\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" alt=\"js_loader\" onload=\"(function(el, data) {var f = function() { window.grw_init ? grw_init(el, data) : setTimeout(f, 400) }; f() })(this, 'slider');\" width=\"1\" height=\"1\" style=\"display:none\"><\/div>        <\/p>\n<\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-1 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\" style=\"--awb-padding-right:20PX;--awb-overflow:hidden;--awb-bg-color:var(--awb-custom_color_1);--awb-bg-color-hover:var(--awb-custom_color_1);--awb-bg-size:cover;--awb-border-radius:50px 50px 50px 50px;--awb-width-large:50%;--awb-margin-top-large:0px;--awb-spacing-right-large:3.072%;--awb-margin-bottom-large:0px;--awb-spacing-left-large:0%;--awb-width-medium:50%;--awb-order-medium:0;--awb-spacing-right-medium:3.072%;--awb-spacing-left-medium:0%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-3 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"--awb-text-color:var(--awb-color1);\"><h4 class=\"fusion-title-heading title-heading-center\" style=\"margin:0;\"><p style=\"text-align: center;\">Immer inkludiert<\/p><\/h4><\/div><ul style=\"--awb-size:13px;--awb-textcolor:var(--awb-color1);--awb-line-height:22.1px;--awb-icon-width:22.1px;--awb-icon-height:22.1px;--awb-icon-margin:9.1px;--awb-content-margin:31.2px;\" class=\"fusion-checklist fusion-checklist-1 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon awb-icon-check\" aria-hidden=\"true\"><\/i><\/span><div class=\"fusion-li-item-content\">\n<p><strong>C.D.W.<\/strong> (Unfallsch\u00e4den ) ohne Selbstbehalt<\/p>\n<\/div><\/li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon awb-icon-check\" aria-hidden=\"true\"><\/i><\/span><div class=\"fusion-li-item-content\">\n<p><strong>F.D.W.<\/strong> (Vollkasko) ohne Selbstbehalt<\/p>\n<\/div><\/li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon awb-icon-check\" aria-hidden=\"true\"><\/i><\/span><div class=\"fusion-li-item-content\"><strong>SPECIAL F.D.W.<\/strong> (Unterboden, Glas, Kratzer, etc.) ohne Selbstbehalt<\/div><\/li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon awb-icon-check\" aria-hidden=\"true\"><\/i><\/span><div class=\"fusion-li-item-content\">\n<p><strong>P.A.I.<\/strong>(Insassen Versicherung) ohne Selbstbehalt<\/p>\n<\/div><\/li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon awb-icon-check\" aria-hidden=\"true\"><\/i><\/span><div class=\"fusion-li-item-content\">\n<p><strong>T.P.I.<\/strong> (Versicherung f\u00fcr Dritte) ohne Selbstbehalt<\/p>\n<\/div><\/li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon awb-icon-check\" aria-hidden=\"true\"><\/i><\/span><div class=\"fusion-li-item-content\">\n<p><strong>T.W.I.<\/strong> (Diebstahl Versicherung) ohne Selbstbehalt<\/p>\n<\/div><\/li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon awb-icon-check\" aria-hidden=\"true\"><\/i><\/span><div class=\"fusion-li-item-content\">\n<p><strong>F.I.<\/strong> (Feuer Versicherung) ohne Selbstbehalt<\/p>\n<\/div><\/li><\/ul><div class=\"fusion-text fusion-text-3\" style=\"--awb-font-size:15px;--awb-text-color:var(--awb-color1);--awb-margin-top:15PX;\"><p style=\"text-align: right;\"><a href=\"https:\/\/thebestcars.gr\/de\/mietbedingungen\/\">Mietbedingungen lesen &gt;&gt;<\/a><\/p>\n<\/div><\/div><\/div><\/div>\n<\/div><\/div><\/div><\/div>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"100-width.php","meta":{"footnotes":""},"class_list":["post-612","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Reservieren - The Best Cars<\/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:\/\/thebestcars.gr\/de\/booking\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Reservieren - The Best Cars\" \/>\n<meta property=\"og:url\" content=\"https:\/\/thebestcars.gr\/de\/booking\/\" \/>\n<meta property=\"og:site_name\" content=\"The Best Cars\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/thebestcarrentals.Crete\" \/>\n<meta property=\"article:modified_time\" content=\"2025-01-20T12:21:32+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data1\" content=\"7\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/thebestcars.gr\/de\/booking\/\",\"url\":\"https:\/\/thebestcars.gr\/de\/booking\/\",\"name\":\"Reservieren - The Best Cars\",\"isPartOf\":{\"@id\":\"https:\/\/thebestcars.gr\/#website\"},\"datePublished\":\"2024-11-08T19:46:07+00:00\",\"dateModified\":\"2025-01-20T12:21:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/thebestcars.gr\/de\/booking\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/thebestcars.gr\/de\/booking\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/thebestcars.gr\/de\/booking\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/thebestcars.gr\/de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Reservieren\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/thebestcars.gr\/#website\",\"url\":\"https:\/\/thebestcars.gr\/\",\"name\":\"The Best Cars\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/thebestcars.gr\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/thebestcars.gr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/thebestcars.gr\/#organization\",\"name\":\"The Best Cars\",\"url\":\"https:\/\/thebestcars.gr\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/thebestcars.gr\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/thebestcars.gr\/wp-content\/uploads\/2024\/01\/thebest_logo.png\",\"contentUrl\":\"https:\/\/thebestcars.gr\/wp-content\/uploads\/2024\/01\/thebest_logo.png\",\"width\":184,\"height\":61,\"caption\":\"The Best Cars\"},\"image\":{\"@id\":\"https:\/\/thebestcars.gr\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/thebestcarrentals.Crete\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Reservieren - The Best Cars","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:\/\/thebestcars.gr\/de\/booking\/","og_locale":"de_DE","og_type":"article","og_title":"Reservieren - The Best Cars","og_url":"https:\/\/thebestcars.gr\/de\/booking\/","og_site_name":"The Best Cars","article_publisher":"https:\/\/www.facebook.com\/thebestcarrentals.Crete","article_modified_time":"2025-01-20T12:21:32+00:00","twitter_card":"summary_large_image","twitter_misc":{"Gesch\u00e4tzte Lesezeit":"7\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/thebestcars.gr\/de\/booking\/","url":"https:\/\/thebestcars.gr\/de\/booking\/","name":"Reservieren - The Best Cars","isPartOf":{"@id":"https:\/\/thebestcars.gr\/#website"},"datePublished":"2024-11-08T19:46:07+00:00","dateModified":"2025-01-20T12:21:32+00:00","breadcrumb":{"@id":"https:\/\/thebestcars.gr\/de\/booking\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/thebestcars.gr\/de\/booking\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/thebestcars.gr\/de\/booking\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/thebestcars.gr\/de\/"},{"@type":"ListItem","position":2,"name":"Reservieren"}]},{"@type":"WebSite","@id":"https:\/\/thebestcars.gr\/#website","url":"https:\/\/thebestcars.gr\/","name":"The Best Cars","description":"","publisher":{"@id":"https:\/\/thebestcars.gr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/thebestcars.gr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/thebestcars.gr\/#organization","name":"The Best Cars","url":"https:\/\/thebestcars.gr\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/thebestcars.gr\/#\/schema\/logo\/image\/","url":"https:\/\/thebestcars.gr\/wp-content\/uploads\/2024\/01\/thebest_logo.png","contentUrl":"https:\/\/thebestcars.gr\/wp-content\/uploads\/2024\/01\/thebest_logo.png","width":184,"height":61,"caption":"The Best Cars"},"image":{"@id":"https:\/\/thebestcars.gr\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/thebestcarrentals.Crete"]}]}},"_links":{"self":[{"href":"https:\/\/thebestcars.gr\/de\/wp-json\/wp\/v2\/pages\/612","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thebestcars.gr\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/thebestcars.gr\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/thebestcars.gr\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/thebestcars.gr\/de\/wp-json\/wp\/v2\/comments?post=612"}],"version-history":[{"count":26,"href":"https:\/\/thebestcars.gr\/de\/wp-json\/wp\/v2\/pages\/612\/revisions"}],"predecessor-version":[{"id":768,"href":"https:\/\/thebestcars.gr\/de\/wp-json\/wp\/v2\/pages\/612\/revisions\/768"}],"wp:attachment":[{"href":"https:\/\/thebestcars.gr\/de\/wp-json\/wp\/v2\/media?parent=612"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}