/* ============================================
   ANTARDRISHTI — Main Stylesheet
   Premium Yoga, Wellness & Holistic Healing
   ============================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

/* === CSS Custom Properties === */
:root {
  --primary:        #8A6240;
  --primary-dark:   #6B4D2F;
  --primary-light:  #B08060;
  --secondary:      #D6C2A8;
  --secondary-light:#EDE4D8;
  --accent:         #5C7A58;
  --accent-dark:    #4A6246;
  --background:     #F8F6F2;
  --white:          #FFFFFF;
  --text:           #2C2C2C;
  --text-light:     #6B6B6B;
  --text-muted:     #9A9A9A;
  --border:         #E8E0D4;
  --shadow-sm:      0 2px 12px rgba(138, 98, 64, 0.08);
  --shadow:         0 4px 24px rgba(138, 98, 64, 0.12);
  --shadow-lg:      0 8px 48px rgba(138, 98, 64, 0.18);
  --shadow-hover:   0 12px 56px rgba(138, 98, 64, 0.24);
  --transition:     all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast:all 0.18s ease;
  --font-heading:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Jost', 'Segoe UI', sans-serif;
  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --section-pad:    100px;
}

/* === Base Reset & Typography === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }

p { color: var(--text-light); line-height: 1.8; }

a { text-decoration: none; color: var(--primary); transition: var(--transition-fast); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

section { position: relative; overflow: hidden; }

/* === Preloader === */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner {
  text-align: center;
}
.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: pulseText 1.4s ease-in-out infinite;
}
.preloader-bar {
  width: 120px;
  height: 3px;
  background: var(--secondary);
  border-radius: 99px;
  margin: 0 auto;
  overflow: hidden;
}
.preloader-bar::after {
  content: '';
  display: block;
  width: 50%;
  height: 100%;
  background: var(--primary);
  border-radius: 99px;
  animation: loadSlide 1.2s ease-in-out infinite alternate;
}
@keyframes loadSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(130%); }
}
@keyframes pulseText {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* === Navbar === */
.navbar {
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(248, 246, 242, 0.97) !important;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary) !important;
  letter-spacing: 1px;
}
.navbar-brand span {
  color: var(--accent);
}
.navbar-toggler {
  border: none;
  padding: 4px 8px;
  outline: none;
  box-shadow: none !important;
}
.navbar-toggler-icon {
  width: 24px;
  height: 2px;
  background: var(--primary);
  display: block;
  position: relative;
  transition: var(--transition);
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  left: 0;
  transition: var(--transition);
}
.navbar-toggler-icon::before { top: -7px; }
.navbar-toggler-icon::after  { top: 7px; }

.nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  color: var(--text) !important;
  padding: 8px 16px !important;
  position: relative;
  text-transform: uppercase;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 99px;
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: calc(100% - 32px); }
.nav-link:hover { color: var(--primary) !important; }
.nav-link.active { color: var(--primary) !important; }

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 28px !important;
  margin-left: 8px;
  font-size: 0.88rem !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(138, 98, 64, 0.3);
}

/* Hero navbar text color adjustment */
.navbar-hero .nav-link { color: rgba(255,255,255,0.92) !important; }
.navbar-hero .navbar-brand { color: var(--white) !important; }
.navbar-hero .nav-link::after { background: var(--white); }
.navbar-hero .nav-link:hover { color: var(--white) !important; }
.navbar-hero.scrolled .nav-link { color: var(--text) !important; }
.navbar-hero.scrolled .navbar-brand { color: var(--primary) !important; }
.navbar-hero.scrolled .nav-link::after { background: var(--primary); }

/* === Buttons === */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(138, 98, 64, 0.35);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50px;
  padding: 13px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  border-radius: 50px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn-accent-custom:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(92, 122, 88, 0.35);
}

