/* ═══════════════════════════════════════════════════════════
   mamajota™ — Shared Core CSS (Restored Original Theme)
   An IP by Team Incredible Pvt. Ltd.
   ═══════════════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* ── Original Design Tokens ── */
:root {
  --blue:       #1B3A7A;
  --blue-mid:   #2B52A8;
  --blue-light: #EEF3FB;
  --pink:       #D63F78;
  --pink-mid:   #E8719F;
  --pink-light: #FDEEF5;
  --white:      #FFFFFF;
  --off:        #F8F9FC;
  --text:       #12213F;
  --muted:      #000000;
  --border:     #DDE3F0;
  --purple:     #6B2FAA;
  --purple-light: #F0EDFB;
  
  /* Apple Typography Stack */
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  
  --grad: linear-gradient(135deg, var(--blue) 0%, #2B52A8 50%, #6B2FAA 100%);
  --shadow-sm: 0 2px 12px rgba(27,58,122,.06);
  --shadow-md: 0 8px 32px rgba(27,58,122,.08);
  --shadow-lg: 0 16px 48px rgba(27,58,122,.12);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 100px;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;

  font-size: 17.5px;}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--off);
}
::-webkit-scrollbar-thumb {
  background: var(--pink-mid);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--pink);
}

::selection {
  background-color: var(--pink);
  color: #fff;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow .3s, background .3s;
}
nav.scrolled {
  box-shadow: 0 2px 24px rgba(27,58,122,.08);
  background: rgba(255,255,255,0.98);
}
.nav-inner {
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 68px;
  width: auto;
  border-radius: 50%;
}
.nav-brand {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-brand sup {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--pink);
  vertical-align: super;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color .2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: width .3s;
}
.nav-links a:hover {
  color: var(--blue);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links li.active a {
  color: var(--blue);
}
.nav-links li.active a::after {
  width: 100%;
}
.nav-cta {
  background: var(--pink) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background .2s, transform .2s, box-shadow .2s !important;
  box-shadow: 0 4px 12px rgba(214, 63, 120, 0.2);
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: #B8305E !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(214, 63, 120, 0.3) !important;
}

/* Hamburger button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
  position: relative;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-overlay a {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
  opacity: 0;
  transform: translateY(16px);
}
.mobile-overlay.open a {
  opacity: 1;
  transform: none;
  transition: opacity .4s, transform .4s, color .2s;
}
.mobile-overlay.open a:nth-child(1) { transition-delay: .1s; }
.mobile-overlay.open a:nth-child(2) { transition-delay: .15s; }
.mobile-overlay.open a:nth-child(3) { transition-delay: .2s; }
.mobile-overlay.open a:nth-child(4) { transition-delay: .25s; }
.mobile-overlay.open a:nth-child(5) { transition-delay: .3s; }
.mobile-overlay.open a:nth-child(6) { transition-delay: .35s; }

.mobile-overlay a:hover {
  color: var(--pink);
}
.mobile-overlay .nav-cta {
  font-family: var(--font-sans);
  font-size: 15.5px;
  margin-top: 8px;
  padding: 12px 32px !important;
}

/* ── Section Shared ── */
section {
  padding: 96px 40px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--blue);
}
.section-title .pink {
  color: var(--pink);
}
.section-desc {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 520px;
  font-weight: 400;
}

