/* ==========================================================================
   SATYA PHOTOGRAPHY — WEDDING ADVISOR — Premium Redesign v23
   ========================================================================== */

/* Kill inherited blur/filter */
#satya-advisor, #satya-advisor *, #satya-advisor *::before, #satya-advisor *::after {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  -webkit-filter: none !important;
  filter: none !important;
}

/* Force clean backgrounds */
#satya-advisor .sp-panel__shell { background: #FAF8F5 !important; }
#satya-advisor .sp-screen { background: #FAF8F5 !important; }
#satya-advisor .sp-head { background: #FFFFFF !important; }

/* Kill old theme overlays */
body .overaly, body .j-alepopWrap, body .nav-pop-wrap {
  display: none !important; visibility: hidden !important; opacity: 0 !important; pointer-events: none !important;
}

/* ---------- CSS Variables ---------- */
:root {
  --wa-bg: #FAF8F5;
  --wa-white: #FFFFFF;
  --wa-ink: #1A1714;
  --wa-ink-2: #3D3832;
  --wa-ink-3: #8A827A;
  --wa-cream: #F5F1EC;
  --wa-stone: #E8E2D8;
  --wa-border: #E5DED5;
  --wa-red: #C53232;
  --wa-red-hover: #A82828;
  --wa-red-bg: rgba(197,50,50,0.06);
  --wa-whatsapp: #25D366;
  --wa-font: "Mulish", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  --wa-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --wa-radius: 14px;
  --wa-radius-lg: 24px;
  --wa-radius-full: 999px;
  --wa-shadow: 0 2px 12px rgba(0,0,0,0.06);
  --wa-shadow-lg: 0 24px 80px rgba(0,0,0,0.18);
  --wa-fast: 150ms;
  --wa-normal: 280ms;
  --wa-slow: 450ms;
  --wa-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wa-ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --wa-safe-top: env(safe-area-inset-top, 0px);
  --wa-safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ---------- Overlay ---------- */
.sp-overlay {
  position: fixed !important; inset: 0 !important; z-index: 99998 !important;
  background: rgba(26,23,20,0.35) !important;
  opacity: 0 !important; pointer-events: none !important;
  transition: opacity var(--wa-slow) var(--wa-ease);
}
.sp-panel.is-open .sp-overlay { opacity: 1 !important; pointer-events: auto !important; }

/* ---------- Panel ---------- */
.sp-panel {
  position: fixed !important; inset: 0 !important; z-index: 99999 !important;
  display: none !important; align-items: center !important; justify-content: center !important;
  pointer-events: none !important;
}
.sp-panel.is-open { display: flex !important; pointer-events: auto !important; }

/* ---------- Shell ---------- */
.sp-panel__shell {
  z-index: 99999 !important;
  display: flex; flex-direction: column; overflow: hidden;
  width: 100%; height: 100%; position: relative;
  background: var(--wa-bg);
  animation: spSlideUp 0.45s var(--wa-ease);
}
@keyframes spSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Persistent Header ---------- */
.sp-head {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 24px; border-bottom: 1px solid var(--wa-border);
  background: var(--wa-white); flex-shrink: 0; position: relative; z-index: 2;
}
.sp-head__logo {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--wa-red);
  box-shadow: 0 2px 10px rgba(197,50,50,0.12);
}
.sp-head__info { flex: 1; min-width: 0; }
.sp-head__name {
  font: 700 0.95rem/1.2 var(--wa-font); color: var(--wa-ink);
}
.sp-head__role {
  font: 500 0.68rem/1.3 var(--wa-font); color: var(--wa-red);
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px;
}
.sp-head__step {
  font: 600 0.65rem/1 var(--wa-font); color: var(--wa-ink-3);
  background: var(--wa-cream); padding: 5px 12px;
  border-radius: var(--wa-radius-full);
}
.sp-head__close {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: var(--wa-ink-3); font-size: 1.3rem;
  cursor: pointer; border-radius: 50%;
  transition: background var(--wa-fast) ease, color var(--wa-fast) ease;
}
.sp-head__close:hover { background: var(--wa-cream); color: var(--wa-ink); }

