Thank You

<!-- ============================================================
  LUCY LOU'S MAID SERVICE LLC — THANK YOU PAGE
  
  HOW TO USE:
  1. In WordPress go to Pages > Add New
  2. Title the page exactly: Thank You
  3. Add a Custom HTML block
  4. Paste ALL of this code into it
  5. Publish the page
  6. Confirm the published URL is: https://lucylousmaidservice.org/thank-you/
     If the URL is different, update the _next field in the main page form.
============================================================ -->

<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Nunito:wght@400;600;700;800&display=swap" rel="stylesheet"/>

<style>
#ll-ty-wrap *, #ll-ty-wrap *::before, #ll-ty-wrap *::after { box-sizing: border-box; margin: 0; padding: 0; }
#ll-ty-wrap {
  --teal: #3dbfbf; --teal-dark: #1e8c8c; --teal-deep: #145f6e;
  --teal-pale: #c6eeee; --teal-light: #7ddada;
  --pink: #e8317a; --pink-light: #f472a8; --pink-dark: #b5235c;
  --cream: #fffdf5; --gold-light: #f0cc5a;
  --ink: #1a3a3a; --ink-light: #3a6060;
  font-family: 'Nunito', sans-serif;
  background: linear-gradient(160deg, #dff6f6 0%, var(--cream) 60%, #fde8f0 100%);
  min-height: 100vh;
  width: 100vw !important; max-width: 100vw !important;
  position: relative !important;
  left: 50% !important; right: 50% !important;
  margin-left: -50vw !important; margin-right: -50vw !important;
  margin-top: 0 !important; margin-bottom: 0 !important;
  padding: 0 !important; overflow-x: hidden !important;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.entry-content, .wp-block-post-content, .wp-block-group__inner-container,
.site-main article, .post-content, .page-content,
.wp-site-blocks > *, .is-layout-flow, .is-layout-constrained {
  padding-left: 0 !important; padding-right: 0 !important; max-width: none !important;
}

/* SPARKLE */
#ll-ty-sparkle { position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.25; }

/* CARD */
.ll-ty-card {
  position: relative; z-index: 1;
  background: #fff;
  border-radius: 28px;
  padding: 4rem 3.5rem;
  max-width: 620px;
  width: calc(100% - 3rem);
  margin: 3rem auto;
  text-align: center;
  border: 2px solid var(--teal-pale);
  box-shadow: 0 20px 60px rgba(61,191,191,0.18), 0 4px 16px rgba(0,0,0,0.06);
  animation: ll-ty-pop 0.7s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes ll-ty-pop { from { opacity: 0; transform: scale(0.88) translateY(30px); } to { opacity: 1; transform: scale(1) translateY(0); } }

/* CHECK CIRCLE */
.ll-ty-check {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem auto;
  box-shadow: 0 8px 28px rgba(61,191,191,0.4);
  animation: ll-ty-bounce 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards 0.3s;
  opacity: 0;
}
@keyframes ll-ty-bounce { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
.ll-ty-check svg { width: 46px; height: 46px; stroke: #fff; stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* TITLE */
.ll-ty-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  color: var(--teal-deep);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

/* DIVIDER */
.ll-ty-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--pink));
  border-radius: 999px;
  margin: 1.1rem auto 1.5rem auto;
}

/* MESSAGE */
.ll-ty-msg {
  font-size: 1.08rem;
  color: var(--ink-light);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.ll-ty-msg strong { color: var(--teal-dark); font-weight: 800; }

/* HIGHLIGHT BOX */
.ll-ty-box {
  background: linear-gradient(135deg, #f0fbfb, #e6f7f7);
  border: 2px solid var(--teal-pale);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.97rem;
  color: var(--ink);
  line-height: 1.75;
}
.ll-ty-box .ll-ty-step {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 0.6rem;
  text-align: left;
}
.ll-ty-box .ll-ty-step:last-child { margin-bottom: 0; }
.ll-ty-step-num {
  width: 26px; height: 26px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; margin-top: 0.1rem;
}

/* PHONE */
.ll-ty-phone {
  font-size: 0.95rem; color: var(--ink-light);
  margin-bottom: 2rem; line-height: 1.7;
}
.ll-ty-phone a {
  display: inline-block;
  color: var(--pink);
  font-weight: 800;
  font-size: 1.5rem;
  text-decoration: none;
  margin-top: 0.25rem;
}
.ll-ty-phone a:hover { color: var(--pink-dark); }

/* BACK BUTTON */
.ll-ty-back {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff !important;
  padding: 0.9rem 2.5rem;
  border-radius: 999px;
  font-size: 0.97rem;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(61,191,191,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ll-ty-back:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(61,191,191,0.5); }

/* FOOTER NOTE */
.ll-ty-footnote {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #aac8c8;
}

/* CONFETTI DOTS */
.ll-confetti { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 2; overflow: hidden; }
.ll-dot { position: absolute; border-radius: 50%; animation: ll-fall linear forwards; }
@keyframes ll-fall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

@media (max-width: 600px) {
  .ll-ty-card { padding: 2.5rem 1.5rem; }
  .ll-ty-title { font-size: 2.4rem; }
}
</style>

<div id="ll-ty-wrap">
  <canvas id="ll-ty-sparkle"></canvas>
  <div class="ll-confetti" id="ll-confetti"></div>

  <div class="ll-ty-card">

```
<!-- Animated check circle -->
<div class="ll-ty-check">
  <svg viewBox="0 0 52 52"><polyline points="14,27 22,36 38,18"/></svg>
</div>

<!-- Title -->
<h1 class="ll-ty-title">Thank You!</h1>
<div class="ll-ty-divider"></div>

<!-- Main message -->
<p class="ll-ty-msg">
  Your form has been submitted and <strong>Lindsay will reach out to you within two business days</strong> to set up your walkthrough appointment.
</p>

<!-- What happens next -->
<div class="ll-ty-box">
  <div class="ll-ty-step">
    <div class="ll-ty-step-num">1</div>
    <div>Lindsay reviews your intake form and prepares for your visit.</div>
  </div>
  <div class="ll-ty-step">
    <div class="ll-ty-step-num">2</div>
    <div>She contacts you within <strong>two business days</strong> to schedule your in-person walkthrough.</div>
  </div>
  <div class="ll-ty-step">
    <div class="ll-ty-step-num">3</div>
    <div>At the walkthrough, you'll receive a personalized quote — no surprises, no add-ons!</div>
  </div>
</div>

<!-- Phone -->
<div class="ll-ty-phone">
  Questions in the meantime? Call or text Lindsay directly:<br/>
  <a href="tel:9362308130">(936) 230-8130</a>
</div>

<!-- Back to home -->
<a href="https://lucylousmaidservice.org/" class="ll-ty-back">← Back to Lucy Lou's Home</a>

<p class="ll-ty-footnote">Lucy Lou's Maid Service LLC &nbsp;·&nbsp; Montgomery, TX &nbsp;·&nbsp; Licensed &amp; Insured</p>
```

  </div>
</div>

<script>
(function(){

  /* ── Sparkle canvas ── */
  var canvas = document.getElementById('ll-ty-sparkle');
  if(canvas){
    var ctx = canvas.getContext('2d'), sp = [], t = 0;
    function resize(){ canvas.width = window.innerWidth; canvas.height = window.innerHeight; }
    resize(); window.addEventListener('resize', resize);
    for(var i=0;i<60;i++) sp.push({x:Math.random()*window.innerWidth,y:Math.random()*window.innerHeight,sz:Math.random()*2+0.5,spd:Math.random()*0.015+0.004,ph:Math.random()*Math.PI*2});
    function star(cx,cy,r,op){ctx.save();ctx.globalAlpha=op;ctx.fillStyle='#3dbfbf';ctx.beginPath();for(var i=0;i<5;i++){var a1=i*4*Math.PI/5-Math.PI/2,a2=(i*4+2)*Math.PI/5-Math.PI/2;i===0?ctx.moveTo(cx+r*Math.cos(a1),cy+r*Math.sin(a1)):ctx.lineTo(cx+r*Math.cos(a1),cy+r*Math.sin(a1));ctx.lineTo(cx+r*0.4*Math.cos(a2),cy+r*0.4*Math.sin(a2));}ctx.closePath();ctx.fill();ctx.restore();}
    (function anim(){ctx.clearRect(0,0,canvas.width,canvas.height);t+=0.01;sp.forEach(function(s){star(s.x,s.y,s.sz,(Math.sin(t*s.spd*100+s.ph)+1)/2*0.6);});requestAnimationFrame(anim);})();
  }

  /* ── Confetti burst ── */
  var container = document.getElementById('ll-confetti');
  var colors = ['#3dbfbf','#e8317a','#f0cc5a','#f472a8','#7ddada','#b5235c'];
  if(container){
    for(var i=0;i<55;i++){
      (function(i){
        setTimeout(function(){
          var dot = document.createElement('div');
          dot.className = 'll-dot';
          var size = Math.random()*10+5;
          dot.style.cssText = [
            'width:'+size+'px','height:'+size+'px',
            'left:'+Math.random()*100+'vw',
            'top:-20px',
            'background:'+colors[Math.floor(Math.random()*colors.length)],
            'animation-duration:'+(Math.random()*2.5+1.8)+'s',
            'animation-delay:'+'0s',
            'opacity:1'
          ].join(';');
          container.appendChild(dot);
          setTimeout(function(){ dot.remove(); }, 4500);
        }, i * 40);
      })(i);
    }
  }

})();
</script>