:root {
  --saffron: #e8610a;
  --saffron-light: #f58a3c;
  --gold: #c9960c;
  --gold-light: #f0b429;

  --deep-brown: #1a0a00;
  --brown-mid: #3d1500;

  --cream: #fff8ee;
  --cream-dark: #f2e8d5;

  --text-dark: #2c1a00;
  --text-body: #4a3010;
  --text-muted: #7a5c3a;

  --head-font: "Playfair Display", serif;
  --body-font: "Poppins", sans-serif;

  --nav-h: 70px;
  --section-pad: 100px;

  --radius: 6px;
  --transition: 0.3s ease;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
body {
  font-family: var(--body-font);
  line-height: 1.7;
}
h1, h2, h3 {
  font-family: var(--head-font);
  letter-spacing: 0.3px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--body-font);
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
}
.eyebrow.dark {
  color: var(--saffron);
}
.eyebrow.dark::before,
.eyebrow.dark::after {
  background: var(--gold);
}
.eyebrow.light {
  color: var(--gold-light);
}
.eyebrow.light::before,
.eyebrow.light::after {
  background: rgba(240, 180, 41, 0.4);
}

/* .section-title {
  font-family: var(--head-font);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--deep-brown);
} */
 .section-title {
  font-family: var(--head-font);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--deep-brown);
}
.section-title span {
  color: var(--saffron);
}
.section-title.light {
  color: var(--deep-brown);
}
.section-title.light span {
  color: var(--gold-light);
}

.divider-line {
  width: 60px;
  height: 3px;
  background: var(--saffron);
  margin: 16px 0;
}
.divider-line.center {
  margin: 16px auto;
}

.btn-primary-fill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  background: var(--saffron);
  color: #fff;
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--saffron);
  transition:
    background 0.28s,
    color 0.28s;
}
.btn-primary-fill:hover {
  background: transparent;
  color: var(--saffron);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  background: transparent;
  color: var(--saffron);
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--saffron);
  transition:
    background 0.28s,
    color 0.28s;
}
.btn-outline:hover {
  background: var(--saffron);
  color: #fff;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(240, 180, 41, 0.5);
  transition:
    border-color 0.28s,
    color 0.28s;
}
.btn-outline-light:hover {
  border-color: var(--gold-light);
  color: #fff;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--body-font);
}
.tag-pill.saffron {
  background: rgba(232, 97, 10, 0.1);
  color: var(--saffron);
  border: 1px solid rgba(232, 97, 10, 0.25);
}
.tag-pill.gold {
  background: rgba(201, 150, 12, 0.1);
  color: var(--gold);
  border: 1px solid rgba(201, 150, 12, 0.25);
}

/* ── NAV ─────────────────────────────────── */
.nav-wrapper {
  position: relative;
  z-index: 1000;
}

.yoga-nav {
  width: 100%;
  height: var(--nav-h);
  background: var(--deep-brown);
  border-bottom: 1px solid rgba(201, 150, 12, 0.2);
}
.yoga-nav.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 10, 0, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.nav-spacer {
  display: none;
  height: var(--nav-h);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-name {
  font-family: var(--head-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

.nav-links-desktop {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links-desktop a {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  position: relative;
  transition: color 0.25s;
}
.nav-links-desktop a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px;
  height: 1px;
  background: var(--gold-light);
  transition: transform 0.25s;
}
.nav-links-desktop a:hover {
  color: #fff;
}
.nav-links-desktop a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(201, 150, 12, 0.35);
  padding: 7px 9px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold-light);
  transition: 0.3s;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(26, 10, 0, 0.98);
  padding: 12px 24px 24px;
  border-bottom: 1px solid rgba(201, 150, 12, 0.15);
}
.nav-mobile-menu.open {
  display: block;
}
.nav-mobile-menu ul {
  list-style: none;
}
.nav-mobile-menu ul li a {
  display: block;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 150, 12, 0.08);
  transition: color 0.25s;
}
.nav-mobile-menu ul li a:hover {
  color: var(--gold-light);
}