/* ── Page Header Utility ── */
.page-header {
  padding: 140px 40px 72px;
  background: var(--off);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 243, 251, 0.6) 0%, transparent 70%);
  top: -300px;
  right: -200px;
  pointer-events: none;
}
.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-header-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  color: var(--blue);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.page-header-desc {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Original Stats Strip ── */
.stats-strip {
  background: var(--blue);
  overflow: hidden;
  position: relative;
  padding: 0;
}
.stats-ticker-wrap {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 13px 0;
}
.stats-ticker-wrap.reverse {
  border-bottom: none;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stats-ticker {
  display: flex;
  flex-shrink: 0;
  animation: ticker-scroll 26s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.stats-ticker-wrap:hover .stats-ticker {
  animation-play-state: paused;
}
.stats-ticker-wrap.reverse .stats-ticker {
  animation-direction: reverse;
  animation-duration: 32s;
}
.ticker-chunk {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.ticker-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pink-mid);
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 52px 28px 48px;
  text-align: center;
  position: relative;
  cursor: default;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.35s;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item:hover {
  background: rgba(255,255,255,0.05);
}
.stat-item::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60%;
  left: -80%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transform: skewX(-12deg);
  pointer-events: none;
}
.stat-item:hover::after {
  left: 140%;
  transition: left 0.6s ease;
}
.stat-num-wrap {
  line-height: 1;
  margin-bottom: 16px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(44px, 4.5vw, 64px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(.22,.68,0,1.3);
}
.stat-item:hover .stat-num {
  transform: scale(1.08) translateY(-3px);
}
.stat-num .suffix {
  color: var(--pink-mid);
  font-style: italic;
}
.stat-label-wrap {
  position: relative;
  height: 18px;
  overflow: hidden;
}
.stat-label, .stat-label-hover {
  position: absolute;
  inset: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.38s cubic-bezier(.22,.68,0,1.2), opacity 0.3s;
  white-space: nowrap;
}
.stat-label {
  color: rgba(255,255,255,0.6);
  transform: translateY(0);
  opacity: 1;
}
.stat-label-hover {
  color: var(--pink-mid);
  transform: translateY(18px);
  opacity: 0;
  font-weight: 600;
}
.stat-item:hover .stat-label {
  transform: translateY(-18px);
  opacity: 0;
}
.stat-item:hover .stat-label-hover {
  transform: translateY(0);
  opacity: 1;
}

/* ── Footer ── */
footer {
  background: var(--text);
  padding: 48px 40px 32px;
  color: rgba(255, 255, 255, 0.7);
}
footer img {
  height: 38px !important;
  width: auto !important;
  max-width: 180px !important;
  display: block;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
.footer-brand sup {
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--pink-mid);
  vertical-align: super;
}
.footer-tagline {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 300;
}
.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-col-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.footer-col-links a {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color .2s;
}
.footer-col-links a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 15px;
  color: rgba(255,255,255,0.35);
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15.5px;
  color: rgba(255,255,255,0.4);
}
.fdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink-mid);
  animation: pulse 2.2s ease-in-out infinite;
}

