/*
Theme Name: Yoga Theme
Theme URI: https://icynta.in
Author: iCynta Solutions
Description: A highly premium, infographic-focused lightweight custom theme for Yoga Company.
Version: 1.2
*/

:root {
  --primary-color: #4B6043;
  /* Sage Forest Green */
  --primary-hover: #3A4B35;
  --secondary: #8FA189;
  --accent: #D4A373;
  /* Soft Terra Cotta for CTAs */
  --dark: #2D362B;
  --light: #F9F8F1;
  /* Warm Cream */
  --text: #2D362B;
  --text-light: #64745B;
  --glass: rgba(249, 248, 241, 0.85);
  --glass-dark: rgba(45, 54, 43, 0.8);
  --font-headings: 'Fraunces', serif;
  --font-body: 'Quicksand', sans-serif;
  --pattern: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234b6043' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-headings);
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Sticky Navbar & Glassmorphism */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  color: var(--text);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.header-contact {
  display: none;
}

@media(min-width: 768px) {
  .header-contact {
    display: block;
    font-weight: bold;
    color: var(--primary-color);
  }
}

/* Dynamic Premium Buttons */
.btn {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 10px 30px -10px rgba(75, 96, 67, 0.4);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px -15px rgba(75, 96, 67, 0.5);
  background: var(--primary-hover);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color) !important;
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: #fff !important;
}

/* Sticky WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background: #25D366;
  color: white !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  font-size: 2rem;
  transition: 0.3s;
}

.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

/* Responsive */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* Base Sections */
.section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Hero - Contrast & Dark */
.hero {
  background: linear-gradient(135deg, rgba(45, 54, 43, 0.7) 0%, rgba(75, 96, 67, 0.5) 100%), url('hero.png') center/cover no-repeat fixed;
  padding: 8rem 0 6rem;
  text-align: center;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--pattern);
  opacity: 0.1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.03);
  /* 🛡️ Ultra-Thin Glass */
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding: 4.5rem 3.5rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  max-width: 900px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  text-align: center;
  overflow: hidden;
}

/* Glass Edge Reflection */
.hero .container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 40%, rgba(255, 255, 255, 0.05) 100%);
  z-index: -1;
  pointer-events: none;
}

.hero h1 {
  font-size: 3.8rem;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 0;
  max-width: 650px;
  margin-inline: auto;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Premium Grid Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

@media (max-width: 480px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Variable Geometry Services Grid */
.variable-geometry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 2.5rem;
}

.service-geo-card {
  height: 100%;
  border-radius: 40px;
}

.service-geo-card.feat-large {
  grid-column: span 2;
  grid-row: span 2;
}

.service-geo-card.feat-tall {
  grid-row: span 2;
}

.service-geo-card.feat-wide {
  grid-column: span 2;
}

.service-geo-card.feat-small {
  grid-column: span 1;
  grid-row: span 1;
}

.service-geo-card:hover .geo-card-img img {
  transform: scale(1.1);
}

@media (max-width: 1200px) {
  .variable-geometry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-geo-card.feat-large,
  .service-geo-card.feat-wide {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  .variable-geometry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .service-geo-card {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    min-height: 400px;
  }
}

.card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(124, 58, 237, 0.1);
}

.card-icon svg {
  width: 64px;
  height: 64px;
  fill: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.card:hover .card-icon svg {
  transform: scale(1.1);
}

.card h3 {
  font-size: 1.5rem;
}

.card p {
  color: var(--text-light);
}

/* Infographic / Alternating Layout */
.infographic {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

.infographic:last-child {
  margin-bottom: 0;
}

.infographic:nth-child(even) {
  flex-direction: row-reverse;
}

/* Reading Progress Bar */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--accent);
  z-index: 10001;
}

.infographic-img {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  position: relative;
}

.infographic-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s;
}

.infographic:hover .infographic-img img {
  transform: scale(1.05);
}

.infographic-content {
  flex: 1;
}

.infographic-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.infographic-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

@media (max-width: 900px) {

  .infographic,
  .infographic:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    margin-bottom: 4rem;
  }
}

