/* ====================================================
   POOPY SCOOPY — style.css
   Colors: Sky Blue (#12b8f0), Grass Green (#24b845),
           Yellow (#ffd93d), Navy (#1a3a4a)
   ==================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sky:        #12b8f0;
  --sky-dk:     #0aa3d8;
  --sky-lt:     #e0f7fd;
  --sky-pale:   #f0faff;
  --green:      #24b845;
  --green-dk:   #1a9e35;
  --green-lt:   #e8fdf0;
  --green-pale: #f2fef6;
  --yellow:     #ffd93d;
  --navy:       #1a3a4a;
  --text:       #1a3a4a;
  --muted:      #547a8b;
  --white:      #ffffff;
  --border:     #cceef8;
  --r:          18px;
  --r-lg:       28px;
  --sh-sm:      0 4px 18px rgba(18,184,240,.12);
  --sh:         0 8px 32px rgba(18,184,240,.18);
  --sh-lg:      0 16px 48px rgba(18,184,240,.22);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes float     { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-12px)} }
@keyframes floatSlow { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-18px) rotate(4deg)} }
@keyframes bounce    { 0%,100%{transform:translateY(0)} 40%{transform:translateY(-10px)} 60%{transform:translateY(-5px)} }
@keyframes pulse-sky { 0%,100%{box-shadow:0 0 0 0 rgba(18,184,240,.45)} 50%{box-shadow:0 0 0 14px rgba(18,184,240,0)} }
@keyframes wiggle    { 0%,100%{transform:rotate(0)} 20%{transform:rotate(-8deg)} 40%{transform:rotate(8deg)} 60%{transform:rotate(-4deg)} 80%{transform:rotate(4deg)} }
@keyframes pawDrift  { 0%{transform:translateY(0) translateX(0) rotate(0);opacity:.4} 100%{transform:translateY(-80px) translateX(20px) rotate(30deg);opacity:0} }
@keyframes slideUp   { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }
@keyframes scaleIn   { from{opacity:0;transform:scale(.85)} to{opacity:1;transform:scale(1)} }
@keyframes spinPaw   { 0%,100%{transform:rotate(0)} 50%{transform:rotate(20deg)} }
@keyframes grassWave { 0%,100%{transform:scaleX(1) translateX(0)} 50%{transform:scaleX(1.02) translateX(-6px)} }
@keyframes countUp   { from{opacity:0} to{opacity:1} }

/* Reveal on scroll */
.fade-up, .fade-right {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0ms);
}
.fade-right { transform: translateX(36px); }
.fade-up.visible, .fade-right.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════
   SHARED TYPOGRAPHY
════════════════════════════════════════ */
h1,h2,h3,h4 { line-height: 1.2; font-weight: 900; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: .6rem; }
p  { color: var(--muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-size: .85rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sky-dk);
  margin-bottom: .5rem; display: block;
}
.eyebrow.light { color: rgba(255,255,255,.75); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head p { font-size: 1.05rem; }

.light { color: #fff !important; }
.light p { color: rgba(255,255,255,.85); }

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 14px 30px; border-radius: 50px;
  font-weight: 800; font-size: 1rem;
  cursor: pointer; border: 3px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--sky); color: var(--white);
  border-color: var(--sky);
}
.btn-primary:hover { background: var(--sky-dk); border-color: var(--sky-dk); }

.btn-outline {
  background: transparent; color: var(--sky);
  border-color: var(--sky);
}
.btn-outline:hover { background: var(--sky); color: var(--white); }

.btn-ghost {
  background: rgba(255,255,255,.18); color: var(--white);
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.3); }

.btn-white {
  background: var(--white); color: var(--sky-dk);
  border-color: var(--white);
}
.btn-white:hover { background: var(--sky-lt); }

.btn-lg { padding: 17px 38px; font-size: 1.08rem; }
.btn-full { width: 100%; justify-content: center; }

.pulse { animation: pulse-sky 2.2s infinite; }

/* ════════════════════════════════════════
   ANNOUNCEMENT BAR
════════════════════════════════════════ */
.announce-bar {
  background: linear-gradient(90deg, var(--green-dk) 0%, var(--green) 100%);
  color: var(--white); text-align: center;
  padding: 10px 16px; font-size: .9rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  gap: .6rem; flex-wrap: wrap;
}
.announce-bar a { color: var(--yellow); text-decoration: underline; }
.announce-bar a:hover { color: var(--white); }
.paw-spin { display: inline-block; animation: spinPaw 2s ease-in-out infinite; }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 900;
  background: var(--white); border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 16px rgba(18,184,240,.1);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(18,184,240,.2); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-weight: 700; color: var(--text);
  transition: color .2s; position: relative;
}
.nav-links a:not(.nav-cta-btn)::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--sky);
  transition: width .25s;
}
.nav-links a:not(.nav-cta-btn):hover { color: var(--sky-dk); }
.nav-links a:not(.nav-cta-btn):hover::after { width: 100%; }

