/* ============================================
   SUM YOG FITNESS — base.css
   Shared design tokens, reset, nav, footer, buttons
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root{
  --forest: #14213D;
  --forest-light: #1F3B63;
  --forest-pale: #E8ECF5;
  --gold: #B9862F;
  --gold-light: #D6A758;
  --terracotta: #0F6E68;
  --cream: #F7F5F0;
  --cream-dark: #EDE8DD;
  --charcoal: #1C1E22;
  --grey: #676C74;
  --white: #FFFFFF;

  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-soft: 0 12px 32px rgba(20, 33, 61, 0.12);
  --shadow-card: 0 8px 24px rgba(20, 33, 61, 0.09);

  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body.nav-open{ overflow: hidden; }

/* ============== ACCESSIBILITY ============== */
.skip-link{
  position: fixed;
  top: -60px;
  left: 12px;
  z-index: 10000;
  background: var(--forest);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  transition: top .2s ease;
}
.skip-link:focus{ top: 12px; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
.nav-toggle:focus-visible{ outline-offset: 4px; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ text-decoration: none; color: inherit; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--forest);
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 600;
}
p{ margin: 0 0 1em; color: var(--grey); }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section{ padding: 96px 0; }
.section-tight{ padding: 64px 0; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.eyebrow::before{ content: "✦"; font-size: 12px; }

.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(28px, 3.4vw, 42px); }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary{ background: var(--forest); color: var(--white); }
.btn-primary:hover{ background: var(--forest-light); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-gold{ background: var(--gold); color: var(--forest); }
.btn-gold:hover{ background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-outline{ background: transparent; border-color: var(--forest); color: var(--forest); }
.btn-outline:hover{ background: var(--forest); color: var(--white); }
.btn-outline-light{ background: transparent; border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline-light:hover{ background: var(--white); color: var(--forest); }
.btn-sm{ padding: 10px 20px; font-size: 13px; }

/* ============== HEADER / NAV ============== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(247, 245, 240, .97);
  border-bottom: 1px solid rgba(20,33,61,.08);
}
.nav-wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 6px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--forest);
}
.brand .mark{
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.brand span.sub{
  display:block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--terracotta);
  text-transform: uppercase;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li{ position: relative; }
.nav-links > li > a{
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  color: var(--forest);
  transition: background .2s ease, color .2s ease;
}
.nav-links > li > a:hover,
.nav-links > li > a.active{
  background: var(--forest);
  color: var(--white);
}
.caret{ font-size: 10px; margin-top: 1px; }

.dropdown{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
}
.nav-links > li:hover .dropdown{
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a{
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}
.dropdown li a:hover{ background: var(--cream-dark); color: var(--forest); }

.nav-actions{ display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
  position: relative;
}
.nav-toggle span{ width: 24px; height: 2px; background: var(--forest); border-radius: 2px; transition: all .25s ease; }
.nav-toggle.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity: 0; }
.nav-toggle.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px){
  .nav-wrap{ padding: 14px 18px; gap: 12px; }
  .brand{ font-size: 17px; }
  .brand .sub{ display: none; }
  .nav-links{
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    padding-top: 88px;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    gap: 4px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .3s ease;
    z-index: 1000;
    visibility: hidden;
  }
  .nav-links.open{ transform: translateX(0); visibility: visible; }
  .nav-links > li > a{ justify-content: space-between; padding: 14px 16px; }
  .dropdown{
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; display: none; margin-top: 4px; background: var(--cream-dark);
  }
  .nav-links > li.open .dropdown{ display: block; }
  .nav-toggle{ display: flex; }
  .nav-actions .btn{ display: none; }
}

@media (max-width: 380px){
  .brand span:not(.sub){ font-size: 15px; }
  .brand .mark, .brand .logo-img{ width: 68px; height: 68px; }
}

/* ============== BREADCRUMB / PAGE HERO ============== */
.page-hero{
  background: var(--forest);
  color: var(--white);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::after{
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185,134,47,.22), transparent 70%);
}
.page-hero h1{ color: var(--white); font-size: clamp(32px, 4.4vw, 52px); margin-bottom: 10px; }
.page-hero p{ color: rgba(255,255,255,.78); font-size: 17px; max-width: 560px; }
.crumbs{ font-size: 13px; color: rgba(255,255,255,.6); margin-top: 18px; letter-spacing: .02em; }
.crumbs a{ color: var(--gold-light); font-weight: 600; }

/* ============== STAT STRIP ============== */
.stat-strip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -46px;
  position: relative;
  z-index: 2;
}
.stat-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.stat-card strong{
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--terracotta);
}
.stat-card span{ font-size: 13px; color: var(--grey); font-weight: 600; }

@media (max-width: 760px){
  .stat-strip{ grid-template-columns: repeat(2, 1fr); }
}

