top of page

<style> body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: transparent; color: #333; margin: 0; padding: 0; overflow: hidden; } .calc-container { max-width: 480px; margin: 10px auto; background: #fff; padding: 25px; border-radius: 10px; box-shadow: 0 8px 20px rgba(0,0,0,0.08); border: 1px solid #eee; } .calc-container h2 { text-align: center; color: #111; margin-bottom: 20px; font-size: 22px; font-weight: 700; } .form-group { margin-bottom: 15px; } .form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; color: #666; } .form-group select, .form-group input { width: 100%; padding: 10px; border: 1.5px solid #ddd; border-radius: 5px; font-size: 14px; color: #333; } .btn-calc { width: 100%; background: #c9a84c; color: #fff; border: none; padding: 12px; border-radius: 5px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s; margin-top: 5px; text-transform: uppercase; } .btn-calc:hover { background: #b0913a; } .result-area { margin-top: 20px; padding: 15px; background: #fdfaf0; border-radius: 6px; border: 1px dashed #c9a84c; display: none; text-align: center; } .price { font-size: 28px; font-weight: 900; color: #c9a84c; margin: 10px 0; } </style> <div class=\"calc-container\" id=\"leadGate\"> <h2>Unlock Your Quote</h2> <div class=\"form-group\"><label>Full Name</label><input type=\"text\" id=\"leadName\" placeholder=\"John Doe\"></div> <div class=\"form-group\"><label>Email</label><input type=\"email\" id=\"leadEmail\" placeholder=\"john@example.com\"></div> <div class=\"form-group\"><label>Phone</label><input type=\"tel\" id=\"leadPhone\" placeholder=\"(706) 555-0123\"></div> <button class=\"btn-calc\" onclick=\"submitLead()\">Access Calculator</button> </div> <div class=\"calc-container\" id=\"mainCalc\" style=\"display: none;\"> <h2>The Warehouse Estimator</h2> <div class=\"form-group\"> <label>Rental Space Option</label> <select id=\"spaceOption\"> <option value=\"900\">Patio ($900)</option> <option value=\"1200\">Main Floor ($1,200)</option> <option value=\"1700\">Main Floor / Patio ($1,700)</option> <option value=\"2500\">Full House ($2,500)</option> </select> </div> <div class=\"form-group\"> <label>Extended Hours ($75/hr)</label> <input type=\"number\" id=\"extHours\" value=\"0\" min=\"0\"> </div> <div class=\"form-group\"> <label>Security Needed? ($45/hr, Min 4)</label> <select id=\"security\"> <option value=\"0\">No</option> <option value=\"1\">Yes</option> </select> </div> <div class=\"form-group\"> <label>Extra Golf Carts ($350 ea)</label> <input type=\"number\" id=\"golfCarts\" value=\"0\" min=\"0\"> </div> <button class=\"btn-calc\" id=\"calcBtn\" onclick=\"calculateQuote()\">Calculate Base Estimate</button> <div class=\"result-area\" id=\"resultArea\"> <p style=\"margin:0; font-size:12px;\">TOTAL RENTAL ESTIMATE</p> <div class=\"price\" id=\"priceDisplay\">$0</div> <p style=\"font-size:11px; color:#777;\">Includes Tables/Chairs & $600 Deposit</p> <button class=\"btn-calc\" style=\"background: #111; margin-top:10px;\" onclick=\"window.open('https://form.jotform.com/250984221759061', '_blank')\">Schedule Tour to Confirm</button> </div> </div> <script> let clickCount = 0; function submitLead() { const name = document.getElementById('leadName').value; const email = document.getElementById('leadEmail').value; if(!name || !email) { alert(\"Please enter your name and email.\"); return; } document.getElementById('leadGate').style.display = 'none'; document.getElementById('mainCalc').style.display = 'block'; } function calculateQuote() { clickCount++; if (clickCount >= 3) { alert(\"For a final, locked-in price, please schedule a quick tour with our team!\"); window.top.location.href = \"https://www.thewarehouseaugustaga.com/reg-serv#/\"; return; } const spaceBase = parseInt(document.getElementById('spaceOption').value); const extHours = parseInt(document.getElementById('extHours').value) * 75; const carts = parseInt(document.getElementById('golfCarts').value) * 350; let securityCost = 0; if(document.getElementById('security').value === \"1\") { securityCost = 45 * 4; // Min 4 hours } const total = spaceBase + extHours + carts + securityCost; document.getElementById('priceDisplay').innerText = \"$\" + total.toLocaleString(); document.getElementById('resultArea').style.display = 'block'; if (clickCount === 2) document.getElementById('calcBtn').innerText = \"Final Attempt\"; } </script>

bottom of page