
AREAS WE SERVE
Proudly Serving North Idaho
Serving North Idaho with premium concrete solutions designed to protect, restore, and transform your property. Whether enhancing your garage with a professionally installed decorative coating system or repairing damaged concrete to extend its life, we're committed to delivering exceptional craftsmanship, dependable service, and results built to last.
PREMIUM SURFACE SOLUTIONS DELIVERED WITH LOCAL EXPERTISE, PROFESSIONAL SERVICE, AND THE INFINITY STANDARD™.
Website Created by: Serenity Sands Enterprises, LLC | Powered by Convertri
Infinity Garage Floors
(208) 457-2236
✉ infinitygaragefloors@gmail.com
Serving North Idaho
Boundary • Bonner • Kootenai • Shoshone
© 2026 Infinity Garage Floors LLC

BOUNDARY COUNTY
BONNER COUNTY
KOOTENAI COUNTY
SHOSHONE COUNTY
NEZ PERCE COUNTY
LATAH COUNTY
BENEWAH COUNTY






SERVING COMMUNITIES INCLUDING
Don't see your community listed? Contact us--we may still service your area.

Coeur d' Alene Post Falls Hayden Rathdrum Sandpoint Bonners Ferry
Wallace Kellogg St. Maries Plummer Moscow Lewiston


LOCAL KNOWLEDGE
PREMIUM RESULTS
PROFESSIONAL SERVICE
We understand North Idaho homes, weather, concrete conditions, and seasonal demands.
Expert craftsmanship delivered with precision and built for lasting performance.
Clear communication, dependable scheduling, and respect for your property from start to finish.
North Idaho Based. Locally Focused. Built on Integrity.


COUNTIES WE SERVE
Service availability may vary based on project location, size, and scheduling.

document.addEventListener("DOMContentLoaded", function () {
var primaryZIPs = [
"83814",
"83815",
"83816",
"83854",
"83877",
"83835",
"83858",
"83864",
"83801",
"83803",
"83869"
];
var extendedZIPs = [
"83804",
"83841",
"83822",
"83852",
"83856",
"83860",
"83821",
"83848",
"83805",
"83837",
"83861",
"83851",
"83870",
"83802",
"83812",
"83855",
"83857",
"83834",
"83806",
"83823",
"83843",
"83871",
"83832",
"83842",
"83501"
];
var widget =
document.getElementById("infinity-service-checker");
var zipInput =
document.getElementById("iscZipInput");
var checkButton =
document.getElementById("iscCheckButton");
var serviceResult =
document.getElementById("iscServiceResult");
if (
!widget ||
!zipInput ||
!checkButton ||
!serviceResult
) {
return;
}
function showResult(message, resultClass) {
serviceResult.textContent = message;
serviceResult.className =
"isc-visible " + resultClass;
}
function checkServiceArea() {
var zip = zipInput.value.trim();
if (!/^\d{5}$/.test(zip)) {
showResult(
"Please enter a valid five-digit ZIP code.",
"isc-error"
);
zipInput.focus();
return;
}
if (primaryZIPs.indexOf(zip) !== -1) {
showResult(
"✓ Great news! Infinity proudly serves your area. Request your
complimentary estimate today.",
"isc-success"
);
return;
}
if (extendedZIPs.indexOf(zip) !== -1) {
showResult(
"✓ Great news! Infinity serves your area. Contact us to
discuss your project and scheduling options.",
"isc-success"
);
return;
}
showResult(
"We may not currently service this location, but please contact
us. We may still be able to help.",
"isc-warning"
);
}
checkButton.addEventListener("click", function (event) {
event.preventDefault();
checkServiceArea();
});
zipInput.addEventListener("keydown", function (event) {
if (event.key === "Enter" || event.keyCode === 13) {
event.preventDefault();
checkServiceArea();
}
});
zipInput.addEventListener("input", function () {
this.value = this.value
.replace(/\D/g, "")
.slice(0, 5);
});
});