/* ================================================================
   GLOBAL WELLNESS FOUNDATIONS — Shared Stylesheet
   © 2026 Global Wellness Foundations LTD.
   ================================================================ */

/* ── CSS Reset & Root Variables ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold:         #FFD700;
  --gold-dark:    #FFA500;
  --gold-deep:    #e6b800;
  --green:        #9CCC65;
  --green-dark:   #7CB342;
  --green-deep:   #558b2f;
  --green-lime:   #CDDC39;
  --white:        #ffffff;
  --off-white:    #f8fdf4;
  --text-dark:    #1a2a10;
  --text-mid:     #3d5a24;
  --text-light:   #6b8e4e;
  --card-bg:      rgba(255,255,255,0.97);
  --shadow-sm:    0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.16);
  --shadow-gold:  0 8px 32px rgba(255,215,0,0.28);
  --shadow-green: 0 8px 32px rgba(156,204,101,0.28);
  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    28px;
  --radius-xl:    50px;
  --nav-height:   80px;
  --font-body:    'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
  --transition:   all 0.32s cubic-bezier(0.4,0,0.2,1);
  /* ── Enhanced Gold / Yellow palette ── */
  --gold-bright:  #FFE500;
  --gold-vivid:   #FFF176;
  --gold-warm:    #FFCC02;
  --gold-light:   #FFF9C4;
  --gold-glow:    rgba(255,229,0,0.55);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute; top: -999px; left: 8px;
  background: var(--gold); color: #000; padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700; z-index: 9999; text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── Animated Background ── */