/* === Section Utilities === */
.section-pad { padding: var(--section-pad) 0; }
.section-pad-sm { padding: 60px 0; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '—  ';
  color: var(--secondary);
}
.section-tag::after {
  content: '  —';
  color: var(--secondary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.8;
}
.section-subtitle.center { margin: 0 auto; }

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 99px;
  margin: 20px 0;
}
.divider.center { margin: 20px auto; }

/* === Decorative Elements === */
.lotus-deco {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
}
.bg-cream { background-color: var(--background); }
.bg-white  { background-color: var(--white); }
.bg-primary-soft { background-color: rgba(138, 98, 64, 0.05); }

/* === HERO SECTION (Home) === */
.hero-home {
  min-height: 100vh;
  background: linear-gradient(135deg,
    #2C1810 0%,
    #4A2E1A 30%,
    #3D4A2E 65%,
    #2A3820 100%
  );
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(138, 98, 64, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(92, 122, 88, 0.2) 0%, transparent 60%);
}
.hero-home::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--background), transparent);
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 24px;
}
.hero-eyebrow span {
  width: 40px;
  height: 1px;
  background: var(--secondary);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--secondary);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 580px;
}
.hero-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(214, 194, 168, 0.15), rgba(92, 122, 88, 0.12));
  border: 1px solid rgba(214, 194, 168, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatCircle 6s ease-in-out infinite;
  position: relative;
}
.hero-circle::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(214, 194, 168, 0.12);
}
.hero-mandala {
  font-size: 180px;
  opacity: 0.3;
  filter: blur(0.5px);
}

.hero-floating-card {
  position: absolute;
  background: rgba(248, 246, 242, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-floating-card .icon { font-size: 1.4rem; }
.hero-floating-card .label { font-size: 0.82rem; color: var(--white); font-weight: 500; }
.hero-fc-1 { top: 80px; left: -30px; }
.hero-fc-2 { bottom: 100px; right: -20px; }
.hero-fc-3 { top: 220px; right: -40px; }

@keyframes floatCircle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* === PAGE HERO (Inner Pages) === */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #2C1810 0%, #4A2E1A 40%, #3A4828 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--background), transparent);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-tag {
  display: inline-block;
  background: rgba(214, 194, 168, 0.2);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.8;
}
.breadcrumb-nav {
  margin-top: 24px;
}
.breadcrumb-nav a, .breadcrumb-nav span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb-nav a:hover { color: var(--secondary); }
.breadcrumb-nav .sep { margin: 0 8px; }

/* === ABOUT INTRO SECTION === */
.about-intro-img {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}
.about-intro-img .main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.about-intro-img .accent-box {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--accent);
  color: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius);
  text-align: center;
  min-width: 160px;
}
.accent-box .num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.accent-box .lbl {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* === STATS ROW === */
.stat-card {
  text-align: center;
  padding: 32px 20px;
}
.stat-card .num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-card .lbl {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* === FOUNDER SECTION === */
.founder-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.founder-img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.founder-img-placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--secondary-light) 0%, var(--secondary) 60%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}
.founder-img-placeholder .initials {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 12px;
}
.founder-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  min-width: 160px;
  text-align: center;
}
.founder-badge .title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}
.founder-badge .sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.credential-list { list-style: none; padding: 0; }
.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-light);
}
.credential-list li:last-child { border-bottom: none; }
.credential-list .icon { color: var(--accent); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* === SERVICE CARDS === */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  filter: brightness(1.1);
}
.service-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}
.service-link:hover { gap: 10px; color: var(--primary-dark); }

/* Detailed service page cards */
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.service-detail-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.service-detail-header {
  padding: 32px 28px 24px;
  background: linear-gradient(135deg, var(--secondary-light), var(--background));
  border-bottom: 1px solid var(--border);
}
.service-detail-body { padding: 24px 28px 32px; }
.service-feature-list { list-style: none; padding: 0; margin: 0; }
.service-feature-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.service-feature-list li:last-child { border-bottom: none; }
.service-feature-list .check { color: var(--accent); font-size: 0.85rem; }