.nav-cta-btn {
  background: var(--sky); color: var(--white) !important;
  padding: 9px 22px; border-radius: 50px;
  font-weight: 800; transition: background .2s, transform .2s !important;
}
.nav-cta-btn:hover { background: var(--sky-dk) !important; transform: translateY(-2px) !important; }
.nav-cta-btn::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 26px; height: 3px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0da8e0 0%, #12b8f0 40%, #15d4b0 100%);
  padding: 80px 0 0;
  min-height: 90vh; display: flex; flex-direction: column;
}
.hero-paws {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
}
.fp {
  position: absolute; font-size: 2rem; opacity: .25;
  animation: pawDrift 5s ease-in infinite;
}
.fp1  { left:  8%; top: 20%; animation-duration: 6s; animation-delay: 0s; }
.fp2  { left: 20%; top: 65%; animation-duration: 7s; animation-delay: 1.2s; }
.fp3  { right: 12%; top: 15%; animation-duration: 5.5s; animation-delay: .6s; }
.fp4  { right: 25%; top: 55%; animation-duration: 8s; animation-delay: 2s; }
.fp5  { left: 42%; top: 80%; animation-duration: 6.5s; animation-delay: .3s; }
.fp6  { right: 5%;  top: 40%; animation-duration: 7.5s; animation-delay: 1.8s; }

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  position: relative; z-index: 2;
  flex: 1;
}
.hero-copy { padding-bottom: 120px; }

.pill-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.2); color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  padding: 7px 18px; border-radius: 50px;
  font-weight: 800; font-size: .9rem;
  margin-bottom: 1.4rem; backdrop-filter: blur(6px);
}

.hero-copy h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero-hl {
  color: var(--yellow);
  text-shadow: 2px 3px 0 rgba(0,0,0,.15);
}

.hero-sub { color: rgba(255,255,255,.9); font-size: 1.12rem; margin-bottom: 2rem; max-width: 520px; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: .75rem;
}
.hero-badges span {
  background: rgba(255,255,255,.18);
  color: var(--white); font-weight: 700; font-size: .9rem;
  padding: 6px 16px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}

.hero-img-col { display: flex; justify-content: center; padding-bottom: 80px; }
.hero-mascot { position: relative; display: inline-block; }
.mascot-img {
  width: 100%; max-width: 480px;
  animation: floatSlow 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.25));
}
.bounce-tag {
  position: absolute; top: 12%; right: -4%;
  background: var(--yellow); color: var(--navy);
  font-weight: 900; font-size: 1.2rem; line-height: 1.2;
  padding: 12px 18px; border-radius: 50%;
  width: 90px; height: 90px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; box-shadow: 0 6px 20px rgba(0,0,0,.2);
  animation: bounce 2.5s ease-in-out infinite;
  border: 3px solid #fff;
}
.bounce-tag small { font-size: .72rem; font-weight: 700; }

.hero-grass {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  line-height: 0;
}
.hero-grass svg { width: 100%; display: block; animation: grassWave 6s ease-in-out infinite; }

/* ════════════════════════════════════════
   STATS BAR
════════════════════════════════════════ */
.stats-bar { background: var(--green); padding: 32px 0; }
.stats-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat {
  flex: 1; min-width: 160px;
  display: flex; flex-direction: column; align-items: center;
  gap: .3rem; padding: 16px 20px; text-align: center;
}
.stat-ico { font-size: 2rem; margin-bottom: .2rem; }
.stat strong { font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat em { font-size: .85rem; font-style: normal; color: rgba(255,255,255,.85); font-weight: 600; }
.stat-sep { width: 1px; height: 60px; background: rgba(255,255,255,.3); flex-shrink: 0; }

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: center;
}
.about-visual { position: relative; display: flex; justify-content: center; }
.about-card {
  background: linear-gradient(135deg, var(--sky-pale) 0%, var(--green-pale) 100%);
  border: 3px solid var(--border);
  border-radius: var(--r-lg); padding: 48px 36px;
  text-align: center; box-shadow: var(--sh);
  position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, var(--sky-lt) 0%, transparent 70%);
  border-radius: 50%;
}
.about-big-ico { font-size: 5rem; margin-bottom: 1rem; animation: wiggle 4s ease-in-out infinite; }
.about-quote { font-size: 1.2rem; color: var(--text); font-weight: 700; line-height: 1.4; }
.about-quote strong { color: var(--sky-dk); }
.about-float-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--yellow); color: var(--navy);
  font-weight: 800; font-size: .9rem; line-height: 1.3;
  padding: 14px 20px; border-radius: var(--r);
  box-shadow: var(--sh); text-align: center;
  animation: float 3.5s ease-in-out infinite;
}

