@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;1,6..12,400&family=Satisfy&display=swap');

/* ══════════════════════════════════════
   DESIGN TOKENS
   ══════════════════════════════════════ */
:root {
  /* Brand Maroon System */
  --m-900: #4a001f;
  --m-800: #6d002e;
  --m-700: #93003f;
  --m-600: #a81050;
  --m-500: #bf2565;
  --m-400: #d44d82;
  --m-300: #e680a6;
  --m-200: #f2b3cc;
  --m-100: #fbe0eb;
  --m-50:  #fdf0f5;

  /* Sacred Gold System */
  --g-700: #8a6d1b;
  --g-600: #a8872a;
  --g-500: #c9a23a;
  --g-400: #d4b55c;
  --g-300: #e2cc88;
  --g-200: #f0e2b8;
  --g-100: #f9f3de;
  --g-50:  #fdfaef;

  /* Warm Neutrals */
  --n-900: #2a1f1f;
  --n-800: #3d2e2e;
  --n-700: #5a4545;
  --n-600: #7a6565;
  --n-500: #9a8585;
  --n-400: #b8a8a8;
  --n-300: #d4c8c8;
  --n-200: #ebe4e4;
  --n-100: #f5f0f0;
  --n-50:  #faf8f8;

  --white: #ffffff;
  --shadow-soft: 0 4px 20px rgba(147,0,63,0.06);
  --shadow-card: 0 8px 40px rgba(147,0,63,0.08);
  --shadow-elevated: 0 20px 60px rgba(147,0,63,0.12);
  --shadow-glow: 0 0 50px rgba(147,0,63,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
}

/* ══════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════ */
.spm * { margin: 0; padding: 0; box-sizing: border-box; }
.spm {
  font-family: 'Nunito Sans', -apple-system, sans-serif;
  color: var(--n-800);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--n-50);
  -webkit-font-smoothing: antialiased;
}
.spm img { max-width: 100%; display: block; }
.spm a { text-decoration: none; color: inherit; }

/* Typography */
.spm h1,.spm h2,.spm h3,.spm h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
  color: var(--n-900);
}
.spm .script { font-family: 'Satisfy', cursive; }

/* ══════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════ */
.spm-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ══════════════════════════════════════
   HERO — Mobile-First with Effect 2
   ══════════════════════════════════════ */
.spm-hero {
  position: relative;
  background: linear-gradient(155deg, var(--m-900) 0%, var(--m-700) 45%, var(--m-800) 100%);
  overflow: hidden;
}
.spm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(201,162,58,0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}

/* ── Hero Image Banner (always visible) ── */
.spm-hero-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.spm-hero-banner img.spm-hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: spm-fx2-zoom 16s ease-in-out infinite alternate;
}
.spm-hero-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(transparent, var(--m-900));
  pointer-events: none;
  z-index: 4;
}

/* Effect 2 — Scanning Golden Light Streaks */
@keyframes spm-fx2-zoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.15) translateX(-3%); }
}
.spm-scan-lines {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.spm-scan-line {
  position: absolute;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,181,92,0.8) 20%, rgba(212,181,92,0.9) 50%, rgba(212,181,92,0.8) 80%, transparent 100%);
  filter: blur(0.5px);
}
.spm-scan-line:nth-child(1) { top: 22%; width: 75%; animation: spm-fx2-scan 4.5s ease-in-out infinite; }
.spm-scan-line:nth-child(2) { top: 48%; width: 90%; animation: spm-fx2-scan 4.5s ease-in-out infinite 1.5s; }
.spm-scan-line:nth-child(3) { top: 72%; width: 55%; animation: spm-fx2-scan 4.5s ease-in-out infinite 3s; }

@keyframes spm-fx2-scan {
  0% { opacity: 0; transform: translateX(-40px); }
  35% { opacity: 1; }
  65% { opacity: 1; }
  100% { opacity: 0; transform: translateX(40px); }
}

/* Floating glass cards on image */
.spm-hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px 12px;
  z-index: 6;
  animation: spm-float-card 5s ease-in-out infinite;
}
.spm-hero-float-card:nth-child(1) { bottom: 52%; left: 12px; animation-delay: 0s; }
.spm-hero-float-card:nth-child(2) { bottom: 52%; right: 100px; animation-delay: 2.5s; }