/* === BENEFITS SECTION === */
.benefit-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
}
.benefit-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.benefit-item h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.benefit-item p { font-size: 0.88rem; margin: 0; }

/* === RETREAT CARDS === */
.retreat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.retreat-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-6px); }

.retreat-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.retreat-img-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.retreat-card:hover .retreat-img-bg { transform: scale(1.05); }

.retreat-img-bg.nature {
  background: linear-gradient(135deg, #2d4a2d 0%, #4a7a4a 50%, #6a8a3a 100%);
}
.retreat-img-bg.mountain {
  background: linear-gradient(135deg, #1a2a4a 0%, #2a4a6a 50%, #3a6a8a 100%);
}
.retreat-img-bg.beach {
  background: linear-gradient(135deg, #1a4a4a 0%, #2a7a7a 50%, #6aaabb 100%);
}
.retreat-img-bg.forest {
  background: linear-gradient(135deg, #1a3020 0%, #2a5a30 50%, #4a8a50 100%);
}

.retreat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.retreat-body { padding: 24px; }
.retreat-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.retreat-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.retreat-body h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.retreat-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.retreat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}
.retreat-price .from { font-size: 0.75rem; color: var(--text-muted); }
.retreat-price .amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

/* === WORKSHOP CARDS === */
.workshop-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.workshop-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--secondary);
}
.workshop-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--secondary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.workshop-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.workshop-card p { font-size: 0.9rem; flex-grow: 1; margin-bottom: 20px; }
.workshop-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.workshop-tag {
  background: var(--background);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
}
.workshop-meta-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.workshop-meta-row span {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* === TESTIMONIALS === */
.testimonial-section { background: var(--background); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  height: 100%;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--secondary);
  line-height: 0.8;
  position: absolute;
  top: 20px;
  left: 32px;
}
.testimonial-stars {
  color: #F4A820;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  margin-top: 16px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  flex-shrink: 0;
}
.author-info .name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}
.author-info .role { font-size: 0.82rem; color: var(--text-muted); }

.carousel-controls { display: flex; align-items: center; gap: 12px; justify-content: center; margin-top: 40px; }
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 1rem;
}
.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.cta-section .section-tag { color: var(--secondary); }
.cta-section .section-tag::before,
.cta-section .section-tag::after { color: rgba(214, 194, 168, 0.4); }
.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.8); }
.cta-section .divider { background: linear-gradient(90deg, var(--secondary), rgba(255,255,255,0.4)); }

