/* =============================================
   Dr. Nutan Kher — Premium Spiritual Website
   Main Stylesheet v2026
   ============================================= */

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

/* --- CSS Variables --- */
:root {
  --purple:       #4A2C6D;
  --purple-dark:  #321d4a;
  --purple-light: #6B3FA0;
  --purple-faint: #f0eaf8;
  --gold:         #D4AF37;
  --gold-dark:    #B8902A;
  --gold-light:   #f0d980;
  --cream:        #F9F6F0;
  --bg:           #F4F0EB;
  --text:         #2D2A2A;
  --text-soft:    #5A5A5A;
  --white:        #ffffff;
  --border:       rgba(212,175,55,.22);
  --shadow:       0 8px 40px rgba(74,44,109,.12);
  --shadow-gold:  0 4px 24px rgba(212,175,55,.25);
  --r-sm:         8px;
  --r-md:         16px;
  --r-lg:         24px;
  --r-xl:         40px;
  --transition:   all .35s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* --- Typography Scale --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--purple);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { font-size: 1.05rem; color: var(--text-soft); line-height: 1.8; }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ---- Section ---- */
.section { padding: 96px 0; }
.section--sm { padding: 60px 0; }
.section--dark { background: var(--purple); }
.section--cream { background: var(--cream); }
.section--bg { background: var(--bg); }

/* ---- Section Header ---- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .label {
  display: inline-block;
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-dark);
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 580px; margin: 0 auto; font-size: 1.08rem; }
.divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
  margin: 20px auto 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity .3s;
}
.btn:hover::before { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--purple-dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,.4);
  color: var(--purple-dark);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--purple-dark);
  transform: translateY(-2px);
}
.btn-purple {
  background: var(--purple);
  color: #fff;
}
.btn-purple:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  color: var(--purple);
}
.btn-sm { padding: 10px 22px; font-size: .88rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 8px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(74,44,109,.1);
  padding: 4px 0;
}
.site-header.hero-header { background: transparent; }
.site-header.scrolled .nav-link { color: var(--text); }
.site-header.scrolled .nav-logo-text { color: var(--purple); }

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 54px;
  width: auto;
  border-radius: 8px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.15));
  transition: var(--transition);
}
.nav-logo:hover img { transform: scale(1.04); }
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.site-header.scrolled .nav-logo-sub { color: var(--gold-dark); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  position: relative;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: rgba(255,255,255,.9);
  border-radius: var(--r-sm);
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: transform .3s;
}
.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-link:hover { color: var(--gold-light); background: rgba(255,255,255,.06); }
.nav-link.active { color: var(--gold); }

.nav-cta { margin-left: 12px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.site-header.scrolled .nav-hamburger span { background: var(--purple); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--purple-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-menu .nav-link {
  font-size: 1.5rem;
  color: rgba(255,255,255,.85);
  padding: 12px 32px;
}
.mobile-menu .nav-link:hover { color: var(--gold); }
.mobile-menu .close-btn {
  position: absolute;
  top: 24px; right: 24px;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.mobile-menu-logo {
  margin-bottom: 24px;
}
.mobile-menu-logo img { height: 60px; margin: 0 auto; border-radius: 8px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--purple-dark);
  color: rgba(255,255,255,.8);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--purple-light), var(--gold));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .footer-logo img { height: 56px; border-radius: 8px; margin-bottom: 16px; }
.footer-brand p { font-size: .92rem; opacity: .75; line-height: 1.8; margin-top: 12px; }
.footer-tagline {
  font-family: var(--font-elegant);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-top: 4px;
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: .03em;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  align-items: flex-start;
}
.footer-contact-item .icon { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--purple-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--gold-light); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, #2a1a40 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,175,55,.12) 0%, transparent 60%);
}
.hero-mandala {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(380px, 50vw, 720px);
  opacity: .08;
  animation: spin-slow 60s linear infinite;
}
.hero-chakra {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(320px, 42vw, 620px);
  opacity: .9;
  filter: drop-shadow(0 8px 40px rgba(212,175,55,.3));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(-50%) translateY(0); }
  50%       { transform: translateY(-50%) translateY(-18px); }
}
@keyframes spin-slow { to { transform: translateY(-50%) rotate(360deg); } }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 120px 0 80px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-light);
  letter-spacing: .06em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}
.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  opacity: 0;
  animation: fadeUp .8s .4s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  max-width: 520px;
  font-family: var(--font-body);
  font-weight: 300;
  opacity: 0;
  animation: fadeUp .8s .6s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .8s forwards;
}
.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s 1s forwards;
}
.trust-stat .number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-stat .label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.15); }
}

/* =============================================
   CARDS
   ============================================= */