/* Checkmark List */
.check-list {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.check-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
  font-weight: 500;
  color: var(--text);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, var(--dark) 0%, #1a251b 100%);
  color: #fff;
  padding: 7rem 0 2rem;
  margin-top: 4rem;
  border-top: 5px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--pattern);
  opacity: 0.1;
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding: 4rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.footer-widget h3 {
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.footer-widget h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.footer-widget ul {
  list-style: none;
}

.footer-widget li {
  margin-bottom: 0.8rem;
}

.footer-widget a {
  color: #94a3b8;
}

.footer-widget a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #64748b;
}

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1a251b 100%);
  color: #fff;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner h1 {
  color: #fff;
  margin: 0;
  font-size: 3.5rem;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.page-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
  z-index: 1;
}



/* Lightbox Professional Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

.lightbox.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image-container {
  position: relative;
  max-width: 100%;
  max-height: 75vh;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

#lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  display: block;
  transition: opacity 0.4s ease;
}

.lightbox-info {
  margin-top: 1.5rem;
  text-align: center;
  color: #fff;
  max-width: 800px;
}

#lightbox-caption {
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
}

#lightbox-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

#lightbox-counter {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.lightbox-btn {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

.lightbox-btn:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.lightbox-nav:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

#lightbox-prev {
  left: -80px;
}

#lightbox-next {
  right: -80px;
}

@media (max-width: 1400px) {
  #lightbox-prev {
    left: 1rem;
  }

  #lightbox-next {
    right: 1rem;
  }

  .lightbox-nav {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
  }
}

/* Spinner */
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--accent);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Professional Gallery & Elastic Effects */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  display: block;
  background: #000;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.6s ease;
}

.gallery-item:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

/* Lightbox Elastic Entrance */
.lightbox.active .lightbox-content {
  animation: elasticIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes elasticIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Universal Animate on Scroll (Bigger Effect) */
.js-enabled .animate-on-scroll {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Override for Grid Wrappers (Staggering Only) */
.animate-on-scroll.variable-geometry-grid,
.animate-on-scroll.grid-3 {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Staggered Children Logic */
.animate-on-scroll.grid-3>*,
.animate-on-scroll.variable-geometry-grid>*,
.animate-on-scroll.booking-layout>*,
.animate-on-scroll.discussion-cta-inner>*,
.animate-on-scroll.instructor-card>* {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.is-visible>*:nth-child(1) {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}

.is-visible>*:nth-child(2) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}

.is-visible>*:nth-child(3) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}

.is-visible>*:nth-child(4) {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0);
}

.is-visible>*:nth-child(5) {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0);
}

/* Extra Responsiveness for Small Screens */
@media (max-width: 480px) {
  :root {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }

  .page-banner {
    padding: 4rem 0;
  }

  .page-banner h1 {
    font-size: 2.4rem;
  }

  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .infographic-content h3 {
    font-size: 1.8rem;
  }

  .grid-3 {
    gap: 1.5rem;
  }

  .card {
    padding: 2rem 1.5rem;
  }
}

/* Section Intros & Labels */
.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ─── Testimonials ─── */
.testimonials-section {
  background: var(--light);
}

/* ─── Instructor Section ─── */
.instructor-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.instructor-layout {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.instructor-photo-col {
  flex: 1;
}

.instructor-bio-col {
  flex: 1.2;
}

.instructor-photo-wrap {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.instructor-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.9);
}

.instructor-photo-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem 3rem 1.5rem 2rem;
  border-radius: 50px 0 0 50px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.instructor-photo-badge span {
  font-size: 1.5rem;
}

.instructor-photo-badge strong {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.instructor-bio h2 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

.instructor-role-tag {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.instructor-bio {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.instructor-certs {
  list-style: none;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.instructor-certs li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: var(--dark);
}

.instructor-certs li span {
  color: var(--primary-color);
  font-weight: 900;
}

.instructor-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--light);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instructor-avatar-circle {
  width: 150px;
  height: 150px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #fff;
}

/* ─── Services Grid ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: #fff;
  padding: 4rem 3rem;
  border-radius: 35px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
  position: relative;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(75, 96, 67, 0.12);
  border-color: var(--secondary);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  display: inline-block;
  transition: 0.5s;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.service-link {
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.service-link span {
  transition: 0.3s;
}

.service-card:hover .service-link span {
  transform: translateX(8px);
}

/* ─── Wisdom Grid ─── */
.wisdom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.wisdom-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}

.wisdom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.1);
}