.bg-canvas {
  position: fixed; inset: 0; z-index: -2;
  background: linear-gradient(160deg, #ffffff 0%, #fffef5 20%, #f0f9e8 55%, #fffde7 78%, #fff9c4 100%);
}
.bg-shape {
  position: fixed; border-radius: 50%; opacity: 0.12;
  animation: floatShape 24s ease-in-out infinite, shapeBreath 8s ease-in-out infinite;
  z-index: -1; pointer-events: none;
}
.bs1 { width: 520px; height: 520px; background: radial-gradient(circle, var(--gold-bright), var(--gold), var(--gold-dark)); top: -10%; left: -7%; animation-delay: 0s, 0s; }
.bs2 { width: 340px; height: 340px; background: radial-gradient(circle, var(--green), var(--green-dark)); top: 55%; right: -5%; animation-delay: 6s, 3s; }
.bs3 { width: 220px; height: 220px; background: radial-gradient(circle, var(--green-lime), var(--green)); bottom: 15%; left: 12%; animation-delay: 12s, 5s; }
.bs4 { width: 200px; height: 200px; background: radial-gradient(circle, var(--gold-vivid), var(--gold), var(--green-lime)); top: 38%; left: 52%; animation-delay: 4s, 7s; }
.bs5 { width: 320px; height: 320px; background: radial-gradient(circle, var(--gold-bright), var(--gold-warm), var(--gold)); bottom: 20%; right: 10%; animation-delay: 9s, 1s; }
.bs6 { width: 150px; height: 150px; background: radial-gradient(circle, var(--gold-vivid), var(--gold-bright)); top: 24%; left: 33%; animation-delay: 16s, 4s; }

@keyframes floatShape {
  0%,100% { transform: translate(0,0) rotate(0deg) scale(1); }
  25%      { transform: translate(32px,-42px) rotate(90deg) scale(1.08); }
  50%      { transform: translate(-22px,-28px) rotate(180deg) scale(0.94); }
  75%      { transform: translate(40px,22px) rotate(270deg) scale(1.04); }
}
@keyframes shapeBreath {
  0%, 100% { opacity: 0.12; filter: blur(0px); }
  50%       { opacity: 0.22; filter: blur(3px); }
}

/* ================================================================
   NAVIGATION
   ================================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height); z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 2px solid transparent;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.99);
  border-bottom-color: rgba(255,215,0,0.28);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1280px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-icon { font-size: 1.9rem; animation: logoPulse 3s ease-in-out infinite; }
@keyframes logoPulse {
  0%, 100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 0px transparent); }
  50%       { transform: scale(1.14) rotate(6deg); filter: drop-shadow(0 0 10px rgba(255,229,0,0.65)); }
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold-deep), var(--green-deep));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block;
}
.nav-logo-tag {
  font-size: 0.58rem; font-weight: 500;
  color: var(--text-light); letter-spacing: 0.06em;
  display: block; white-space: nowrap;
}

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.48rem 0.8rem;
  font-size: 0.87rem; font-weight: 600;
  color: var(--text-mid); text-decoration: none;
  background: none; border: none; cursor: pointer;
  border-radius: var(--radius-sm); transition: var(--transition);
  white-space: nowrap; font-family: var(--font-body);
}
.nav-links > li > a:hover,
.nav-links > li > button:hover { color: var(--green-deep); background: rgba(156,204,101,0.1); }
.nav-links > li > a.active {
  color: var(--green-deep);
  background: rgba(156,204,101,0.12);
  border-bottom: 2px solid var(--gold);
}
.drop-arrow { font-size: 0.58rem; transition: transform 0.22s; }
.nav-links > li:hover .drop-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(156,204,101,0.18);
  min-width: 220px; overflow: hidden;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(10px); transition: var(--transition); z-index: 200;
}
.nav-links > li:hover .dropdown,
.nav-links > li:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0);
}
.dropdown a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1.2rem; font-size: 0.84rem; font-weight: 500;
  color: var(--text-dark); text-decoration: none; transition: var(--transition);
  border-left: 3px solid transparent;
}
.dropdown a:hover {
  background: linear-gradient(90deg, rgba(255,215,0,0.09), transparent);
  color: var(--green-deep); border-left-color: var(--gold);
}
.dm-icon { font-size: 1.05rem; }

/* Nav CTA */
.nav-cta {
  padding: 0.52rem 1.35rem !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright), var(--gold-dark)) !important;
  color: #1a1a00 !important; border-radius: var(--radius-xl) !important;
  box-shadow: 0 4px 18px rgba(255,229,0,0.42) !important; font-weight: 700 !important;
  position: relative !important; overflow: hidden !important;
  background-size: 200% auto !important;
  animation: shimmerBtn 2.8s ease-in-out infinite !important;
}
.nav-cta::after {
  content: '' !important;
  position: absolute !important; top: -50% !important; left: -80% !important;
  width: 55% !important; height: 200% !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent) !important;
  transform: skewX(-20deg) !important;
  animation: btnShimmerSweep 3s ease-in-out infinite !important;
  pointer-events: none !important;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 8px 26px rgba(255,229,0,0.58) !important;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dark)) !important;
}
.nav-cta.active { border-bottom: none !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none;
  border: none; border-radius: 6px; transition: var(--transition);
}
.hamburger:hover { background: rgba(156,204,101,0.1); }
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--green-deep); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(255,255,255,0.99); backdrop-filter: blur(20px);
  padding: 1.5rem 2rem 2.5rem;
  border-top: 2px solid rgba(255,215,0,0.28);
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto; z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a {
  display: block; padding: 0.8rem 0;
  font-size: 0.98rem; font-weight: 600;
  color: var(--text-dark); text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-menu ul li a:hover { color: var(--green-deep); }
.mob-sub { padding-left: 1rem; background: rgba(248,253,244,0.8); border-radius: var(--radius-sm); margin: 0.4rem 0; }
.mob-sub li a { font-size: 0.86rem !important; font-weight: 500 !important; color: var(--text-light) !important; }
.mob-sub li a::before { content: "— "; }

/* ================================================================
   SHARED LAYOUT UTILITIES
   ================================================================ */
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.section-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, rgba(255,229,0,0.22), rgba(156,204,101,0.16));
  border: 1px solid rgba(255,229,0,0.52); color: var(--green-deep);
  padding: 0.42rem 1.15rem; border-radius: var(--radius-xl);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 1.2rem;
  animation: badgeGlow 3.5s ease-in-out infinite;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-bright) 28%, var(--green-deep) 58%, var(--gold-warm) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 200% auto;
  animation: shimmerText 5s ease-in-out infinite;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.02rem; color: var(--text-light);
  max-width: 660px; line-height: 1.85;
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.92rem 2.1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright), var(--gold-dark));
  color: #1a1a00; border-radius: var(--radius-xl);
  font-weight: 700; font-size: 0.94rem; text-decoration: none;
  border: none; cursor: pointer; box-shadow: 0 6px 22px rgba(255,229,0,0.42);
  transition: var(--transition); font-family: var(--font-body);
  position: relative; overflow: hidden;
  background-size: 200% auto;
  animation: shimmerBtn 3.5s ease-in-out infinite;
}
.btn-primary::after {
  content: '';
  position: absolute; top: -50%; left: -80%;
  width: 55%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
  transform: skewX(-20deg);
  animation: btnShimmerSweep 3.8s ease-in-out infinite;
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 38px rgba(255,229,0,0.55);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.1rem;
  background: transparent; color: var(--green-deep);
  border-radius: var(--radius-xl); font-weight: 700;
  font-size: 0.94rem; text-decoration: none; cursor: pointer;
  border: 2px solid var(--green); transition: var(--transition);
  font-family: var(--font-body);
}
.btn-secondary:hover {
  background: rgba(156,204,101,0.12); border-color: var(--green-dark);
  transform: translateY(-3px);
}

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 2rem 5rem;
  text-align: center; position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #f0f9e8 50%, #fffde7 100%);
  overflow: hidden;
}
.page-hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1.1rem; }
.page-hero .section-subtitle { margin: 0 auto; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem;
  font-size: 0.8rem; color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); text-decoration: none; transition: var(--transition); }