.about-text h2 { color: var(--navy); }
.about-text > p { font-size: 1.05rem; }

.value-list { display: flex; flex-direction: column; gap: 1.2rem; margin: 1.8rem 0; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.value-item > span { font-size: 1.8rem; flex-shrink: 0; margin-top: .1rem; }
.value-item strong { color: var(--navy); font-size: 1rem; display: block; margin-bottom: .2rem; }
.value-item p { font-size: .93rem; margin: 0; }

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.bg-sky { background: var(--sky-pale); position: relative; }
.wave-top { line-height: 0; }
.wave-top svg { width: 100%; display: block; }
.wave-bot { line-height: 0; }
.wave-bot svg { width: 100%; display: block; }

.cards-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-bottom: 28px;
}

.service-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 36px 28px; box-shadow: var(--sh-sm);
  border: 2px solid var(--border); position: relative;
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }

.sc-ico-wrap {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-lt), var(--green-lt));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin-bottom: 1rem;
  box-shadow: var(--sh-sm);
}
.sc-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--yellow); color: var(--navy);
  font-size: .75rem; font-weight: 800; padding: 4px 12px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: .06em;
}
.service-card h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: .4rem; }
.service-card p { font-size: .95rem; margin-bottom: 1rem; }
.service-card ul { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.service-card li { font-size: .93rem; color: var(--text); font-weight: 600; }
.svc-btn { margin-top: auto; justify-content: center; }

.svc-note {
  text-align: center; color: var(--muted); font-size: .95rem;
  padding: 16px 20px; background: var(--white);
  border-radius: var(--r); border: 2px dashed var(--border);
}
.svc-note a { color: var(--sky-dk); font-weight: 700; }

/* ════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
.hiw { background: var(--white); }
.steps-row {
  display: flex; align-items: center; gap: 20px; margin-bottom: 48px;
}
.step-card {
  flex: 1; background: var(--sky-pale);
  border-radius: var(--r-lg); padding: 36px 28px;
  text-align: center; border: 2px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sky); color: var(--white);
  font-size: 1.4rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step-ico { font-size: 2.8rem; margin-bottom: 1rem; }
.step-card h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: .5rem; }
.step-card p { font-size: .93rem; }
.step-card a { color: var(--sky-dk); font-weight: 700; }
.step-arr { font-size: 2rem; color: var(--sky); font-weight: 900; flex-shrink: 0; opacity: .7; }

.hiw-cta { text-align: center; }

/* ════════════════════════════════════════
   DID YOU KNOW
════════════════════════════════════════ */
.bg-blue-grad {
  background: linear-gradient(135deg, #0da8e0 0%, #0b9fd6 50%, #0a8cc0 100%);
}
.dyk { }
.dyk-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 64px; align-items: center;
}
.dyk-copy h2 { color: var(--white); }
.big-num { color: var(--yellow); font-size: clamp(2.2rem, 5vw, 3.4rem); display: block; }
.dyk-copy p { color: rgba(255,255,255,.88); font-size: 1.05rem; }

.dyk-facts { display: flex; flex-direction: column; gap: 1rem; margin: 1.8rem 0; }
.dyk-fact {
  display: flex; gap: .9rem; align-items: flex-start;
  background: rgba(255,255,255,.12); border-radius: var(--r);
  padding: 14px 18px; backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
}
.dyk-fact span { font-size: 1.6rem; flex-shrink: 0; }
.dyk-fact p { color: rgba(255,255,255,.9); font-size: .93rem; margin: 0; }
.dyk-fact strong { color: var(--yellow); }

.dyk-circle-wrap { display: flex; justify-content: center; align-items: center; }
.dyk-circle {
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 4px solid rgba(255,255,255,.35);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: .4rem;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  backdrop-filter: blur(8px);
}
.dyk-emoji { font-size: 3.5rem; }
.dyk-circle strong { font-size: 3rem; font-weight: 900; color: var(--yellow); line-height: 1; }
.dyk-circle span { font-size: 1rem; color: rgba(255,255,255,.85); font-weight: 700; }

/* ════════════════════════════════════════
   OUR PROMISE
════════════════════════════════════════ */
.promise { background: var(--sky-pale); }
.promise-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-bottom: 48px;
}
.promise-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--sh-sm); border: 2px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.promise-card:hover { transform: translateY(-7px); box-shadow: var(--sh); }
.promise-ico { font-size: 2.6rem; margin-bottom: 1rem; }
.promise-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: .6rem; }
.promise-card p  { font-size: .92rem; }
.promise-cta { text-align: center; }
.promise-tagline {
  font-size: 1.05rem; color: var(--navy); font-weight: 700;
  margin-bottom: 1.5rem; font-style: italic;
}