.card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(74,44,109,.06);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(74,44,109,.18);
}
.card-glass {
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 8px 32px rgba(74,44,109,.12);
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--purple-light));
  transform: scaleX(0);
  transition: transform .4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(74,44,109,.16);
}
.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--purple-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
}
.service-card:hover .service-icon .icon { color: #fff; }
.service-icon img { width: 44px; height: 44px; object-fit: contain; }
.service-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.service-card p { font-size: .95rem; margin-bottom: 20px; }
.service-card .btn { width: 100%; justify-content: center; }

/* =============================================
   BENEFITS SECTION
   ============================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(74,44,109,.06);
  transition: var(--transition);
}
.benefit-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-faint), #e8d5f8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.benefit-item h4 { margin-bottom: 6px; font-size: 1rem; }
.benefit-item p { font-size: .88rem; line-height: 1.6; }

/* =============================================
   WORKSHOP CARDS
   ============================================= */
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.workshop-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.workshop-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(74,44,109,.18); }
.workshop-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.workshop-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.workshop-card:hover .workshop-thumb img { transform: scale(1.08); }
.workshop-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--purple-dark);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.workshop-body { padding: 24px; }
.workshop-body h3 { margin-bottom: 10px; font-size: 1.2rem; }
.workshop-body p { font-size: .92rem; margin-bottom: 16px; }
.workshop-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.workshop-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--text-soft);
}
.workshop-meta .icon { color: var(--gold-dark); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--purple-faint);
  line-height: 1;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-card p { font-size: .97rem; font-style: italic; margin-bottom: 20px; color: var(--text); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-author .name { font-weight: 700; font-size: .95rem; color: var(--purple); }
.testimonial-author .location { font-size: .8rem; color: var(--text-soft); }

/* =============================================
   FINAL CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, var(--purple-dark) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,175,55,.12) 0%, transparent 65%);
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.75); max-width: 540px; margin: 0 auto 36px; }
.cta-section .divider { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-contact {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.cta-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  transition: var(--transition);
}
.cta-contact a:hover { color: var(--gold); }
.cta-contact .icon { color: var(--gold); }

/* =============================================
   GALLERY
   ============================================= */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 700;
  border: 2px solid var(--border);
  color: var(--text-soft);
  background: #fff;
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.gallery-masonry {
  columns: 3;
  column-gap: 20px;
  gap: 20px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .5s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(74,44,109,.85), transparent);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  padding: 20px;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--r-md);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); }
.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  background: rgba(0,0,0,.5);
  padding: 6px 18px;
  border-radius: 50px;
}

/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 6px;
  letter-spacing: .03em;
}
.form-control {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid rgba(74,44,109,.12);
  border-radius: var(--r-sm);
  font-size: .97rem;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(74,44,109,.08);
}
.form-control::placeholder { color: #aaa; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A2C6D' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-message {
  padding: 14px 20px;
  border-radius: var(--r-sm);
  margin-bottom: 20px;
  font-size: .95rem;
  display: none;
}
.form-message.success { background: #e8f7ef; border: 1px solid #4caf50; color: #2e7d32; display: block; }
.form-message.error   { background: #fde8e8; border: 1px solid #ef5350; color: #c62828; display: block; }

/* =============================================
   BLOG
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(74,44,109,.16); }
.blog-thumb {
  height: 200px;
  overflow: hidden;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-body { padding: 24px; }
.blog-category {
  display: inline-block;
  background: var(--purple-faint);
  color: var(--purple);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-body h3 { margin-bottom: 10px; font-size: 1.15rem; }
.blog-body h3 a { color: var(--purple); }
.blog-body h3 a:hover { color: var(--gold-dark); }
.blog-body p { font-size: .9rem; margin-bottom: 16px; }
.blog-meta { font-size: .8rem; color: var(--text-soft); display: flex; gap: 16px; }
.blog-meta .icon { color: var(--gold-dark); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(212,175,55,.12), transparent 65%);
}
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 540px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: var(--gold); }

/* =============================================
   STICKY / FLOATING ELEMENTS
   ============================================= */
.sticky-book-btn {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 800;
  opacity: 0;
  transform: scale(.8) translateY(10px);
  pointer-events: none;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
.sticky-book-btn.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}
.sticky-book-btn a {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(74,44,109,.35);
  transition: var(--transition);
}
.sticky-book-btn a:hover {
  transform: scale(1.05);
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 801;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.whatsapp-float:hover { transform: scale(1.12); }
.whatsapp-float a {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
}
.whatsapp-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,.3);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Mobile sticky bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--purple-dark);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-sticky-bar a {
  flex: 1;
  padding: 11px;
  border-radius: var(--r-sm);
  font-size: .88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
}
.msb-call { background: var(--purple-light); color: #fff; }
.msb-wa   { background: #25D366; color: #fff; }
.msb-call:hover { background: var(--purple); color: #fff; }

/* =============================================
   ABOUT PAGE EXTRAS
   ============================================= */
.about-bio {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.about-photo {
  position: relative;
}
.about-photo img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
}
.about-photo::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 70%;
  height: 70%;
  border: 3px solid var(--gold);
  border-radius: var(--r-xl);
  z-index: -1;
}
.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.cert-badge {
  background: var(--purple-faint);
  border: 1px solid rgba(74,44,109,.15);
  color: var(--purple);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
}
.philosophy-box {
  background: linear-gradient(135deg, var(--purple-faint), #faf5ff);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 24px 28px;
  margin: 28px 0;
}
.philosophy-box p {
  font-family: var(--font-elegant);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--purple);
  line-height: 1.7;
}

/* =============================================
   MAP EMBED
   ============================================= */
.map-embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
}
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-gold   { color: var(--gold-dark); }
.text-purple { color: var(--purple); }
.text-white  { color: #fff !important; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-16 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
.hidden { display: none; }

/* Gold horizontal rule */
hr.gold-rule {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 48px 0;
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-bio { grid-template-columns: 1fr; }
  .about-photo { max-width: 440px; margin: 0 auto; }
  .gallery-masonry { columns: 2; }
  .locations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-menu, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-chakra { opacity: .25; width: 80vw; }
  .hero-content { padding: 100px 0 60px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 64px; }
  .whatsapp-float { bottom: 78px; }
  .sticky-book-btn { bottom: 140px; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .workshops-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