@media (max-width: 991px) {
  .nav-links-desktop {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

/* ── HERO ────────────────────────────────── */
.hero-section {
  width: 100%;
}
.hero-swiper {
  width: 100%;
  height: calc(100vh - var(--nav-h));
  min-height: 560px;
}
.swiper-slide {
  position: relative;
  overflow: hidden;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 8s ease-out;
}
.swiper-slide-active .slide-bg {
  transform: scale(1);
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 5, 0, 0.72) 0%,
    rgba(10, 5, 0, 0.3) 55%,
    rgba(10, 5, 0, 0.55) 100%
  );
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 8vw;
  z-index: 2;
}
.slide-inner {
  max-width: 640px;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s ease 0.5s,
    transform 0.9s ease 0.5s;
}
.swiper-slide-active .slide-inner {
  opacity: 1;
  transform: translateY(0);
}
.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 18px;
}
.slide-eyebrow::before,
.slide-eyebrow::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(240, 180, 41, 0.45);
}
/* .slide-title {
  font-family: var(--head-font);
  font-size: clamp(2.4rem, 4.2vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.slide-title em {
  font-style: italic;
  color: var(--gold-light);
}
.slide-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 36px;
  max-width: 440px;
} */
 .slide-title {
  font-family: var(--head-font);
  font-size: clamp(2.8rem, 4.5vw, 5.2rem);
  font-weight: 600; 
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.slide-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 500px;
}
.slide-overlay {
  background: linear-gradient(
    135deg,
    rgba(10, 5, 0, 0.78) 0%,
    rgba(10, 5, 0, 0.45) 55%,
    rgba(10, 5, 0, 0.65) 100%
  );
}



.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.swiper-btn-prev,
.swiper-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 150, 12, 0.35);
  background: rgba(26, 10, 0, 0.35);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold-light);
  font-size: 16px;
  transition: all 0.3s;
}
.swiper-btn-prev {
  left: 24px;
}
.swiper-btn-next {
  right: 24px;
}
.swiper-btn-prev:hover,
.swiper-btn-next:hover {
  background: rgba(201, 150, 12, 0.15);
  border-color: var(--gold-light);
}
.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: all 0.4s;
}
.swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 3px;
  background: var(--gold-light);
}
.swiper-pagination {
  bottom: 28px !important;
}

.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  z-index: 10;
}
.slide-counter {
  position: absolute;
  right: 28px;
  bottom: 68px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.counter-current {
  font-family: var(--head-font);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
}
.counter-divider {
  width: 1px;
  height: 22px;
  background: rgba(201, 150, 12, 0.3);
}
.counter-total {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
}

/* ── INFO BAR ────────────────────────────── */
.info-bar {
  background: var(--deep-brown);
  padding: 0;
}
.info-bar-inner {
  display: flex;
  align-items: stretch;
}
.info-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-right: 1px solid rgba(201, 150, 12, 0.12);
}
.info-item:last-child {
  border-right: none;
}
.info-item i {
  font-size: 22px;
  color: var(--gold-light);
  flex-shrink: 0;
}
.info-item-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.info-item-val {
  font-family: var(--head-font);
  font-size: 15px;
  color: var(--gold-light);
  margin-top: 2px;
}

/* ── ABOUT ───────────────────────────────── */
.about-sec {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text-block p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 16px;
}
.about-text-block p strong {
  color: var(--saffron);
  font-weight: 600;
}

.highlight-list {
  list-style: none;
  margin: 28px 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.highlight-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 12px 14px;
  background: #fff;
  border-left: 3px solid var(--saffron);
}
.highlight-list li i {
  color: var(--saffron);
  font-size: 16px;
}

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  height: 520px;
}
.img-tall {
  grid-row: span 2;
}
.img-box {
  background: var(--cream-dark);
  overflow: hidden;
  position: relative;
}
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-box-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cream-dark);
  color: var(--text-muted);
}
.img-box-placeholder i {
  font-size: 28px;
  color: var(--saffron);
  opacity: 0.5;
}
.img-box-placeholder span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ── BENEFITS (WHEEL replaced with clean grid) ── */
.benefits-sec {
  padding: var(--section-pad) 0;
  background: #fff;
}
.benefits-head {
  text-align: center;
  margin-bottom: 60px;
}
.benefits-head p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 480px;
  margin: 14px auto 0;
  font-style: italic;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 150, 12, 0.15);
}
.benefit-card {
  background: #fff;
  padding: 20px 20px;
  /* border: 1px solid var(--deep-brown); */
  transition: all 0.3s;
  position: relative;
}
.benefit-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.benefit-card:hover {
  border-color: rgba(201, 150, 12, 0.2);
}
.benefit-card:hover::after {
  transform: scaleX(1);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  /* border: 1px solid rgb(240, 180, 41); */
  background: #211208;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: border-color 0.3s;
}
.benefit-card:hover .benefit-icon {
  border-color: var(--gold-light);
}
.benefit-card:nth-child(1) .benefit-icon i {
  color: #f5a623;
}
.benefit-card:nth-child(2) .benefit-icon i {
  color: #5dc880;
}
.benefit-card:nth-child(3) .benefit-icon i {
  color: #87ceeb;
}
.benefit-card:nth-child(4) .benefit-icon i {
  color: #f06292;
}
.benefit-card:nth-child(5) .benefit-icon i {
  color: #ce93d8;
}
.benefit-card:nth-child(6) .benefit-icon i {
  color: #ffd54f;
}