/* ════════════════════════════════════════
   SERVICE AREA
════════════════════════════════════════ */
.bg-green-soft { background: var(--green-pale); }
.area { }
.area-tags {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-bottom: 2rem;
}
.area-tags span {
  background: var(--white); color: var(--navy);
  font-weight: 700; font-size: .95rem;
  padding: 10px 22px; border-radius: 50px;
  border: 2px solid var(--green-lt);
  box-shadow: 0 3px 12px rgba(36,184,69,.1);
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: default;
}
.area-tags span:hover {
  transform: translateY(-3px); background: var(--green);
  color: var(--white); box-shadow: var(--sh-sm);
}
.area-note { text-align: center; font-size: .98rem; }
.area-note a { color: var(--sky-dk); font-weight: 700; }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--sky-pale); border-radius: var(--r);
  border: 2px solid var(--border); overflow: hidden;
  transition: border-color .25s;
}
.faq-item.open { border-color: var(--sky); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; background: none; border: none;
  cursor: pointer; font-size: 1.02rem; font-weight: 700;
  color: var(--navy); text-align: left; gap: 1rem;
  font-family: inherit;
}
.faq-q:hover { color: var(--sky-dk); }
.faq-ico {
  font-size: 1.6rem; font-weight: 400; line-height: 1;
  color: var(--sky); transition: transform .3s; flex-shrink: 0;
}
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .45s ease, padding .3s;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }
.faq-a p { font-size: .97rem; color: var(--muted); margin: 0; }
.faq-a a { color: var(--sky-dk); font-weight: 700; }

/* ════════════════════════════════════════
   CONTACT / FORM
════════════════════════════════════════ */
.contact { }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: start;
}
.contact-left h2 { color: var(--white); }
.contact-left .eyebrow { color: rgba(255,255,255,.75); }
.contact-left > p { color: rgba(255,255,255,.88); font-size: 1.05rem; }

.contact-methods { display: flex; flex-direction: column; gap: 14px; margin: 2rem 0; }
.cm {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.15); border-radius: var(--r);
  padding: 14px 20px; transition: background .2s, transform .2s;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
}
.cm:not(.no-hover):hover { background: rgba(255,255,255,.25); transform: translateX(4px); }
.cm > span { font-size: 1.8rem; flex-shrink: 0; }
.cm strong { display: block; color: var(--white); font-weight: 800; font-size: .95rem; }
.cm span:last-child { color: rgba(255,255,255,.85); font-size: .88rem; }

.social-row { margin-top: 1.5rem; }
.social-row p { font-size: .9rem; margin-bottom: .8rem; }
.social-icon {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.2); color: var(--white);
  padding: 10px 22px; border-radius: 50px;
  font-weight: 700; font-size: .93rem;
  border: 2px solid rgba(255,255,255,.35);
  transition: background .2s, transform .2s;
}
.social-icon:hover { background: rgba(255,255,255,.35); transform: translateY(-2px); }

