{"id":137,"date":"2024-11-26T22:51:35","date_gmt":"2024-11-26T22:51:35","guid":{"rendered":"https:\/\/correct-amoeba.10web.me\/quote-form\/"},"modified":"2026-03-10T19:48:43","modified_gmt":"2026-03-10T19:48:43","slug":"quote-form","status":"publish","type":"page","link":"https:\/\/andrewsautoservices.com\/?page_id=137","title":{"rendered":"Request Quote"},"content":{"rendered":"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-7387b849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<!DOCTYPE html>\n    <html lang=\"en\">\n    <head>\n        <style>\n            body {\n                margin: 0;\n            }\n    \n    \n    \n            .grid-text {\n                margin: 0 auto; \/* Centers the text horizontally *\/\n                text-align: left;\n                padding-left: 25px;\n                padding-right: 25px; \/* Added padding for better readability *\/\n                color: #00471C;\n                word-spacing: 1px;\n                margin-top: 5px;\n                line-height: 1.4em;\n                font-size: 20px;\n                font-family: \"Space Grotesk\", sans-serif;\n                font-optical-sizing: auto;\n                font-weight: 375;\n                font-style: normal;\n    \n                \/* New width and max-width to control the text width *\/\n                width: 80%;  \/* Set width to 80% of the container *\/\n                max-width: 600px;  \/* Optional, sets a max width for the text *\/\n            }\n    \n            \/* Media query for tablets and smaller screens *\/\n            @media (max-width: 768px) {\n                .grid-container {\n                    grid-template-columns: repeat(2, 1fr); \/* Use 2 columns on smaller screens *\/\n                }\n\n                \n\n\n            }\n    \n            \/* Media query for mobile screens *\/\n            @media (max-width: 480px) {\n                .grid-container {\n                    grid-template-columns: 1fr; \/* Use 1 column on mobile devices *\/\n                }\n    \n                .grid-text {\n                    display: none\n                }\n\n                .wp-image-225{\n                    display: none\n                }\n\n    \n    \n    \n            }\n        <\/style>\n        <meta charset=\"UTF-8\">\n        <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n        <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n        <link rel=\"stylesheet\" href=\"styles.css\">\n        <link rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\">\n        <link rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin>\n        <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Space+Grotesk:wght@300..700&#038;display=swap\" rel=\"stylesheet\">\n        <title>Andrews Auto Services<\/title>\n    <\/head>\n    \n    <body>\n        <div>\n            <p class=\"wrapper\">\n                <p class=\"grid-text\">Get in touch with Andrews Auto Services for all your vehicle maintenance and repair needs. Our team is here to assist you with top-notch service.<\/p>\n            <\/p>\n        <\/div>\n    <\/body>\n    <\/html>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"600\" height=\"338\" src=\"https:\/\/andrewsautoservices.com\/wp-content\/uploads\/2024\/12\/enginework_edited.png\" alt=\"\" class=\"wp-image-225\" srcset=\"https:\/\/andrewsautoservices.com\/wp-content\/uploads\/2024\/12\/enginework_edited.png 600w, https:\/\/andrewsautoservices.com\/wp-content\/uploads\/2024\/12\/enginework_edited-300x169.png 300w, https:\/\/andrewsautoservices.com\/wp-content\/uploads\/2024\/12\/enginework_edited-18x10.png 18w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/figure>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n\n\n<form id=\"repairRequestForm\" style=\"max-width:600px;margin:auto;\">\n  <p>\n    <label for=\"name\"><strong>Name<\/strong><\/label><br>\n    <input type=\"text\" id=\"name\" name=\"name\" required style=\"width:100%;padding:10px;\">\n  <\/p>\n\n  <p>\n    <label for=\"phone\"><strong>Phone\/Email<\/strong><\/label><br>\n    <input type=\"text\" id=\"phone\" name=\"phone\" required style=\"width:100%;padding:10px;\">\n  <\/p>\n\n  <p>\n    <label for=\"vehicle\"><strong>Vehicle<\/strong><\/label><br>\n    <input type=\"text\" id=\"vehicle\" name=\"vehicle\" placeholder=\"2014 Honda Accord\" style=\"width:100%;padding:10px;\">\n  <\/p>\n\n  <p>\n    <label for=\"message\"><strong>What do you need help with?<\/strong><\/label><br>\n    <textarea id=\"message\" name=\"message\" required style=\"width:100%;padding:10px;min-height:120px;\"><\/textarea>\n  <\/p>\n\n  <p>\n    <button type=\"submit\" style=\"padding:12px 18px;cursor:pointer;\">Send<\/button>\n  <\/p>\n\n  <div id=\"formStatus\" style=\"margin-top:10px;\"><\/div>\n<\/form>\n\n<script>\ndocument.getElementById(\"repairRequestForm\").addEventListener(\"submit\", async function(e) {\n  e.preventDefault();\n\n  const form = e.target;\n  const status = document.getElementById(\"formStatus\");\n\n  const payload = {\n    name: form.name.value.trim(),\n    phone: form.phone.value.trim(),\n    vehicle: form.vehicle.value.trim(),\n    message: form.message.value.trim()\n  };\n\n  status.textContent = \"Sending...\";\n\n  try {\n    const response = await fetch(\"https:\/\/default1a739c790c024d6ca1d3c756cf3d99.ad.environment.api.powerplatform.com:443\/powerautomate\/automations\/direct\/workflows\/70f893a55e0f4e59a67362fab2f84504\/triggers\/manual\/paths\/invoke?api-version=1&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=orXhJOhPHby8Q9e8_FfOKk2g1KWoCGUQiachTvI335E\", {\n      method: \"POST\",\n      headers: {\n        \"Content-Type\": \"application\/json\"\n      },\n      body: JSON.stringify(payload)\n    });\n\n    const responseText = await response.text();\n    console.log(\"Response status:\", response.status);\n    console.log(\"Response body:\", responseText);\n\n    if (response.ok) {\n      status.textContent = \"Thanks \u2014 your message was sent.\";\n      form.reset();\n    } else {\n      status.textContent = \"There was a problem sending your message. HTTP \" + response.status;\n    }\n  } catch (error) {\n    console.error(error);\n    status.textContent = \"There was a problem sending your message.\";\n  }\n});\n<\/script>\n<\/div>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Andrews Auto Services Get in touch with Andrews Auto Services for all your vehicle maintenance and repair needs. Our team is here to assist you with top-notch service. Name Phone\/Email Vehicle What do you need help with? Send<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"publish","template":"brizy-blank-template.php","meta":{"footnotes":""},"class_list":["post-137","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Request Quote - Andrews Auto Services<\/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:\/\/andrewsautoservices.com\/?page_id=137\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Request Quote - Andrews Auto Services\" \/>\n<meta property=\"og:description\" content=\"Andrews Auto Services Get in touch with Andrews Auto Services for all your vehicle maintenance and repair needs. Our team is here to assist you with top-notch service. Name Phone\/Email Vehicle What do you need help with? Send\" \/>\n<meta property=\"og:url\" content=\"https:\/\/andrewsautoservices.com\/?page_id=137\" \/>\n<meta property=\"og:site_name\" content=\"Andrews Auto Services\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-10T19:48:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/andrewsautoservices.com\/wp-content\/uploads\/2024\/12\/enginework_edited.png\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"338\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/andrewsautoservices.com\/?page_id=137\",\"url\":\"https:\/\/andrewsautoservices.com\/?page_id=137\",\"name\":\"Request Quote - Andrews Auto Services\",\"isPartOf\":{\"@id\":\"http:\/\/andrewsautoservices.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/andrewsautoservices.com\/?page_id=137#primaryimage\"},\"image\":{\"@id\":\"https:\/\/andrewsautoservices.com\/?page_id=137#primaryimage\"},\"thumbnailUrl\":\"https:\/\/andrewsautoservices.com\/wp-content\/uploads\/2024\/12\/enginework_edited.png\",\"datePublished\":\"2024-11-26T22:51:35+00:00\",\"dateModified\":\"2026-03-10T19:48:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/andrewsautoservices.com\/?page_id=137#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/andrewsautoservices.com\/?page_id=137\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/andrewsautoservices.com\/?page_id=137#primaryimage\",\"url\":\"https:\/\/andrewsautoservices.com\/wp-content\/uploads\/2024\/12\/enginework_edited.png\",\"contentUrl\":\"https:\/\/andrewsautoservices.com\/wp-content\/uploads\/2024\/12\/enginework_edited.png\",\"width\":600,\"height\":338},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/andrewsautoservices.com\/?page_id=137#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/andrewsautoservices.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Request Quote\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/andrewsautoservices.com\/#website\",\"url\":\"http:\/\/andrewsautoservices.com\/\",\"name\":\"Andrews Auto Services\",\"description\":\"\",\"publisher\":{\"@id\":\"http:\/\/andrewsautoservices.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/andrewsautoservices.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/andrewsautoservices.com\/#organization\",\"name\":\"Andrews Auto Services\",\"url\":\"http:\/\/andrewsautoservices.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/andrewsautoservices.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/andrewsautoservices.com\/wp-content\/uploads\/2024\/11\/logo_transparent_background.png\",\"contentUrl\":\"https:\/\/andrewsautoservices.com\/wp-content\/uploads\/2024\/11\/logo_transparent_background.png\",\"width\":3400,\"height\":1127,\"caption\":\"Andrews Auto Services\"},\"image\":{\"@id\":\"http:\/\/andrewsautoservices.com\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Request Quote - Andrews Auto Services","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:\/\/andrewsautoservices.com\/?page_id=137","og_locale":"en_US","og_type":"article","og_title":"Request Quote - Andrews Auto Services","og_description":"Andrews Auto Services Get in touch with Andrews Auto Services for all your vehicle maintenance and repair needs. Our team is here to assist you with top-notch service. Name Phone\/Email Vehicle What do you need help with? Send","og_url":"https:\/\/andrewsautoservices.com\/?page_id=137","og_site_name":"Andrews Auto Services","article_modified_time":"2026-03-10T19:48:43+00:00","og_image":[{"width":600,"height":338,"url":"https:\/\/andrewsautoservices.com\/wp-content\/uploads\/2024\/12\/enginework_edited.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/andrewsautoservices.com\/?page_id=137","url":"https:\/\/andrewsautoservices.com\/?page_id=137","name":"Request Quote - Andrews Auto Services","isPartOf":{"@id":"http:\/\/andrewsautoservices.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/andrewsautoservices.com\/?page_id=137#primaryimage"},"image":{"@id":"https:\/\/andrewsautoservices.com\/?page_id=137#primaryimage"},"thumbnailUrl":"https:\/\/andrewsautoservices.com\/wp-content\/uploads\/2024\/12\/enginework_edited.png","datePublished":"2024-11-26T22:51:35+00:00","dateModified":"2026-03-10T19:48:43+00:00","breadcrumb":{"@id":"https:\/\/andrewsautoservices.com\/?page_id=137#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/andrewsautoservices.com\/?page_id=137"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/andrewsautoservices.com\/?page_id=137#primaryimage","url":"https:\/\/andrewsautoservices.com\/wp-content\/uploads\/2024\/12\/enginework_edited.png","contentUrl":"https:\/\/andrewsautoservices.com\/wp-content\/uploads\/2024\/12\/enginework_edited.png","width":600,"height":338},{"@type":"BreadcrumbList","@id":"https:\/\/andrewsautoservices.com\/?page_id=137#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/andrewsautoservices.com\/"},{"@type":"ListItem","position":2,"name":"Request Quote"}]},{"@type":"WebSite","@id":"http:\/\/andrewsautoservices.com\/#website","url":"http:\/\/andrewsautoservices.com\/","name":"Andrews Auto Services","description":"","publisher":{"@id":"http:\/\/andrewsautoservices.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/andrewsautoservices.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/andrewsautoservices.com\/#organization","name":"Andrews Auto Services","url":"http:\/\/andrewsautoservices.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/andrewsautoservices.com\/#\/schema\/logo\/image\/","url":"https:\/\/andrewsautoservices.com\/wp-content\/uploads\/2024\/11\/logo_transparent_background.png","contentUrl":"https:\/\/andrewsautoservices.com\/wp-content\/uploads\/2024\/11\/logo_transparent_background.png","width":3400,"height":1127,"caption":"Andrews Auto Services"},"image":{"@id":"http:\/\/andrewsautoservices.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/andrewsautoservices.com\/index.php?rest_route=\/wp\/v2\/pages\/137","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/andrewsautoservices.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/andrewsautoservices.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/andrewsautoservices.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/andrewsautoservices.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=137"}],"version-history":[{"count":5,"href":"https:\/\/andrewsautoservices.com\/index.php?rest_route=\/wp\/v2\/pages\/137\/revisions"}],"predecessor-version":[{"id":364,"href":"https:\/\/andrewsautoservices.com\/index.php?rest_route=\/wp\/v2\/pages\/137\/revisions\/364"}],"wp:attachment":[{"href":"https:\/\/andrewsautoservices.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=137"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}