/* ── Scroll Reveal System ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Footer Logo Optimization ── */
.footer-logo {
  height: 54px !important;
  width: auto !important;
  max-width: 220px !important;
  display: block;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-logo:hover {
  opacity: 1;
}

/* ── Premium Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  width: auto;
  text-align: center;
}
.btn-pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(214, 63, 120, 0.25);
}
.btn-pink:hover {
  background: #B8305E;
  transform: translateY(-1.5px) !important;
  box-shadow: 0 6px 20px rgba(214, 63, 120, 0.35);
}
.btn-pink:active {
  transform: translateY(0.5px) !important;
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(27, 58, 122, 0.25);
}
.btn-blue:hover {
  background: var(--blue-mid);
  transform: translateY(-1.5px) !important;
  box-shadow: 0 6px 20px rgba(27, 58, 122, 0.35);
}
.btn-blue:active {
  transform: translateY(0.5px) !important;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  width: auto;
  text-align: center;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(214, 63, 120, 0.25);
}
.btn-primary:hover {
  background: #B8305E;
  transform: translateY(-1.5px) !important;
  box-shadow: 0 6px 20px rgba(214, 63, 120, 0.35);
}
.btn-primary:active {
  transform: translateY(0.5px) !important;
}

.btn-secondary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(27, 58, 122, 0.25);
}
.btn-secondary:hover {
  background: var(--blue-mid);
  transform: translateY(-1.5px) !important;
  box-shadow: 0 6px 20px rgba(27, 58, 122, 0.35);
}
.btn-secondary:active {
  transform: translateY(0.5px) !important;
}

/* ── Responsive Stats Strip ── */
@media (max-width: 768px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    padding: 36px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat-item:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .stat-num {
    font-size: clamp(32px, 7vw, 40px);
  }
}
@media (max-width: 480px) {
  .stats-inner {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-left: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
}

/* ── Responsive Shared ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  section { padding: 72px 20px; }
  footer { padding: 48px 20px 24px; }
  .footer-top { flex-direction: column; gap: 24px; }
}

/* ── Premium Ambient Floating Background Blobs ── */
.ambient-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
  background: radial-gradient(circle at 0% 0%, #FFF8FA 0%, #F5F8FF 50%, #FFFDFE 100%);
}
.ambient-blob-1 {
  position: absolute;
  top: -10%; left: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(214, 63, 120, 0.04) 0%, rgba(214, 63, 120, 0) 70%);
  animation: float-blob-1 25s infinite alternate ease-in-out;
  pointer-events: none;
}
.ambient-blob-2 {
  position: absolute;
  bottom: -10%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(27, 58, 122, 0.03) 0%, rgba(27, 58, 122, 0) 70%);
  animation: float-blob-2 30s infinite alternate ease-in-out;
  pointer-events: none;
}
@keyframes float-blob-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(10vw, 8vh) scale(1.15); }
}
@keyframes float-blob-2 {
  0% { transform: translate(0, 0) scale(1.1); }
  100% { transform: translate(-12vw, -10vh) scale(0.9); }
}

/* Global Text Readability & High-Contrast Adjustments */
p, 
.hero-desc, 
.section-desc, 
.card-desc, 
.opp-item-desc, 
.stall-best-for, 
.faq-body, 
.md-desc, 
.org-left p, 
.concept-card p, 
.pass-sub,
.pass-detail-item,
.hero-sub {
  color: #000000; /* Dark color by default */
  font-weight: 550 !important; /* Make elements bolder for high contrast */
}

/* Force light text color on dark containers */
footer, 
footer p, 
footer a, 
.footer-copy, 
.footer-status, 
.footer-col-links a,
.home-zones-teaser, 
.home-zones-teaser h2, 
.home-zones-teaser p, 
.stats-inner, 
.stat-item, 
.stat-label, 
.stat-label-hover, 
.stat-num,
.stat-num span {
  color: #FFFFFF !important;
}
footer p, 
.footer-copy, 
.footer-status, 
.footer-col-links a, 
.home-zones-teaser p, 
.stat-label, 
.stat-label-hover {
  color: rgba(255, 255, 255, 0.75) !important;
}


/* ── Premium Choice Popup Modal ── */
.choice-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 33, 63, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 20px;
}
.choice-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.choice-modal-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 64px rgba(18, 33, 63, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  max-width: 880px;
  width: 100%;
  padding: 40px 32px 32px;
  position: relative;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.choice-modal-overlay.active .choice-modal-card {
  transform: translateY(0) scale(1);
}
.choice-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(18, 33, 63, 0.05);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.choice-modal-close:hover {
  background: rgba(18, 33, 63, 0.1);
  transform: rotate(90deg);
}
.choice-modal-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #000000 !important;
  text-align: center;
  margin-bottom: 6px;
}
.choice-modal-subtitle {
  font-size: 15px;
  color: #4A5568 !important;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 550 !important;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .choice-modal-overlay {
    align-items: flex-start;
    overflow-y: auto;
    padding: 12px;
  }
  .choice-modal-card {
    margin: 20px auto;
    padding: 36px 20px 20px;
    border-radius: 18px;
  }
  .choice-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.choice-option-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.choice-option-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
  box-shadow: 0 12px 28px rgba(214, 63, 120, 0.08);
}
.choice-option-card.business-option:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(27, 58, 122, 0.08);
}
.choice-icon-bubble {
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.choice-option-card.business-option .choice-icon-bubble {
  background: var(--blue-light);
}
.choice-option-title {
  font-family: var(--font-serif);
  font-size: 18.5px;
  font-weight: 700;
  color: #000000 !important;
  margin-bottom: 8px;
}
.choice-option-desc {
  font-size: 15px;
  line-height: 1.5;
  color: #4A5568 !important;
  margin-bottom: 18px;
  flex-grow: 1;
  font-weight: 550 !important;
}
.choice-action-text {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--pink);
  transition: transform 0.2s;
}
.choice-option-card.business-option .choice-action-text {
  color: var(--blue-mid);
}
.choice-option-card:hover .choice-action-text {
  transform: translateX(3px);
}

