/*
 * Luvo Ads Landing — page-specific additions
 * Only the styling not already inherited from the brand's <style> block
 * (which is duplicated inline in each landing page <head> for parity with
 * the main site: btn-gold, btn-outline, section-title, faq-item, etc.)
 */

/* ── Hero ─────────────────────────────────────────────────────────── */
.luvo-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
  padding: 260px 20px 90px;   /* upper area reserved for the morphing logo */
  overflow: hidden;
}
@media (max-width: 1024px) {
  .luvo-hero { padding-top: 220px; align-items: center; }
}
.luvo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.40) 45%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.luvo-hero::after {
  /* Subtle gold vignette for a luxe finish */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 100%, rgba(212, 175, 55, 0.12) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 640px) {
  .luvo-hero { padding-top: 180px; padding-bottom: 60px; }
}
.luvo-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.luvo-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D4AF37;
  font-weight: 600;
  margin: 0 0 18px;
}
.luvo-hero__headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0 0 18px;
  color: #fff;
}
.luvo-hero__sub {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto 32px;
  max-width: 620px;
}
.luvo-hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  max-width: 360px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .luvo-hero__cta { flex-direction: row; justify-content: center; max-width: none; }
}
.luvo-hero__cta .btn-gold,
.luvo-hero__cta .btn-whatsapp {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
  letter-spacing: 0.06em;
}

/* WhatsApp button (used in hero + final CTA + sticky) */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 16px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  min-height: 52px;
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-1px); }
.btn-whatsapp svg { width: 18px; height: 18px; }

/* ── Trust strip ──────────────────────────────────────────────────── */
.luvo-trust {
  background: #4A1942;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 400;
  padding: 14px 20px;
  line-height: 1.5;
}
.luvo-trust span { color: #D4AF37; margin: 0 8px; }

/* ── Section base ─────────────────────────────────────────────────── */
.luvo-section {
  padding: 72px 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.luvo-section--cream { background: #F5F1E8; max-width: none; }
.luvo-section--cream > .luvo-section__inner { max-width: 1180px; margin: 0 auto; }
.luvo-section--plum { background: #4A1942; color: #fff; max-width: none; }
.luvo-section--plum > .luvo-section__inner { max-width: 1180px; margin: 0 auto; }
.luvo-section--plum .section-title { color: #fff; }
.luvo-section--plum .section-subtitle { color: #D4AF37; }

.luvo-section__head { text-align: center; margin-bottom: 48px; }
/* Only the descriptive paragraph that comes AFTER the section title —
   not the .section-subtitle eyebrow which sits before it. */
.luvo-section__head .section-title + p { margin: 18px auto 0; max-width: 640px; line-height: 1.7; }

/* ── Offer card grid (re-uses .service-card from inherited styles) ── */
.luvo-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .luvo-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .luvo-card-grid { grid-template-columns: repeat(3, 1fr); }
}
.luvo-card {
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.luvo-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #EDE6D5;
}
.luvo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.luvo-card:hover .luvo-card__img img { transform: scale(1.04); }
.luvo-card__body { padding: 22px 22px 26px; }
.luvo-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #4A1942;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.luvo-card__body p {
  font-size: 14px;
  line-height: 1.65;
  color: #4a4a4a;
  font-weight: 300;
  margin: 0;
}

/* List card variant (no image — used for inline lists) */
.luvo-list {
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 28px 30px;
  list-style: none;
  margin: 0;
}
.luvo-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(74, 25, 66, 0.08);
  font-size: 15px;
  line-height: 1.6;
  color: #2C2C2C;
  font-weight: 300;
}
.luvo-list li:last-child { border-bottom: 0; }
.luvo-list li strong { color: #4A1942; font-weight: 600; }

/* ── How it works (3 steps) ──────────────────────────────────────── */
.luvo-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .luvo-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.luvo-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.luvo-step .step-number { margin-bottom: 4px; }
.luvo-step__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #4A1942;
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}
.luvo-step p {
  font-size: 14px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
  font-weight: 300;
}

/* Mobile: centre and card-style each step so they're harder to skip past.
   Desktop layout (≥768px) keeps the existing 3-column row. */
@media (max-width: 767px) {
  .luvo-step {
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.30);
    border-radius: 6px;
    padding: 30px 22px 26px;
    gap: 12px;
    box-shadow: 0 8px 24px -16px rgba(74, 25, 66, 0.15);
  }
  .luvo-step .step-number {
    width: 64px;
    height: 64px;
    font-size: 26px;
    margin-bottom: 6px;
  }
  .luvo-step__title { font-size: 24px; }
  .luvo-step p { font-size: 15px; max-width: 36ch; }
}

/* ── Form ─────────────────────────────────────────────────────────── */
.luvo-form-wrap {
  background: #fff;
  max-width: 640px;
  margin: 40px auto 0;
  padding: 36px 28px;
  border: 1px solid rgba(74, 25, 66, 0.12);
  border-radius: 6px;
  box-shadow: 0 12px 40px -20px rgba(74, 25, 66, 0.25);
}
@media (min-width: 640px) {
  .luvo-form-wrap { padding: 44px 40px; }
}
.luvo-form-group {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(74, 25, 66, 0.08);
}
.luvo-form-group:last-of-type { border-bottom: 0; padding-bottom: 0; margin-bottom: 14px; }
.luvo-form-group__title {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D4AF37;
  font-weight: 600;
  margin: 0 0 16px;
}
.luvo-field { margin-bottom: 16px; }
.luvo-field:last-child { margin-bottom: 0; }
.luvo-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #4A1942;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.luvo-field input[type="text"],
.luvo-field input[type="tel"],
.luvo-field input[type="date"],
.luvo-field select {
  display: block;
  width: 100%;
  border: 1px solid #d9d2c4;
  border-radius: 5px;
  padding: 12px 14px;
  font: inherit;
  font-size: 16px;            /* 16px prevents iOS zoom */
  color: #2C2C2C;
  background: #fff;
  min-height: 48px;
  box-sizing: border-box;
}

/* iOS-specific: date inputs default to extra internal padding for the
   native picker. Force consistent height/typography so the field matches
   the others, and make the field tap-friendly. */
.luvo-field input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  height: 48px;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
  font-variant-numeric: tabular-nums;
  text-align: left;
}
.luvo-field input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
}
/* Soft placeholder colour for empty date on iOS */
.luvo-field input[type="date"]:not(:focus):invalid {
  color: #999;
}
.luvo-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.6;
  cursor: pointer;
}
.luvo-field input:focus,
.luvo-field select:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}
.luvo-field input:disabled {
  background: #f3efe6;
  color: #999;
  cursor: not-allowed;
}
.luvo-check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 14px;
  color: #2C2C2C;
  font-weight: 400;
}
.luvo-check-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #4A1942;
  flex-shrink: 0;
}

