/* Premium polish for INDEX page only
   - No color changes (uses existing CSS variables)
   - Focus: typography rhythm, spacing, consistent radii, subtle shadows, micro-interactions
*/

body.page-index {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Improve overall vertical rhythm without altering template structure */
body.page-index .section,
body.page-index .modern-hero-section {
  scroll-margin-top: 110px;
}

/* Consistent premium radius + shadow language */
body.page-index .hero-image-wrapper,
body.page-index .hero-apply-now-btn,
body.page-index .hero-stats,
body.page-index .services .service-item .main-content,
body.page-index .events_item,
body.page-index .testimonials .item,
body.page-index .contact-us .contact-us-content {
  border-radius: 14px !important;
  box-shadow: var(--shadow-md) !important;
}

body.page-index .services .service-item:hover .main-content,
body.page-index .events_item:hover,
body.page-index .testimonials .item:hover,
body.page-index .contact-us .contact-us-content:hover {
  box-shadow: var(--shadow-lg) !important;
}

/* Hero: more premium typography and spacing */
body.page-index .hero-container {
  max-width: 1240px;
}

body.page-index .hero-title {
  letter-spacing: -0.7px;
}

body.page-index .hero-description {
  max-width: 52ch;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body.page-index .hero-buttons a,
body.page-index .main-button a,
body.page-index .orange-button,
body.page-index #contact-form button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px !important;
  letter-spacing: 0.45px;
  font-weight: 600;
  padding: 0.85rem 1.9rem;
  box-shadow: 0 14px 35px rgba(248, 158, 79, 0.45);
  overflow: hidden;
}

body.page-index .orange-button {
  background: linear-gradient(110deg, #ff7a3c 0%, #ff9349 40%, #ffce68 100%) !important;
  border: none !important;
  color: #1f2933 !important;
  text-transform: uppercase;
  font-size: 13px;
}

body.page-index .orange-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent 55%);
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
}

body.page-index .orange-button::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -30%;
  width: 40%;
  height: 300%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.6), transparent);
  transform: translateX(-40%) skewX(-18deg);
  opacity: 0;
}

body.page-index .orange-button:hover::after {
  animation: premium-button-shine 850ms cubic-bezier(0.23, 1, 0.32, 1);
}

body.page-index .orange-button:hover {
  box-shadow: 0 18px 50px rgba(248, 158, 79, 0.6);
  transform: translateY(-1px);
}

body.page-index .orange-button i {
  font-size: 13px;
}

@keyframes premium-button-shine {
  0% {
    transform: translateX(-40%) skewX(-18deg);
    opacity: 0;
  }
  25% {
    opacity: 0.8;
  }
  100% {
    transform: translateX(260%) skewX(-18deg);
    opacity: 0;
  }
}

body.page-index .hero-image-wrapper {
  border: 1px solid var(--yoga-border);
  overflow: hidden;
  transform: translateZ(0);
}

/* Soft floating “bubbles” background for the whole page */
body.page-index::before,
body.page-index::after {
  content: "";
  position: fixed;
  inset: -10%;
  pointer-events: none;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: 420px 420px, 380px 380px, 520px 520px;
  opacity: 0.35;
  filter: blur(2px);
}

body.page-index::before {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 155, 63, 0.23), transparent 60%),
    radial-gradient(circle at 80% 40%, rgba(50, 201, 107, 0.18), transparent 65%),
    radial-gradient(circle at 10% 80%, rgba(255, 243, 214, 0.4), transparent 65%);
  animation: bubbles-float-1 26s infinite alternate ease-in-out;
}

body.page-index::after {
  background-image:
    radial-gradient(circle at 15% 30%, rgba(50, 201, 107, 0.22), transparent 60%),
    radial-gradient(circle at 85% 75%, rgba(255, 147, 87, 0.25), transparent 65%),
    radial-gradient(circle at 50% 110%, rgba(255, 255, 255, 0.45), transparent 70%);
  animation: bubbles-float-2 34s infinite alternate ease-in-out;
}

@keyframes bubbles-float-1 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-20px, -30px, 0) scale(1.03);
    opacity: 0.42;
  }
  100% {
    transform: translate3d(18px, -55px, 0) scale(1.05);
    opacity: 0.35;
  }
}

