/* ============================================================
   Sparkle & Shine Leigh — Stylesheet
   ============================================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  font-family: 'Nunito', sans-serif;
  background: hsl(200, 30%, 98%);
  color: hsl(210, 25%, 18%);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
.nav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(200,20%,92%);
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  color: hsl(187,72%,35%);
  letter-spacing: -0.02em;
}
.nav-cta {
  background: hsl(187,72%,40%);
  color: #fff;
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  flex-shrink: 0;
  transition: transform .15s, box-shadow .15s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.16); }

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(187,72%,88%) 0%, hsl(200,40%,94%) 50%, hsl(330,40%,96%) 100%);
}
.hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  width: 100%;
}
.hero-content-inner { max-width: 600px; }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.25rem;
}
.badge {
  background: rgba(255,255,255,0.85);
  border: 1px solid hsl(187,40%,78%);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: hsl(187,60%,30%);
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: hsl(210,25%,14%);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.hero h1 span { color: hsl(187,72%,38%); }
.hero-slogan {
  font-size: 1.1rem;
  color: hsl(210,15%,35%);
  margin-bottom: 0.6rem;
  line-height: 1.6;
  font-weight: 500;
}
.hero-loc {
  font-size: 0.95rem;
  color: hsl(210,10%,45%);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── BUTTONS ── */
.btn-primary {
  background: hsl(187,72%,40%);
  color: #fff;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-weight: 800;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: transform .15s, box-shadow .15s;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }

.btn-outline {
  background: rgba(255,255,255,0.9);
  color: hsl(187,60%,35%);
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid hsl(187,40%,78%);
  transition: background .15s;
}
.btn-outline:hover { background: rgba(255,255,255,1); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
  transition: transform .15s, box-shadow .15s;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.22); }

/* ── BUBBLE DECOR ── */
.bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 2px solid hsl(187,60%,40%);
  background: hsl(187,60%,70%);
}

/* ── HERO ILLUSTRATION ── */
.hero-illustration {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-illustration img,
.hero-illustration svg { width: 100%; max-width: 320px; height: auto; opacity: 0.85; }

/* ── LOCAL BAR ── */
.local-bar {
  background: hsl(187,72%,40%);
  color: #fff;
  padding: 1rem 1.5rem;
  text-align: center;
  width: 100%;
}
.local-bar p {
  font-weight: 700;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  margin: 0;
}

/* ── SECTION WRAPPERS ── */
.section { padding: 4rem 1.5rem; width: 100%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-inner-narrow { max-width: 700px; margin: 0 auto; }
.section-heading { text-align: center; margin-bottom: 2.5rem; }
.section-heading h2 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 900;
  color: hsl(210,25%,14%);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.section-heading p {
  font-size: 1rem;
  color: hsl(210,10%,48%);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* ── SERVICES ── */
.services-bg { background: hsl(200,30%,98%); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1.5px solid hsl(200,20%,92%);
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.service-card h3 {
  font-weight: 800;
  font-size: 1.1rem;
  color: hsl(210,25%,18%);
  margin-bottom: 6px;
}
.service-card p {
  font-size: 0.9rem;
  color: hsl(210,10%,45%);
  line-height: 1.6;
  margin: 0;
}

/* ── PRICE TABLE ── */
.prices-bg { background: #fff; }
.price-table-wrap {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid hsl(200,20%,90%);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
thead tr { background: hsl(187,72%,40%); color: #fff; }
th {
  padding: 1rem 1.25rem;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}
th:first-child { text-align: left; }
th:last-child { text-align: right; }
td { padding: 0.9rem 1.25rem; }
td:first-child { color: hsl(210,25%,20%); font-weight: 600; }
td:last-child { text-align: right; color: hsl(187,60%,35%); font-weight: 800; }
.tr-alt { background: hsl(200,30%,98%); border-top: 1px solid hsl(200,20%,93%); }
.tr-plain { background: #fff; border-top: 1px solid hsl(200,20%,93%); }
.price-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.82rem;
  color: hsl(210,10%,55%);
}

/* ── TRUST SECTION ── */
.trust-bg { background: hsl(330,50%,97%); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.trust-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1.5px solid hsl(330,30%,92%);
  text-align: center;
}
.trust-card .icon { font-size: 32px; margin-bottom: 10px; }
.trust-card h3 { font-weight: 800; font-size: 0.95rem; color: hsl(210,25%,18%); margin-bottom: 6px; }
.trust-card p { font-size: 0.82rem; color: hsl(210,10%,50%); line-height: 1.55; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, hsl(187,72%,38%) 0%, hsl(187,60%,50%) 100%);
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
  width: 100%;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.cta-banner p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 2rem; line-height: 1.6; }

/* ── FOOTER ── */
footer {
  background: hsl(210,25%,14%);
  color: hsl(200,15%,70%);
  padding: 2rem 1.5rem;
  text-align: center;
}
footer .brand { font-weight: 800; color: #fff; font-size: 1rem; }
footer .loc { font-size: 0.82rem; margin: 4px 0; }
footer .copy { font-size: 0.78rem; margin-top: 12px; opacity: 0.5; }

/* ── FLOATING WHATSAPP BUTTON ── */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 0.8rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 100;
  transition: transform .2s, box-shadow .2s;
}
.float-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,.55); }
.float-wa span { white-space: nowrap; }

/* SVG icon helper */
.wa-icon { flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .float-wa span { display: none; }
  .float-wa { padding: 0.9rem; border-radius: 50%; }
  .hero-illustration { display: none; }
  .hero-content { padding: 3rem 1.25rem; }
}