/* ---------- Progress Bar ---------- */
.sp-progress {
  width: 100%; height: 4px; background: var(--wa-stone); flex-shrink: 0;
}
.sp-progress__fill {
  height: 100%; background: linear-gradient(90deg, var(--wa-red), #E04545);
  border-radius: 0 2px 2px 0;
  transition: width 0.6s var(--wa-ease);
}

/* ---------- Screen Area ---------- */
.sp-screen {
  flex: 1; overflow-y: auto; overflow-x: hidden;
  -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  display: flex; flex-direction: column; align-items: center;
  padding: 36px 24px 100px; scroll-behavior: smooth;
}
.sp-screen::-webkit-scrollbar { width: 3px; }
.sp-screen::-webkit-scrollbar-track { background: transparent; }
.sp-screen::-webkit-scrollbar-thumb { background: var(--wa-stone); border-radius: 3px; }

/* ---------- Screen Transitions ---------- */
.sp-screen__card {
  width: 100%; max-width: 560px;
  animation: spFadeUp 0.4s var(--wa-ease);
}
@keyframes spFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Welcome Screen ---------- */
.sp-welcome {
  text-align: center; padding: 48px 0; width: 100%; max-width: 460px;
}
.sp-welcome__logo {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
  border: 2.5px solid var(--wa-red);
  box-shadow: 0 6px 24px rgba(197,50,50,0.15);
  margin: 0 auto 28px;
  animation: spLogoPulse 2s ease-in-out infinite;
}
@keyframes spLogoPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(197,50,50,0.15); }
  50% { box-shadow: 0 8px 32px rgba(197,50,50,0.25); }
}
.sp-welcome h1 {
  font: 600 1.9rem/1.15 var(--wa-serif); color: var(--wa-ink);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.sp-welcome p {
  font: 400 0.88rem/1.6 var(--wa-font); color: var(--wa-ink-3);
  max-width: 380px; margin: 0 auto 20px;
}

/* ---------- Section Title ---------- */
.sp-section-title {
  font: 600 1.55rem/1.2 var(--wa-serif); color: var(--wa-ink);
  text-align: center; margin-bottom: 8px; letter-spacing: -0.01em;
  width: 100%;
}
.sp-section-sub {
  font: 400 0.82rem/1.5 var(--wa-font); color: var(--wa-ink-3);
  text-align: center; margin-bottom: 28px; max-width: 420px;
}

/* ---------- Role Grid (Text Only) ---------- */
.sp-role-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 16px; width: 100%; max-width: 420px;
}
.sp-role {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px 12px; border-radius: var(--wa-radius);
  background: var(--wa-white); border: 2px solid var(--wa-border);
  cursor: pointer; transition: all var(--wa-normal) var(--wa-ease);
  min-height: 64px;
}
.sp-role:hover { border-color: var(--wa-red); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.sp-role.is-sel { border-color: var(--wa-red); background: var(--wa-red-bg); }
.sp-role__name {
  font: 600 0.82rem/1.2 var(--wa-font); color: var(--wa-ink); text-align: center;
}
.sp-role.is-sel .sp-role__name { color: var(--wa-red); }

/* ---------- Option Buttons ---------- */
.sp-opts { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 16px; width: 100%; max-width: 520px; }
.sp-opt {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px; text-align: center;
  background: var(--wa-white); color: var(--wa-ink);
  border: 2px solid var(--wa-border); border-radius: var(--wa-radius-full);
  font: 500 0.85rem/1 var(--wa-font); cursor: pointer;
  transition: all var(--wa-normal) var(--wa-ease); white-space: nowrap;
}
.sp-opt:hover {
  border-color: var(--wa-red); color: var(--wa-red);
  background: var(--wa-red-bg); transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197,50,50,0.1);
}
.sp-opt:active { transform: scale(0.97); }
.sp-opt.is-sel { background: var(--wa-ink); color: var(--wa-white); border-color: var(--wa-ink); }
.sp-opt.is-sel:hover { background: var(--wa-ink-2); border-color: var(--wa-ink-2); color: var(--wa-white); }