@keyframes bubbles-float-2 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(25px, 40px, 0) scale(1.02);
    opacity: 0.4;
  }
  100% {
    transform: translate3d(-30px, 65px, 0) scale(1.06);
    opacity: 0.32;
  }
}

/* Desktop header: place logo on the right side */
@media (min-width: 992px) {
  .header-area .main-nav {
    flex-direction: row;
  }

  .header-area .main-nav .nav {
    order: 1;
    margin-right: auto;
    justify-content: flex-start;
  }

  .header-area .main-nav .menu-trigger {
    order: 2;
  }

  .header-area .main-nav .logo {
    order: 2;
  }
}

/* Desktop navbar "Apply Now" button */
@media (min-width: 992px) {
  .header-area .main-nav .nav-apply-now {
    margin-left: 10px;
  }

  .header-area .main-nav .nav-apply-now > a,
  .header-area .main-nav .nav-apply-now .apply-now-btn {
    padding: 10px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--yoga-terracotta) 0%, var(--yoga-sage) 50%, #42a5f5 100%) !important;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    transition:
      background 0.22s ease,
      color 0.22s ease,
      box-shadow 0.22s ease,
      transform 0.22s ease;
  }

  .header-area .main-nav .nav-apply-now > a:hover,
  .header-area .main-nav .nav-apply-now .apply-now-btn:hover {
    background: linear-gradient(135deg, var(--yoga-sage) 0%, var(--yoga-terracotta) 50%, #1e88e5 100%) !important;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
  }
}

body.page-index .hero-image-main {
  transform: scale(1.001);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.page-index .hero-image-wrapper:hover .hero-image-main {
  transform: scale(1.03);
}

body.page-index .hero-apply-now-btn {
  border-radius: 50px !important;
  box-shadow: 0 10px 35px rgba(50, 201, 107, 0.25), 0 0 0 3px rgba(255, 255, 255, 0.6) !important;
}

body.page-index .hero-apply-now-btn:hover {
  box-shadow: 0 14px 45px rgba(50, 201, 107, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.9) !important;
}

/* Section headings: slightly tighter and more “editorial” */
body.page-index .section-heading h6 {
  letter-spacing: 2.4px;
}

body.page-index .section-heading h2 {
  letter-spacing: -0.6px;
  line-height: 1.22;
}

body.page-index .section-heading p {
  max-width: 72ch;
}

/* Normalize section-heading typography when inline styles were removed */
body.page-index .section-heading h6 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: var(--primary) !important;
}

body.page-index .section-heading p {
  margin: 20px auto;
  font-size: 16px;
  line-height: 1.8;
  color: var(--yoga-text-light);
}

/* Testimonials: keep the italic, readable “quote” feel */
body.page-index .testimonials .item p {
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
}

/* Services cards: more premium spacing and alignment */
body.page-index .services .service-item .main-content {
  padding-left: 34px !important;
  padding-right: 34px !important;
  padding-bottom: 48px !important;
}

body.page-index .services .service-item h4 {
  letter-spacing: -0.2px;
}

/* Courses cards: smoother hover and cleaner content spacing */
body.page-index .events_item {
  overflow: hidden;
  transform: translateZ(0);
}

body.page-index .events_item .thumb {
  border-radius: 14px 14px 0 0 !important;
}

body.page-index .events_item .down-content {
  border-radius: 0 0 14px 14px !important;
}

body.page-index .events_item .thumb img {
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 500ms ease;
}

/* Testimonials: slightly more elegant padding and readable width */
body.page-index .testimonials .item {
  padding: 64px !important;
}

body.page-index .testimonials .item p {
  max-width: 70ch;
}

/* Contact form: premium inputs */
body.page-index #contact-form input,
body.page-index #contact-form textarea {
  border-radius: 12px !important;
  padding-left: 18px;
  padding-right: 18px;
}

body.page-index #contact-form input:focus,
body.page-index #contact-form textarea:focus {
  box-shadow: 0 0 0 4px rgba(139, 154, 126, 0.14) !important; /* uses existing sage tone */
}