@keyframes spm-float-card {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.spm-float-icon { font-size: 1rem; margin-bottom: 2px; }
.spm-float-title { font-size: 0.78rem; font-weight: 600; color: var(--white); }
.spm-float-sub { font-size: 0.62rem; color: rgba(255,255,255,0.55); }

/* ── Guru Circle with Golden Aura ── */
.spm-guru-circle {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 72px;
  height: 72px;
  z-index: 10;
}
.spm-guru-aura {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,58,0.45) 0%, rgba(201,162,58,0.15) 40%, transparent 70%);
  animation: spm-guru-pulse 3s ease-in-out infinite;
}
.spm-guru-ring1 {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,162,58,0.35);
  animation: spm-guru-ring 3s ease-in-out infinite;
}
.spm-guru-ring2 {
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,58,0.15);
  animation: spm-guru-ring 3s ease-in-out infinite 1.5s;
}
.spm-guru-ring3 {
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,58,0.06);
  animation: spm-guru-ring 3s ease-in-out infinite 0.8s;
}
.spm-guru-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(201,162,58,0.65);
  box-shadow: 0 0 25px rgba(201,162,58,0.45), 0 0 50px rgba(201,162,58,0.15);
  position: relative;
  z-index: 2;
}
.spm-guru-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes spm-guru-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.18); opacity: 1; }
}
@keyframes spm-guru-ring {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.12); opacity: 0.2; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

/* ── Hero Text Content ── */
.spm-hero-text {
  position: relative;
  z-index: 10;
  padding: 28px 20px 36px;
}

.spm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,58,0.12);
  border: 1px solid rgba(201,162,58,0.2);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--g-300);
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}
.spm-hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--g-400);
  border-radius: 50%;
  animation: spm-pulse 2s ease-in-out infinite;
}
@keyframes spm-pulse {
  0%,100% { opacity:1; } 50% { opacity:0.4; }
}

.spm-hero h1 {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.spm-hero h1 .spm-gold { color: var(--g-400); font-style: italic; }
.spm-hero h1 .spm-script-accent { font-family: 'Satisfy', cursive; font-weight: 400; color: var(--g-300); font-size: 0.65em; }

.spm-hero-desc {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin-bottom: 28px;
  line-height: 1.85;
}

.spm-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.spm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.spm-btn-gold {
  background: linear-gradient(135deg, var(--g-500), var(--g-400));
  color: var(--m-900);
  box-shadow: 0 4px 20px rgba(201,162,58,0.35);
}
.spm-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,162,58,0.5); }
.spm-btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.spm-btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.35); }

.spm-hero-trust { display: flex; gap: 28px; }
.spm-trust-stat { text-align: left; }
.spm-trust-num { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--g-300); }
.spm-trust-label { font-size: 0.7rem; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; }

/* ── Desktop: side-by-side layout ── */
@media (min-width: 1025px) {
  .spm-hero { min-height: 92vh; display: flex; align-items: center; }
  .spm-hero-inner-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 32px;
  }
  .spm-hero-text { padding: 0; order: 1; }
  .spm-hero-banner-wrap { order: 2; }
  .spm-hero-banner { border-radius: var(--radius-xl); aspect-ratio: 4/5; }
  .spm-hero h1 { font-size: 3.6rem; }
  .spm-hero-desc { font-size: 1.08rem; }
  .spm-btn { padding: 14px 30px; font-size: 0.92rem; }
  .spm-guru-circle { width: 90px; height: 90px; top: 16px; right: 16px; }
  .spm-guru-ring1 { inset: -18px; }
  .spm-guru-ring2 { inset: -28px; }
  .spm-guru-ring3 { inset: -40px; }
  .spm-hero-float-card { padding: 12px 16px; }
  .spm-float-title { font-size: 0.85rem; }
  .spm-float-sub { font-size: 0.68rem; }
  .spm-hero-float-card:nth-child(1) { bottom: auto; top: 15%; left: -40px; }
  .spm-hero-float-card:nth-child(2) { bottom: 20%; right: -30px; left: auto; }
}

/* ══════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════ */
.spm-trustbar {
  background: var(--white);
  border-bottom: 1px solid var(--n-200);
  padding: 24px 0;
}
.spm-trustbar-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.spm-trustbar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--n-700);
  font-weight: 500;
}
.spm-trustbar-icon {
  width: 38px; height: 38px;
  background: var(--m-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--m-700);
}

/* ══════════════════════════════════════
   SECTION COMMON
   ══════════════════════════════════════ */