/* ============== FOOTER ============== */
.site-footer{
  background: var(--forest);
  color: rgba(255,255,255,.75);
  padding-top: 72px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-grid h4{
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.footer-brand .brand{ color: var(--white); margin-bottom: 14px; }
.footer-brand .brand .mark{ background: var(--gold); color: var(--forest); }
.footer-links li{ margin-bottom: 10px; }
.footer-links a{ font-size: 14px; transition: color .2s; }
.footer-links a:hover{ color: var(--gold-light); }
.footer-contact li{ display: flex; gap: 10px; margin-bottom: 14px; font-size: 14px; align-items: flex-start; }
.footer-social{ display: flex; gap: 10px; margin-top: 18px; }
.footer-social a{
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background .2s;
}
.footer-social a:hover{ background: var(--gold); color: var(--forest); }
.footer-bottom{
  padding: 22px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.footer-bottom a{ color: var(--gold-light); font-weight: 600; }

@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ============== FLOATING CALL + WHATSAPP ============== */
.float-actions{
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.float-btn{
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--white);
}
.wa-float{
  background: #25D366;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  animation: pulse-wa 2.4s infinite;
}
.call-float{
  background: var(--terracotta);
  box-shadow: 0 10px 26px rgba(196,90,58,.45);
  animation: pulse-call 2.4s infinite;
}
@keyframes pulse-wa{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes pulse-call{
  0%{ box-shadow: 0 0 0 0 rgba(196,90,58,.5); }
  70%{ box-shadow: 0 0 0 16px rgba(196,90,58,0); }
  100%{ box-shadow: 0 0 0 0 rgba(196,90,58,0); }
}

/* ============== SCROLL REVEAL ============== */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }

/* ============== EXPANDABLE / ACCORDION CARDS ============== */
.expandable{
  cursor: pointer;
  outline-offset: 4px;
}
.expandable .expand-toggle{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--forest-pale);
  color: var(--forest);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.expandable:hover .expand-toggle{ background: var(--gold); color: var(--white); }
.expandable.open .expand-toggle{ transform: rotate(45deg); background: var(--forest); color: var(--white); }
.expandable .expand-detail{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 13px;
  margin: 0;
  transition: max-height .35s ease, opacity .3s ease, margin-top .3s ease;
}
.expandable.open .expand-detail{
  max-height: 240px;
  opacity: 1;
  margin-top: 10px;
}

/* ============== LOGO IMAGE ============== */
.logo-img{
  width: 96px;
  height: 96px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand .logo-img{ width: 64px; height: 64px; }

/* ============== PRELOADER — 3D Rotating Lotus ============== */
.preloader{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(circle at 50% 40%, var(--forest-light) 0%, var(--forest) 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hide{ opacity: 0; visibility: hidden; pointer-events: none; }

.pl-scene{
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 700px;
}
.pl-glow{
  position: absolute;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185,134,47,.28), transparent 70%);
  animation: pl-pulse 2.4s ease-in-out infinite;
}
.pl-lotus{
  position: relative;
  width: 92px;
  height: 92px;
  transform-style: preserve-3d;
  animation: pl-spin3d 3.4s linear infinite;
}
.pl-petal{
  position: absolute;
  top: 50%; left: 50%;
  width: 32px;
  height: 58px;
  margin: -29px 0 0 -16px;
  border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%;
  opacity: .95;
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
  backface-visibility: visible;
}
.pl-petal.gold{ background: linear-gradient(180deg, var(--gold-light), var(--gold)); }
.pl-petal.teal{ background: linear-gradient(180deg, #2FA39A, var(--terracotta)); }
.pl-petal.p1{ transform: rotateY(0deg)   translateZ(48px); }
.pl-petal.p2{ transform: rotateY(60deg)  translateZ(48px); }
.pl-petal.p3{ transform: rotateY(120deg) translateZ(48px); }
.pl-petal.p4{ transform: rotateY(180deg) translateZ(48px); }
.pl-petal.p5{ transform: rotateY(240deg) translateZ(48px); }
.pl-petal.p6{ transform: rotateY(300deg) translateZ(48px); }

.pl-orb{
  position: absolute;
  top: 50%; left: 50%;
  width: 30px; height: 30px;
  margin: -15px 0 0 -15px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #fff, var(--gold-light) 55%, var(--gold) 100%);
  box-shadow: 0 0 26px rgba(214,167,88,.75);
  transform: translateZ(0px);
}

@keyframes pl-spin3d{
  from{ transform: rotateY(0deg) rotateX(10deg); }
  to{ transform: rotateY(360deg) rotateX(10deg); }
}
@keyframes pl-pulse{
  0%, 100%{ transform: scale(.92); opacity: .7; }
  50%{ transform: scale(1.08); opacity: 1; }
}

.pl-text{
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
  margin: 0;
}

@media (max-width: 560px){
  .pl-scene{ width: 120px; height: 120px; }
  .pl-glow{ width: 100px; height: 100px; }
  .pl-lotus{ width: 70px; height: 70px; }
  .pl-petal{ width: 24px; height: 44px; margin: -22px 0 0 -12px; }
  .pl-petal.p1, .pl-petal.p2, .pl-petal.p3, .pl-petal.p4, .pl-petal.p5, .pl-petal.p6{ }
  .pl-orb{ width: 22px; height: 22px; margin: -11px 0 0 -11px; }
  .pl-text{ font-size: 13px; }
}

/* ============== INFINITE MARQUEE STRIP ============== */
.marquee-strip{
  background: var(--forest);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}
.marquee-track{
  display: inline-flex;
  gap: 40px;
  animation: marquee-scroll 24s linear infinite;
  will-change: transform;
}
.marquee-track span{
  color: var(--gold-light);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .03em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
@keyframes marquee-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (max-width: 560px){
  .marquee-track{ animation-duration: 15s; gap: 24px; }
  .marquee-track span{ font-size: 11.5px; }
}
@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; }
  .pl-yogi, .pl-ring{ animation: none; }
}

/* ============== EXTRA MOBILE REFINEMENTS ============== */
@media (max-width: 560px){
  .section{ padding: 56px 0; }
  .section-tight{ padding: 40px 0; }
  .btn{ padding: 13px 22px; font-size: 13.5px; }
  .page-hero{ padding: 48px 0 36px; }
  .container{ padding: 0 18px; }
}

/* ============== MISC ============== */
.tag-pill{
  display: inline-block;
  background: var(--forest-pale);
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}