.breadcrumb a:hover { color: var(--green-deep); }
.breadcrumb span { color: var(--text-light); opacity: 0.5; }

/* ================================================================
   CTA BANNER (shared)
   ================================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-deep) 0%, #1e4a0c 100%);
  padding: 5rem 2rem; text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.6rem);
  font-weight: 800; color: var(--gold-bright); margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(255,229,0,0.45), 0 2px 4px rgba(0,0,0,0.25);
  animation: ctaHeadlineGlow 4s ease-in-out infinite;
}
@keyframes ctaHeadlineGlow {
  0%, 100% { text-shadow: 0 0 24px rgba(255,229,0,0.35), 0 2px 4px rgba(0,0,0,0.25); }
  50%       { text-shadow: 0 0 44px rgba(255,229,0,0.7), 0 0 18px rgba(255,204,0,0.4), 0 2px 4px rgba(0,0,0,0.2); }
}
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.82); max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.8; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.cta-banner .btn-secondary { border-color: rgba(255,255,255,0.4); color: var(--white); }
.cta-banner .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: linear-gradient(135deg, var(--green-deep) 0%, #1e4a0c 100%);
  color: rgba(255,255,255,0.88); padding: 4rem 2rem 2rem;
  position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold), var(--green-lime), var(--gold-warm), var(--gold-dark), var(--gold-bright), var(--gold));
  background-size: 300% auto;
  animation: footerBarShimmer 4s linear infinite;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 800; color: var(--gold); margin-bottom: 0.35rem;
}
.footer-brand-tag { font-size: 0.76rem; color: rgba(255,255,255,0.55); margin-bottom: 1.1rem; font-style: italic; }
.footer-brand-desc { font-size: 0.84rem; color: rgba(255,255,255,0.68); line-height: 1.78; max-width: 290px; }
.footer-col-title {
  font-size: 0.76rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold);
  margin-bottom: 1rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,215,0,0.18);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  font-size: 0.84rem; color: rgba(255,255,255,0.68);
  text-decoration: none; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.footer-col ul li a:hover { color: var(--gold); transform: translateX(4px); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; text-decoration: none; transition: var(--transition); color: var(--white);
}
.footer-social a:hover {
  background: rgba(255,215,0,0.18); border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 1rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: var(--gold); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ================================================================
   BACK TO TOP
   ================================================================ */