/* Responsive refinements */
@media (max-width: 992px) {
  body.page-index .hero-description {
    max-width: 100%;
  }

  body.page-index .testimonials .item {
    padding: 42px !important;
  }
}

@media (max-width: 576px) {
  body.page-index .hero-title {
    letter-spacing: -0.4px;
  }

  body.page-index .services .service-item .main-content {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
}

/* About section layout + image card */
body.page-index .about-content-wrapper {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 48px;
  align-items: stretch;
}

body.page-index .about-text-block {
  font-size: 16px;
  line-height: 1.9;
}

body.page-index .about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin-top: 26px;
}

body.page-index .about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--yoga-text-light);
  font-size: 15px;
}

body.page-index .about-highlight-item i {
  color: var(--yoga-sage);
  margin-top: 4px;
}

body.page-index .about-image-block {
  display: flex;
  align-items: center;
}

body.page-index .about-image-card {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--yoga-border);
  box-shadow: var(--shadow-md);
  transform: translateZ(0);
  background: radial-gradient(circle at top left, rgba(50, 201, 107, 0.12), transparent 55%),
              radial-gradient(circle at bottom right, rgba(255, 155, 63, 0.18), transparent 55%),
              var(--yoga-white);
}

body.page-index .about-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 500ms ease;
}

body.page-index .about-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.12), transparent 40%, rgba(0, 0, 0, 0.35));
  opacity: 0.85;
  mix-blend-mode: multiply;
  pointer-events: none;
}

body.page-index .about-image-overlay-card {
  position: absolute;
  inset-inline: 22px;
  bottom: 22px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.page-index .about-image-overlay-card h4 {
  font-size: 18px;
  margin-bottom: 2px;
  color: var(--yoga-brown);
}

body.page-index .about-image-overlay-card p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
  color: var(--yoga-text-light);
}

body.page-index .about-image-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.02);
}

/* About section with landscape background */
body.page-index .about-section {
  position: relative;
  background-image: url('../images/16.jpeg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 90px;
  padding-bottom: 90px;
}

body.page-index .about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    rgba(0, 0, 0, 0.3) 100%
  );
  opacity: 0.75;
}

body.page-index .about-section .container {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

body.page-index .about-section .section-heading h2,
body.page-index .about-section .section-heading h6,
body.page-index .about-section .section-heading p {
  text-align: left;
}

/* Animated heading box for About section */
body.page-index .about-section .about-heading-box {
  display: inline-block;
  padding: 18px 28px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(255, 243, 214, 0.96));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
}

body.page-index .about-section .about-heading-box::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    rgba(255, 155, 63, 0.7),
    rgba(50, 201, 107, 0.7),
    rgba(255, 243, 214, 0.7),
    rgba(255, 155, 63, 0.7)
  );
  opacity: 0.0;
  animation: about-heading-glow 6s linear infinite;
  pointer-events: none;
}

body.page-index .about-section .about-heading-box > * {
  position: relative;
  z-index: 1;
}

@keyframes about-heading-glow {
  0% {
    opacity: 0;
    transform: rotate(0deg);
  }
  25% {
    opacity: 0.28;
  }
  50% {
    opacity: 0.18;
  }
  100% {
    opacity: 0;
    transform: rotate(360deg);
  }
}

@media (max-width: 576px) {
  body.page-index .about-section .about-heading-box {
    padding: 14px 18px 16px;
    border-radius: 14px;
  }
}

@media (max-width: 992px) {
  body.page-index .about-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  body.page-index .about-section .container {
    padding: 30px 22px;
  }
}

@media (max-width: 576px) {
  body.page-index .about-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  body.page-index .about-section .container {
    padding: 24px 18px;
    border-radius: 18px;
  }
}

/* About image collage: circular photo + stat badge (inspired by reference design) */
body.page-index .about-image-card.is-collage {
  overflow: visible;
  background: var(--yoga-white);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

body.page-index .about-image-card.is-collage .about-image-main {
  border-radius: 18px;
  overflow: hidden;
  border: none;
  box-shadow: none;
  background: #000;
}

body.page-index .about-image-card.is-collage .about-image-main img {
  border-radius: 18px;
}

body.page-index .about-image-card.is-collage::before {
  display: none;
}

body.page-index .about-image-card.is-collage .about-image-overlay-card {
  display: none;
}

body.page-index .about-circle-photo {
  position: absolute;
  right: -10px;
  bottom: -26px;
  width: clamp(140px, 20vw, 220px);
  height: clamp(140px, 20vw, 220px);
  border-radius: 999px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  z-index: 3;
  background: #fff;
}

body.page-index .about-circle-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: none;
  transition: none;
}