.spm-section {
  padding: 100px 0;
}
.spm-section-header {
  text-align: center;
  margin-bottom: 60px;
}
.spm-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--m-700);
  margin-bottom: 14px;
}
.spm-overline::before, .spm-overline::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--m-200);
}
.spm-section-header h2 {
  font-size: 2.7rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.spm-section-header h2 .spm-em {
  color: var(--m-700);
  font-style: italic;
}
.spm-section-header p {
  font-size: 1.05rem;
  color: var(--n-600);
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   THREE PILLARS
   ══════════════════════════════════════ */
.spm-pillars {
  background: linear-gradient(180deg, var(--n-50) 0%, var(--m-50) 100%);
}
.spm-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.spm-pillar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--n-200);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.spm-pillar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--m-700), var(--g-500));
  opacity: 0;
  transition: opacity 0.3s;
}
.spm-pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
  border-color: var(--m-100);
}
.spm-pillar:hover::after { opacity: 1; }

.spm-pillar-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--m-100), var(--m-50));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.spm-pillar h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--m-900);
}
.spm-pillar p {
  font-size: 0.92rem;
  color: var(--n-600);
  line-height: 1.75;
}
.spm-pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--m-700);
  transition: gap 0.2s;
}
.spm-pillar-link:hover { gap: 10px; }

/* ══════════════════════════════════════
   FREE DOCTOR CONSULTATION
   ══════════════════════════════════════ */
.spm-doctors {
  background: var(--m-900);
  position: relative;
  overflow: hidden;
}
.spm-doctors::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 80%, rgba(201,162,58,0.06), transparent 50%),
    radial-gradient(ellipse at 90% 20%, rgba(255,255,255,0.03), transparent 40%);
}
.spm-doctors .spm-overline { color: var(--g-300); }
.spm-doctors .spm-section-header h2 { color: var(--white); }
.spm-doctors .spm-section-header h2 .spm-em { color: var(--g-400); }
.spm-doctors .spm-section-header p { color: rgba(255,255,255,0.5); }

.spm-doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.spm-doc-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
}
.spm-doc-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.spm-doc-free {
  display: inline-block;
  background: rgba(201,162,58,0.15);
  color: var(--g-400);
  padding: 3px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(201,162,58,0.2);
}

.spm-doc-avatar {
  width: 80px; height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(147,0,63,0.3);
  position: relative;
}
.spm-doc-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.spm-doc-online {
  position: absolute;
  bottom: 2px; right: 2px;
  width: 14px; height: 14px;
  background: #22c55e;
  border: 2.5px solid var(--m-900);
  border-radius: 50%;
}