/* ---------- Primary Button (Red) ---------- */
.sp-btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 36px; background: var(--wa-red); color: var(--wa-white);
  border: none; border-radius: var(--wa-radius-full);
  font: 600 0.9rem/1 var(--wa-font); cursor: pointer;
  transition: all var(--wa-normal) var(--wa-ease);
  letter-spacing: 0.03em; position: relative; overflow: hidden;
  min-width: 180px; box-shadow: 0 4px 16px rgba(197,50,50,0.2);
}
.sp-btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 200%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.sp-btn-primary:hover::before { left: 100%; }
.sp-btn-primary:hover {
  background: var(--wa-red-hover); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197,50,50,0.3);
}
.sp-btn-primary:active { transform: translateY(0) scale(0.97); }
.sp-btn-primary:disabled { opacity: 0.4; cursor: default; transform: none; box-shadow: none; }

/* ---------- Secondary Button ---------- */
.sp-btn-secondary {
  display: inline-block; padding: 10px 20px;
  background: none; border: none; color: var(--wa-ink-3);
  font: 400 0.8rem/1 var(--wa-font); cursor: pointer; text-decoration: underline;
}
.sp-btn-secondary:hover { color: var(--wa-red); }

/* ---------- Text Input ---------- */
.sp-input-wrap {
  width: 100%; max-width: 400px; margin-bottom: 16px;
}
.sp-input {
  width: 100%; padding: 15px 20px; border: 2px solid var(--wa-border);
  border-radius: var(--wa-radius); font: 400 0.92rem/1.4 var(--wa-font);
  color: var(--wa-ink); background: var(--wa-white); outline: none;
  transition: border-color var(--wa-fast) ease, box-shadow var(--wa-fast) ease;
}
.sp-input:focus {
  border-color: var(--wa-red); box-shadow: 0 0 0 4px var(--wa-red-bg);
}
.sp-input::placeholder { color: var(--wa-ink-3); }
.sp-input.is-error {
  border-color: var(--wa-red); box-shadow: 0 0 0 4px rgba(197,50,50,0.08);
}
.sp-input-error {
  font: 400 0.72rem/1.3 var(--wa-font); color: var(--wa-red);
  text-align: center; margin-top: 6px; min-height: 1em;
}

/* ---------- Date Input ---------- */
.sp-date-input {
  width: 100%; max-width: 300px; padding: 15px 20px;
  border: 2px solid var(--wa-border); border-radius: var(--wa-radius);
  font: 400 0.92rem/1.4 var(--wa-font); color: var(--wa-ink);
  background: var(--wa-white); outline: none; text-align: center;
}
.sp-date-input:focus { border-color: var(--wa-red); box-shadow: 0 0 0 4px var(--wa-red-bg); }