.benefit-title {
  font-family: var(--head-font);
  font-size: 19px;
  color: var(--deep-brown);
  margin-bottom: 10px;
}
/* .benefit-desc {
  font-size: 14px;
  line-height: 1.7;
  color:var(--gold);
} */
 .benefit-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body); 
}

/* ── 162 DAY RUN ─────────────────────────── */
.run-sec {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.run-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.run-num-display {
  font-family: var(--head-font);
  font-size: 120px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px rgba(232, 97, 10, 0.2);
  line-height: 1;
}
.run-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 24px;
}
.run-title {
  font-family: var(--head-font);
  font-size: 36px;
  color: var(--deep-brown);
  margin-bottom: 20px;
}
.run-title span {
  color: var(--saffron);
}
.run-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 16px;
}
.run-body strong {
  color: var(--saffron);
}

.run-stats {
  display: flex;
  gap: 40px;
  margin: 32px 0;
}
.rs-item {
  text-align: center;
}
.rs-num {
  font-family: var(--head-font);
  font-size: 34px;
  color: var(--saffron);
  font-weight: 700;
}
.rs-lbl {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.timeline {
  padding-left: 28px;
  border-left: 2px solid var(--cream-dark);
  margin: 32px 0;
}
.tl-item {
  position: relative;
  padding-bottom: 28px;
}
.tl-item:last-child {
  padding-bottom: 0;
}
.tl-dot {
  position: absolute;
  left: -35px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--saffron);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 3px rgba(232, 97, 10, 0.15);
}
.tl-head {
  font-family: var(--head-font);
  font-size: 15px;
  color: var(--deep-brown);
  margin-bottom: 4px;
}
.tl-body-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.run-card-dark {
  background: var(--deep-brown);
  border: 1px solid rgba(201, 150, 12, 0.2);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.run-card-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}
.run-card-icon {
  font-size: 48px;
  color: rgba(201, 150, 12, 0.45);
  margin-bottom: 20px;
}
.run-card-title {
  font-family: var(--head-font);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 14px;
}
.run-card-quote {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 248, 238, 0.6);
  font-style: italic;
}
.run-card-footer {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 150, 12, 0.12);
}
.rcf-num {
  font-family: var(--head-font);
  font-size: 26px;
  color: var(--gold-light);
  font-weight: 700;
}
.rcf-lbl {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 248, 238, 0.35);
  margin-top: 3px;
}
.big-bg-num {
  font-family: var(--head-font);
  font-size: 200px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 97, 10, 0.07);
  position: absolute;
  top: -40px;
  right: -20px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── CLASSES ─────────────────────────────── */
.classes-sec {
  padding: var(--section-pad) 0;
  background: #fff;
}
.classes-head {
  text-align: center;
  margin-bottom: 60px;
}
.classes-head p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 480px;
  margin: 14px auto 0;
  font-style: italic;
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.class-card {
  border: 1px solid rgba(201, 150, 12, 0.3);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s;
}
.class-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--saffron);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
/* .class-card:hover {
  border-color: var(--saffron);
} */
 .benefit-card:hover,
.class-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.class-card:hover::before {
  transform: scaleX(1);
}
.class-card.featured {
  border-color: var(--saffron);
}
.class-card.featured::before {
  transform: scaleX(1);
}