/* Quote Form */
.contact-right {}
.quote-form {
  background: var(--white); border-radius: var(--r-lg);
  padding: 40px 36px; box-shadow: var(--sh-lg);
}
.quote-form h3 { color: var(--navy); font-size: 1.5rem; margin-bottom: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grp { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-grp label { font-weight: 700; font-size: .88rem; color: var(--text); }
.form-grp input, .form-grp select, .form-grp textarea {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  border: 2px solid var(--border); font-size: .97rem;
  font-family: inherit; color: var(--text);
  transition: border-color .25s, box-shadow .25s;
  background: var(--white);
}
.form-grp input:focus, .form-grp select:focus, .form-grp textarea:focus {
  outline: none; border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(18,184,240,.15);
}
.form-grp input.error, .form-grp select.error { border-color: #e74c3c; }
.form-grp textarea { resize: vertical; min-height: 90px; }
.form-note { text-align: center; font-size: .82rem; color: var(--muted); margin-top: .8rem; }

.form-success {
  background: var(--white); border-radius: var(--r-lg);
  padding: 48px 36px; text-align: center; box-shadow: var(--sh-lg);
}
.success-ico { font-size: 4rem; display: block; margin-bottom: 1rem; animation: bounce 2s infinite; }
.form-success h3 { color: var(--navy); font-size: 1.6rem; margin-bottom: .8rem; }
.form-success p { font-size: 1rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--navy); color: rgba(255,255,255,.8);
  padding-top: 0;
}
.footer-wave { line-height: 0; background: var(--navy); }
.footer-wave svg { width: 100%; display: block; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px; padding: 56px 0 40px;
}
.footer-brand img { filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: .95rem; opacity: .75; margin-bottom: 1rem; }
.footer-tel { color: var(--yellow); font-weight: 800; font-size: 1.05rem; }
.footer-tel:hover { color: var(--white); }

.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; font-weight: 800; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col li, .footer-col p { font-size: .9rem; color: rgba(255,255,255,.7); }
.footer-col a { transition: color .2s; }
.footer-col a:hover { color: var(--sky); }
.footer-areas { font-size: .85rem; opacity: .65; margin-top: .5rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.5); margin: .25rem 0; }
.footer-love { color: rgba(255,255,255,.4); font-size: .8rem !important; }

/* ════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════ */
.back-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sky); color: var(--white);
  border: none; cursor: pointer; font-size: 1.4rem; font-weight: 900;
  box-shadow: var(--sh); transition: opacity .3s, transform .3s;
  display: flex; align-items: center; justify-content: center;
}
.back-top:hover { transform: translateY(-4px); background: var(--sky-dk); }

/* ════════════════════════════════════════
   RESPONSIVE — TABLET
════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-grid         { grid-template-columns: 1fr; text-align: center; }
  .hero-copy         { padding-bottom: 0; }
  .hero-sub          { max-width: 100%; }
  .hero-btns         { justify-content: center; }
  .hero-badges       { justify-content: center; }
  .hero-img-col      { order: -1; padding-bottom: 0; }
  .mascot-img        { max-width: 320px; margin: 0 auto; }
  .bounce-tag        { top: 5%; right: 8%; }

  .about-grid        { grid-template-columns: 1fr; }
  .about-float-badge { right: 50%; transform: translateX(50%); bottom: -20px; }

  .cards-row         { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto 28px; }

  .steps-row         { flex-direction: column; }
  .step-arr          { transform: rotate(90deg); }

  .dyk-grid          { grid-template-columns: 1fr; text-align: center; }
  .dyk-circle-wrap   { display: none; }

  .promise-grid      { grid-template-columns: repeat(2, 1fr); }

  .contact-grid      { grid-template-columns: 1fr; }
  .contact-left      { text-align: center; }
  .contact-methods   { max-width: 400px; margin: 2rem auto; }
  .social-row        { display: flex; flex-direction: column; align-items: center; }

  .footer-grid       { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════════════════ */
@media (max-width: 640px) {
  .section-pad { padding: 64px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }

  .nav-links {
    position: fixed; inset: 0; background: var(--white);
    flex-direction: column; justify-content: center;
    gap: 2rem; font-size: 1.2rem;
    transform: translateX(100%); transition: transform .35s ease;
    z-index: 850;
  }
  .nav-links.open { transform: translateX(0); }
  .hamburger { display: flex; z-index: 900; position: relative; }
  .nav-cta-btn { padding: 12px 28px !important; font-size: 1.1rem !important; }

  .stats-row { flex-direction: column; gap: 0; }
  .stat-sep  { width: 80%; height: 1px; }

  .hero { min-height: auto; padding-top: 48px; }
  .pill-badge { font-size: .8rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-lg { padding: 15px 24px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { text-align: center; }
  .footer-brand img { margin: 0 auto 1rem; }

  .about-float-badge { position: static; transform: none; margin-top: 24px; display: inline-block; }
  .about-visual { flex-direction: column; align-items: center; }

  .dyk-facts    { gap: .7rem; }
  .promise-grid { grid-template-columns: 1fr; }
}