.luvo-needs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 24px;
}
@media (min-width: 540px) {
  .luvo-needs { grid-template-columns: repeat(2, 1fr); }
}
.luvo-needs label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #2C2C2C;
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
  padding: 6px 0;
}
.luvo-needs input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #4A1942;
  flex-shrink: 0;
}

.luvo-popia {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.5;
}
.luvo-popia input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #4A1942;
  flex-shrink: 0;
}

.luvo-form__submit {
  display: block;
  width: 100%;
  background: #D4AF37;
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  min-height: 52px;
  transition: background 0.2s;
}
.luvo-form__submit:hover:not(:disabled) { background: #B8961F; }
.luvo-form__submit:disabled { background: #b9a37a; cursor: progress; }

.luvo-form-msg {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.luvo-form-msg--err { color: #b1342f; }

.luvo-form-success {
  background: #F5F1E8;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 32px 28px;
  border-radius: 6px;
  text-align: center;
  margin: 40px auto 0;
  max-width: 640px;
}
.luvo-form-success h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #4A1942;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 12px;
}
.luvo-form-success p {
  font-size: 15px;
  color: #2C2C2C;
  margin: 0 0 22px;
  line-height: 1.7;
}

/* ── Sticky WhatsApp button (mobile bottom-right) ─────────────────── */
.luvo-sticky-wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: transform 0.2s;
}
.luvo-sticky-wa:hover { transform: scale(1.05); }
.luvo-sticky-wa svg { width: 28px; height: 28px; fill: #fff; }
.luvo-sticky-wa__label {
  position: absolute;
  right: 64px;
  background: #fff;
  color: #4A1942;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
}
@media (min-width: 768px) {
  .luvo-sticky-wa { width: auto; height: 52px; border-radius: 26px; padding: 0 22px 0 18px; gap: 10px; }
  .luvo-sticky-wa::after {
    content: 'WhatsApp us';
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .luvo-sticky-wa svg { width: 22px; height: 22px; }
}

/* ── Header strip (fixed; logo morphs from hero → navbar) ─────────── */
.luvo-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px 20px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.5s ease,
    border-bottom-color 0.5s ease,
    padding 0.45s ease,
    backdrop-filter 0.5s ease,
    box-shadow 0.5s ease;
  will-change: background, padding;
}
.luvo-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom-color: rgba(74, 25, 66, 0.08);
  padding: 10px 20px;
  box-shadow: 0 1px 14px rgba(0, 0, 0, 0.06);
}

.luvo-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.luvo-header__logo {
  display: block;
  /* Larger native size = crisper raster when transform-scaled in the hero.
     Seated size is reduced via transform: scale() so the visible navbar
     logo still reads as ~52-60px. */
  height: 96px;
  width: auto;
  object-fit: contain;
  transform-origin: center top;
  filter: brightness(0) invert(1);
  /* Default to seated scale so a no-JS / reduced-motion render still
     shows a sensibly sized navbar logo (~60px effective). JS overrides
     this with the big-then-shrinking transform on scroll. */
  transform: scale(0.62);
  transition: filter 0.5s ease;
  will-change: transform, filter;
  image-rendering: -webkit-optimize-contrast;
}
.luvo-header__logo.is-seated { filter: none; }

@media (max-width: 1024px) {
  .luvo-header__logo { height: 80px; }
}
@media (max-width: 480px) {
  .luvo-header__logo { height: 64px; }
}

/* ── Why hire block ───────────────────────────────────────────────── */
.luvo-why {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 768px) {
  .luvo-why { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.luvo-why__item {
  background: #fff;
  border-left: 3px solid #D4AF37;
  padding: 22px 24px;
}
.luvo-why__item h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #4A1942;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.luvo-why__item p {
  font-size: 14px;
  line-height: 1.65;
  color: #4a4a4a;
  margin: 0;
  font-weight: 300;
}

/* ── Reassurance / culture block (single-column quiet panel) ──────── */
.luvo-quiet {
  background: #F5F1E8;
  border: 1px solid rgba(74, 25, 66, 0.10);
  padding: 36px 28px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.luvo-quiet h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #4A1942;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}
.luvo-quiet p {
  font-size: 15px;
  color: #2C2C2C;
  line-height: 1.75;
  margin: 0;
  font-weight: 300;
}

/* ── Final CTA wrapper ────────────────────────────────────────────── */
.luvo-final-cta {
  text-align: center;
}
.luvo-final-cta .luvo-final-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  margin: 24px auto 0;
}
@media (min-width: 640px) {
  .luvo-final-cta .luvo-final-cta__buttons { flex-direction: row; justify-content: center; max-width: none; }
}

/* Funeral-page tone tweak: WhatsApp gets equal visual weight */
body[data-source-page="funerals"] .btn-whatsapp,
body[data-source-page="funerals"] .luvo-hero .btn-gold {
  min-width: 220px;
}

/* Padding/sizing tweaks below the fold */
.luvo-section__inner { width: 100%; }
.luvo-section--narrow { max-width: 760px; }

/* ════════════════════════════════════════════════════════════════════
   PREMIUM UX LAYER
   • Section reveal (data-reveal)
   • Button shimmer / light sweep
   • Subtle floating sticky WhatsApp pulse
   • Card lift + image zoom polish
   • Hero text staggered entrance
═══════════════════════════════════════════════════════════════════ */

/* ── 1. Section reveal (IntersectionObserver toggles .is-revealed) ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grouped children — each gets a small delay */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal-stagger].is-revealed > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].is-revealed > *:nth-child(2) { transition-delay: 0.12s; }
[data-reveal-stagger].is-revealed > *:nth-child(3) { transition-delay: 0.19s; }
[data-reveal-stagger].is-revealed > *:nth-child(4) { transition-delay: 0.26s; }
[data-reveal-stagger].is-revealed > *:nth-child(5) { transition-delay: 0.33s; }
[data-reveal-stagger].is-revealed > *:nth-child(6) { transition-delay: 0.40s; }
[data-reveal-stagger].is-revealed > *:nth-child(7) { transition-delay: 0.47s; }
[data-reveal-stagger].is-revealed > *:nth-child(8) { transition-delay: 0.54s; }
[data-reveal-stagger].is-revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ── 2. Hero text staggered entrance (no JS needed) ───────────────── */
@keyframes luvoHeroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.luvo-hero__eyebrow,
.luvo-hero__headline,
.luvo-hero__sub,
.luvo-hero__cta {
  opacity: 0;
  animation: luvoHeroIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.luvo-hero__eyebrow { animation-delay: 0.15s; }
.luvo-hero__headline { animation-delay: 0.30s; }
.luvo-hero__sub { animation-delay: 0.45s; }
.luvo-hero__cta { animation-delay: 0.65s; }

/* ── 3. Button shimmer / light sweep (KZN AI Solutions style) ─────── */
.btn-gold,
.luvo-form__submit {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-gold::before,
.luvo-form__submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.0) 30%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.0) 70%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 0;
  transition: left 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-gold:hover::before,
.luvo-form__submit:hover::before {
  left: 130%;
}
.btn-gold > *,
.luvo-form__submit > * { position: relative; z-index: 1; }

/* Periodic auto-shimmer to draw the eye (subtle, only when visible) */
@keyframes luvoShimmer {
  0%   { left: -120%; }
  60%  { left: -120%; }
  100% { left: 130%; }
}
.btn-gold.luvo-auto-shimmer::before {
  animation: luvoShimmer 4.5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

/* ── 4. WhatsApp button refinements ───────────────────────────────── */
.btn-whatsapp {
  position: relative;
  overflow: hidden;
}
.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.0) 30%,
    rgba(255, 255, 255, 0.40) 50%,
    rgba(255, 255, 255, 0.0) 70%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-whatsapp:hover::before { left: 130%; }
.btn-whatsapp svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.btn-whatsapp > *:not(svg) { position: relative; z-index: 1; }

/* ── 5. Sticky WhatsApp circle (mobile) — subtle pulse ───────────── */
.luvo-sticky-wa {
  /* Drop the JS-side ::after — use a clean tooltip instead */
}
.luvo-sticky-wa::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.45);
  opacity: 0;
  animation: luvoWaPulse 2.8s ease-out infinite;
  pointer-events: none;
}
@keyframes luvoWaPulse {
  0%   { transform: scale(0.85); opacity: 0.7; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}
.luvo-sticky-wa svg { fill: #fff; }

/* ── 6. Card polish: deeper lift + image zoom ─────────────────────── */
.luvo-card {
  transform: translateY(0);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease;
  will-change: transform;
}
.luvo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -22px rgba(74, 25, 66, 0.22);
  border-color: rgba(212, 175, 55, 0.55);
}
.luvo-card__img img {
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.luvo-card:hover .luvo-card__img img { transform: scale(1.07); }

/* Subtle gold underline on card titles when card is hovered */
.luvo-card__title { position: relative; padding-bottom: 8px; }
.luvo-card__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #D4AF37;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.luvo-card:hover .luvo-card__title::after { width: 48px; }

/* ── 7. Why-Hire panels: small lift ───────────────────────────────── */
.luvo-why__item {
  transition: transform 0.45s ease, border-left-width 0.3s ease, background 0.4s ease;
  will-change: transform;
}
.luvo-why__item:hover {
  transform: translateY(-3px);
  border-left-width: 6px;
}

/* ── 8. FAQ summary chevron + subtle hover ────────────────────────── */
.faq-item summary {
  padding-left: 4px;
  transition: padding-left 0.3s ease, color 0.2s ease;
}
.faq-item:hover summary { padding-left: 10px; }

/* ── 9. Form polish ──────────────────────────────────────────────── */
.luvo-field input,
.luvo-field select {
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.luvo-form__submit { letter-spacing: 0.1em; }

/* ── 10. Page-load: hide everything that animates until JS attaches ─ */
.js-loading [data-reveal] { transition: none !important; }

/* ── 11. Reduced motion: turn off everything fancy ────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; }
  .luvo-hero__eyebrow,
  .luvo-hero__headline,
  .luvo-hero__sub,
  .luvo-hero__cta { opacity: 1 !important; animation: none !important; }
  .luvo-header__logo { transform: scale(0.62) !important; filter: none !important; }
  .luvo-header { background: rgba(255,255,255,0.96) !important; }
}