/* ---------- Event Grid ---------- */
.sp-evts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  margin-bottom: 24px; width: 100%; max-width: 520px;
}
.sp-evt {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 18px 12px; border-radius: var(--wa-radius);
  background: var(--wa-white); border: 2px solid var(--wa-border);
  cursor: pointer; transition: all var(--wa-normal) var(--wa-ease);
  position: relative; min-height: 70px;
}
.sp-evt:hover { border-color: var(--wa-red); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.sp-evt.is-sel { border-color: var(--wa-red); background: var(--wa-red-bg); }
.sp-evt__check {
  position: absolute; top: 8px; right: 8px; width: 20px; height: 20px;
  color: var(--wa-red); opacity: 0; transition: opacity var(--wa-fast) ease, transform var(--wa-normal) var(--wa-ease-back);
  transform: scale(0.5);
}
.sp-evt.is-sel .sp-evt__check { opacity: 1; transform: scale(1); }
.sp-evt__check svg { width: 100%; height: 100%; }
.sp-evt__name {
  font: 600 0.8rem/1.2 var(--wa-font); color: var(--wa-ink); text-align: center;
}
.sp-evt.is-sel .sp-evt__name { color: var(--wa-red); }

/* ---------- Service Cards (Circular) ---------- */
.sp-svc-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
  margin-bottom: 24px; width: 100%;
}
.sp-svc {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: pointer; transition: transform var(--wa-normal) var(--wa-ease);
  position: relative; width: 96px;
}
.sp-svc:hover { transform: translateY(-4px); }
.sp-svc__icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--wa-white); border: 2.5px solid var(--wa-border);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--wa-normal) var(--wa-ease); position: relative;
}
.sp-svc__icon svg { width: 28px; height: 28px; color: var(--wa-ink-3); transition: color var(--wa-fast) ease; }
.sp-svc.is-sel .sp-svc__icon {
  border-color: var(--wa-red); background: var(--wa-red-bg);
}
.sp-svc.is-sel .sp-svc__icon svg { color: var(--wa-red); }
.sp-svc__check {
  position: absolute; top: -3px; right: -3px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--wa-red); color: var(--wa-white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.3);
  transition: all var(--wa-normal) var(--wa-ease-back);
  box-shadow: 0 2px 8px rgba(197,50,50,0.3);
}
.sp-svc.is-sel .sp-svc__check { opacity: 1; transform: scale(1); }
.sp-svc__check svg { width: 13px; height: 13px; }
.sp-svc__name {
  font: 500 0.72rem/1.2 var(--wa-font); color: var(--wa-ink);
  text-align: center; max-width: 88px;
}
.sp-svc__price {
  font: 600 0.72rem/1 var(--wa-font); color: var(--wa-red);
}

/* ---------- Quantity Controls ---------- */
.sp-qty {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 4px;
}
.sp-qty button {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--wa-bg); border: 1.5px solid var(--wa-border);
  font: 600 1rem/28px var(--wa-font); color: var(--wa-ink);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--wa-fast) ease;
}
.sp-qty button:hover:not(:disabled) { border-color: var(--wa-red); background: var(--wa-red-bg); }
.sp-qty button:disabled { opacity: 0.3; cursor: default; }
.sp-qty span {
  font: 600 0.88rem/1 var(--wa-font); color: var(--wa-ink); min-width: 24px; text-align: center;
}

/* ---------- Advisory Note ---------- */
.sp-advisory {
  font: 400 0.76rem/1.55 var(--wa-font); color: var(--wa-ink-3);
  font-style: italic; text-align: center; max-width: 420px;
  margin: 0 auto 16px; padding: 14px 18px;
  background: var(--wa-red-bg); border-radius: var(--wa-radius);
  border-left: 3px solid var(--wa-red);
}