.card-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(201, 150, 12, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
}
.c1 .card-icon i {
  color: var(--gold-light);
}
.c2 .card-icon i {
  color: #87ceeb;
}
.c3 .card-icon i {
  color: #5dc880;
}

.card-title {
  font-family: var(--head-font);
  font-size: 20px;
  color: var(--deep-brown);
  margin-bottom: 20px;
}
.card-list {
  list-style: none;
}
.card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  padding: 9px 0;
  border-bottom: 1px solid rgba(201, 150, 12, 0.12);
}
.card-list li:last-child {
  border-bottom: none;
}
.card-list li i {
  color: var(--saffron);
  font-size: 13px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.card-quote {
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  margin-top: 20px;
  line-height: 1.5;
}

.classes-cta {
  text-align: center;
  margin-top: 52px;
}
.classes-cta p {
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ── MISSION ─────────────────────────────── */
.mission-sec {
  padding: var(--section-pad) 0;
  background: #fff8ee61;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-title {
  font-family: var(--head-font);
  font-size: 36px;
  color: var(--deep-brown);
  line-height: 1.2;
  margin-bottom: 20px;
}
.mission-title span {
  color: var(--saffron);
}
.mission-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 16px;
}
.mission-body strong {
  color: var(--saffron);
}

.mission-steps {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.m-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(232, 97, 10, 0.1);
  border-left: 3px solid var(--saffron);
  transition: border-color 0.3s;
}
.m-step:hover {
  border-color: var(--saffron);
}
.m-step-num {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: var(--saffron);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.m-step h4 {
  font-family: var(--head-font);
  font-size: 15px;
  color: var(--deep-brown);
  margin-bottom: 3px;
}
.m-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.progress-track {
  height: 5px;
  background: rgba(232, 97, 10, 0.12);
}
.progress-fill {
  height: 100%;
  background: var(--saffron);
  width: 0;
  transition: width 1.6s ease;
}

.mission-visual-box {
  background: transparent;
  padding: 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-visual-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}
.big-300 {
  font-family: var(--head-font);
  font-size: 130px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px rgba(232, 97, 10, 0.25);
  line-height: 1;
}
.big-300-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-top: -8px;
}
.big-300-sub {
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 10px;
}
.mission-stats {
  display: flex;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(201, 150, 12, 0.12);
}
.mstat {
  flex: 1;
  text-align: center;
  padding: 20px 12px;
  border-right: 1px solid rgba(201, 150, 12, 0.12);
}
.mstat:last-child {
  border-right: none;
}
.mstat-num {
  font-family: var(--head-font);
  font-size: 28px;
  color: var(--text-muted);
  font-weight: 700;
}
.mstat-lbl {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--deep-brown);
  margin-top: 4px;
}

/* ── ACHIEVEMENTS ────────────────────────── */
.achieve-sec {
  padding: 80px 0;
  background: #f0b429;
}
.achieve-head {
  text-align: center;
  margin-bottom: 48px;
}
.achieve-head h2 {
  font-family: var(--head-font);
  font-size: 38px;
  color: var(--deep-brown);
}
.achieve-head h2 span {
  color: var(--deep-brown);
}
.achieve-head .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
.achieve-head .eyebrow::before,
.achieve-head .eyebrow::after {
  background: rgba(255, 255, 255, 0.3);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.counter-card {
  background: transparent;
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.3s;
}
.counter-card:last-child {
  border-right: none;
}
.counter-card:hover {
  background: rgba(255, 255, 255, 0.06);
}
.cc-icon {
  font-size: 32px;
  color: var(--deep-brown);
  margin-bottom: 14px;
}
.cc-num {
  font-family: var(--head-font);
  font-size: 52px;
  font-weight: 700;
  color: var(--deep-brown);
  line-height: 1;
}
.cc-num sup {
  font-size: 28px;
}
.cc-title {
  font-family: var(--head-font);
  font-size: 15px;
  color: var(--deep-brown);
  margin: 10px 0 6px;
}
.cc-desc {
  font-size: 13px;
 color: var(--deep-brown);
  line-height: 1.5;
  font-style: italic;
}

/* ── GALLERY ─────────────────────────────── */
.gallery-sec {
  padding: var(--section-pad) 0;
  background: #fff;
}
.gallery-head {
  text-align: center;
  margin-bottom: 52px;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gallery-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}


.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── CTA ─────────────────────────────────── */
.cta-sec {
  padding: 100px 0;
  background: #f7c3a224;
  border-top: 1px solid rgba(201, 150, 12, 0.15);
  border-bottom: 1px solid rgba(201, 150, 12, 0.15);
}
.cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* background: rgba(201, 150, 12, 0.1); */
  border: 1px solid rgba(201, 150, 12, 0.25);
  padding: 6px 18px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--deep-brown);
  margin-bottom: 28px;
}
/* .cta-h2 {
  font-family: var(--head-font);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--brown-mid);
  margin-bottom: 18px;
} */
 .cta-h2 {
  font-family: var(--head-font);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 600;
  color: var(--brown-mid);
  margin-bottom: 18px;
}
.cta-h2 span {
  color: var(--gold-light);
}
.cta-p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 520px;
  margin: 0 auto 40px;
  font-style: italic;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-features {
  display: flex;
  gap: 36px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.cta-feat {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown-mid);
}
.cta-feat i {
  color: var(--deep-brown);
  font-size: 14px;
}