#back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dark));
  border: none; border-radius: 50%; color: #1a1a00;
  font-size: 1.3rem; cursor: pointer; z-index: 900;
  box-shadow: 0 6px 24px rgba(255,229,0,0.45); transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
}
#back-to-top.visible {
  opacity: 1; visibility: visible; transform: translateY(0);
  animation: bttGlow 3s ease-in-out infinite;
}
#back-to-top:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(255,229,0,0.6); }
@keyframes bttGlow {
  0%, 100% { box-shadow: 0 6px 24px rgba(255,229,0,0.45); }
  50%       { box-shadow: 0 6px 36px rgba(255,229,0,0.75), 0 0 18px rgba(255,229,0,0.35); }
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal { opacity: 0; transform: translateY(32px) scale(0.97); transition: opacity 0.72s cubic-bezier(0.34,1.56,0.64,1), transform 0.72s cubic-bezier(0.34,1.56,0.64,1); }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal-l { opacity: 0; transform: translateX(-32px) scale(0.97); transition: opacity 0.72s cubic-bezier(0.34,1.56,0.64,1), transform 0.72s cubic-bezier(0.34,1.56,0.64,1); }
.reveal-l.visible { opacity: 1; transform: translateX(0) scale(1); }
.reveal-r { opacity: 0; transform: translateX(32px) scale(0.97); transition: opacity 0.72s cubic-bezier(0.34,1.56,0.64,1), transform 0.72s cubic-bezier(0.34,1.56,0.64,1); }
.reveal-r.visible { opacity: 1; transform: translateX(0) scale(1); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  :root { --nav-height: 68px; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}

/* ================================================================
   GOLD GLITTER & DYNAMIC FX — Wellness · Freshness · Energy
   ================================================================ */

/* ── Core Keyframes ── */
@keyframes shimmerText {
  0%, 100% { background-position: 0% center; }
  50%       { background-position: 100% center; }
}
@keyframes shimmerBtn {
  0%, 100% { background-position: 0% center; }
  50%       { background-position: 100% center; }
}
@keyframes btnShimmerSweep {
  0%   { left: -80%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { left: 140%; opacity: 0; }
}
@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,229,0,0); border-color: rgba(255,229,0,0.45); }
  50%       { box-shadow: 0 0 20px 4px rgba(255,229,0,0.35); border-color: rgba(255,229,0,0.85); }
}
@keyframes footerBarShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}
@keyframes energyPulse {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); }
  50%       { filter: drop-shadow(0 0 14px rgba(255,229,0,0.7)); }
}
@keyframes goldOrb {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%       { transform: scale(1.18); opacity: 1; }
}
@keyframes sparkleFlash {
  0%, 90%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  45%            { opacity: 1; transform: scale(1.3) rotate(180deg); }
}
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0.9; }
  100% { transform: translateY(-60px) rotate(360deg); opacity: 0; }
}

/* ── Hero Stats Pulse (energy numbers) ── */
.hs-num { animation: energyPulse 4s ease-in-out infinite; }

/* ── Card hover gold shimmer (enhanced) ── */
.hcard {
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}
.hcard:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 16px 44px rgba(255,229,0,0.38), 0 4px 16px rgba(255,215,0,0.22) !important;
}
.pp-card {
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.pp-card:hover {
  transform: translateY(-9px) scale(1.012);
  box-shadow: 0 16px 44px rgba(255,229,0,0.38), 0 4px 16px rgba(255,215,0,0.22) !important;
}

/* ── PP-icon spin on hover ── */
.pp-card:hover .pp-icon {
  transform: scale(1.12) rotate(8deg) !important;
  background: linear-gradient(135deg, rgba(255,229,0,0.26), rgba(156,204,101,0.2)) !important;
}

/* ── Footer social hover glow ── */
.footer-social a:hover {
  background: rgba(255,229,0,0.22) !important;
  border-color: var(--gold-bright) !important;
  box-shadow: 0 0 16px rgba(255,229,0,0.45);
}

/* ── Footer brand name glow ── */
.footer-brand-name {
  animation: energyPulse 5s ease-in-out infinite;
  color: var(--gold-bright) !important;
}

/* ── Dropdown link gold accent ── */
.dropdown a:hover {
  background: linear-gradient(90deg, rgba(255,229,0,0.14), transparent) !important;
  border-left-color: var(--gold-bright) !important;
}

/* ── Nav scrolled gold border ── */
#navbar.scrolled {
  border-bottom-color: rgba(255,229,0,0.42) !important;
}

/* ── Glitter canvas (injected by JS) ── */
#gwf-glitter-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* ── Hero pill enhanced glow ── */
@keyframes pillGlow {
  0%, 100% { box-shadow: 0 0 18px rgba(255,229,0,0.18); border-color: rgba(255,229,0,0.42); }
  50%       { box-shadow: 0 0 34px rgba(255,229,0,0.52); border-color: rgba(255,229,0,0.82); }
}

/* ── Sparkle decorators (injected by JS) ── */
.gwf-sparkle {
  position: fixed; pointer-events: none; z-index: 1;
  animation: sparkleFlash 2s ease-in-out infinite;
  font-size: 1rem; line-height: 1;
}

/* ── Floating gold ring on CTA banner ── */
.cta-banner {
  position: relative; overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,229,0,0.12) 0%, transparent 70%);
  animation: goldOrb 6s ease-in-out infinite;
  pointer-events: none;
}
.cta-banner::before {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,229,0,0.10) 0%, transparent 70%);
  animation: goldOrb 8s ease-in-out infinite reverse;
  pointer-events: none;
}