.spm-doc-card h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.spm-doc-spec {
  color: var(--g-300);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.spm-doc-desc {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.spm-doc-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}
.spm-doc-meta span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.spm-btn-consult {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--g-500), var(--g-400));
  color: var(--m-900);
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  transition: all 0.3s;
}
.spm-btn-consult:hover {
  box-shadow: 0 4px 20px rgba(201,162,58,0.5);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   DAILY TIPS
   ══════════════════════════════════════ */
.spm-tips-section {
  background: linear-gradient(135deg, var(--g-50) 0%, var(--m-50) 100%);
}
.spm-tips-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.spm-tips-left h2 {
  font-size: 2.4rem;
  margin-bottom: 14px;
}
.spm-tips-left h2 .spm-em { color: var(--m-700); }
.spm-tips-left > p {
  color: var(--n-600);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.8;
}

.spm-tip-featured {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border-left: 4px solid var(--m-700);
  box-shadow: var(--shadow-soft);
}
.spm-tip-tag {
  display: inline-block;
  background: var(--m-100);
  color: var(--m-700);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.spm-tip-featured h4 {
  font-size: 1.05rem;
  color: var(--m-900);
  margin-bottom: 6px;
}
.spm-tip-featured p {
  font-size: 0.88rem;
  color: var(--n-600);
  line-height: 1.7;
}

.spm-tips-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.spm-tip-item {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--n-200);
  transition: all 0.3s ease;
}
.spm-tip-item:hover {
  box-shadow: var(--shadow-card);
  transform: translateX(4px);
  border-color: var(--m-200);
}
.spm-tip-icon {
  width: 46px; height: 46px;
  background: var(--m-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.spm-tip-item h4 {
  font-size: 0.92rem;
  color: var(--n-900);
  margin-bottom: 2px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
}
.spm-tip-item p {
  font-size: 0.78rem;
  color: var(--n-600);
  line-height: 1.5;
}
.spm-tip-cat {
  font-size: 0.68rem;
  color: var(--m-700);
  font-weight: 600;
  background: var(--m-50);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ══════════════════════════════════════
   COUNSELING
   ══════════════════════════════════════ */
.spm-counseling-wrap {
  background: linear-gradient(145deg, var(--m-800), var(--m-700));
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.spm-counseling-wrap::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(201,162,58,0.08), transparent);
  border-radius: 50%;
}

.spm-counseling-left h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 14px; }
.spm-counseling-left h2 .spm-em { color: var(--g-300); }
.spm-counseling-left > p { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 24px; line-height: 1.8; }

.spm-counsel-features { display: flex; flex-direction: column; gap: 12px; }
.spm-counsel-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
}
.spm-counsel-check {
  width: 24px; height: 24px;
  background: rgba(201,162,58,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g-400);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.spm-counsel-form {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
}
.spm-counsel-form h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 20px; text-align: center; }

.spm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.spm-form-group { margin-bottom: 12px; }
.spm-form-group label { display: block; color: rgba(255,255,255,0.6); font-size: 0.78rem; margin-bottom: 4px; font-weight: 500; }
.spm-form-group input, .spm-form-group select, .spm-form-group textarea {
  width: 100%; padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
}
.spm-form-group input::placeholder, .spm-form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.spm-form-group input:focus, .spm-form-group select:focus, .spm-form-group textarea:focus { border-color: var(--g-400); }
.spm-form-group select option { background: var(--m-900); color: var(--white); }

.spm-btn-book {
  width: 100%; padding: 13px;
  background: linear-gradient(135deg, var(--g-500), var(--g-400));
  color: var(--m-900);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  transition: all 0.3s;
  margin-top: 4px;
}
.spm-btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,162,58,0.4);
}

/* ══════════════════════════════════════
   QUALITY SERVICES
   ══════════════════════════════════════ */
.spm-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.spm-service {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--n-200);
  transition: all 0.4s ease;
}
.spm-service:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-elevated);
}
.spm-service-img {
  height: 200px;
  overflow: hidden;
}
.spm-service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.spm-service:hover .spm-service-img img {
  transform: scale(1.05);
}
.spm-service-body {
  padding: 24px;
}
.spm-service-body h3 {
  font-size: 1.1rem;
  color: var(--m-900);
  margin-bottom: 8px;
}
.spm-service-body p {
  font-size: 0.85rem;
  color: var(--n-600);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   LIFE AFTER RETIREMENT
   ══════════════════════════════════════ */
.spm-retire {
  background: var(--m-50);
}
.spm-retire-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.spm-retire-card {
  padding: 28px 22px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--n-200);
  transition: all 0.3s;
  position: relative;
}
.spm-retire-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--m-700);
  border-radius: 0 0 3px 0;
  transition: height 0.3s;
}
.spm-retire-card:hover::before { height: 100%; }
.spm-retire-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.spm-retire-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.spm-retire-card h3 {
  font-size: 1rem;
  color: var(--m-900);
  margin-bottom: 8px;
}
.spm-retire-card p {
  font-size: 0.82rem;
  color: var(--n-600);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   INSPIRATIONAL QUOTE
   ══════════════════════════════════════ */
.spm-quote {
  background: linear-gradient(135deg, var(--m-900), var(--m-800));
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.spm-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,162,58,0.06), transparent 60%);
}
.spm-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--m-500);
  line-height: 0.6;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.spm-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  line-height: 1.55;
  max-width: 750px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.spm-quote-author {
  color: var(--g-400);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}
.spm-quote-author span {
  display: block;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  font-size: 0.82rem;
  margin-top: 4px;
}

/* ══════════════════════════════════════
   HELPLINE BANNER
   ══════════════════════════════════════ */
.spm-helpline {
  background: var(--g-500);
  padding: 18px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.spm-helpline p {
  color: var(--m-900);
  font-weight: 600;
  font-size: 0.95rem;
}
.spm-helpline a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--m-900);
}