.wisdom-thumb {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.wisdom-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}

.wisdom-card:hover .wisdom-thumb img {
  transform: scale(1.1);
}

.wisdom-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: 0.3s;
}

.wisdom-play:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.wisdom-type-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--dark);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.wisdom-body {
  padding: 2.5rem;
}

.wisdom-body h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.wisdom-body p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.wisdom-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.wisdom-avatar {
  width: 45px;
  height: 45px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
}

.wisdom-author strong {
  display: block;
  color: var(--dark);
  font-size: 0.9rem;
}

.wisdom-author span {
  display: block;
  color: var(--text-light);
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* ─── Gallery ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  border-radius: 30px;
  overflow: hidden;
}

.gallery-scroll {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 1rem 0 3rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-scroll::-webkit-scrollbar {
  height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}

.gallery-scroll .gallery-item {
  flex: 0 0 350px;
  scroll-snap-align: start;
  border-radius: 30px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(75, 96, 67, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
  z-index: 2;
}

.gallery-overlay span {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery-scroll .gallery-item {
    flex: 0 0 280px;
  }
}

/* ─── Lightbox ─── */
.yoga-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}

.yoga-lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox-inner {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 4rem;
  background: none;
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
  transition: 0.3s;
  opacity: 0.5;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* ─── News Grid ─── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.news-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.news-thumb {
  height: 230px;
  display: block;
  overflow: hidden;
  position: relative;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.news-card:hover .news-thumb img {
  transform: scale(1.1);
}

.news-thumb--placeholder {
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #fff;
}

.news-body {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.news-cat {
  color: var(--primary-color);
}

.news-card h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 1.2rem;
}

.news-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  flex: 1;
}

.news-readmore {
  font-weight: 800;
  color: var(--primary-color);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── Discussion CTA ─── */
.discussion-cta-section {
  padding: 8rem 0;
  background: var(--pattern);
  position: relative;
}

.discussion-cta-inner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark) 100%);
  padding: 6rem 4rem;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  box-shadow: 0 40px 100px rgba(45, 54, 43, 0.3);
  position: relative;
  overflow: hidden;
}

.discussion-cta-deco {
  position: absolute;
  bottom: -30px;
  right: -20px;
  font-size: 15rem;
  opacity: 0.05;
  transform: rotate(-15deg);
}

.discussion-cta-inner h2 {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.discussion-cta-inner p {
  font-size: 1.3rem;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.discussion-cta-btn {
  background: var(--accent);
  color: var(--dark) !important;
  font-size: 1.2rem;
  padding: 1.3rem 3.5rem;
}

.discussion-cta-btn:hover {
  background: #fff;
  transform: translateY(-5px) scale(1.05);
}

.discussion-stat-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.discussion-stat strong {
  display: block;
  font-size: 2.2rem;
  font-family: var(--font-headings);
  margin-bottom: 0.3rem;
}

.discussion-stat span {
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* ─── Booking Section ─── */
.booking-section {
  background: var(--light);
}

.booking-layout {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}

.booking-info {
  flex: 1;
}

.booking-form-col {
  flex: 1.5;
}

.booking-info h3 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
}

.booking-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.booking-info-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.booking-info-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.booking-info-item p {
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 700;
  margin: 0;
}

.booking-info-item a:hover {
  color: var(--primary-color);
}

.booking-socials {
  display: flex;
  gap: 1rem;
  margin-top: 4rem;
}

.social-pill {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.social-pill svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
}

.social-pill:hover {
  transform: translateY(-5px);
  background: var(--primary-color);
}

.social-pill:hover svg {
  fill: #fff;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {

  .instructor-layout,
  .booking-layout {
    flex-direction: column;
    gap: 4rem;
  }

  .instructor-photo-col,
  .instructor-bio-col,
  .booking-info,
  .booking-form-col {
    width: 100%;
  }

  .instructor-bio h2 {
    font-size: 2.8rem;
  }

  .discussion-cta-inner h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .discussion-stat-row {
    flex-direction: column;
    gap: 2.5rem;
  }

  .discussion-cta-inner {
    padding: 4rem 2rem;
  }

  .yoga-lightbox {
    padding: 1rem;
  }

  .lightbox-prev,
  .lightbox-next {
    display: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}