/* Footer Social Icon Buttons */
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.25s ease;
  text-decoration: none;
  flex-shrink: 0;
}
.footer-social-btn svg {
  width: 22px !important;
  height: 22px !important;
  fill: currentColor !important;
  display: block;
}
.footer-social-btn:hover {
  background: var(--pink) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(214, 63, 120, 0.4);
}

/* Page Transition Overlay */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--white);
  z-index: 999999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.page-transition-overlay.fade-out {
  opacity: 0;
}

/* Playful Preloader Loader */
.playful-loader {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.bounce-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  animation: playfulBounce 0.6s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.bounce-dot.dot-1 {
  background-color: var(--pink);
  animation-delay: 0s;
}
.bounce-dot.dot-2 {
  background-color: var(--blue-mid);
  animation-delay: 0.15s;
}
.bounce-dot.dot-3 {
  background-color: var(--purple);
  animation-delay: 0.3s;
}
@keyframes playfulBounce {
  from {
    transform: translateY(14px);
  }
  to {
    transform: translateY(-14px);
  }
}


/* ── Icon-Only Social Buttons & Floating Access (Official Logos) ── */
.nav-social-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-wa-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s, box-shadow 0.2s !important;
  flex-shrink: 0;
}
.nav-wa-btn::after {
  display: none !important;
}
.nav-wa-btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.45) !important;
  color: #ffffff !important;
}
.nav-wa-btn svg {
  width: 20px !important;
  height: 20px !important;
  fill: currentColor !important;
  display: block;
}

.nav-insta-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 3px 10px rgba(220, 39, 67, 0.3);
  transition: transform 0.2s, box-shadow 0.2s !important;
  flex-shrink: 0;
}
.nav-insta-btn::after {
  display: none !important;
}
.nav-insta-btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 5px 15px rgba(220, 39, 67, 0.45) !important;
  color: #ffffff !important;
}
.nav-insta-btn svg {
  width: 20px !important;
  height: 20px !important;
  fill: currentColor !important;
  display: block;
}

.mob-wa-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.mob-wa-btn svg {
  width: 26px !important;
  height: 26px !important;
  fill: currentColor !important;
  display: block;
}

.mob-insta-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.3);
}
.mob-insta-btn svg {
  width: 26px !important;
  height: 26px !important;
  fill: currentColor !important;
  display: block;
}

.floating-wa-btn {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease;
}
.floating-wa-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.6);
  color: #ffffff !important;
}
.floating-wa-btn svg {
  width: 26px !important;
  height: 26px !important;
  fill: currentColor !important;
  display: block;
}

.floating-insta-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease;
}
.floating-insta-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 12px 26px rgba(220, 39, 67, 0.6);
  color: #ffffff !important;
}
.floating-insta-btn svg {
  width: 26px !important;
  height: 26px !important;
  fill: currentColor !important;
  display: block;
}

@media (max-width: 600px) {
  .floating-wa-btn {
    bottom: 68px;
    right: 16px;
    width: 42px;
    height: 42px;
  }
  .floating-wa-btn svg {
    width: 24px !important;
    height: 24px !important;
  }
  .floating-insta-btn {
    bottom: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }
  .floating-insta-btn svg {
    width: 24px !important;
    height: 24px !important;
  }
}