/* ══════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════ */
.spm-newsletter {
  background: linear-gradient(135deg, var(--m-800), var(--m-700));
  border-radius: var(--radius-xl);
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.spm-newsletter h2 { font-size: 1.9rem; color: var(--white); margin-bottom: 10px; }
.spm-newsletter p { color: rgba(255,255,255,0.55); font-size: 0.95rem; }
.spm-newsletter-form { display: flex; gap: 10px; }
.spm-newsletter-form input {
  flex: 1; padding: 14px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 0.9rem;
  font-family: 'Nunito Sans', sans-serif;
  outline: none;
}
.spm-newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.spm-newsletter-form button {
  padding: 14px 28px;
  background: var(--g-500);
  color: var(--m-900);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s;
  white-space: nowrap;
}
.spm-newsletter-form button:hover { background: var(--g-400); transform: translateY(-2px); }

/* ══════════════════════════════════════
   CHAT WIDGET
   ══════════════════════════════════════ */
.spm-chat-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--m-700), var(--m-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(147,0,63,0.4);
  z-index: 1000;
  border: none;
  transition: all 0.3s;
  font-size: 1.5rem;
  color: var(--white);
}
.spm-chat-fab:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(147,0,63,0.55); }
.spm-chat-fab .spm-fab-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 18px; height: 18px;
  background: var(--g-500);
  border-radius: 50%;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--m-900);
  font-weight: 800;
  border: 2px solid var(--white);
}

.spm-chat-win {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 370px; height: 500px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 80px rgba(0,0,0,0.2);
  z-index: 999;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--n-200);
}
.spm-chat-win.spm-open { display: flex; }

.spm-chat-head {
  background: linear-gradient(135deg, var(--m-700), var(--m-600));
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.spm-chat-head-av {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.spm-chat-head-info h4 { color: var(--white); font-size: 0.9rem; font-family: 'Nunito Sans'; font-weight: 600; }
.spm-chat-head-info span { color: rgba(255,255,255,0.6); font-size: 0.7rem; }
.spm-chat-x {
  margin-left: auto;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spm-chat-msgs {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--n-50);
}
.spm-chat-msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.spm-chat-msg.spm-bot {
  background: var(--white);
  border: 1px solid var(--n-200);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
  color: var(--n-800);
}
.spm-chat-msg.spm-user {
  background: var(--m-700);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}
.spm-chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0 16px 8px;
  background: var(--n-50);
}
.spm-chat-qbtn {
  padding: 5px 12px;
  background: var(--m-50);
  border: 1px solid var(--m-200);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  color: var(--m-700);
  cursor: pointer;
  font-family: 'Nunito Sans';
  font-weight: 500;
  transition: all 0.2s;
}
.spm-chat-qbtn:hover { background: var(--m-100); border-color: var(--m-300); }

.spm-chat-bar {
  padding: 12px 16px;
  border-top: 1px solid var(--n-200);
  display: flex;
  gap: 8px;
  background: var(--white);
}
.spm-chat-bar input {
  flex: 1; padding: 9px 14px;
  border: 1px solid var(--n-200);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  outline: none;
  font-family: 'Nunito Sans';
  color: var(--n-800);
}
.spm-chat-bar input:focus { border-color: var(--m-400); }
.spm-chat-send {
  width: 36px; height: 36px;
  background: var(--m-700);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.spm-chat-send:hover { background: var(--m-600); }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.spm-footer {
  background: var(--m-900);
  padding: 56px 0 24px;
}
.spm-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.spm-footer-brand h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.spm-footer-brand h3 .spm-gold { color: var(--g-400); }
.spm-footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.85rem; line-height: 1.7; }

.spm-footer-col h4 {
  color: var(--g-300);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  font-family: 'Nunito Sans';
  font-weight: 700;
}
.spm-footer-col a {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.spm-footer-col a:hover { color: var(--white); }

.spm-footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.spm-footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.75rem; }
.spm-footer-socials { display: flex; gap: 8px; }
.spm-footer-socials a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  transition: all 0.2s;
}
.spm-footer-socials a:hover { background: var(--m-700); color: var(--white); }

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
.spm-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.spm-reveal.spm-vis {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .spm-hero-desc { margin: 0 auto 28px; }
  .spm-hero-actions { justify-content: center; }
  .spm-hero-trust { justify-content: center; }
  .spm-hero-text { text-align: center; }
  .spm-pillars-grid, .spm-doctors-grid, .spm-services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .spm-tips-layout { grid-template-columns: 1fr; }
  .spm-counseling-wrap { grid-template-columns: 1fr; padding: 36px 24px; }
  .spm-retire-grid { grid-template-columns: 1fr 1fr; }
  .spm-newsletter { grid-template-columns: 1fr; padding: 36px 24px; text-align: center; }
  .spm-newsletter-form { flex-direction: column; }
  .spm-footer-grid { grid-template-columns: 1fr 1fr; }
  .spm-section { padding: 60px 0; }
  .spm-section-header h2 { font-size: 2rem; }
  .spm-container { padding: 0 20px; }
}

