{"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\">5.0<\/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=\"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><\/span><\/div><div class=\"wp-google-powered\">Basierend auf 841 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\/08\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_b97ad068fa1d569325d076051f35d173.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"Simon \u201cFoz\u201d Foster\" width=\"50\" height=\"50\" title=\"Simon \u201cFoz\u201d Foster\" 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\/107141734673322964679\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">Simon \u201cFoz\u201d Foster<\/a><div class=\"wp-google-time\" data-time=\"1786742206\">21:16 14 Aug 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\">Great rental , easy pickup and drop off . Friendly staff .<\/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\/08\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_8ad120ec8c80b6cd33ac69e565dd083e.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"Flaxxes\" width=\"50\" height=\"50\" title=\"Flaxxes\" 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\/118045301867754004176\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">Flaxxes<\/a><div class=\"wp-google-time\" data-time=\"1786459375\">14:42 11 Aug 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\">A very good and reputable car rental company! It was my first time renting a car, so I was a little unsure. The good reviews led me here. I rented a car for 8 days, and everything went smoothly. I received everything I booked. I was particularly impressed by the fact that no deposit or credit card is required (meaning you don't need to photograph any pre-existing damage, although you can if you wish). Payment is made on-site, and you receive the keys, the paperwork, and a brief explanation of the car. The service is excellent, as The Best Cars is always available via WhatsApp for any questions or problems. We even received cold bottles of water upon arrival after our flight, which made us feel welcome right away!Simply fantastic! I will definitely rent a car here again! Thank you for the wonderful experience \ud83d\ude42<\/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\/08\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_6a6eef40d90aa0dd9535e7de035cdc9d.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"Andreea Artem\" width=\"50\" height=\"50\" title=\"Andreea Artem\" 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\/115373879819834879105\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">Andreea Artem<\/a><div class=\"wp-google-time\" data-time=\"1786447697\">11:28 11 Aug 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\">Everything was so easy with this company!I highly recommend it!<\/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\/08\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_57e1f0791d622ba3d1233fee1236bd17.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"Jan Witek\" width=\"50\" height=\"50\" title=\"Jan Witek\" 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\/108055239890361296549\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">Jan Witek<\/a><div class=\"wp-google-time\" data-time=\"1786430030\">06:33 11 Aug 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\">If you're planning a trip to Crete and want to rent a car, you couldn't have come to a better place. We were delighted with the service from Best Cars! From start to finish, the company's communication was exemplary. Picking up our reserved car at the airport was lightning fast and in a great atmosphere. The car was brand new, well-maintained, and perfectly suited to the winding, mountainous roads of Crete. A huge plus for complete transparency \u2013 no hidden fees on return. The customer service is world-class! We will definitely be back on our next visit to the island.<\/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\/08\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_163f81d1aeb2c8a1330ce60c10daf0de.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"Ian White\" width=\"50\" height=\"50\" title=\"Ian White\" 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\/113111970219517706203\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">Ian White<\/a><div class=\"wp-google-time\" data-time=\"1786393911\">20:31 10 Aug 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\">Can\u2019t speak highly enough of the guys at Best cars at Crete Airport. A very quick turn around, was on the road in less than 10 minutes.  Very competitive prices and would definitely recommend their Friendly and professional service.  Top stuff.<\/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\/08\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_7ebb359f09d3ee513bc16ee8e8df0779.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"Hai Tran\" width=\"50\" height=\"50\" title=\"Hai Tran\" 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\/104654482930168735037\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">Hai Tran<\/a><div class=\"wp-google-time\" data-time=\"1786202284\">15:18 08 Aug 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\">Everything went smoothly. Great service and reliable good condition car. Easy to communicate with. I will be using them again in future!<\/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\/08\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_c681628b3da3ed9d2ab40c5c77c80b57.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"Liane Wunderlich\" width=\"50\" height=\"50\" title=\"Liane Wunderlich\" 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\/117107635354077126552\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">Liane Wunderlich<\/a><div class=\"wp-google-time\" data-time=\"1786186713\">10:58 08 Aug 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 are completely satisfied with the service from The Best Cars. We were greeted at the airport by a very friendly contact person and again by a very friendly employee upon return. The car was well-maintained, and we even had the option of refueling with both gas and petrol \u2013 a great perk given current fuel prices. We will definitely book our next car 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\/08\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_3f5c059afba33fb6c08294b69e23cc74.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"Patrik Sch\u00e4fer\" width=\"50\" height=\"50\" title=\"Patrik Sch\u00e4fer\" 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\/106898249325480580861\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">Patrik Sch\u00e4fer<\/a><div class=\"wp-google-time\" data-time=\"1786168438\">05:53 08 Aug 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 value for money! We had a flat tire, but the colleague on the phone took great care of us and organized everything perfectly. 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\/08\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_f60d04bfe91b2f36eecb8e9421735bab.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"\u0410\u0440\u0442\u0451\u043c \u041d\" width=\"50\" height=\"50\" title=\"\u0410\u0440\u0442\u0451\u043c \u041d\" 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\/109005333121954397187\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">\u0410\u0440\u0442\u0451\u043c \u041d<\/a><div class=\"wp-google-time\" data-time=\"1786117334\">15:42 07 Aug 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\">Using this service left a very good impression. Friendly and good attitude of the service employees, they always answered questions and advised possible options. I received a well-maintained car, when registering the car, the employee asked when my flight back was and, realizing that there was a lot of time from the moment of returning the car to departure from the island, offered to extend the rental for 4 hours for free.<\/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\/08\/ChIJHwAAB-9bmhQRZgHcWFI1Euk_d9a9f0a28f84e64cf1c2b543db119e6c.jpg\" loading=\"lazy\" class=\"rplg-review-avatar\" alt=\"David Rittner\" width=\"50\" height=\"50\" title=\"David Rittner\" 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\/107710211875346753201\/reviews\" class=\"wp-google-name\" target=\"_blank\" rel=\"nofollow noopener\">David Rittner<\/a><div class=\"wp-google-time\" data-time=\"1786078567\">04:56 07 Aug 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\">Easy and smooth. Very good communication. Supporting an helpful. Thx<\/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\/home\/\"},{\"@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\/home\/"},{"@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}]}}