/* ---------- Event Total Bar ---------- */
.sp-evt-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; background: var(--wa-ink); border-radius: var(--wa-radius);
  margin-bottom: 16px; width: 100%; max-width: 520px;
}
.sp-evt-total__label { font: 500 0.82rem/1 var(--wa-font); color: rgba(255,255,255,0.6); }
.sp-evt-total__amount { font: 700 1.05rem/1 var(--wa-font); color: #E04545; }

/* ---------- Validation Message ---------- */
.sp-validation {
  font: 500 0.78rem/1.3 var(--wa-font); color: var(--wa-red);
  text-align: center; margin-bottom: 12px; min-height: 1.2em;
  animation: spFadeUp 0.3s var(--wa-ease);
}

/* ---------- Suggestion Card ---------- */
.sp-suggestion {
  background: var(--wa-white); border: 2px solid var(--wa-stone);
  border-radius: var(--wa-radius); padding: 16px 20px;
  margin-bottom: 16px; width: 100%; max-width: 520px;
  animation: spFadeUp 0.4s var(--wa-ease);
}
.sp-suggestion__title {
  font: 600 0.85rem/1.3 var(--wa-font); color: var(--wa-ink); margin-bottom: 6px;
}
.sp-suggestion__text {
  font: 400 0.78rem/1.5 var(--wa-font); color: var(--wa-ink-3); margin-bottom: 12px;
}
.sp-suggestion__actions { display: flex; gap: 10px; justify-content: center; }

/* ---------- Confirmation Screen ---------- */
.sp-confirm {
  text-align: center; padding: 40px 0; width: 100%; max-width: 460px;
}
.sp-confirm__icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--wa-red-bg); border: 2.5px solid var(--wa-red);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.sp-confirm__icon svg { width: 36px; height: 36px; color: var(--wa-red); }
.sp-confirm h2 {
  font: 600 1.5rem/1.2 var(--wa-serif); color: var(--wa-ink);
  margin-bottom: 10px;
}
.sp-confirm p {
  font: 400 0.85rem/1.6 var(--wa-font); color: var(--wa-ink-3);
  max-width: 380px; margin: 0 auto 24px;
}
.sp-confirm__btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ---------- Quote Table ---------- */
.sp-quote { width: 100%; max-width: 560px; }
.sp-quote__hero {
  background: var(--wa-ink); padding: 32px 24px; text-align: center;
  border-radius: var(--wa-radius-lg) var(--wa-radius-lg) 0 0;
}
.sp-quote__studio { font: 700 0.78rem/1 var(--wa-font); color: #E04545; letter-spacing: 0.18em; margin-bottom: 4px; }
.sp-quote__tagline { font: 400 0.62rem/1 var(--wa-font); color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.sp-quote__couple { font: 500 1.5rem/1.2 var(--wa-serif); color: var(--wa-white); margin-bottom: 6px; }
.sp-quote__meta { font: 400 0.68rem/1.4 var(--wa-font); color: rgba(255,255,255,0.4); }

.sp-quote__table {
  width: 100%; border-collapse: collapse; background: var(--wa-white);
}
.sp-quote__table th {
  font: 600 0.7rem/1 var(--wa-font); color: var(--wa-white);
  background: var(--wa-red); padding: 11px 16px; text-align: left;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.sp-quote__table th:last-child { text-align: right; }
.sp-quote__table td {
  font: 400 0.8rem/1.4 var(--wa-font); color: var(--wa-ink);
  padding: 9px 16px; border-bottom: 1px solid var(--wa-border);
}
.sp-quote__table td:last-child { text-align: right; font-weight: 600; white-space: nowrap; }
.sp-quote__table tr:last-child td { border-bottom: none; }
.sp-quote__table .sp-quote__evt-row {
  background: var(--wa-cream); font-weight: 600;
}
.sp-quote__table .sp-quote__evt-row td { padding: 11px 16px; font-size: 0.82rem; }

.sp-quote__total-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; background: var(--wa-ink);
  border-radius: 0 0 var(--wa-radius-lg) var(--wa-radius-lg);
}
.sp-quote__total-label { font: 600 0.78rem/1 var(--wa-font); color: rgba(255,255,255,0.5); letter-spacing: 0.1em; }
.sp-quote__total-amount { font: 700 1.5rem/1 var(--wa-font); color: #E04545; }
.sp-quote__disclaimer {
  font: 400 0.64rem/1.5 var(--wa-font); color: var(--wa-ink-3);
  text-align: center; padding: 14px 20px; font-style: italic;
}

/* ---------- Album Cards ---------- */
.sp-album-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin-bottom: 16px; width: 100%; max-width: 480px;
}
.sp-album-card {
  padding: 18px; border-radius: var(--wa-radius);
  background: var(--wa-white); border: 2px solid var(--wa-border);
  cursor: pointer; transition: all var(--wa-normal) var(--wa-ease); text-align: center;
}
.sp-album-card:hover { border-color: var(--wa-red); transform: translateY(-2px); }
.sp-album-card.is-sel { border-color: var(--wa-red); background: var(--wa-red-bg); }
.sp-album-card__name { font: 500 0.82rem/1.2 var(--wa-font); color: var(--wa-ink); margin-bottom: 4px; }
.sp-album-card__desc { font: 400 0.7rem/1.3 var(--wa-font); color: var(--wa-ink-3); margin-bottom: 6px; }
.sp-album-card__price { font: 600 0.88rem/1 var(--wa-font); color: var(--wa-red); }

/* ---------- Loading Spinner ---------- */
.sp-loading { text-align: center; padding: 48px 0; }
.sp-loading__spinner {
  width: 40px; height: 40px; margin: 0 auto 16px;
  border: 3px solid var(--wa-stone); border-top-color: var(--wa-red);
  border-radius: 50%; animation: spSpin 0.7s linear infinite;
}
@keyframes spSpin { to { transform: rotate(360deg); } }
.sp-loading__text { font: 500 0.88rem/1 var(--wa-font); color: var(--wa-ink-3); }

/* ---------- Terms ---------- */
.sp-terms { display: flex; align-items: flex-start; gap: 8px; margin: 14px 0; justify-content: center; }
.sp-terms input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--wa-red); margin-top: 2px; flex-shrink: 0; }
.sp-terms label { font: 400 0.78rem/1.5 var(--wa-font); color: var(--wa-ink-3); }
.sp-terms a { color: var(--wa-red); text-decoration: underline; }