@media (max-width: 640px) {
  .spm-hero h1 { font-size: 2.1rem; }
  .spm-hero-badge { font-size: 0.7rem; padding: 5px 14px; }
  .spm-trustbar-inner { gap: 16px; }
  .spm-trustbar-item { font-size: 0.78rem; }
  .spm-retire-grid { grid-template-columns: 1fr; }
  .spm-form-row { grid-template-columns: 1fr; }
  .spm-footer-grid { grid-template-columns: 1fr; }
  .spm-chat-win { right: 8px; left: 8px; width: auto; bottom: 96px; }
  .spm-chat-fab { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.3rem; }
  .spm-helpline { flex-direction: column; gap: 6px; text-align: center; }
}

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
.spm-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.spm-testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--n-200);
  transition: all 0.3s ease;
}
.spm-testimonial-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.spm-test-stars {
  color: var(--g-500);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.spm-test-content {
  font-size: 0.9rem;
  color: var(--n-700);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}
.spm-test-content p { margin: 0; }
.spm-test-audio { margin-bottom: 14px; }
.spm-test-audio audio { border-radius: 8px; }
.spm-test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--n-200);
}
.spm-test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--m-100);
}
.spm-test-avatar-placeholder {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--m-100), var(--m-50));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--m-700);
}
.spm-test-author strong {
  font-size: 0.9rem;
  color: var(--n-900);
  display: block;
}
.spm-test-author span {
  font-size: 0.75rem;
  color: var(--n-500);
}

/* Testimonial Submit Card */
.spm-test-submit-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--n-200);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.spm-test-submit-left h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.spm-test-submit-left p {
  color: var(--n-600);
  font-size: 0.92rem;
  line-height: 1.7;
}
.spm-tfield {
  margin-bottom: 12px;
}
.spm-tfield label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--n-700);
  margin-bottom: 4px;
}
.spm-tfield input, .spm-tfield select, .spm-tfield textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--n-200);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--n-800);
  outline: none;
  transition: border-color 0.2s;
}
.spm-tfield input:focus, .spm-tfield textarea:focus {
  border-color: var(--m-400);
}
.spm-btn-submit-test {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--m-700), var(--m-600));
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  transition: all 0.3s;
  margin-top: 4px;
}
.spm-btn-submit-test:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(147,0,63,0.25);
}
.spm-test-success {
  text-align: center;
  padding: 40px;
  color: var(--m-700);
}
.spm-test-success strong {
  display: block;
  font-size: 1.2rem;
  margin: 10px 0 6px;
}
.spm-test-success p {
  color: var(--n-600);
  font-size: 0.9rem;
}

/* ══════════════════════════════════════
   WHATSAPP TIPS BUTTON
   ══════════════════════════════════════ */
.spm-wa-tips-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 24px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s;
  text-decoration: none;
}
.spm-wa-tips-btn:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  color: #fff;
}

/* ══════════════════════════════════════
   SHARE WITH FAMILY
   ══════════════════════════════════════ */
.spm-share-family {
  background: var(--g-50);
  border-top: 1px solid var(--g-100);
  border-bottom: 1px solid var(--g-100);
}
.spm-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s;
  text-decoration: none;
}
.spm-share-btn:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  color: #fff;
}

/* ══════════════════════════════════════
   SOS BUTTON
   ══════════════════════════════════════ */
.spm-sos-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(220,38,38,0.4);
  z-index: 999;
  animation: spm-sos-pulse 2s ease-in-out infinite;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.spm-sos-btn span {
  color: #ffffff;
}
.spm-sos-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(220,38,38,0.5);
  background: #ffffff;
  color: #dc2626;
  border: 2px solid #dc2626;
}
.spm-sos-btn:hover span {
  color: #dc2626;
}
@keyframes spm-sos-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(220,38,38,0.4); }
  50% { box-shadow: 0 4px 30px rgba(220,38,38,0.6), 0 0 0 8px rgba(220,38,38,0.1); }
}