body.page-index .about-stat-badge {
  position: absolute;
  right: 40px;
  top: 10px;
  width: clamp(140px, 19vw, 210px);
  height: clamp(140px, 19vw, 210px);
  border-radius: 999px;
  background: var(--yoga-cream);
  border: 10px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  z-index: 4;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

body.page-index .about-stat-number {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  font-weight: 700;
  color: var(--yoga-terracotta-dark);
  letter-spacing: -0.8px;
}

body.page-index .about-stat-label {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yoga-brown);
  font-weight: 600;
}

body.page-index .about-image-card.is-collage:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.02);
}

@media (max-width: 992px) {
  body.page-index .about-stat-badge {
    right: 6px;
    top: 6px;
    border-width: 8px;
  }

  body.page-index .about-circle-photo {
    right: 6px;
    bottom: -18px;
    border-width: 8px;
  }
}

/* About section responsive tweaks */
@media (max-width: 992px) {
  body.page-index .about-content-wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  body.page-index .about-image-block {
    order: -1;
  }
}

@media (max-width: 576px) {
  body.page-index .about-highlights {
    grid-template-columns: minmax(0, 1fr);
  }

  body.page-index .about-image-overlay-card {
    inset-inline: 14px;
    bottom: 16px;
    padding: 14px 14px;
  }
}

/* Essence of Our School section */
body.page-index .essence-section {
  position: relative;
  background-image: radial-gradient(circle at top left, rgba(255, 155, 63, 0.05), transparent 55%),
                    radial-gradient(circle at bottom right, rgba(50, 201, 107, 0.06), transparent 60%);
}

body.page-index .essence-layout {
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: stretch;
}

body.page-index .essence-left {
  max-width: 520px;
}

body.page-index .essence-kicker {
  font-size: 13px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

body.page-index .essence-title {
  font-size: clamp(32px, 3.1vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--yoga-brown);
  margin-bottom: 18px;
}

body.page-index .essence-copy {
  font-size: 16px;
  line-height: 1.9;
  color: var(--yoga-text-light);
  margin-bottom: 26px;
}

body.page-index .essence-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.page-index .essence-accordion-item {
  width: 100%;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--yoga-brown);
  text-align: left;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

body.page-index .essence-accordion-item .essence-accordion-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 158, 79, 0.12);
  color: var(--primary);
  flex-shrink: 0;
}

body.page-index .essence-accordion-item.is-active,
body.page-index .essence-accordion-item:hover {
  background: linear-gradient(120deg, #ffffff, #fff6ea);
  border-color: rgba(248, 158, 79, 0.6);
  box-shadow: 0 14px 32px rgba(248, 158, 79, 0.22);
  transform: translateY(-1px);
}

body.page-index .essence-accordion-item.is-active .essence-accordion-icon,
body.page-index .essence-accordion-item:hover .essence-accordion-icon {
  background: linear-gradient(135deg, #ff7a3c, #ffce68);
  color: #1f2933;
}

body.page-index .essence-panels {
  margin-top: 18px;
}

body.page-index .essence-panel {
  display: none;
  font-size: 14px;
  line-height: 1.8;
  color: var(--yoga-text-light);
  max-width: 36rem;
  animation: essence-fade-in 260ms ease-out;
}

body.page-index .essence-panel.is-active {
  display: block;
}

@keyframes essence-fade-in {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

body.page-index .essence-right {
  display: flex;
  align-items: stretch;
}

body.page-index .essence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

body.page-index .essence-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: stretch;
  background-size: cover;
  background-position: center center;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
  transform: translateY(0) translateZ(0);
  cursor: pointer;
  transition:
    transform 260ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 260ms ease;
}

body.page-index .essence-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
}

body.page-index .essence-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.45));
}