/* ── FOOTER ──────────────────────────────── */
footer {
  background: #0e0500;
  padding: 72px 0 0;
  border-top: 1px solid rgba(201, 150, 12, 0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.fb-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
}
.fb-om {
  width: 40px;
  height: 40px;
  background: var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}
.fb-name {
  font-family: var(--head-font);
  font-size: 18px;
  color: #fff;
}
.fb-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #fff;
  font-style: italic;
  margin-bottom: 22px;
}

.fb-social {
  display: flex;
  gap: 10px;
}
.soc-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 150, 12, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
}
.soc-btn:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.soc-btn.wa {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.25);
}
.soc-btn.wa:hover {
  border-color: #25d366;
}

.footer-col h4 {
  font-family: var(--head-font);
  font-size: 14px;
  color: #fff;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 150, 12, 0.12);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s;
}
.footer-col ul li a i {
  color:#fff;
  font-size: 11px;
}
.footer-col ul li a:hover {
  color: var(--gold-light);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.contact-item i {
  color: var(--gold);
  font-size: 13px;
  margin-top: 10px;
  flex-shrink: 0;
}
.contact-item p {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}
.contact-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.25s;
}
.contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 150, 12, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 12px;
  color: #fff;
  letter-spacing: 1px;
}
.footer-bottom p span {
  color: var(--gold);
}
.footer-tagline {
  font-style: italic;
  color: rgba(201, 150, 12, 0.35) !important;
}
.footer-bottom a{
  color: #fff;
  text-decoration: none;
  transition: color 0.25s;
}
.footer-bottom a:hover{
  color: var(--gold);
}
/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 900px) {
  :root {
    --section-pad: 72px;
  }
  .about-grid,
  .run-grid,
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img-grid {
    height: 320px;
  }
  .classes-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-item.wide {
    grid-column: span 1;
  }
  .info-bar-inner {
    flex-wrap: wrap;
  }
  .info-item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(201, 150, 12, 0.12);
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
  .benefits-grid,
  .counters-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .cta-features {
    gap: 18px;
  }
  .highlight-list {
    grid-template-columns: 1fr;
  }
  .run-stats {
    gap: 24px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .slide-counter {
    display: none;
  }
  .info-item {
    flex: 1 1 100%;
  }
}

/* live session css *//* Floating Live Button */

.live-fb-btn{
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #211208;
    color: #f0b429;
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 15px rgb(232 97 10 / 53%);
}

/* Popup */

.live-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:none;
align-items:center;
justify-content:center;
z-index:99999;
}

.live-popup-content{
background:#fff;
padding:30px;
border-radius:10px;
text-align:center;
max-width:400px;
width:90%;
position: relative;
}

.live-link{
    display: block;
    background: #FF5722;
    color: #fff;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    text-decoration: none;
}

.live-close{
position: absolute;
    top: 15px;
    right: 25px;
    /* font-size: 30px; */
    cursor: pointer;
    display: flex;
    background-color: #FF5722;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    /* justify-content: flex-end; */
    justify-content: center;
    align-items: center;
    color: #fff;
}
.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 14px;
  color: #fff;
}

.contact-number {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

.contact-number:hover {
  color: #25D366;
}