/* ══════════════════════════════════════
   FONT SIZE TOGGLE
   ══════════════════════════════════════ */
.spm-font-toggle {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--white);
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 0 10px rgba(0,0,0,0.08);
  border: 1px solid var(--n-200);
  border-right: none;
  overflow: hidden;
}
.spm-font-toggle button {
  width: 36px;
  height: 34px;
  border: none;
  background: var(--white);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--n-700);
  transition: all 0.2s;
  font-family: 'Nunito Sans', sans-serif;
}
.spm-font-toggle button:hover {
  background: var(--m-50);
  color: var(--m-700);
}

/* ══════════════════════════════════════
   FORM ROW OVERRIDE
   ══════════════════════════════════════ */
.spm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ══════════════════════════════════════
   RESPONSIVE ADDITIONS
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .spm-testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 40px; }
  .spm-test-submit-card { grid-template-columns: 1fr; padding: 28px 20px; }
}
@media (max-width: 640px) {
  .spm-form-row { grid-template-columns: 1fr; }
  .spm-sos-btn { width: 48px; height: 48px; bottom: 20px; left: 16px; font-size: 0.7rem; }
}

/* ══════════════════════════════════════
   LOADING SPINNER & SUCCESS STATES
   ══════════════════════════════════════ */
.spm-loading-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 16px;
}
.spm-loading-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.spm-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top: 3px solid var(--g-400);
  border-radius: 50%;
  animation: spm-spin 0.8s linear infinite;
}
@keyframes spm-spin {
  to { transform: rotate(360deg); }
}

.spm-booking-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.spm-success-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--g-500), var(--g-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--m-900);
  margin-bottom: 16px;
  animation: spm-success-pop 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
  box-shadow: 0 8px 30px rgba(201,162,58,0.3);
}
@keyframes spm-success-pop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.spm-booking-success strong {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
}
.spm-booking-success p {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 300px;
}

/* Fix old test-success class too */
.spm-test-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  color: var(--m-700);
}

/* ══════════════════════════════════════
   NEWSLETTER SECTION
   ══════════════════════════════════════ */
.spm-newsletter {
  background: linear-gradient(135deg, var(--m-800), var(--m-700));
  border-radius: var(--radius-xl);
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.spm-newsletter h2 { font-size: 1.9rem; color: var(--white); margin-bottom: 10px; }
.spm-newsletter p { color: rgba(255,255,255,0.55); font-size: 0.95rem; }
.spm-newsletter-form { display: flex; gap: 10px; }
.spm-newsletter-form input {
  flex: 1; padding: 14px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 0.9rem;
  font-family: 'Nunito Sans', sans-serif;
  outline: none;
}
.spm-newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.spm-newsletter-form button {
  padding: 14px 28px;
  background: var(--g-500);
  color: var(--m-900);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s;
  white-space: nowrap;
}
.spm-newsletter-form button:hover { background: var(--g-400); transform: translateY(-2px); }

@media (max-width: 1024px) {
  .spm-newsletter { grid-template-columns: 1fr; padding: 36px 24px; text-align: center; }
  .spm-newsletter-form { flex-direction: column; }
}

/* WhatsApp share button */
.spm-wa-share {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #25d366;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(37,211,102,0.3);
  background: rgba(37,211,102,0.06);
  transition: all 0.2s;
  white-space: nowrap;
  margin-top: 8px;
}
.spm-wa-share:hover {
  background: rgba(37,211,102,0.14);
  border-color: #25d366;
  color: #1a9e4e;
}

/* Deep-link card highlight — fires when page opens with a #spm-tip-NNN anchor */
@keyframes spmPulseHL {
  0%   { box-shadow: 0 0 0 0 rgba(201,162,58,0.0);  background: transparent; }
  20%  { box-shadow: 0 0 0 8px rgba(201,162,58,0.35); background: rgba(201,162,58,0.08); }
  70%  { box-shadow: 0 0 0 4px rgba(201,162,58,0.15); background: rgba(201,162,58,0.05); }
  100% { box-shadow: 0 0 0 0 rgba(201,162,58,0.0);  background: transparent; }
}
.spm-deep-highlight {
  animation: spmPulseHL 2.8s ease forwards;
  border-radius: var(--radius-lg, 12px);
  outline: 2px solid rgba(201,162,58,0.5);
  outline-offset: 3px;
}