body.page-index .essence-card-gradient-1 .essence-card-overlay {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.85), rgba(22, 163, 74, 0.9));
}

body.page-index .essence-card-gradient-2 .essence-card-overlay {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.9), rgba(99, 102, 241, 0.9));
}

body.page-index .essence-card-gradient-3 .essence-card-overlay {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.9), rgba(251, 146, 60, 0.9));
}

body.page-index .essence-card-gradient-4 .essence-card-overlay {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.92), rgba(248, 113, 113, 0.9));
}

body.page-index .essence-card-content {
  position: relative;
  z-index: 1;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  color: #ffffff;
}

body.page-index .essence-card-title {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 4px;
}

body.page-index .essence-card-text {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  opacity: 0.96;
}

body.page-index .essence-card-cta {
  margin-top: 4px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  /* Ensure label is always readable against the white pill */
  color: #1f2933;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  text-decoration: none;
  transform: translateY(16px);
  opacity: 0;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.45);
  transition:
    transform 260ms cubic-bezier(0.23, 1, 0.32, 1),
    opacity 260ms ease,
    box-shadow 260ms ease,
    background 200ms ease,
    color 200ms ease;
}

body.page-index .essence-card-cta i {
  font-size: 11px;
  transition: transform 220ms ease;
}

body.page-index .essence-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.5);
}

body.page-index .essence-card:hover .essence-card-cta {
  transform: translateY(0);
  opacity: 1;
}

body.page-index .essence-card:hover .essence-card-cta i {
  transform: translateX(3px);
}

body.page-index .essence-card:hover .essence-card-text {
  opacity: 1;
}

@media (max-width: 992px) {
  body.page-index .essence-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  body.page-index .essence-left {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  body.page-index .essence-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Why Choose Us section (inspired by collage reference) */
body.page-index .why-choose-section {
  position: relative;
  background-image: radial-gradient(circle at top left, rgba(255, 155, 63, 0.06), transparent 55%),
                    radial-gradient(circle at bottom right, rgba(50, 201, 107, 0.07), transparent 60%);
}

body.page-index .why-choose-section .container {
  position: relative;
  z-index: 1;
}

body.page-index .why-choose-layout {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

body.page-index .why-choose-text {
  max-width: 620px;
}

body.page-index .why-choose-description {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--yoga-text-light);
}

body.page-index .why-choose-features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

@media (min-width: 992px) {
  body.page-index .why-choose-section .section-heading,
  body.page-index .why-choose-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  body.page-index .why-choose-text {
    max-width: 720px;
  }

  body.page-index .why-choose-features {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
}

body.page-index .why-choose-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

body.page-index .why-choose-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff7a3c 0%, #ffce68 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(248, 158, 79, 0.55);
  flex-shrink: 0;
}

body.page-index .why-choose-icon i {
  font-size: 17px;
}

body.page-index .why-choose-copy h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--yoga-brown);
}

body.page-index .why-choose-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--yoga-text-light);
}

body.page-index .why-choose-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--yoga-border);
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.18), transparent 55%),
              radial-gradient(circle at bottom, rgba(0, 0, 0, 0.28), transparent 65%),
              #000;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.45);
  min-height: 320px;
}

body.page-index .why-main-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1.04);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 500ms ease;
}

body.page-index .why-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.65));
  opacity: 0.85;
  pointer-events: none;
}

body.page-index .why-choose-media:hover .why-main-photo {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

body.page-index .why-floating-circle {
  position: absolute;
  width: clamp(140px, 22vw, 220px);
  height: clamp(140px, 22vw, 220px);
  border-radius: 999px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
  background: #fff;
}

body.page-index .why-floating-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.page-index .why-floating-circle--top {
  right: -14px;
  top: 10%;
}

body.page-index .why-floating-circle--bottom {
  right: -40px;
  bottom: -18px;
}

@media (max-width: 992px) {
  body.page-index .why-choose-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  body.page-index .why-choose-media {
    order: 2;
    max-width: 100%;
    margin-inline: auto;
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  body.page-index .why-choose-features {
    grid-template-columns: minmax(0, 1fr);
  }

  body.page-index .why-floating-circle {
    border-width: 8px;
  }

  body.page-index .why-floating-circle--top {
    right: 6px;
  }

  body.page-index .why-floating-circle--bottom {
    right: 0;
  }

  /* Ensure Why Choose Us photo is visible on small screens */
  body.page-index .why-choose-media {
    min-height: 260px;
  }

  body.page-index .why-main-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: 260px;
  }
}

/* Premium layout for TTC programs section */
body.page-index .ttc-programs {
  position: relative;
  background: #faf6f2;
}

body.page-index .ttc-programs > .container {
  position: relative;
  z-index: 1;
}

body.page-index .ttc-programs .yoga-programs-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 34px;
}