/* ---------- FAB (Premium White + Red) ---------- */
.sp-fab {
  position: fixed !important; bottom: calc(1.5rem + var(--wa-safe-bottom)) !important;
  right: 1.5rem !important; display: inline-flex !important; align-items: center; gap: 10px;
  padding: 12px 24px 12px 14px;
  background: var(--wa-white) !important; color: var(--wa-ink) !important;
  border: 1.5px solid var(--wa-border) !important; border-radius: var(--wa-radius-full);
  font: 600 0.82rem/1 var(--wa-font); cursor: pointer; z-index: 99988;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.35s var(--wa-ease-back), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  overflow: hidden;
}
.sp-fab::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 200%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(197,50,50,0.06), transparent);
  animation: spFabShimmer 4s ease-in-out infinite;
}
@keyframes spFabShimmer { 0% { transform: translateX(-50%); } 100% { transform: translateX(50%); } }
.sp-fab:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 36px rgba(197,50,50,0.2), 0 4px 12px rgba(0,0,0,0.08);
  background: var(--wa-red) !important; border-color: var(--wa-red) !important;
  color: var(--wa-white) !important;
}
.sp-fab:hover .sp-fab__icon { background: var(--wa-white); }
.sp-fab:hover .sp-fab__icon svg { fill: var(--wa-red); }
.sp-fab:hover .sp-fab__text { color: var(--wa-white); }
.sp-fab:active { transform: translateY(-1px) scale(0.97); }
.sp-fab__icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--wa-red); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.35s var(--wa-ease-back), background 0.3s ease;
  position: relative; z-index: 1;
}
.sp-fab__icon svg { width: 15px; height: 15px; fill: var(--wa-white); stroke: none; transition: fill 0.3s ease; }
.sp-fab:hover .sp-fab__icon { transform: rotate(-10deg) scale(1.1); }
.sp-fab__text { white-space: nowrap; position: relative; z-index: 1; color: var(--wa-ink); transition: color 0.3s ease; }

/* ---------- Tooltip ---------- */
.sp-tooltip {
  position: fixed; bottom: calc(4.8rem + var(--wa-safe-bottom)); right: 1.5rem;
  background: var(--wa-white); color: var(--wa-ink); padding: 10px 18px;
  border-radius: var(--wa-radius); font: 400 0.78rem/1.3 var(--wa-font);
  box-shadow: var(--wa-shadow); z-index: 99987;
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--wa-slow) var(--wa-ease), transform var(--wa-slow) var(--wa-ease);
  pointer-events: none;
}
.sp-tooltip.is-show { opacity: 1; transform: translateY(0); }