/* === CONTACT === */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow);
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--background);
  transition: var(--transition-fast);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(138, 98, 64, 0.12);
  background: var(--white);
  outline: none;
}
.form-control::placeholder { color: var(--text-muted); }

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-item h6 {
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info-item p { font-size: 0.92rem; color: var(--text); margin: 0; }

.map-placeholder {
  height: 280px;
  background: linear-gradient(135deg, #dde8dd, #c8d8c8);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-direction: column;
  gap: 12px;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-top: 24px;
  border: 1px solid var(--border);
}
.map-placeholder .map-icon { font-size: 2.5rem; }

/* Social links */
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition-fast);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* === FAQ ACCORDION === */
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition-fast);
}
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: var(--transition-fast);
}
.faq-question:hover { background: var(--background); }
.faq-question h6 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition-fast);
}
.faq-item.open .faq-toggle { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--white);
}
.faq-answer.open { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* === SCHEDULE TABLE === */
.schedule-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.schedule-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.schedule-row:last-child { border-bottom: none; }
.schedule-time {
  padding: 16px 20px;
  background: var(--background);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  border-right: 1px solid var(--border);
}
.schedule-activity { padding: 16px 20px; font-size: 0.9rem; color: var(--text); }
.schedule-activity small { color: var(--text-muted); font-size: 0.8rem; }
.schedule-type {
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.type-yoga { background: rgba(92, 122, 88, 0.12); color: var(--accent); }
.type-meditation { background: rgba(138, 98, 64, 0.12); color: var(--primary); }
.type-meal { background: rgba(214, 194, 168, 0.3); color: var(--primary-dark); }
.type-free { background: #f0f4ff; color: #5468a0; }

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: transform 0.5s ease;
}
.gallery-item:nth-child(1) .gallery-placeholder { aspect-ratio: 16/9; }
.gallery-item:nth-child(2) .gallery-placeholder { aspect-ratio: 1; }
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.5rem;
  color: var(--white);
  opacity: 0;
}
.gallery-item:hover .gallery-overlay { background: rgba(44, 24, 16, 0.4); opacity: 1; }

.g1 { background: linear-gradient(135deg, #2d4a2d, #5a8a5a); }
.g2 { background: linear-gradient(135deg, #3a2a1a, #7a5a3a); }
.g3 { background: linear-gradient(135deg, #1a3a4a, #3a6a8a); }
.g4 { background: linear-gradient(135deg, #4a2a3a, #8a5a7a); }
.g5 { background: linear-gradient(135deg, #2a4a1a, #5a8a2a); }
.g6 { background: linear-gradient(135deg, #1a2a4a, #3a4a8a); }

/* === PROCESS / STEPS === */
.process-step {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.process-step p { font-size: 0.88rem; }

/* === FEATURE HIGHLIGHTS === */
.feature-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition-fast);
}
.feature-highlight:hover { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
.fh-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.fh-text h6 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.fh-text p { font-size: 0.85rem; margin: 0; }

/* === BACK TO TOP === */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(138, 98, 64, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
}
#backToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* === FOOTER === */
.footer {
  background: #1C1108;
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer-brand .name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-top: 12px; }
.footer h6 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--secondary); }
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  align-items: flex-start;
}
.footer-contact-item i { color: var(--secondary); margin-top: 2px; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 60px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }

/* === SCROLL ANIMATIONS === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.fade-left  { transform: translateX(-40px); }
.animate-on-scroll.fade-right { transform: translateX(40px); }
.animate-on-scroll.scale-in   { transform: scale(0.92); }
.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* === ALERT / NOTIFICATION === */
.success-toast {
  position: fixed;
  bottom: 90px;
  right: 32px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 1000;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.success-toast.show { opacity: 1; transform: translateY(0); }

/* === UTILITY === */
.text-primary-custom { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-light-custom { color: var(--text-light) !important; }
.bg-section-alt { background: var(--white); }
.rounded-custom { border-radius: var(--radius) !important; }
.img-cover { object-fit: cover; width: 100%; }
.overflow-hidden { overflow: hidden; }

/* === RESPONSIVE === */
@media (max-width: 991px) {
  :root { --section-pad: 70px; }
  .hero-visual { display: none; }
  .hero-home { min-height: 80vh; padding: 130px 0 80px; }
  .hero-stats { gap: 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .schedule-row { grid-template-columns: 100px 1fr; }
  .schedule-type { display: none; }
  .contact-form-wrap { padding: 32px 24px; }
  .founder-badge { right: 0; }
  .navbar-collapse { background: rgba(248, 246, 242, 0.98); backdrop-filter: blur(12px); border-radius: var(--radius); padding: 16px; margin-top: 12px; box-shadow: var(--shadow); }
}

@media (max-width: 767px) {
  :root { --section-pad: 56px; }
  h1 { font-size: 2.8rem; }
  .hero-home { padding: 110px 0 60px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .retreat-body { padding: 18px; }
  .retreat-footer { padding: 14px 18px; }
  .process-step::after { display: none; }
  .testimonial-card { padding: 28px 24px; }
  .about-intro-img { padding: 0 0 40px; }
  .about-intro-img .accent-box { right: 16px; }
  .footer { padding: 56px 0 0; }
  .footer-bottom { margin-top: 40px; }
  #backToTop { bottom: 20px; right: 20px; }
}

@media (max-width: 575px) {
  .btn-primary-custom, .btn-outline-custom, .btn-accent-custom {
    padding: 12px 24px;
    font-size: 0.82rem;
  }
  .contact-form-wrap { padding: 24px 16px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary-custom, .hero-btns .btn-outline-custom { width: 100%; justify-content: center; }
}

/* ============================================
   HOME PAGE V2 — NEW SECTIONS
   ============================================ */

/* === IMAGE PLACEHOLDER SYSTEM === */
.img-ph {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.03) 0px,
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 8px
    );
  pointer-events: none;
}
.img-ph-text {
  position: relative;
  z-index: 1;
  opacity: 0.25;
  font-size: 3rem;
  pointer-events: none;
}
.img-ph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 60%);
  z-index: 1;
}

/* Themed gradient backgrounds for each image type */
.img-ph-yoga-1    { background: linear-gradient(135deg, #1a3020 0%, #2a5a30 50%, #4a7a40 100%); }
.img-ph-yoga-2    { background: linear-gradient(160deg, #2a1a10 0%, #5a3a20 60%, #8a6040 100%); }
.img-ph-meditate  { background: linear-gradient(135deg, #1a1030 0%, #3a2060 50%, #5a3a80 100%); }
.img-ph-breath    { background: linear-gradient(135deg, #0a2030 0%, #1a4060 50%, #2a6080 100%); }
.img-ph-sound     { background: linear-gradient(135deg, #2a1020 0%, #5a2040 50%, #8a4060 100%); }
.img-ph-nature    { background: linear-gradient(135deg, #1a2a10 0%, #3a5020 50%, #5a7030 100%); }
.img-ph-sunrise   { background: linear-gradient(160deg, #3a1800 0%, #7a3810 35%, #c06820 70%, #e0922a 100%); }
.img-ph-retreat   { background: linear-gradient(135deg, #080e1a 0%, #12284a 50%, #1a4070 100%); }
.img-ph-retreat-wide { background: linear-gradient(160deg, #060e16 0%, #0e2038 35%, #183060 65%, #1a4878 100%); }
.img-ph-transform { background: linear-gradient(160deg, #1a1010 0%, #3a2818 40%, #7a5828 80%, #b88840 100%); }
.img-ph-group     { background: linear-gradient(135deg, #1a2a20 0%, #3a4a30 50%, #6a7a50 100%); }
.img-ph-corporate { background: linear-gradient(135deg, #10182a 0%, #20304a 50%, #304860 100%); }
.img-ph-lifestyle { background: linear-gradient(135deg, #2a2010 0%, #4a3820 50%, #7a6040 100%); }
.img-ph-contact   { background: linear-gradient(160deg, #1a2a20 0%, #2a4a30 45%, #4a6a40 100%); }
.img-ph-professional { background: linear-gradient(135deg, #10202a 0%, #20384a 50%, #305060 100%); }
.img-ph-beginner  { background: linear-gradient(135deg, #2a1a10 0%, #4a3020 50%, #7a5030 100%); }
.img-ph-founder-kapil { background: linear-gradient(160deg, #1a2a1a 0%, #3a5a2a 50%, #5a7a4a 100%); }
.img-ph-founder-sapna { background: linear-gradient(160deg, #2a1018 0%, #5a2838 50%, #8a5060 100%); }
.img-ph-avatar-1  { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.img-ph-avatar-2  { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); }
.img-ph-avatar-3  { background: linear-gradient(135deg, #4a3020, #8a6040); }

/* === WHATSAPP FLOAT BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 32px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  z-index: 998;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  color: var(--white);
}
.wa-tooltip {
  position: absolute;
  right: 62px;
  background: rgba(0,0,0,0.75);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: var(--transition-fast);
  pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}
.whatsapp-float { animation: waPulse 2.5s ease-in-out infinite; }

/* === WHATSAPP BUTTON === */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  border: 2px solid #25D366;
  border-radius: 50px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-whatsapp:hover {
  background: #1aad54;
  border-color: #1aad54;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

/* === HERO V2 === */
.hero-v2 {
  min-height: 100vh;
  background: linear-gradient(145deg,
    #1C1008 0%,
    #2C1C10 25%,
    #1A2210 55%,
    #0E1808 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Animated blobs */
.hero-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.blob-1 {
  width: 500px; height: 500px;
  background: rgba(138, 98, 64, 0.2);
  top: -150px; left: -100px;
  animation: blobFloat 12s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px;
  background: rgba(92, 122, 88, 0.18);
  bottom: -100px; right: 10%;
  animation: blobFloat 10s ease-in-out infinite reverse;
  animation-delay: -4s;
}
.blob-3 {
  width: 300px; height: 300px;
  background: rgba(214, 194, 168, 0.1);
  top: 40%; right: -80px;
  animation: blobFloat 14s ease-in-out infinite;
  animation-delay: -8s;
}
.blob-4 {
  width: 200px; height: 200px;
  background: rgba(138, 98, 64, 0.12);
  bottom: 20%; left: 30%;
  animation: blobFloat 9s ease-in-out infinite reverse;
  animation-delay: -2s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-v2-container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(214, 194, 168, 0.12);
  border: 1px solid rgba(214, 194, 168, 0.25);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4CAF50;
  display: inline-block;
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-v2-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 20px;
}
.hero-v2-title em {
  font-style: italic;
  color: var(--secondary);
  display: block;
}

.hero-v2-sub {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(214, 194, 168, 0.85);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.hero-v2-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-v2-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-v2-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.trust-lbl {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Hero Image Area */
.hero-v2-img-wrap {
  position: relative;
  height: 580px;
}
.hero-v2-img-main {
  width: 88%;
  height: 100%;
  border-radius: var(--radius-xl);
  margin-left: auto;
  animation: heroImgFloat 7s ease-in-out infinite;
}
.hero-v2-img-accent {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 48%;
  height: 200px;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(248, 246, 242, 0.08);
  box-shadow: var(--shadow-lg);
}
.hero-img-badge {
  position: absolute;
  top: 40px;
  left: -10px;
  background: rgba(248, 246, 242, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
  z-index: 3;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* === WELLNESS GALLERY GRID === */
.wellness-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.wg-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 100px;
}
.wg-tall { grid-row: span 2; }
.wg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}
.wg-item:hover .wg-overlay { opacity: 1; }
.wg-overlay span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wg-item:hover { transform: scale(1.02); }
.wg-item { transition: transform 0.4s ease; }

/* === AUDIENCE CARDS === */
.audience-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.audience-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-6px); }
.audience-img {
  height: 200px;
  position: relative;
}
.audience-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0,0,0,0.45);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.audience-body {
  padding: 24px;
}
.audience-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.audience-body h5 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.audience-body p { font-size: 0.88rem; margin: 0; }

/* === TRANSFORMATION SECTION === */
.transformation-section {
  background: var(--background);
  position: relative;
}
.transformation-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(92, 122, 88, 0.05) 0%, transparent 65%);
}

.transform-img-wrap { position: relative; }
.transform-img {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-xl);
  position: relative;
}
.transform-img-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  max-width: 200px;
}
.tib-icon { font-size: 1.8rem; }

/* Timeline V2 */
.timeline-v2 { margin-top: 28px; }
.timeline-v2-stage { position: relative; margin-bottom: 32px; }
.timeline-v2-stage::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 36px;
  bottom: -32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.timeline-v2-stage:last-child::before { display: none; }
.timeline-v2-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.timeline-v2-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--background);
  box-shadow: 0 0 0 3px var(--primary);
  flex-shrink: 0;
}
.timeline-v2-dot.accent-dot {
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent);
}
.timeline-v2-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.timeline-v2-body { padding-left: 42px; }
.timeline-results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tl-result {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition-fast);
}
.tl-result:hover { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
.tl-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.tl-result strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.tl-result p { font-size: 0.8rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* === FOUNDERS V2 === */
.founder-row {
  border-bottom: 1px solid var(--border);
  padding-bottom: 48px;
}
.founder-row:last-of-type { border-bottom: none; padding-bottom: 0; }

.founder-v2-img-wrap { position: relative; }
.founder-v2-img {
  width: 100%;
  max-width: 400px;
  height: 480px;
  border-radius: var(--radius-xl);
  margin: 0 auto;
  display: block;
}
.founder-v2-tag {
  position: absolute;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 10px 20px 10px 0;
  box-shadow: var(--shadow);
}
.founder-v2-tag span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
}
.founder-v2-tag.right {
  left: auto;
  right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 10px 0 10px 20px;
}
.fvt-line {
  width: 32px;
  height: 2px;
  background: var(--primary);
}

/* Founders Stats Strip */
.founders-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--background);
  border-radius: var(--radius-lg);
  margin: 60px 0 0;
  overflow: hidden;
  flex-wrap: wrap;
}
.fss-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 32px 20px;
}
.fss-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.fss-lbl {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 8px;
  letter-spacing: 0.5px;
}
.fss-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* === IMAGE SERVICE CARDS === */
.img-service-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  height: 320px;
  cursor: pointer;
}
.isc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.img-service-card:hover .isc-img { transform: scale(1.06); }
.isc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 8, 4, 0.85) 0%,
    rgba(12, 8, 4, 0.35) 50%,
    rgba(12, 8, 4, 0.1) 100%
  );
  transition: var(--transition);
  z-index: 1;
}
.img-service-card:hover .isc-overlay {
  background: linear-gradient(
    to top,
    rgba(12, 8, 4, 0.92) 0%,
    rgba(12, 8, 4, 0.55) 60%,
    rgba(12, 8, 4, 0.2) 100%
  );
}
.isc-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
  transform: translateY(8px);
  transition: var(--transition);
}
.img-service-card:hover .isc-content { transform: translateY(0); }
.isc-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
  transition: var(--transition-fast);
}
.isc-content h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.isc-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  opacity: 0;
}
.img-service-card:hover .isc-content p {
  max-height: 80px;
  opacity: 1;
}
.isc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--secondary);
  transition: var(--transition-fast);
}
.img-service-card:hover .isc-btn { gap: 10px; }

/* === MASONRY GALLERY === */
.masonry-gallery {
  column-count: 4;
  column-gap: 12px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  cursor: pointer;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.mi-img {
  width: 100%;
  aspect-ratio: 3/4;
  transition: transform 0.5s ease;
  position: relative;
}
.mi-img.mi-tall { aspect-ratio: 2/3; }
.masonry-item:hover .mi-img { transform: scale(1.04); }

.mi-hover {
  position: absolute;
  inset: 0;
  background: rgba(28, 16, 8, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}
.masonry-item:hover .mi-hover {
  background: rgba(28, 16, 8, 0.45);
  opacity: 1;
}

/* === TESTIMONIALS V2 === */
.testimonial-card-v2 {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  height: 100%;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card-v2::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--secondary-light);
  line-height: 0.7;
  position: absolute;
  top: 16px;
  right: 24px;
  pointer-events: none;
}
.testimonial-card-v2.featured {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-color: transparent;
  color: var(--white);
}
.testimonial-card-v2.featured::before { color: rgba(255,255,255,0.1); }
.testimonial-card-v2:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--secondary); }
.testimonial-card-v2.featured:hover { border-color: transparent; }

.tcv2-top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.tcv2-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.tcv2-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}
.testimonial-card-v2.featured .tcv2-name { color: var(--white); }
.tcv2-role { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-card-v2.featured .tcv2-role { color: rgba(255,255,255,0.65); }
.tcv2-stars { color: #F4A820; font-size: 0.85rem; margin-top: 2px; }
.tcv2-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
  position: relative;
  z-index: 1;
}
.testimonial-card-v2.featured .tcv2-text { color: rgba(255,255,255,0.85); }

/* === RETREAT BANNER SECTION === */
.retreat-banner-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.retreat-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.retreat-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(6, 14, 22, 0.7) 0%,
    rgba(6, 14, 22, 0.55) 50%,
    rgba(6, 14, 22, 0.72) 100%
  );
  z-index: 1;
}
.retreat-banner-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

/* === CONTACT V2 === */
.contact-v2-left { display: flex; flex-direction: column; gap: 0; height: 100%; }
.contact-v2-img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.contact-v2-info {
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 28px;
  flex: 1;
  box-shadow: var(--shadow-sm);
}
.contact-v2-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-v2-item:last-of-type { border-bottom: none; }
.cvi-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.cvi-value { font-size: 0.92rem; font-weight: 500; color: var(--text); }

/* === INSTAGRAM GRID === */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 10px;
}
.insta-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.insta-img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.insta-item:hover .insta-img { transform: scale(1.06); }
.insta-hover {
  position: absolute;
  inset: 0;
  background: rgba(131, 58, 180, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}
.insta-item:hover .insta-hover {
  background: rgba(131, 58, 180, 0.55);
  opacity: 1;
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 4, 0.92);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.lightbox-stage {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 860px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-img {
  width: 100%;
  height: 60vh;
  min-height: 300px;
  transition: opacity 0.25s ease;
}
.lightbox-caption {
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 14px 20px;
  background: rgba(0,0,0,0.4);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  backdrop-filter: blur(6px);
}
.lightbox-close:hover { background: var(--primary); border-color: var(--primary); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  backdrop-filter: blur(6px);
}
.lightbox-nav:hover { background: var(--primary); border-color: var(--primary); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  z-index: 3;
  letter-spacing: 1px;
}

/* === HOME PAGE RESPONSIVE === */
@media (max-width: 1199px) {
  .masonry-gallery { column-count: 3; }
  .instagram-grid { grid-template-rows: repeat(2, 180px); }
}
@media (max-width: 991px) {
  .hero-v2-title { font-size: 3rem; }
  .wellness-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .wg-tall { grid-row: span 1; }
  .masonry-gallery { column-count: 2; }
  .transform-img { height: 380px; }
  .transform-img-badge { right: 16px; }
  .founder-v2-img { height: 380px; }
  .instagram-grid { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 150px); }
  .retreat-banner-section { min-height: 440px; }
  .fss-divider { display: none; }
  .timeline-results-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .hero-v2-trust { gap: 20px; }
  .trust-divider { display: none; }
  .wellness-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .masonry-gallery { column-count: 2; column-gap: 8px; }
  .masonry-item { margin-bottom: 8px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 160px); }
  .founders-stats-strip { gap: 0; }
  .fss-item { min-width: 120px; }
  .contact-v2-img { height: 200px; }
  .retreat-banner-section { min-height: 360px; }
  .hero-v2-btns { gap: 10px; }
  .btn-whatsapp { padding: 12px 20px; font-size: 0.82rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .whatsapp-float { bottom: 80px; right: 20px; width: 48px; height: 48px; font-size: 1.3rem; }
}
@media (max-width: 575px) {
  .hero-v2-title { font-size: 2.5rem; }
  .hero-v2-btns { flex-direction: column; }
  .btn-whatsapp { width: 100%; justify-content: center; }
  .hero-v2-btns .btn-primary-custom { width: 100%; justify-content: center; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 130px); }
  .isc-content p { display: none; }
  .audience-img { height: 160px; }
}