body.page-index .ttc-programs .yoga-program-card {
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--yoga-border);
  display: flex;
  flex-direction: column;
  transform: translateY(0) translateZ(0);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
  animation: ttc-card-fade-up 700ms cubic-bezier(0.23, 1, 0.32, 1) both;
}

body.page-index .ttc-programs .yoga-program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.16);
  border-color: rgba(255, 155, 63, 0.35);
}

body.page-index .ttc-programs .yoga-program-card:nth-child(1) {
  animation-delay: 80ms;
}

body.page-index .ttc-programs .yoga-program-card:nth-child(2) {
  animation-delay: 180ms;
}

body.page-index .ttc-programs .yoga-program-card:nth-child(3) {
  animation-delay: 280ms;
}

body.page-index .ttc-programs .program-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  transform-origin: center center;
}

body.page-index .ttc-programs .program-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 450ms ease;
}

body.page-index .ttc-programs .yoga-program-card:hover .program-image-wrapper img {
  transform: scale(1.1) translateY(-2px);
  filter: saturate(1.08) contrast(1.02);
}

body.page-index .ttc-programs .program-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.45));
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 260ms ease;
}

body.page-index .ttc-programs .yoga-program-card:hover .program-overlay {
  opacity: 0.8;
}

body.page-index .ttc-programs .program-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.94);
  color: var(--yoga-brown);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(0);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease,
    color 260ms ease;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(255, 243, 214, 0.96), rgba(255, 255, 255, 0.96));
  background-size: 200% 100%;
  animation: ttc-badge-shine 6s linear infinite;
}

body.page-index .ttc-programs .program-badge.badge-secondary {
  background: rgba(255, 155, 63, 0.96);
  color: #fff;
}

body.page-index .ttc-programs .program-badge.badge-outline {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 155, 63, 0.45);
}

body.page-index .ttc-programs .yoga-program-card:hover .program-badge {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

body.page-index .ttc-programs .program-info {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  background: #ffffff;
}

body.page-index .ttc-programs .program-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.page-index .ttc-programs .program-title {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.2px;
  margin: 0;
  color: var(--yoga-brown);
}

body.page-index .ttc-programs .program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  color: var(--yoga-text-light);
}

body.page-index .ttc-programs .program-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f3e7db;
  color: var(--yoga-brown);
}

body.page-index .ttc-programs .program-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--yoga-brown);
  flex-grow: 1;
}

body.page-index .ttc-programs .program-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

body.page-index .ttc-programs .program-price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.page-index .ttc-programs .program-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 600;
}

body.page-index .ttc-programs .program-price .price-from {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--yoga-text-light);
}

body.page-index .ttc-programs .program-price .price-amount {
  font-size: 20px;
  color: var(--primary);
}

body.page-index .ttc-programs .program-note {
  font-size: 12px;
  color: var(--yoga-brown);
  text-align: right;
}

body.page-index .ttc-programs .program-cta-btn {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  background: #ffffff;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(0);
  text-decoration: none;
  transition:
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

body.page-index .ttc-programs .program-cta-btn i {
  font-size: 12px;
  transition: transform 220ms ease;
}

body.page-index .ttc-programs .program-cta-btn:hover {
  background: var(--secondary);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  z-index: 20;
}

body.page-index .ttc-programs .program-cta-btn:hover i {
  transform: translateX(3px);
}

@keyframes ttc-card-fade-up {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ttc-badge-shine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 992px) {
  body.page-index .ttc-programs .yoga-programs-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body.page-index .ttc-programs .yoga-programs-container {
    grid-template-columns: minmax(0, 1fr);
  }
}