/* ---------- Popups: REMOVED ---------- */
.sp-popup { display: none !important; }

/* ---------- Mobile Contact Widget ---------- */
.sp-mc-wrap {
  display: none; position: fixed; bottom: calc(5rem + var(--wa-safe-bottom));
  left: 1rem; z-index: 99986; flex-direction: column-reverse;
  align-items: flex-start; gap: 10px;
}
.sp-mc-fab {
  width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
  background: var(--wa-ink); color: var(--wa-white); border: 2px solid var(--wa-red);
  border-radius: 50%; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform var(--wa-normal) var(--wa-ease);
  position: relative; z-index: 3;
}
.sp-mc-fab svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.sp-mc-wrap.is-open .sp-mc-fab svg { transform: rotate(45deg); }
.sp-mc-fab:hover { transform: scale(1.08); }
.sp-mc-links {
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateY(8px) scale(0.9);
  pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease;
}
.sp-mc-wrap.is-open .sp-mc-links { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.sp-mc-links a {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: transform var(--wa-normal) var(--wa-ease);
}
.sp-mc-links a:active { transform: scale(0.92); }
.sp-mc-links a.sp-mc--wa { background: var(--wa-whatsapp); color: #fff; }
.sp-mc-links a.sp-mc--email, .sp-mc-links a.sp-mc--call { background: var(--wa-ink); color: var(--wa-white); }

/* ---------- Button Row ---------- */
.sp-btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Mobile (< 768px) ---------- */
@media (max-width: 767px) {
  .sp-screen { padding: 28px 18px 90px; }
  .sp-evts { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .sp-svc-grid { gap: 16px; }
  .sp-svc { width: 80px; }
  .sp-svc__icon { width: 58px; height: 58px; }
  .sp-svc__icon svg { width: 24px; height: 24px; }
  .sp-role-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .sp-album-grid { grid-template-columns: 1fr; }
  .sp-section-title { font-size: 1.35rem; }
  .sp-fab { bottom: calc(1rem + var(--wa-safe-bottom)); right: 1rem; padding: 10px 18px 10px 12px; }
  .sp-fab__icon { width: 28px; height: 28px; }
  .sp-fab__icon svg { width: 14px; height: 14px; }
  .sp-tooltip { bottom: calc(4rem + var(--wa-safe-bottom)); right: 1rem; }
  .sp-mc-wrap { bottom: calc(5rem + var(--wa-safe-bottom)); left: 1rem; }
  .sp-head { padding: 12px 16px; gap: 10px; }
  .sp-head__logo { width: 38px; height: 38px; }
}

/* ---------- Tablet (768-1023px) ---------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .sp-evts { grid-template-columns: repeat(3, 1fr); }
  .sp-role-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Desktop (>= 1024px) ---------- */
@media (min-width: 1024px) {
  .sp-panel__shell {
    max-width: 680px; width: 80vw;
    margin: 4vh auto; height: 86vh; max-height: 720px;
    border-radius: var(--wa-radius-lg); overflow: hidden;
    box-shadow: var(--wa-shadow-lg), 0 0 0 1px rgba(0,0,0,0.04);
  }
  .sp-evts { grid-template-columns: repeat(3, 1fr); }
  .sp-role-grid { grid-template-columns: repeat(3, 1fr); }
  .sp-svc-grid { gap: 24px; }
  .sp-svc { width: 100px; }
  .sp-svc__icon { width: 72px; height: 72px; }
  .sp-svc__icon svg { width: 30px; height: 30px; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Admin element hiding ---------- */
.adminactions, .adminbutton, .adminbuttons, .admintoggle, .main-img-sec, .img-section, [data-enquiry-fab] {
  display: none !important;
}
